diff --git a/src/app/enums/boot-environment-active.enum.ts b/src/app/enums/boot-environment-active.enum.ts index e7d54c4545e..2ddac6c7bce 100644 --- a/src/app/enums/boot-environment-active.enum.ts +++ b/src/app/enums/boot-environment-active.enum.ts @@ -1,6 +1,6 @@ export enum BootEnvironmentActive { Now = 'N', - Reboot = 'R', + Restart = 'R', NowReboot = 'NR', Dash = '-', Empty = '', diff --git a/src/app/helptext/system/advanced.ts b/src/app/helptext/system/advanced.ts index 524eb9892cf..82c5f8605a2 100644 --- a/src/app/helptext/system/advanced.ts +++ b/src/app/helptext/system/advanced.ts @@ -31,7 +31,7 @@ export const helptextSystemAdvanced = { hardware issues.'), debugkernel_tooltip: T('Set to boot a debug kernel after the next system\ - reboot.'), + restart.'), max_parallel_replication_tasks_tooltip: T('Maximum number of replication tasks being executed \ simultaneously.'), diff --git a/src/app/helptext/system/failover.ts b/src/app/helptext/system/failover.ts index 6c4eda9b2ae..09473c38aa6 100644 --- a/src/app/helptext/system/failover.ts +++ b/src/app/helptext/system/failover.ts @@ -9,7 +9,7 @@ export const helptextSystemFailover = { dialog_sync_to_peer_title: T('Sync to Peer'), dialog_sync_to_peer_message: T('Are you sure you want to sync to peer?'), - dialog_sync_to_peer_checkbox: T('Reboot standby TrueNAS controller'), + dialog_sync_to_peer_checkbox: T('Restart standby TrueNAS controller'), dialog_button_ok: T('Proceed'), dialog_sync_from_peer_title: T('Sync from Peer'), diff --git a/src/app/helptext/system/general.ts b/src/app/helptext/system/general.ts index fd51bd6acdc..1b9f5da18bb 100644 --- a/src/app/helptext/system/general.ts +++ b/src/app/helptext/system/general.ts @@ -131,7 +131,7 @@ export const helptextSystemGeneral = { upload_config_form: { message: T( - '

The system will reboot to perform this operation!

\ + '

The system will restart to perform this operation!

\

All passwords are reset when the \ uploaded configuration database file was saved \ without the Password Secret Seed.

', diff --git a/src/app/helptext/system/update.ts b/src/app/helptext/system/update.ts index 2b6817d55a6..2469a042c8f 100644 --- a/src/app/helptext/system/update.ts +++ b/src/app/helptext/system/update.ts @@ -19,11 +19,11 @@ export const helptextSystemUpdate = { }, rebootAfterManualUpdate: { - placeholder: T('Reboot After Update'), - tooltip: T('Automatically reboot the system after the update\ + placeholder: T('Restart After Update'), + tooltip: T('Automatically restart the system after the update\ is applied.'), - manual_reboot_msg: T('Update successful. Please reboot for the update to take effect. Reboot now?'), + manual_reboot_msg: T('Update successful. Please restart for the update to take effect. Restart now?'), }, manual_update_action: T('Manual Update'), @@ -51,6 +51,6 @@ export const helptextSystemUpdate = { ha_download_msg: T('Upgrades both controllers. Files are downloaded to the Active Controller\ and then transferred to the Standby Controller. The upgrade process starts concurrently on both TrueNAS Controllers.\ Continue with download?'), - non_ha_confirm_msg: T('Apply updates and reboot system after downloading.'), + non_ha_confirm_msg: T('Apply updates and restart system after downloading.'), ha_confirm_msg: T('Check the box for full upgrade. Leave unchecked to download only.'), }; diff --git a/src/app/modules/dialog/components/start-service-dialog/start-service-dialog.component.ts b/src/app/modules/dialog/components/start-service-dialog/start-service-dialog.component.ts index f1ebd0c28d0..b77510de55b 100644 --- a/src/app/modules/dialog/components/start-service-dialog/start-service-dialog.component.ts +++ b/src/app/modules/dialog/components/start-service-dialog/start-service-dialog.component.ts @@ -108,7 +108,7 @@ export class StartServiceDialogComponent implements OnInit { if (result.startAutomatically) { this.snackbar.success( this.translate.instant( - 'The {service} service is running and will auto-start after a system reboot.', + 'The {service} service is running and will auto-start after a system restart.', { service: this.serviceHumanName }, ), ); diff --git a/src/app/modules/layout/topbar/power-menu/power-menu.component.spec.ts b/src/app/modules/layout/topbar/power-menu/power-menu.component.spec.ts index 6b88cc762ec..94a81f9b263 100644 --- a/src/app/modules/layout/topbar/power-menu/power-menu.component.spec.ts +++ b/src/app/modules/layout/topbar/power-menu/power-menu.component.spec.ts @@ -46,7 +46,7 @@ describe('PowerMenuComponent', () => { expect(spectator.inject(MatDialog).open).toHaveBeenCalledWith(RebootOrShutdownDialogComponent, { width: '400px', }); - expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/reboot'], { + expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/restart'], { skipLocationChange: true, queryParams: { reason: 'reason' }, }); diff --git a/src/app/modules/layout/topbar/power-menu/power-menu.component.ts b/src/app/modules/layout/topbar/power-menu/power-menu.component.ts index 5e4e30e652e..6d3695db2e5 100644 --- a/src/app/modules/layout/topbar/power-menu/power-menu.component.ts +++ b/src/app/modules/layout/topbar/power-menu/power-menu.component.ts @@ -52,7 +52,7 @@ export class PowerMenuComponent { filter(Boolean), untilDestroyed(this), ).subscribe((reason: string) => { - this.router.navigate(['/system-tasks/reboot'], { + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true, queryParams: { reason }, }); diff --git a/src/app/modules/layout/topbar/reboot-or-shutdown-dialog/reboot-or-shutdown-dialog.component.ts b/src/app/modules/layout/topbar/reboot-or-shutdown-dialog/reboot-or-shutdown-dialog.component.ts index 55cfb5ce578..5ef5e224db4 100644 --- a/src/app/modules/layout/topbar/reboot-or-shutdown-dialog/reboot-or-shutdown-dialog.component.ts +++ b/src/app/modules/layout/topbar/reboot-or-shutdown-dialog/reboot-or-shutdown-dialog.component.ts @@ -68,8 +68,8 @@ export class RebootOrShutdownDialogComponent { }, { label: this.translate.instant('Power Outage'), - tooltip: this.translate.instant('Unexpected power loss necessitating a reboot.'), - value: 'Unexpected power loss necessitating a reboot.', + tooltip: this.translate.instant('Unexpected power loss necessitating a restart.'), + value: 'Unexpected power loss necessitating a restart.', }, { label: this.translate.instant('Maintenance Window'), @@ -83,8 +83,8 @@ export class RebootOrShutdownDialogComponent { }, { label: this.translate.instant('Software Installation'), - tooltip: this.translate.instant('Required reboot after new software installation.'), - value: 'Required reboot after new software installation.', + tooltip: this.translate.instant('Required restart after new software installation.'), + value: 'Required restart after new software installation.', }, { label: this.translate.instant('Performance Optimization'), @@ -98,8 +98,8 @@ export class RebootOrShutdownDialogComponent { }, { label: this.translate.instant('System Freeze'), - tooltip: this.translate.instant('Unresponsive system necessitating a forced reboot.'), - value: 'Unresponsive system necessitating a forced reboot.', + tooltip: this.translate.instant('Unresponsive system necessitating a forced restart.'), + value: 'Unresponsive system necessitating a forced restart.', }, ]); diff --git a/src/app/modules/layout/topbar/topbar.component.ts b/src/app/modules/layout/topbar/topbar.component.ts index 4fa10ac2529..6f5f540a24e 100644 --- a/src/app/modules/layout/topbar/topbar.component.ts +++ b/src/app/modules/layout/topbar/topbar.component.ts @@ -138,7 +138,7 @@ export class TopbarComponent implements OnInit { ) { this.systemWillRestart = true; if (job.state === JobState.Success) { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); } } diff --git a/src/app/pages/system-tasks/failover/failover.component.ts b/src/app/pages/system-tasks/failover/failover.component.ts index 69c69bfa3c6..188762e17f8 100644 --- a/src/app/pages/system-tasks/failover/failover.component.ts +++ b/src/app/pages/system-tasks/failover/failover.component.ts @@ -61,18 +61,18 @@ export class FailoverComponent implements OnInit { } ngOnInit(): void { - // Replace URL so that we don't reboot again if page is refreshed. + // Replace URL so that we don't restart again if page is refreshed. this.location.replaceState('/signin'); this.matDialog.closeAll(); this.ws.call('failover.become_passive').pipe(untilDestroyed(this)).subscribe({ - error: (error: unknown) => { // error on reboot + error: (error: unknown) => { // error on restart this.dialogService.error(this.errorHandler.parseError(error)) .pipe(untilDestroyed(this)) .subscribe(() => { this.router.navigate(['/signin']); }); }, - complete: () => { // show reboot screen + complete: () => { // show restart screen this.store$.dispatch(passiveNodeReplaced()); this.wsManager.prepareShutdown(); diff --git a/src/app/pages/system-tasks/reboot/reboot.component.html b/src/app/pages/system-tasks/restart/restart.component.html similarity index 91% rename from src/app/pages/system-tasks/reboot/reboot.component.html rename to src/app/pages/system-tasks/restart/restart.component.html index 28046b0d57a..97faf3c793f 100644 --- a/src/app/pages/system-tasks/reboot/reboot.component.html +++ b/src/app/pages/system-tasks/restart/restart.component.html @@ -1,5 +1,5 @@
- + {{ 'System is restarting...' | translate }} diff --git a/src/app/pages/system-tasks/reboot/reboot.component.scss b/src/app/pages/system-tasks/restart/restart.component.scss similarity index 94% rename from src/app/pages/system-tasks/reboot/reboot.component.scss rename to src/app/pages/system-tasks/restart/restart.component.scss index fa335ec47ca..85fa01deb33 100644 --- a/src/app/pages/system-tasks/reboot/reboot.component.scss +++ b/src/app/pages/system-tasks/restart/restart.component.scss @@ -5,7 +5,7 @@ height: 100%; } -#reboot-card { +#restart-card { align-items: center; box-sizing: content-box; display: flex; @@ -33,7 +33,7 @@ } @media screen and (max-height: 700px) { - #reboot-card { + #restart-card { font-size: 80%; width: 225px; } diff --git a/src/app/pages/system-tasks/reboot/reboot.component.ts b/src/app/pages/system-tasks/restart/restart.component.ts similarity index 86% rename from src/app/pages/system-tasks/reboot/reboot.component.ts rename to src/app/pages/system-tasks/restart/restart.component.ts index 2fca81b6d4d..a6accd138b3 100644 --- a/src/app/pages/system-tasks/reboot/reboot.component.ts +++ b/src/app/pages/system-tasks/restart/restart.component.ts @@ -15,9 +15,9 @@ import { WebSocketService } from 'app/services/ws.service'; @UntilDestroy() @Component({ - selector: 'ix-reboot', - templateUrl: './reboot.component.html', - styleUrls: ['./reboot.component.scss'], + selector: 'ix-restart', + templateUrl: './restart.component.html', + styleUrls: ['./restart.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [ @@ -28,7 +28,7 @@ import { WebSocketService } from 'app/services/ws.service'; TranslateModule, ], }) -export class RebootComponent implements OnInit { +export class RestartComponent implements OnInit { constructor( protected ws: WebSocketService, private wsManager: WebSocketConnectionService, @@ -45,19 +45,19 @@ export class RebootComponent implements OnInit { ngOnInit(): void { const reason = this.route.snapshot.queryParamMap.get('reason'); - // Replace URL so that we don't reboot again if page is refreshed. + // Replace URL so that we don't restart again if page is refreshed. this.location.replaceState('/signin'); this.matDialog.closeAll(); this.ws.job('system.reboot', { reason }).pipe(untilDestroyed(this)).subscribe({ - error: (error: unknown) => { // error on reboot + error: (error: unknown) => { // error on restart this.dialogService.error(this.errorHandler.parseError(error)) .pipe(untilDestroyed(this)) .subscribe(() => { this.router.navigate(['/signin']); }); }, - complete: () => { // show reboot screen + complete: () => { // show restart screen this.wsManager.prepareShutdown(); this.wsManager.closeWebSocketConnection(); setTimeout(() => { diff --git a/src/app/pages/system-tasks/system-tasks.routes.ts b/src/app/pages/system-tasks/system-tasks.routes.ts index 6e35070b995..d16d896dca0 100644 --- a/src/app/pages/system-tasks/system-tasks.routes.ts +++ b/src/app/pages/system-tasks/system-tasks.routes.ts @@ -2,16 +2,16 @@ import { Routes } from '@angular/router'; import { marker as T } from '@biesbjerg/ngx-translate-extract-marker'; import { ConfigResetComponent } from 'app/pages/system-tasks/config-reset/config-reset.component'; import { FailoverComponent } from 'app/pages/system-tasks/failover/failover.component'; -import { RebootComponent } from 'app/pages/system-tasks/reboot/reboot.component'; +import { RestartComponent } from 'app/pages/system-tasks/restart/restart.component'; import { ShutdownComponent } from 'app/pages/system-tasks/shutdown/shutdown.component'; export const systemTasksRoutes: Routes = [ { path: '', children: [{ - path: 'reboot', - component: RebootComponent, - data: { title: T('Reboot'), breadcrumb: T('Reboot') }, + path: 'restart', + component: RestartComponent, + data: { title: T('Restart'), breadcrumb: T('Restart') }, }, { path: 'shutdown', component: ShutdownComponent, diff --git a/src/app/pages/system/advanced/system-security/system-security-form/system-security-form.component.ts b/src/app/pages/system/advanced/system-security/system-security-form/system-security-form.component.ts index e5c3e369887..6efcf1e9edf 100644 --- a/src/app/pages/system/advanced/system-security/system-security-form/system-security-form.component.ts +++ b/src/app/pages/system/advanced/system-security/system-security-form/system-security-form.component.ts @@ -105,7 +105,7 @@ export class SystemSecurityFormComponent implements OnInit { take(1), switchMap((isHaLicensed) => { if (isHaLicensed) { - // Reboot will be handled in response to failover.disabled.reasons event in HaFipsEffects. + // Restart will be handled in response to failover.disabled.reasons event in HaFipsEffects. return EMPTY; } diff --git a/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.spec.ts b/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.spec.ts index d86579f2630..51b735f0a48 100644 --- a/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.spec.ts +++ b/src/app/pages/system/bootenv/bootenv-list/bootenv-list.component.spec.ts @@ -67,7 +67,7 @@ describe('BootEnvironmentListComponent', () => { [ '', '22.12-MASTER-20220808-020013', - 'Now/Reboot', + 'Now/Restart', '2022-08-09 06:52:00', '2.61 GiB', 'No', 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 ab9ea7c0a89..8ef6ec495ec 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 @@ -120,10 +120,10 @@ export class BootEnvironmentListComponent implements OnInit { switch (row.active) { case BootEnvironmentActive.Now: return this.translate.instant('Now'); - case BootEnvironmentActive.Reboot: - return this.translate.instant('Reboot'); + case BootEnvironmentActive.Restart: + return this.translate.instant('Restart'); case BootEnvironmentActive.NowReboot: - return this.translate.instant('Now/Reboot'); + return this.translate.instant('Now/Restart'); default: return row.active; } diff --git a/src/app/pages/system/failover-settings/failover-settings.component.spec.ts b/src/app/pages/system/failover-settings/failover-settings.component.spec.ts index 41355d5b5db..88b2a26eb27 100644 --- a/src/app/pages/system/failover-settings/failover-settings.component.spec.ts +++ b/src/app/pages/system/failover-settings/failover-settings.component.spec.ts @@ -83,7 +83,7 @@ describe('FailoverComponent', () => { const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Sync To Peer' })); await saveButton.click(); - const rebootCheckbox = await rootLoader.getHarness(MatCheckboxHarness.with({ label: 'Reboot standby TrueNAS controller' })); + const rebootCheckbox = await rootLoader.getHarness(MatCheckboxHarness.with({ label: 'Restart standby TrueNAS controller' })); await rebootCheckbox.check(); const confirmCheckbox = await rootLoader.getHarness(MatCheckboxHarness.with({ label: 'Confirm' })); await confirmCheckbox.check(); diff --git a/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.spec.ts b/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.spec.ts index 39cd9674b15..46982703c42 100644 --- a/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.spec.ts +++ b/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.spec.ts @@ -52,6 +52,6 @@ describe('UploadConfigDialogComponent', () => { expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(UploadService).uploadAsJob).toHaveBeenCalledWith({ file, method: 'config.upload' }); - expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/reboot'], { skipLocationChange: true }); + expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/restart'], { skipLocationChange: true }); }); }); diff --git a/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.ts b/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.ts index eba937ed66e..e1a5484e1e2 100644 --- a/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.ts +++ b/src/app/pages/system/general-settings/upload-config-dialog/upload-config-dialog.component.ts @@ -68,7 +68,7 @@ export class UploadConfigDialogComponent { untilDestroyed(this), ) .subscribe(() => { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); }); } } diff --git a/src/app/pages/system/update/components/manual-update-form/manual-update-form.component.ts b/src/app/pages/system/update/components/manual-update-form/manual-update-form.component.ts index f15c90c1526..34789da9232 100644 --- a/src/app/pages/system/update/components/manual-update-form/manual-update-form.component.ts +++ b/src/app/pages/system/update/components/manual-update-form/manual-update-form.component.ts @@ -200,7 +200,7 @@ export class ManualUpdateFormComponent implements OnInit { untilDestroyed(this), ) .subscribe(() => { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); }); } @@ -251,7 +251,7 @@ export class ManualUpdateFormComponent implements OnInit { finishNonHaUpdate(): void { if (this.form.value.rebootAfterManualUpdate) { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); } else { this.dialogService.confirm({ title: this.translate.instant('Restart'), @@ -259,7 +259,7 @@ export class ManualUpdateFormComponent implements OnInit { }).pipe( filter(Boolean), untilDestroyed(this), - ).subscribe(() => this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true })); + ).subscribe(() => this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true })); } } diff --git a/src/app/pages/system/update/components/train-card/train-card.component.html b/src/app/pages/system/update/components/train-card/train-card.component.html index ee89041850b..a6b9961b695 100644 --- a/src/app/pages/system/update/components/train-card/train-card.component.html +++ b/src/app/pages/system/update/components/train-card/train-card.component.html @@ -65,7 +65,7 @@
@if ((updateService.status$ | async) === SystemUpdateStatus.RebootRequired) {
- {{ 'An update is already applied. Please reboot the system.' | translate }} + {{ 'An update is already applied. Please restart the system.' | translate }}
} diff --git a/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.spec.ts b/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.spec.ts index 680b2b4961e..8968bfd38db 100644 --- a/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.spec.ts +++ b/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.spec.ts @@ -96,7 +96,7 @@ describe('UpdateActionsCardComponent', () => { }); expect(spectator.inject(DialogService).confirm).toHaveBeenCalledWith({ - message: 'The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?', + message: 'The system will restart and be briefly unavailable while applying updates. Apply updates and restart?', title: 'Apply Pending Updates', }); @@ -126,7 +126,7 @@ describe('UpdateActionsCardComponent', () => { hideCheckbox: true, message: 'Continue with download?', secondaryCheckbox: true, - secondaryCheckboxText: 'Apply updates and reboot system after downloading.', + secondaryCheckboxText: 'Apply updates and restart system after downloading.', title: 'Download Update', }); diff --git a/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.ts b/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.ts index 840a9bcff83..0b935ac9edb 100644 --- a/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.ts +++ b/src/app/pages/system/update/components/update-actions-card/update-actions-card.component.ts @@ -154,7 +154,7 @@ export class UpdateActionsCardComponent implements OnInit { untilDestroyed(this), ) .subscribe(() => { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); }); } @@ -333,7 +333,7 @@ export class UpdateActionsCardComponent implements OnInit { case UpdateType.ApplyPending: { const message = this.isHaLicensed ? this.translate.instant('The standby controller will be automatically restarted to finalize the update. Apply updates and restart the standby controller?') - : this.translate.instant('The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?'); + : this.translate.instant('The system will restart and be briefly unavailable while applying updates. Apply updates and restart?'); this.dialogService.confirm({ title: this.translate.instant('Apply Pending Updates'), message: this.translate.instant(message), diff --git a/src/app/services/fips.service.spec.ts b/src/app/services/fips.service.spec.ts index 342c42030e3..4157709ce06 100644 --- a/src/app/services/fips.service.spec.ts +++ b/src/app/services/fips.service.spec.ts @@ -34,7 +34,7 @@ describe('FipsService', () => { }); describe('promptForLocalRestart', () => { - it('prompts for local standby and redirects to reboot page', () => { + it('prompts for local standby and redirects to restart page', () => { spectator.service.promptForRestart().subscribe(); expect(spectator.inject(DialogService).confirm).toHaveBeenCalledWith( @@ -42,7 +42,7 @@ describe('FipsService', () => { buttonText: 'Restart Now', }), ); - expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/reboot'], { skipLocationChange: true }); + expect(spectator.inject(Router).navigate).toHaveBeenCalledWith(['/system-tasks/restart'], { skipLocationChange: true }); }); }); diff --git a/src/app/services/fips.service.ts b/src/app/services/fips.service.ts index 32d34f436ad..7925e7a8181 100644 --- a/src/app/services/fips.service.ts +++ b/src/app/services/fips.service.ts @@ -38,7 +38,7 @@ export class FipsService { .pipe( tap((approved) => { if (approved) { - this.router.navigate(['/system-tasks/reboot'], { skipLocationChange: true }); + this.router.navigate(['/system-tasks/restart'], { skipLocationChange: true }); } }), ); diff --git a/src/app/store/preferences/preferences.actions.ts b/src/app/store/preferences/preferences.actions.ts index 049fc022cbe..8e02fa74f39 100644 --- a/src/app/store/preferences/preferences.actions.ts +++ b/src/app/store/preferences/preferences.actions.ts @@ -35,6 +35,6 @@ export const dashboardStateUpdated = createAction('[Preferences API] Dashboard S export const noDashboardStateFound = createAction('[Preferences API] No Dashboard State Found'); export const updateRebootAfterManualUpdate = createAction( - '[Preferences] Reboot After Manual Update Option Updated', + '[Preferences] Restart After Manual Update Option Updated', props<{ rebootAfterManualUpdate: boolean }>(), ); diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 72a3d236302..601f018833f 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -30,7 +30,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -128,7 +128,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -147,7 +147,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -242,7 +242,7 @@ "Autoconfigure IPv6": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2345,7 +2345,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2658,7 +2658,6 @@ "Reboot": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -2765,8 +2764,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -2796,6 +2795,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -2805,6 +2805,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3206,7 +3207,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -3696,7 +3697,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -3709,7 +3710,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -3903,7 +3904,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -3926,7 +3927,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -3936,6 +3937,7 @@ "Unset to disable the scheduled scrub without deleting it.": "", "Unset to disable this service without deleting it.": "", "Update Members": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updating custom app": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", "Use settings from a saved replication.": "", @@ -4689,7 +4691,6 @@ "Quiet": "Tiše", "Quota for this dataset": "Kvóta pro tuto datovou sadu", "Read-only": "Pouze pro čtení", - "Reboot After Update": "Po aktualizaci restartovat", "Recursive": "Rekurzivní", "Region name - optional (rclone documentation).": "Region name - optional (rclone documentation).", "Remove": "Odebrat", @@ -4804,7 +4805,6 @@ "Update TrueCommand Settings": "Aktualizovat nastavení TrueCommand", "Update available": "Dostupná aktualizace", "Update in Progress": "Probíhá aktualizace", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Aktualizace úspěšná. Pro projevení aktualizace prosím restartujte. Restartovat nyní?", "Updated 'Use as Home Share'": "Aktualizováno 'Použít jako domácí sdílení'", "Updated Date": "Datum aktualizace", "Updates": "Aktualizace", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index bbb1ce65e38..35cd590f1ba 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -48,7 +48,7 @@ "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.": "", "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -273,7 +273,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any system service can communicate externally.": "", @@ -311,6 +311,7 @@ "Apply To Users": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Service Not Configured": "", @@ -391,6 +392,7 @@ "Auto TRIM": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Memory": "", "Available Resources": "", @@ -2051,7 +2053,7 @@ "Notifications": "", "Notransfer Timeout": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2323,7 +2325,6 @@ "Reboot": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", "Recommended Apps": "", @@ -2396,8 +2397,8 @@ "Reporting Write": "", "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -2421,6 +2422,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Service": "", @@ -2428,6 +2430,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -2705,6 +2708,7 @@ "Set production status as active": "", "Set the domain name to the username. Unset to prevent name collisions when Allow Trusted Domains is set and multiple domains use the same username.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to include child datasets and zvols of the chosen dataset.": "", "Set to inhibit some syslog diagnostics to avoid error messages. See exports(5) for examples.": "", @@ -3136,7 +3140,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -3146,7 +3150,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -3309,7 +3313,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "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.": "", "Unique snapshot name. Cannot be used with a Naming Schema.": "", @@ -3328,7 +3332,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -3354,6 +3358,7 @@ "Update System": "", "Update TrueCommand Settings": "", "Update available": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -3886,7 +3891,6 @@ "Apply permissions recursively to all directories and files in the current dataset.": "Wenden Sie Berechtigungen rekursiv auf alle Verzeichnisse und Dateien im aktuellen Datensatz an.", "Apply permissions recursively to all directories and files within the current dataset.": "Wenden Sie Berechtigungen rekursiv auf alle Verzeichnisse und Dateien im aktuellen Datensatz an.", "Apply permissions to child datasets": "Wenden Sie Berechtigungen auf untergeordnete Datensätze an", - "Apply updates and reboot system after downloading.": "Updates anwenden und das System nach dem Herunterladen neustarten.", "Apps": "Apps", "Archive": "Archiv", "Attach": "Anhängen", @@ -3907,7 +3911,6 @@ "Authorized Networks": "Autorisierte Netzwerke", "Autoconfigure IPv6": "IPv6 automatisch konfigurieren", "Automatic update check failed. Please check system network settings.": "Die automatische Update-Überprüfung ist fehlgeschlagen, bitte überprüfen Sie die Netzwerkeinstellungen ihres Systems.", - "Automatically reboot the system after the update is applied.": "Das System automatisch neustarten, nachdem das Update angewendet wurde.", "Automatically stop the script or command after the specified seconds.": "Stoppen Sie das Skript oder den Befehl nach den angegebenen Sekunden automatisch.", "Auxiliary Arguments": "Hilfsargumente", "Auxiliary Groups": "Hilfsgruppen", @@ -4687,7 +4690,6 @@ "Read": "Lesen", "Read Errors": "Lesefehler", "Read-only": "Nur lesen", - "Reboot After Update": "Neustart nach dem Update", "Rebuild Directory Service Cache": "Verzeichnisdienstcache neu erstellen", "Recommended when Max. Poll is greater than 10. Only use on personal NTP servers or those under direct control. Do not enable when using public NTP servers.": "Empfohlen bei Max. Umfrage größer als 10 ist. Nur auf persönlichen NTP-Servern oder solchen unter direkter Kontrolle verwenden. Aktivieren Sie nicht wenn Sie öffentliche NTP-Server verwenden.", "Recursive": "Rekursive", @@ -4898,7 +4900,6 @@ "Set to also replicate all snapshots contained within the selected source dataset snapshots. Unset to only replicate the selected dataset snapshots.": "Wird so eingestellt, dass auch alle Snapshots in den ausgewählten Quell-Dataset-Snapshots repliziert werden. Wird nicht festgelegt, um nur die ausgewählten Dataset-Snapshots zu replizieren.", "Set to attempt to reduce latency over slow networks.": "Legen Sie den Versuch fest, die Latenz in langsamen Netzwerken zu verringern.", "Set to automatically create the defined Remote Path if it does not exist.": "Legen Sie fest, dass der definierte Remote-Pfad wenn er nicht vorhanden ist, automatisch erstellt wird.", - "Set to boot a debug kernel after the next system reboot.": "Legen Sie fest, dass nach dem nächsten Systemneustart ein Debug-Kernel gestartet wird.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Wird so festgelegt, dass eine neue primäre Gruppe mit demselben Namen wie der Benutzer erstellt wird. Heben Sie das Festlegen auf, um eine vorhandene Gruppe für den Benutzer auszuwählen.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Legen Sie fest, dass bestimmt wird, ob das System an einer Browserwahl teilnimmt. Lassen Sie das Festlegen unfestgelegt, wenn das Netzwerk einen AD- oder LDAP-Server enthält oder wenn Vista- oder Windows 7-Computer vorhanden sind.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Deaktivieren Sie das Zwischenspeichern von AD-Benutzern und -Gruppen. Dies kann hilfreich sein, wenn keine Bindung an eine Domäne mit einer großen Anzahl von Benutzern oder Gruppen möglich ist.", @@ -5049,7 +5050,6 @@ "Update File Temporary Storage Location": "Aktualisiere den Pfad des temporären Speicherortes", "Update License": "Aktualisiere Lizenzen", "Update in Progress": "Aktualisierung wird durchgeführt", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Aktualisierung erfolgreich. Bitte führen Sie einen Neustart zur Aktivierung des Updates durch. Jetzt neu starten?", "Updates successfully downloaded": "Updates erfolgreich heruntergeladen", "Upgrade Pool": "Aktualisiere Pool", "Upgrading...": "Wird hochgeladen ...", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 74c46c1a612..12aca3a249a 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -46,6 +46,7 @@ "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.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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.": "", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", @@ -203,7 +204,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -232,6 +233,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Service Not Configured": "", @@ -297,6 +299,7 @@ "Auto Refresh": "", "Auto TRIM": "", "Automated Disk Selection": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Apps": "", "Available Memory": "", @@ -1578,7 +1581,7 @@ "Notifications": "", "Notransfer Timeout": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -1782,7 +1785,6 @@ "Reboot": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", "Recommended Apps": "", @@ -1843,8 +1845,8 @@ "Reporting Write": "", "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -1866,6 +1868,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Service": "", @@ -1873,6 +1876,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -2118,6 +2122,7 @@ "Set password for TrueNAS administrative user:": "", "Set the domain name to the username. Unset to prevent name collisions when Allow Trusted Domains is set and multiple domains use the same username.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to include child datasets and zvols of the chosen dataset.": "", "Set to inhibit some syslog diagnostics to avoid error messages. See exports(5) for examples.": "", @@ -2414,13 +2419,14 @@ "The pool {pool}is in the database but not connected to the machine. If it was exported by mistake, reconnect the hardware and use Import Pool.

": "", "The product of vCPUs, cores and threads must not exceed {maxVcpus} on this system.": "", "The standby controller will be automatically restarted to finalize the update. Apply updates and restart the standby controller?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", "The value is out of range. Enter a value between {min} and {max}.": "", "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -2548,7 +2554,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "Unit": "", "Unix NSS Info": "", @@ -2561,7 +2567,7 @@ "Unlock Child Encrypted Roots": "", "Unlock Pool": "", "Unlocked": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -2582,6 +2588,7 @@ "Update Release Notes": "", "Update Software": "", "Update System": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -2960,7 +2967,6 @@ "Standard uses the sync settings that have been requested by the client software, Always waits for data writes to complete, and Disabled never waits for writes to complete.": "Estándar utiliza la configuración de sincronización solicitada por el software del cliente, Siempre espera a que se completen las escrituras de datos y Dehabilitado nunca espera a que se completen las escrituras.", "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global es un nombre reservado que no se puede usar como nombre compartido. Ingrese un nombre compartido diferente.", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

La inclusión de la semilla secreta de contraseña permite usar este archivo de configuración con un nuevo dispositivo de arranque. Esto también descifra todas las contraseñas del sistema para su reutilización cuando se carga el archivo de configuración.


¡Mantenga el archivo de configuración seguro y protéjalo del acceso no autorizado!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

¡El sistema se reiniciará para realizar esta operación!

Todas las contraseñas se restablecen cuando el archivo de la base de datos de configuración cargada se guardó sin la Semilla de contraseña secreta.

", "Dataset: ": "Conjunto de datos: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Un token de acceso de usuario para Box. Un token de acceso permite a Box verificar que una solicitud pertenece a una sesión autorizada. Token de ejemplo: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "Se ha enviado un mensaje con instrucciones de verificación a la nueva dirección de correo electrónico. Verifique la dirección de correo electrónico antes de continuar.", @@ -3141,7 +3147,6 @@ "Apply permissions to child datasets": "Aplicar permisos a conjuntos de datos secundarios", "Apply the same quota critical alert settings as the parent dataset.": "Aplique la misma configuración de alerta crítica de cuota que el conjunto de datos primario.", "Apply the same quota warning alert settings as the parent dataset.": "Aplique la misma configuración de alerta de advertencia de cuota que el conjunto de datos primario.", - "Apply updates and reboot system after downloading.": "Aplique actualizaciones y reinicie el sistema después de la descarga.", "Apps": "Aplicaciones", "Apr": "Abril", "Archive": "Archivo", @@ -3177,7 +3182,6 @@ "Autoconfigure IPv6": "Autoconfigurar IPv6", "Automatic update check failed. Please check system network settings.": "Error en la verificación de actualización automática. Verifique la configuración de red del sistema.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Se rellena automáticamente con el nombre de host original del sistema. Este nombre está limitado a 15 caracteres y no puede ser el nombre Grupo de trabajo.", - "Automatically reboot the system after the update is applied.": "Reinicia automáticamente el sistema después de aplicar la actualización.", "Automatically stop the script or command after the specified seconds.": "Detiene automáticamente el script o comando después de los segundos especificados.", "Auxiliary Arguments": "Argumentos auxiliares", "Auxiliary Groups": "Grupos auxiliares", @@ -4404,7 +4408,6 @@ "Read Errors": "Errores de lectura", "Read-only": "Sólo lectura", "Realm": "Reino", - "Reboot After Update": "Reiniciar después de la actualización", "Rebuild Directory Service Cache": "Reconstruir caché del servicio de directorio", "Recommended block size based on pool topology:": "Tamaño de bloque recomendado según la topología del grupo:", "Recommended when Max. Poll is greater than 10. Only use on personal NTP servers or those under direct control. Do not enable when using public NTP servers.": "Recomendado cuando Max. La encuesta es mayor que 10. Úselo solo en servidores NTP personales o bajo control directo. No habilite cuando use servidores NTP públicos.", @@ -4661,7 +4664,6 @@ "Set to also replicate all snapshots contained within the selected source dataset snapshots. Unset to only replicate the selected dataset snapshots.": "Configure también para replicar todas las instantáneas contenidas en las instantáneas del conjunto de datos de origen seleccionado. Desarmar para replicar solo las instantáneas seleccionadas del conjunto de datos.", "Set to attempt to reduce latency over slow networks.": "Configurado para intentar reducir la latencia en redes lentas.", "Set to automatically create the defined Remote Path if it does not exist.": "Configure para crear automáticamente la Ruta remota definida si no existe.", - "Set to boot a debug kernel after the next system reboot.": "Configure para arrancar un núcleo de depuración después del próximo reinicio del sistema.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Establezca para crear un nuevo grupo primario con el mismo nombre que el usuario. Desarmar para seleccionar un grupo existente para el usuario.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Establezca para determinar si el sistema participa en una elección de navegador. Deje sin configurar cuando la red contiene un servidor AD o LDAP, o cuando halla máquinas con Vista o Windows 7.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Establecer para deshabilitar el almacenamiento en caché de usuarios y grupos de AD. Esto puede ayudar cuando no puede vincularse a un dominio con una gran cantidad de usuarios o grupos.", @@ -4892,7 +4894,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "El conjunto de datos del sistema se actualizará y se reiniciará el servicio SMB. Esto provocará una interrupción temporal de cualquier conexión SMB activa.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "El sistema restringe la creación de un zvol que lleva al grupo a más del 80% de su capacidad. Establezca para forzar la creación de zvol ( NO recomendado ).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "El sistema utiliza un certificado autofirmado para habilitar conexiones de interfaz web encriptadas. Para cambiar el certificado predeterminado, seleccione un certificado diferente que se creó o importó en el menú Certificados.", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "El sistema se reiniciará y no estará disponible brevemente mientras se aplican las actualizaciones. ¿Aplicar actualizaciones y reiniciar?", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "El tiempo en segundos que el sistema espera a que la VM se apague limpiamente. Durante el apagado del sistema, el sistema inicia el apagado de la máquina virtual después de que haya expirado el tiempo de espera de apagado.", "The update file is temporarily stored here before being applied.": "El archivo de actualización se almacena temporalmente aquí antes de aplicarse.", "The user account Email address to use for the envelope From email address. The user account Email in Accounts > Users > Edit must be configured first.": "La dirección de Correo electrónico de la cuenta de usuario a utilizar para la dirección de correo electrónico De del sobre. La cuenta de usuario Correo electrónico en Cuentas> Usuarios> Editar debe configurarse primero.", @@ -4997,7 +4998,6 @@ "Update TrueCommand Settings": "Actualizar la configuración de TrueCommand", "Update available": "Actualización disponible", "Update in Progress": "Actualización en progreso", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Actualización exitosa. Reinicie para que la actualización surta efecto. ¿Reinicie ahora?", "Updates Available": "Actualizaciones disponibles", "Updates successfully downloaded": "Actualizaciones descargadas exitosamente", "Updating": "Actualizando", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index f997a1c9a9d..6a970403b56 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -82,7 +82,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -374,7 +374,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -421,7 +421,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -511,7 +511,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2645,6 +2645,7 @@ "Notifications": "", "Notransfer Timeout": "", "Nov": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2974,7 +2975,6 @@ "Reason": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3082,8 +3082,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3114,6 +3114,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3124,6 +3125,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3529,7 +3531,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4025,7 +4027,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4038,7 +4040,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "There are no alerts.": "", "There are no records to show.": "", @@ -4222,7 +4224,7 @@ "Unassigned Disks": "", "Unavailable": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4244,7 +4246,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4275,7 +4277,7 @@ "Update System": "", "Update TrueCommand Settings": "", "Update available": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -4841,7 +4843,6 @@ "No options": "No hay opciones", "Not Shared": "No compartidos", "Now": "Actual", - "Now/Reboot": "Actual/Reinicio", "Number of simultaneous file transfers. Enter a number based on the available bandwidth and destination system performance. See rclone --transfers.": "Number of simultaneous file transfers. Enter a number based on the available bandwidth and destination system performance. See rclone --transfers.", "OS Version": "Versión del Sistema Operativo", "Offline": "Fuera de línea", @@ -4872,7 +4873,6 @@ "Quotas updated": "Cuotas actualizadas", "Read": "Leer", "Reboot": "Reinicio", - "Reboot After Update": "Reiniciar despues de actualizar", "Refresh": "Actualizar", "Region": "Región", "Region name - optional (rclone documentation).": "Region name - optional (rclone documentation).", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 9bd2486d799..c802fe40e1d 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -6,6 +6,7 @@ "1m Average": "", "2FA": "", "2FA Settings": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "ACL": "", "ACL Mode": "", "ACL Types & ACL Modes": "", @@ -26,6 +27,7 @@ "Admins": "", "Aliases": "", "Always Chroot": "", + "An update is already applied. Please restart the system.": "", "Api Key": "", "App": "", "App Info": "", @@ -37,6 +39,7 @@ "Application Memory": "", "Application Network": "", "Applied Dataset Quota": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Write": "", @@ -53,6 +56,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Backblaze B2": "", "Backup": "", "Backup Config": "", @@ -477,6 +481,7 @@ "No jobs running.": "", "Notes": "", "Notifications": "", + "Now/Restart": "", "Offload Read": "", "Offload Write": "", "Ok": "", @@ -567,14 +572,16 @@ "Reporting Read": "", "Reporting Write": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Reservation": "", "Reservation (in GiB)": "", "Reserved for Dataset": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart Standby": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -675,6 +682,7 @@ "Set email": "", "Set new password": "", "Set password for TrueNAS administrative user:": "", + "Set to boot a debug kernel after the next system restart.": "", "Sharing Admin": "", "Sharing NFS Read": "", "Sharing NFS Write": "", @@ -790,6 +798,8 @@ "Tenant Domain": "", "Terminal": "", "Test": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", + "The {service} service is running and will auto-start after a system restart.": "", "Thick": "", "Ticket": "", "Time": "", @@ -821,18 +831,19 @@ "UPS Stats": "", "UPS Utilization": "", "URL": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unix NSS Info": "", "Unix Primary Group": "", "Unix Socket": "", "Unknown PID": "", "Unlink": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Update All": "", "Update Dashboard": "", "Update Interval": "", "Update Members": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updating custom app": "", "Usage Collection": "", "Usages": "", @@ -1026,7 +1037,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global est un nom réservé qui ne peut pas être utilisé comme nom de partage. Veuillez entrer un nom de partage différent.", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

Les GPU suivants ont actuellement été isolés :

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Inclure le Password Secret Seed permet d'utiliser ce fichier de configuration avec un nouveau périphérique de démarrage. Cela déchiffre également tous les mots de passe système pour les réutiliser lorsque le fichier de configuration est téléchargé.


Conservez le fichier de configuration en lieu sûr et protégez-le contre tout accès non autorisé !", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

Le système redémarre pour effectuer cette opération !

Tous les mots de passe sont réinitialisés lorsque le fichier de base de données de configuration téléchargé a été enregistré sans le Password Secret Seed

", "Dataset: ": "Dataset: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Un jeton d'accès utilisateur pour Box. Un jeton d'accès permet à Box de vérifier qu'une requête appartient à une session autorisée. Exemple de jeton : T9cE5asGnuyYCCqIZFoWjFoWjFHvNbvvqVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "Un message avec instructions de vérification a été envoyé à la nouvelle adresse e-mail. Veuillez vérifier l’adresse e-mail avant de continuer.", @@ -1323,7 +1333,6 @@ "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "Un boîtier doit être sélectionné lorsque « Limiter le volume à un seul boîtier » est activé.", "An error occurred while sending the review. Please try again later.": "Une erreur s'est produite lors de l'envoi de l'avis. Veuillez réessayer plus tard.", "An instance of this app already installed. Click the badge to see installed apps.": "Une instance de cette application déjà installée. Cliquez sur le badge pour voir les applications installées.", - "An update is already applied. Please reboot the system.": "Une mise à jour est déjà appliquée. Veuillez redémarrer le système.", "Anonymous User Download Bandwidth": "Bande passante (download) d'un utilisateur anonyme", "Anonymous User Upload Bandwidth": "Bande passante (upload) d'un utilisateur anonyme", "Any notes about initiators.": "Des notes sur les initiateurs.", @@ -1362,7 +1371,6 @@ "Apply permissions to child datasets": "Appliquer les autorisations aux datasets enfants", "Apply the same quota critical alert settings as the parent dataset.": "Appliquez les mêmes paramètres d'alerte critique de quota qu'au dataset parent.", "Apply the same quota warning alert settings as the parent dataset.": "Appliquer les mêmes paramètres d'alerte d'avertissement de quota qu'au dataset parent.", - "Apply updates and reboot system after downloading.": "Appliquer les mises à jour et redémarrer le système après le téléchargement.", "Apps": "Applications", "Apps Service Not Configured": "Service d'applications non configuré", "Apps Service Pending": "Service d'applications en attente", @@ -1447,7 +1455,6 @@ "Automated Disk Selection": "Sélection automatisée de disque", "Automatic update check failed. Please check system network settings.": "La vérification de la mise à jour automatique a échoué. Veuillez vérifier les paramètres réseau du système.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Automatiquement rempli avec le nom d'hôte d'origine du système. Ce nom est limité à 15 caractères et ne peut pas être le nom du Groupe de travail.", - "Automatically reboot the system after the update is applied.": "Redémarrez automatiquement le système après l'application de la mise à jour.", "Automatically sets number of threads used by the kernel NFS server.": "Définit automatiquement le nombre de threads utilisés par le serveur NFS du Kernel.", "Automatically stop the script or command after the specified seconds.": "Arrête automatiquement le script ou la commande après les secondes spécifiées.", "Auxiliary Arguments": "Arguments auxiliaires", @@ -3375,7 +3382,6 @@ "Notransfer Timeout": "Délai de non-transfert", "Nov": "Nov", "Now": "Maintenant", - "Now/Reboot": "Maintenant/Redémarrer", "Num Pending Deletes": "Nombre de suppressions en attente", "Number of VDEVs": "Nombre de VDEVs", "Number of bytes": "Nombre d'octets", @@ -3670,10 +3676,8 @@ "Read-only": "Lecture seule", "Realm": "Domaine", "Reboot": "Redémarrer", - "Reboot After Update": "Redémarrer après la mise à jour", "Reboot of the other node is required for FIPS changes.": "Le redémarrage de l'autre nœud est requis pour les modifications FIPS.", "Reboot of this node is required for FIPS changes.": "Le redémarrage de ce nœud est requis pour les modifications FIPS.", - "Reboot standby TrueNAS controller": "Redémarrer le contrôleur TrueNAS en veille", "Rebuild Directory Service Cache": "Reconstruction du cache du service d'annuaire", "Received: {received}/s Sent: {sent}/s": "Reçu: {received}/s Envoyé: {sent}/s", "Recent Searches": "Recherches récentes", @@ -4130,7 +4134,6 @@ "Set to attempt to reduce latency over slow networks.": "Configuré pour tenter de réduire la latence sur les réseaux lents.", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "Définir pour configurer automatiquement l'IPv6. Une seule interface peut être configurée de cette manière.", "Set to automatically create the defined Remote Path if it does not exist.": "Configuré pour créer automatiquement le chemin distant défini s'il n'existe pas.", - "Set to boot a debug kernel after the next system reboot.": "Configuré pour démarrer un noyau de debug après le prochain redémarrage du système.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Configuré pour créer un nouveau groupe primaire portant le même nom que l'utilisateur. Désélectionnez pour sélectionner un groupe existant pour l'utilisateur.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Réglé pour déterminer si le système participe à une sélection de navigateur. Laisser désactivé lorsque le réseau contient un serveur AD ou LDAP, ou lorsque des machines Vista ou Windows 7 sont présentes.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Réglé pour désactiver la mise en cache des utilisateurs et des groupes AD. Cela peut être utile lorsqu'il est impossible de se lier à un domaine avec un grand nombre d'utilisateurs ou de groupes.", @@ -4542,7 +4545,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "Le dataset du système sera mis à jour et le service SMB redémarré. Cela causera une interruption temporaire de toutes les connexions SMB actives.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Le système limite la création d'un zvol qui porte la capacité du volume à plus de 80%. Réglé pour forcer la création du zvol (NON recommandé).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "Le système utilise un certificat auto-signé pour permettre les connexions chiffrées de l'interface web. Pour modifier le certificat par défaut, sélectionnez un autre certificat qui a été créé ou importé dans le menu Certificats.", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Le système redémarre et est brièvement indisponible lors de l'application des mises à jour. Appliquer les mises à jour et redémarrer ?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "Le ticket a été créé avec succès (voir lien ci-dessous), mais le fichier de debug n'a pas pu être joint. Veuillez télécharger le debug manuellement (Système → Avancé → Enregistrer le debug), le télécharger sur un service de stockage tiers et fournir un lien dans le commentaire du problème JIRA.", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "Temps en secondes pendant lequel le système attend que la VM s'arrête proprement. Pendant l'arrêt du système, le système déclenche la mise hors tension de la VM après l'expiration du délai d'arrêt.", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "Les valeurs d'heure auxquelles la tâche sera exécutée. Accepte les valeurs crontab(5) standard.

Symboles :
Une virgule (,) sépare les valeurs individuelles.
Un astérisque (*) signifie \"correspond à toutes les valeurs\".
Numéros avec trait d'union (1- 5) définit une plage de temps.
Une barre oblique (/) désigne un pas dans la valeur : */2 signifie toutes les deux minutes.

Exemple : 30-35 en minutes, 1, 14 en heures et */2 en jours signifie que la tâche s'exécutera de 1 h 30 à 1 h 35 et de 14 h 30 à 14 h 35 tous les deux jours.", @@ -4555,7 +4557,6 @@ "The {name} service is {status}": "Le service {name} est {status}", "The {service} service failed to start.": "Le service {service} n'a pas réussi à démarrer.", "The {service} service failed to stop.": "Le service {service} n'a pas réussi à s'arrêter.", - "The {service} service is running and will auto-start after a system reboot.": "Le service {service} est en cours d'exécution et démarrera automatiquement après un redémarrage du système.", "The {service} service is running.": "Le service {service} est en cours d'exécution.", "Theme": "Theme", "There are no alerts.": "Il n'y a aucune alerte.", @@ -4772,7 +4773,6 @@ "Update TrueCommand Settings": "Mettre à jour les paramètres de TrueCommand", "Update available": "Mise à jour disponible", "Update in Progress": "Mise-à-jour en cours", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Mise à jour réussie. Veuillez redémarrer pour que la mise à jour prenne effet. Redémarrer maintenant ?", "Updated 'Use as Home Share'": "Mise à jour 'Utiliser comme partage home'", "Updated Date": "Date de mise à jour", "Updates": "Mises à jour", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 194ce5c651b..388da480712 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -2,19 +2,23 @@ "": "", "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "", "1m Average": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Add Custom App": "", "Add to trusted store": "", "Adding, removing, or changing hardware components.": "", "Additional Parameters String": "", "Address Pool": "", "Address Pools": "", + "An update is already applied. Please restart the system.": "", "App Info": "", "App Network": "", "Application CPU Usage": "", "Application Information": "", "Application Memory": "", "Application Network": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", + "Automatically restart the system after the update is applied.": "", "Base": "", "Block I/O": "", "Block I/O read and writes": "", @@ -84,6 +88,7 @@ "No jobs running.": "", "No volume mounts": "", "Notes": "", + "Now/Restart": "", "Ok": "", "Override Admin Email": "", "Percentage of total core utilization": "", @@ -97,8 +102,10 @@ "Refresh Catalog": "", "Regularly scheduled system checks and updates.": "", "Remove iXVolumes": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", + "Restart After Update": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restoring backup": "", @@ -107,6 +114,7 @@ "Service started": "", "Service stopped": "", "Set password for TrueNAS administrative user:": "", + "Set to boot a debug kernel after the next system restart.": "", "Software Installation": "", "Specifies level of authentication and cryptographic protection. SYS or none should be used if no KDC is available. If a KDC is available, e.g. Active Directory, KRB5 is recommended. If desired KRB5I (integrity protection) and/or KRB5P (privacy protection) may be included with KRB5.": "", "Start service": "", @@ -116,12 +124,15 @@ "System Freeze": "", "System Overload": "", "System Update": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", + "The {service} service is running and will auto-start after a system restart.": "", "This dataset is used to store apps config and other container related data": "", "Troubleshooting Issues": "", - "Unexpected power loss necessitating a reboot.": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unexpected power loss necessitating a restart.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Update Members": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updating custom app": "", "Using 3rd party applications with TrueNAS extends its\n functionality beyond standard NAS use, which can introduce risks like data loss or system disruption.

\n iXsystems does not guarantee application safety or reliability, and such applications may not\n be covered by support contracts. Issues with core NAS functionality may be closed without\n further investigation if the same data or filesystems are accessed by these applications.": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", @@ -232,7 +243,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "Is ainm forchoimeádta é global nach féidir a úsáid mar scairainm. Cuir isteach ainm scaire eile le do thoil.", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

Faoi láthair tá na GPU(anna) seo a leanas aonraithe:

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Má chuirtear an Pasfhocal Rúnda san áireamh is féidir an comhad cumraíochta seo a úsáid le gléas tosaithe nua. Díchriptíonn sé seo gach pasfhocal córais lena athúsáid nuair a uaslódáiltear an comhad cumraíochta.


Coinnigh an comhad cumraíochta sábháilte agus é a chosaint ó rochtain neamhúdaraithe!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

Atosóidh an córas chun an oibríocht seo a dhéanamh!

Athshocraítear gach pasfhocal nuair a shábháladh an comhad bunachar sonraí cumraíochta uaslódáilte gan an Pasfhocal Rúnda Síl.

", "Dataset: ": "Tacar sonraí: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Comhartha Rochtana Úsáideora don Bhosca . Cuireann comhartha rochtana ar chumas Box a fhíorú go mbaineann iarratas le seisiún údaraithe. Comhartha samplach: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl .", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "Tá teachtaireacht le treoracha fíoraithe seolta chuig an seoladh ríomhphoist nua. Fíoraigh an seoladh ríomhphoist sula leanann tú ar aghaidh.", @@ -543,7 +553,6 @@ "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "Ní mór imfhálú a roghnú nuair atá 'Linn Teorainn go Imfhálú Aonair' cumasaithe.", "An error occurred while sending the review. Please try again later.": "Tharla earráid agus an léirmheas á sheoladh. Bain triail eile as ar ball.", "An instance of this app already installed. Click the badge to see installed apps.": "Sampla den aip seo atá suiteáilte cheana féin. Cliceáil ar an suaitheantas chun aipeanna suiteáilte a fheiceáil.", - "An update is already applied. Please reboot the system.": "Tá nuashonrú i bhfeidhm cheana féin. Atosaigh an córas le do thoil.", "Anonymous User Download Bandwidth": "Íosluchtaigh bandaleithead úsáideora gan ainm", "Anonymous User Upload Bandwidth": "Úsáideoir Gan Ainm Uaslódáil Bandaleithead", "Any notes about initiators.": "Nótaí ar bith faoi thionscnóirí.", @@ -587,7 +596,6 @@ "Apply permissions to child datasets": "Cuir ceadanna i bhfeidhm ar thacair sonraí leanaí", "Apply the same quota critical alert settings as the parent dataset.": "Cuir na socruithe foláirimh criticiúla cuóta céanna i bhfeidhm agus atá sa tacar sonraí tuismitheora.", "Apply the same quota warning alert settings as the parent dataset.": "Cuir na socruithe foláirimh cuóta céanna i bhfeidhm leis an tacar sonraí tuismitheora.", - "Apply updates and reboot system after downloading.": "Cuir nuashonruithe i bhfeidhm agus atosaigh an córas tar éis é a íoslódáil.", "Apps": "Feidhmchláir", "Apps Read": "Léigh Aipeanna", "Apps Service Not Configured": "Seirbhís Aipeanna Gan Cumrú", @@ -687,7 +695,6 @@ "Automated Disk Selection": "Roghnú Diosca Uathoibrithe", "Automatic update check failed. Please check system network settings.": "Theip ar sheiceáil nuashonraithe uathoibríoch. Seiceáil socruithe líonra an chórais le do thoil.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Uathainm bunaidh an chórais a bheith mar óstainm. Tá an t-ainm seo teoranta do 15 charachtar agus ní féidir ainm an Ghrúpa Oibre a bheith air.", - "Automatically reboot the system after the update is applied.": "Atosaigh an córas go huathoibríoch tar éis an nuashonrú a chur i bhfeidhm.", "Automatically sets number of threads used by the kernel NFS server.": "Socraíonn sé go huathoibríoch líon na snáitheanna a úsáideann an freastalaí NFS eithne.", "Automatically stop the script or command after the specified seconds.": "Stop an script nó an t-ordú go huathoibríoch tar éis na soicind sonraithe.", "Auxiliary Arguments": "Argóintí Cúnta", @@ -2970,7 +2977,6 @@ "Notransfer Timeout": "Teorainn Ama Notransfer", "Nov": "Samhain", "Now": "Anois", - "Now/Reboot": "Anois/Atosaigh", "Num Pending Deletes": "Uimhir Scriosta ar Feitheamh", "Number of VDEVs": "Líon VDEVanna", "Number of bytes": "Líon beart", @@ -3318,10 +3324,8 @@ "Realm": "Réimse", "Rear": "cúil", "Reboot": "Atosaigh", - "Reboot After Update": "Atosaigh Tar éis Nuashonrú", "Reboot of the other node is required for FIPS changes.": "Teastaíonn atosaigh an nód eile le haghaidh athruithe FIPS.", "Reboot of this node is required for FIPS changes.": "Tá gá leis an nód seo a atosú le haghaidh athruithe FIPS.", - "Reboot standby TrueNAS controller": "Atosaigh rialtóir TrueNAS fuireachas", "Rebuild Directory Service Cache": "Atógáil Taisce Seirbhíse Eolaire", "Received: {received}/s Sent: {sent}/s": "Faighte: {faighte}/s Seolta: {sent}/s", "Recent Searches": "Cuardach le Déanaí", @@ -3900,7 +3904,6 @@ "Set to attempt to reduce latency over slow networks.": "Socraigh chun iarracht a dhéanamh latency a laghdú thar líonraí mall.", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "Socraigh chun an IPv6 a chumrú go huathoibríoch. Ní féidir ach comhéadan amháin a chumrú ar an mbealach seo.", "Set to automatically create the defined Remote Path if it does not exist.": "Socraigh chun an Cianchonair shainithe a chruthú go huathoibríoch mura bhfuil sé ann.", - "Set to boot a debug kernel after the next system reboot.": "Socraigh chun eithne dífhabhtaithe a thosú tar éis an chéad atosaigh eile den chóras.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Socraigh chun bunghrúpa nua a chruthú leis an ainm céanna leis an úsáideoir. Díshuiteáil chun grúpa atá ann cheana a roghnú don úsáideoir.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Socraigh chun a chinneadh an bhfuil an córas rannpháirteach i dtoghchán brabhsálaí. Fág gan bheith socraithe nuair a bhíonn freastalaí AD nó LDAP sa líonra, nó nuair a bhíonn meaisíní Vista nó Windows 7 i láthair.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Socraigh chun taisceadh úsáideoirí AD agus grúpaí a dhíchumasú. Is féidir leis seo cabhrú nuair nach féidir leat ceangal a dhéanamh le fearann a bhfuil líon mór úsáideoirí nó grúpaí ann.", @@ -4418,7 +4421,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "Nuashonrófar tacar sonraí an chórais agus atosófar an tseirbhís SMB. Cuirfidh sé seo isteach go sealadach ar aon naisc gníomhacha SMB.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Cuireann an córas srian le zvol a chruthú a thugann an linn snámha go dtí cumas os cionn 80%. Socraigh chun cruthú an zvol a chruthú ( NÍ mholtar ).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "Úsáideann an córas teastas féin-shínithe chun naisc criptithe comhéadan gréasáin a chumasú. Chun an teastas réamhshocraithe a athrú, roghnaigh teastas eile a cruthaíodh nó a iompórtáladh sa roghchlár Deimhnithe .", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Atosóidh an córas agus ní bheidh sé ar fáil go hachomair agus nuashonruithe á gcur i bhfeidhm. Cuir nuashonruithe i bhfeidhm agus atosaigh?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "Cruthaíodh an ticéad go rathúil (féach an nasc thíos), ach níor éirigh leis an gcomhad dífhabhtaithe a cheangal. Íoslódáil an dífhabhtú de láimh le do thoil (Córas → Casta → Sábháil Dífhabhtaithe), uaslódáil chuig seirbhís stórála tríú páirtí é agus cuir nasc ar fáil sa trácht eisiúint JIRA.", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "An t-am i soicindí fanann an córas ar an VM a dhúnadh go glan. Le linn múchadh an chórais, cuireann an córas tús le cumhacht as an VM tar éis don teorainn ama múchta dul in éag.", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "Na luachanna ama a rithfidh an tasc. Glacann sé le luachanna caighdeánacha crontab(5) .

Siombailí:
Scarann camóg (,) luachanna aonair.
Ciallaíonn réiltín (*) "meaitseáil gach luach".
Socraíonn uimhreacha fleiscín (1-5) raon ama.
Ainmníonn slais (/) céim sa luach: */2 ciallaíonn gach nóiméad eile.

Sampla: 30-35 i Miontuairiscí, 1,14 in Uaireanta, agus */2 i Laethanta ciallaíonn sé go mbeidh an tasc ar siúl ar 1:30 - 1:35 AM agus 2:30 - 2:35 PM gach lá eile.", @@ -4431,7 +4433,6 @@ "The {name} service is {status}": "Is é {status} an tseirbhís {name}", "The {service} service failed to start.": "Theip ar an tseirbhís {service} a thosú.", "The {service} service failed to stop.": "Theip ar an tseirbhís {service} a stopadh.", - "The {service} service is running and will auto-start after a system reboot.": "Tá an tseirbhís {service} ag rith agus cuirfear tús leis go huathoibríoch tar éis atosaigh an chórais.", "The {service} service is running.": "Tá an tseirbhís {service} ag rith.", "Theme": "Téama", "There are no alerts.": "Níl aon foláirimh.", @@ -4685,7 +4686,6 @@ "Update TrueCommand Settings": "Nuashonraigh Socruithe TrueCommand", "Update available": "Nuashonrú ar fáil", "Update in Progress": "Nuashonrú ar Siúl", - "Update successful. Please reboot for the update to take effect. Reboot now?": "D'éirigh leis an nuashonrú. Atosaigh le do thoil le go dtiocfaidh an nuashonrú i bhfeidhm. Athbhútáil Anois?", "Updated 'Use as Home Share'": "Nuashonraithe 'Úsáid mar Roinn Baile'", "Updated Date": "Dáta Nuashonraithe", "Updates": "Nuashonruithe", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 45bc9515f00..3c424dce3a3 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -78,7 +78,7 @@ "Standard uses the sync settings that have been requested by the client software, Always waits for data writes to complete, and Disabled never waits for writes to complete.": "", "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.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -368,7 +368,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -409,6 +409,7 @@ "Apply To Users": "", "Apply User": "", "Apply the same quota warning alert settings as the parent dataset.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -497,6 +498,7 @@ "Auto TRIM": "", "Autoconfigure IPv6": "", "Automated Disk Selection": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Auxiliary Parameters (ups.conf)": "", "Auxiliary Parameters (upsd.conf)": "", @@ -2702,7 +2704,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3057,10 +3059,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3173,8 +3173,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3207,6 +3207,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3217,6 +3218,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3536,6 +3538,7 @@ "Service started": "", "Service stopped": "", "Set password for TrueNAS administrative user:": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to log authentication failures in /var/log/messages instead of the default of /var/log/samba4/log.smbd.": "", "Set to make the module read-only. No new ranges are allocated or new mappings created in the idmap pool.": "", "Set to override safety checks and add the disk to the pool.
WARNING: any data stored on the disk will be erased!": "", @@ -3594,7 +3597,9 @@ "Test": "", "Testing": "", "The TrueNAS Community Forums are the best place to ask questions and interact with fellow TrueNAS users.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The user account Email address to use for the envelope From email address. The user account Email in Accounts > Users > Edit must be configured first.": "", + "The {service} service is running and will auto-start after a system restart.": "", "Thick": "", "Ticket": "", "Time Machine": "", @@ -3620,10 +3625,11 @@ "UPS": "", "URL": "", "UTC": "", - "Unexpected power loss necessitating a reboot.": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unexpected power loss necessitating a restart.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Update Members": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updating custom app": "", "Use Custom ACME Server Directory URI": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", @@ -3770,7 +3776,6 @@ "Apply permissions recursively to all directories and files within the current dataset.": "Applicare i permessi in modo ricorsivo a tutte le directory e ai files all'interno del corrente dataset.", "Apply permissions to child datasets": "Applicare i permessi ai dataset figli", "Apply the same quota critical alert settings as the parent dataset.": "Applicare le stesse impostazioni di avviso di quota critica del dataset padre.", - "Apply updates and reboot system after downloading.": "Applicare gli aggiornamenti e riavviare il sistema dopo il download.", "Archive": "Archivio", "Are you sure you want to sync from peer?": "Sei sicuro di voler sincronizzare dal peer?", "Are you sure you want to sync to peer?": "Sei sicuro di voler sincronizzare con il peer?", @@ -3783,7 +3788,6 @@ "Authorized Networks": "Reti Autorizzate", "Automatic update check failed. Please check system network settings.": "Controllo aggiornamento automatico fallito. Verificare le impostazioni di rete del sistema.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Popolato automaticamente con il nome originale del host del sistema. Questo nome è limitato a 15 caratteri e non può essere il Workgroup nome.", - "Automatically reboot the system after the update is applied.": "Riavviare automaticamente il sistema dopo l'applicazione dell'aggiormamento.", "Automatically stop the script or command after the specified seconds.": "Arresta automaticamente lo script o il comando dopo i secondi specificati.", "Auxiliary Arguments": "Argomenti Ausiliari", "Auxiliary Groups": "Gruppi Ausiliari", @@ -4049,7 +4053,6 @@ "Set to attempt to reduce latency over slow networks.": "Imposta per tentare di ridurre la latenza su reti lente.", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "Imposta per configurare automaticamente l'IPv6. Solo un'interfaccia può essere configurata in questo modo.", "Set to automatically create the defined Remote Path if it does not exist.": "Imposta per creare automaticamente il Remote Path definito se non esiste.", - "Set to boot a debug kernel after the next system reboot.": "Imposta per avviare un kernel di debug dopo il prossimo riavvio del sistema.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Imposta per creare un nuovo gruppo principale con lo stesso nome dell'utente. Deseleziona per selezionare un gruppo esistente per l'utente.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Imposta per determinare se il sistema partecipa a un'elezione del browser. Lascia deselezionato quando la rete contiene un server AD o LDAP, o quando sono presenti macchine Vista o Windows 7.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Imposta per disabilitare la memorizzazione nella cache degli utenti e dei gruppi AD. Questo può aiutare quando non è possibile collegarsi a un dominio con un numero elevato di utenti o gruppi.", @@ -4518,7 +4521,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "Il dataset di sistema verrà aggiornato e il servizio SMB verrà riavviato. Ciò causerà un'interruzione temporanea di tutte le connessioni SMB attive.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Il sistema limita la creazione di uno zvol che porta il pool a oltre l'80% della capacità. Imposta questa opzione per forzare la creazione dello zvol (NON consigliato).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "Il sistema utilizza un certificato autofirmato per abilitare le connessioni crittografate all'interfaccia web. Per modificare il certificato predefinito, seleziona un certificato diverso che è stato creato o importato nel menu Certificati.", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Il sistema si riavvierà e sarà brevemente non disponibile durante l'applicazione degli aggiornamenti. Applicare gli aggiornamenti e riavviare?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "Il ticket è stato creato correttamente (vedi link sotto), ma non è stato possibile allegare il file di debug. Scarica manualmente il debug (Sistema → Avanzate → Salva debug), caricalo su un servizio di archiviazione di terze parti e fornisci un link nel commento del problema su JIRA.", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "Il tempo in secondi che il sistema attende affinché la VM si spenga correttamente. Durante lo spegnimento del sistema, il sistema avvia lo spegnimento della VM dopo che il timeout di spegnimento è scaduto.", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "I valori di tempo in cui verrà eseguita l'attività. Accetta valori standard crontab(5).

Simboli:
Una virgola (,) separa i singoli valori.
Un asterisco (*) significa \"corrispondi a tutti i valori\".
I numeri con trattino (1-5) impostano un intervallo di tempo.
Una barra (/) indica un passaggio nel valore: */2 significa ogni due minuti.

Esempio: 30-35 in minuti, 1,14 in ore e */2 in giorni significa che l'attività verrà eseguita dalle 1:30 alle 1:35 di mattina e dalle 2:30 alle 2:35 di pomeriggio a giorni alterni.", @@ -4530,7 +4532,6 @@ "The {name} service is {status}": "Il servizio {name} è {status}", "The {service} service failed to start.": "Impossibile avviare il servizio {service}.", "The {service} service failed to stop.": "Impossibile arrestare il servizio {service}.", - "The {service} service is running and will auto-start after a system reboot.": "Il servizio {service} è in esecuzione e si avvierà automaticamente dopo il riavvio del sistema.", "The {service} service is running.": "Il servizio {service} è in esecuzione.", "Theme": "Tema", "There are no alerts.": "Non ci sono avvisi.", @@ -4761,7 +4762,6 @@ "Update TrueCommand Settings": "Aggiorna Impostazioni TrueCommand", "Update available": "Aggiornamento disponibile", "Update in Progress": "Aggiornamento in corso", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Aggiornamento riuscito. Riavvia affinché l'aggiornamento abbia effetto. Riavviare ora?", "Updated 'Use as Home Share'": "Aggiornato 'Utilizza come Home Share'", "Updated Date": "Data di aggiornamento", "Updates": "Aggiornamenti", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 8343fa0eb07..7c9ffcf17b9 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -71,7 +71,7 @@ "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.": "", "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -344,7 +344,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any system service can communicate externally.": "", @@ -383,6 +383,7 @@ "Apply To Groups": "", "Apply To Users": "", "Apply User": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -470,6 +471,7 @@ "Auto Refresh": "", "Auto TRIM": "", "Automated Disk Selection": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Apps": "", "Available Memory": "", @@ -2575,7 +2577,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2905,10 +2907,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3010,8 +3010,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -3035,6 +3035,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3044,6 +3045,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3436,6 +3438,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", "Set to display image upload options.": "", @@ -3900,6 +3903,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -3911,7 +3915,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4103,7 +4107,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4126,7 +4130,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4158,7 +4162,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -4676,7 +4680,6 @@ "Apply permissions to child datasets": "子データセットに対して権限を適用", "Apply the same quota critical alert settings as the parent dataset.": "親データセットと同じクォータクリティカルアラート設定を適用します。", "Apply the same quota warning alert settings as the parent dataset.": "親データセットと同じクォータ警告アラート設定を適用します。", - "Apply updates and reboot system after downloading.": "ダウンロード後、アップデートを適用して再起動する", "Archive": "アーカイブ", "Are you sure you want to sync from peer?": "ピアから同期してもよろしいですか?", "Are you sure you want to sync to peer?": "ピアと同期しますか?", @@ -4690,7 +4693,6 @@ "Autoconfigure IPv6": "IPv6自動設定", "Automatic update check failed. Please check system network settings.": "自動更新チェックに失敗しました。ネットワークの設定を確認してください。", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "システムの元のホスト名が自動的に入力されます。 この名前は15文字に制限されており、Workgroup名にすることはできません。", - "Automatically reboot the system after the update is applied.": "更新の適用後、システムを自動的に再起動します。", "Automatically stop the script or command after the specified seconds.": "指定した秒数後にスクリプトまたはコマンドを自動的に停止します。", "Auxiliary Arguments": "追加引数", "Auxiliary Groups": "補助グループ", @@ -5029,7 +5031,6 @@ "Serial or USB port connected to the UPS. To automatically detect and manage the USB port settings, select auto.

When an SNMP driver is selected, enter the IP address or hostname of the SNMP UPS device.": "UPSに接続されたシリアルまたはUSBポート。 USBポート設定を自動的に検出および管理するには、autoを選択します。

SNMPドライバーを選択したら、SNMP UPSデバイスのIPアドレスまたはホスト名を入力します。", "Services": "サービス", "Set to allow the client to mount any subdirectory within the Path.": "クライアントがPath内の任意のサブディレクトリをマウントできるように設定します。", - "Set to boot a debug kernel after the next system reboot.": "次回のシステム再起動後にデバッグカーネルを起動するように設定します。", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "ユーザーと同じ名前で新しいプライマリグループを作成するように設定します。チェックを外すことで、ユーザーの既存のグループを選択することができるようになります。", "Set to enable DHCP. Leave unset to create a static IPv4 or IPv6 configuration. Only one interface can be configured for DHCP.": "DHCPを有効にするように設定します。 静的IPv4またはIPv6構成を作成するには、チェックを外します。 DHCP用に設定できるインターフェイスは1つだけです。", "Set to generate and attach to the new issue a report containing an overview of the system hardware, build string, and configuration. This can take several minutes.": "システムハードウェア、ビルド文字列、および構成の概要を含むレポートを生成して新しい問題に添付するように設定します。 これには数分かかる場合があります。", @@ -5092,7 +5093,6 @@ "The message to show when a user logs in with SSH.": "ユーザーがSSHでログインしたときに表示するメッセージです。", "The minimum polling interval, in seconds, as a power of 2. For example, 6 means 2^6, or 64 seconds. The default is 6, minimum value is 4.": "最小ポーリング間隔、秒単位、2の累乗として設定されます。たとえば、6は2は2の6乗(2^6)、つまり64秒を意味します。デフォルトは6、最小値は4です。", "The number of bits in the key used by the cryptographic algorithm. For security reasons, a minimum key length of 2048 is recommended.": "暗号化アルゴリズムで使用されるキーのビット数。 セキュリティ上の理由から、2048の最小キー長が推奨されます。", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "アップデートを適用している間は、システムが再起動され、一時的に使用できなくなります。アップデートを適用して再起動しますか?", "The user account Email address to use for the envelope From email address. The user account Email in Accounts > Users > Edit must be configured first.": "エンベロープのFrom 電子メールアドレスに使用するユーザーアカウントのEmailアドレス。ユーザーアカウントのEmail は、 Accounts > Users > Edit を最初に構成する必要があります。", "Third DNS server.": "三番目のDNSサーバーです。", "Third-party Cloud service providers. Choose a provider to configure connection credentials.": "サードパーティのクラウドサービスプロバイダー。 接続資格情報を構成するプロバイダーを選択します。", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index e904258c5f0..6e100f8ef25 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -13,6 +13,7 @@ "WARNING: Rolling the dataset back destroys data on the dataset and can destroy additional snapshots that are related to the dataset. This can result in permanent data loss! Do not roll back until all desired data and snapshots are backed up.": "", "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.": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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.": "", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", @@ -123,7 +124,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -145,6 +146,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Service Not Configured": "", @@ -193,6 +195,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Memory": "", "Back to Discover Page": "", @@ -2467,7 +2470,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2822,10 +2825,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -2938,8 +2939,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -2972,6 +2973,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -2982,6 +2984,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3416,7 +3419,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -3936,7 +3939,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -3949,7 +3952,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4149,7 +4152,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4173,7 +4176,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4208,7 +4211,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -4751,7 +4754,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global은 사용할 수 없는 예약된 이름으로, 공유 이름으로 사용할 수 없습니다. 다른 공유 이름을 입력하세요.", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

현재 다음 GPU가 격리되어 있습니다:

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

비밀번호 시크릿 시드를 포함하면 이 구성 파일을 새로운 부트 장치와 함께 사용할 수 있습니다. 이는 구성 파일이 업로드될 때 시스템의 모든 비밀번호를 복호화하여 재사용할 수 있게 합니다.


구성 파일을 안전하게 보관하고 무단 접근으로부터 보호하세요!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

이 작업을 수행하기 위해 시스템이 다시 부팅됩니다!

비밀번호 보안 시드 없이 구성 데이터베이스 파일이 저장되면 모든 비밀번호가 재설정됩니다.

", "Dataset: ": "데이터셋:", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "새 이메일 주소로 확인 지침이 전송되었습니다. 계속하기 전에 이메일 주소를 확인해 주십시오.", @@ -4986,7 +4988,6 @@ "Apply permissions to child datasets": "하위 데이터셋에 권한 적용", "Apply the same quota critical alert settings as the parent dataset.": "부모 데이터셋의 경고 임계값 설정과 동일한 할당량 경고 설정 적용", "Apply the same quota warning alert settings as the parent dataset.": "부모 데이터셋의 경고 임계값 설정과 동일한 할당량 심각 경고 설정 적용", - "Apply updates and reboot system after downloading.": "다운로드 후 업데이트 적용 및 시스템 재부팅", "Apps": "앱", "Apr": "4월", "Archive": "아카이브", @@ -5039,7 +5040,6 @@ "Automated Disk Selection": "자동 디스크 선택", "Automatic update check failed. Please check system network settings.": "자동 업데이트 확인이 실패했습니다. 시스템 네트워크 설정을 확인하세요.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "시스템의 원래 호스트 이름으로 자동으로 채워집니다. 이 이름은 15자로 제한되며 워크그룹 이름일 수 없습니다.", - "Automatically reboot the system after the update is applied.": "업데이트 적용 후 시스템을 자동으로 다시 시작합니다.", "Automatically stop the script or command after the specified seconds.": "지정된 시간(초) 후에 스크립트 또는 명령을 자동으로 중지합니다.", "Auxiliary Arguments": "보조 인자", "Auxiliary Groups": "보조 그룹", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 775a5fb8d2b..15840b21557 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -80,7 +80,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -394,7 +394,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -444,7 +444,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -541,7 +541,7 @@ "Autoconfigure IPv6": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2885,7 +2885,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3240,10 +3240,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3356,8 +3354,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3390,6 +3388,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3400,6 +3399,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3834,7 +3834,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4354,7 +4354,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4367,7 +4367,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4567,7 +4567,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4591,7 +4591,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4626,7 +4626,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index e04f9dc046f..d314ba07b51 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -10,6 +10,7 @@ "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.": "", "WARNING: Rolling the dataset back destroys data on the dataset and can destroy additional snapshots that are related to the dataset. This can result in permanent data loss! Do not roll back until all desired data and snapshots are backed up.": "", "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.": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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 Editor": "", @@ -98,7 +99,7 @@ "Alternatively, you can start by configuring VDEVs in the wizard first and then opening Manual selection to make adjustments.": "", "Always Chroot": "", "An instance of this app already installed. Click the badge to see installed apps.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -119,6 +120,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Arbitrary Text": "", "Asymmetric Logical Unit Access (ALUA)": "", @@ -131,6 +133,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Available Memory": "", "Back to Discover Page": "", "Back to Support": "", @@ -753,6 +756,7 @@ "None requested": "", "Not Shared": "", "Notes": "", + "Now/Restart": "", "Ok": "", "One half widget and two quarter widgets below": "", "One large widget": "", @@ -850,8 +854,8 @@ "Report Bug": "", "Reporting Exporter": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reserved for Dataset": "", "Reserved for Dataset & Children": "", @@ -860,12 +864,14 @@ "Reset Zoom": "", "Reset password": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Standby": "", "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -978,6 +984,7 @@ "Set email": "", "Set new password": "", "Set password for TrueNAS administrative user:": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to include child datasets and zvols of the chosen dataset.": "", "Settings Menu": "", @@ -1090,6 +1097,8 @@ "The length of the field should be at least {minLength}": "", "The length of the field should be no more than {maxLength}": "", "The list is empty.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", + "The {service} service is running and will auto-start after a system restart.": "", "There are no alerts.": "", "These disks do not support S.M.A.R.T. tests:": "", "These running processes are using {datasetName}:": "", @@ -1145,11 +1154,11 @@ "UPS Utilization": "", "URL": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unix NSS Info": "", "Unix Primary Group": "", "Unknown PID": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unsupported Hardware": "", @@ -1162,6 +1171,7 @@ "Update Release Notes": "", "Update Software": "", "Update System": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updates available": "", "Updating custom app": "", "Upgrade All Selected": "", @@ -1384,7 +1394,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global is een gereserveerde naam die niet als sharenaam kan worden gebruikt. Een andere sharenaam invoeren.", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

Momenteel zijn de volgende GPU('s) geïsoleerd:

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Het insluiten van de geheime waarde van het wachtwoord maakt het gebruik van dit configuratiebestand met een nieuw opstartapparaat mogelijk. Hiermee worden ook alle systeemwachtwoorden ontsleuteld voor hergebruik wanneer het configuratiebestand wordt geüpload.


Bewaar het configuratiebestand veilig en bescherm het tegen onbevoegde toegang!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

Het systeem zal opnieuw booten om deze bewerking uit te voeren!

Alle wachtwoorden worden opnieuw ingesteld wanneer het geüploade configuratiedatabasebestand werd opgeslagen zonder de Password Secret Seed.

", "Dataset: ": "Dataset: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Een gebruikerstoegangstoken voor Box. Met een toegangstoken kan Box verifiëren dat een verzoek erbij hoort naar een geautoriseerde sessie. Voorbeeldtoken: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "Er is een bericht met verificatie-instructies naar het nieuwe e-mailadres verzonden. Controleer het e-mailadres voordat je verder gaat.", @@ -1642,7 +1651,6 @@ "Apply permissions to child datasets": "Aanvinken om machtigingen toe te passen op onderliggende datasets", "Apply the same quota critical alert settings as the parent dataset.": "Aanvinken om dezelfde quotumkritieke waarschuwingsinstellingen toe te passen bij als de bovenliggende dataset.", "Apply the same quota warning alert settings as the parent dataset.": "Aanvinken om dezelfde instellingen voor quotawaarschuwingen toe te passen als bij de bovenliggende dataset.", - "Apply updates and reboot system after downloading.": "Aanvinken om updates toe te passen en het systeem opnieuw booten na het downloaden.", "Apps": "Apps", "Apps Read": "Apps lezen", "Apps Service Not Configured": "Apps Service is niet geconfigureerd", @@ -1731,7 +1739,6 @@ "Automated Disk Selection": "Automatisch schijfselectie", "Automatic update check failed. Please check system network settings.": "Automatische updatecontrole is mislukt. Controleer de systeemnetwerkinstellingen.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Automatisch ingevuld met de oorspronkelijke hostnaam van het systeem.
Deze naam is beperkt tot 15 tekens en mag NIET de naam van de werkgroep zijn.", - "Automatically reboot the system after the update is applied.": "Het systeem automatisch rebooten nadat de update is toegepast.", "Automatically sets number of threads used by the kernel NFS server.": "Stelt automatisch het aantal threads in dat door de kernel NFS-server wordt gebruikt.", "Automatically stop the script or command after the specified seconds.": "Het script of de opdracht automatisch stoppen na het aantal opgegeven seconden.", "Auxiliary Arguments": "Extra argumenten", @@ -3461,7 +3468,6 @@ "Notransfer Timeout": "Geen transfertime-out", "Nov": "nov", "Now": "Nu", - "Now/Reboot": "Nu/Rebooten", "Num Pending Deletes": "Aantal verwijderingen in behandeling", "Number of VDEVs": "Aantal VDev's", "Number of bytes": "Aantal bytes", @@ -3748,8 +3754,6 @@ "Readonly Admin": "Alleen-lezen administrator", "Realm": "Realm", "Reboot": "Rebooten", - "Reboot After Update": "Na updaten rebooten", - "Reboot standby TrueNAS controller": "De TrueNAS-controller die stand-by is rebooten", "Rebuild Directory Service Cache": "Map van de servicecache opnieuw opbouwen", "Recommended Apps": "Aanbevolen apps", "Recommended block size based on pool topology:": "Aanbevolen blokgrootte op basis van pooltopologie:", @@ -4189,7 +4193,6 @@ "Set to attempt to reduce latency over slow networks.": "Aanvinken om te proberen de latentie via langzame netwerken te verminderen.", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "Aanvinken om de IPv6 automatisch te configureren.

Op deze manier kan slechts één interface worden geconfigureerd.", "Set to automatically create the defined Remote Path if it does not exist.": "Aanvinken om automatisch het gedefinieerde Externe pad te maken als het niet bestaat.", - "Set to boot a debug kernel after the next system reboot.": "Aanvinken om een debug-kernel te booten na de volgende reboot van het systeem.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Aanvinken om een nieuwe primaire groep aan te maken met dezelfde naam als de gebruiker.

Uitvinken om een bestaande groep voor de gebruiker te selecteren.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Aanvinken om te bepalen of het systeem deelneemt aan een browserverkiezing. Uitvinken wanneer het netwerk een AD- of LDAP-server bevat, of wanneer Vista- of Windows 7-machines aanwezig zijn.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Aanvinken om het cachen van AD-gebruikers en -groepen uit te schakelen. Dit kan helpen als je niet kunt binden aan een domein met een groot aantal gebruikers of groepen.", @@ -4604,7 +4607,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "De systeemdataset wordt bijgewerkt en de SMB-service wordt opnieuw gestart. Dit veroorzaakt een tijdelijke onderbreking van alle actieve SMB-verbindingen.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Het systeem beperkt het aanmaken van een ZVol die de pool tot meer dan 80% capaciteit brengt. Instellen om het aanmaken van de ZVol te forceren (NIET aanbevolen).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "Het systeem gebruikt een zelfondertekend certificaat om versleutelde webinterfaceverbindingen mogelijk te maken. Om het standaardcertificaat te wijzigen, selecteer je een ander certificaat dat is gemaakt of geïmporteerd in het menu Certificaten.", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Het systeem zal opnieuw booten en is even niet beschikbaar tijdens het toepassen van updates. Updates toepassen en opnieuw booten?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "Het ticket is succesvol aangemaakt (zie onderstaande link), maar het foutopsporingsbestand kon niet worden bijgevoegd. Download de foutopsporing handmatig (Systeem → Geavanceerd → Foutopsporing opslaan), upload deze naar een opslagservice van derden en geef een link op in de JIRA-probleemopmerking.", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "De tijd in seconden dat het systeem wacht totdat de virtuele machine netjes is afgesloten.

Tijdens het afsluiten van het systeem start het systeem de uitschakeling voor de VM nadat de time-out voor afsluiten is verstreken.", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "De tijdwaarden wanneer de taak wordt uitgevoerd. Accepteert standaard crontab(5)-waarden.

Symbolen:
Een komma (,) scheidt afzonderlijke waarden.
Een asterisk (*) betekent \"komt overeen met alle waarden\".
Getallen met koppeltekens (1-5) stellen een tijdsbereik in.
Een schuine streep (/) geeft een stap in de waarde aan: */2 betekent om de minuut.

Voorbeeld : 30-35 in Minuten, 1,14 in Uren en */2 in Dagen betekent dat de taak om de andere dag wordt uitgevoerd op 13:30 - 01:35 en 14:30 - 14:35.", @@ -4617,7 +4619,6 @@ "The {name} service is {status}": "De {name} service is {status}", "The {service} service failed to start.": "De {service}-service kon niet worden gestart.", "The {service} service failed to stop.": "De {service}-service kon niet worden gestopt.", - "The {service} service is running and will auto-start after a system reboot.": "De service {service} is actief en wordt automatisch gestart nadat het systeem opnieuw is opgestart.", "The {service} service is running.": "De {service} service is actief.", "Theme": "Thema", "There are no records to show.": "Er zijn géén records om te tonen.", @@ -4805,7 +4806,6 @@ "Update TrueCommand Settings": "TrueCommand instellingen updaten", "Update available": "Update is beschikbaar", "Update in Progress": "Update wordt uitgevoerd", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Update is succesvol. Start opnieuw op om de update door te voeren. Herstart nu?", "Updated 'Use as Home Share'": "'Gebruiken als home share' is bijgewerkt", "Updated Date": "Geüpdate datum", "Updates": "Updates", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index ff3363c8168..f178cb7bd64 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -78,7 +78,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -354,7 +354,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -404,7 +404,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -501,7 +501,7 @@ "Autoconfigure IPv6": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2835,7 +2835,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3190,10 +3190,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3304,8 +3302,8 @@ "Reports": "", "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -3326,6 +3324,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Service": "", @@ -3333,6 +3332,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3763,7 +3763,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4283,7 +4283,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4296,7 +4296,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4496,7 +4496,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4520,7 +4520,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4555,7 +4555,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 2ff3e9404e7..6e206ae8a56 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -45,6 +45,7 @@ "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.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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.": "", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", @@ -341,7 +342,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -391,7 +392,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -488,7 +489,7 @@ "Autoconfigure IPv6": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2831,7 +2832,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3186,10 +3187,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3302,8 +3301,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3336,6 +3335,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3346,6 +3346,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3780,7 +3781,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4300,7 +4301,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4313,7 +4314,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4513,7 +4514,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4537,7 +4538,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4572,7 +4573,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -5083,7 +5084,6 @@ "Standard uses the sync settings that have been requested by the client software, Always waits for data writes to complete, and Disabled never waits for writes to complete.": "Padrão usa as configurações de sincronização que foram requisitadas pelo software cliente, Sempre espera a escrita de dados terminar, e Desabilitado nunca espera a escrita de dados se completar.", "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global é um nome reservado que não pode ser usado como nome de compartilhamento. Por favor, utilize um nome diferente para o compartilhamento.", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Incluir a Semente Secreta da senha permite utilizar esse arquivo de configuração com um novo dispositivo de boot. Isso também descriptografa todas as senhas do sistema para reutilização, quando do upload do arquivo de configuração.


Mantenha o arquivo de configuração seguro e protegido de acesso não autorizado!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

O Sistema irá reinicializar para realizar esta operação!

Todas as senhas são redefinidas quando o arquivo de configuração do banco de dados foi salvo sem a Semente Secreta da Senha.

", "Dataset: ": "Grupo de Dados: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Um Token de acesso de usuário para Box. Um token de acesso permite Box verificar que uma solicitação pertence a uma sessão autorizada. Examplo de token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "Uma mensagem con instruções de verificação foi enviada para o novo endereço de email. Por favor, verifique o endereço de email antes de continuar.", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index c945f87151d..cdfe832980b 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -39,7 +39,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", "A smaller block size can reduce sequential I/O performance and space efficiency.": "", @@ -174,7 +174,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -202,7 +202,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Arbitrary Text": "", "Asymmetric Logical Unit Access (ALUA)": "", @@ -217,6 +217,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Available Memory": "", "Back to Discover Page": "", "Back to Support": "", @@ -1655,6 +1656,7 @@ "Not enough free space. Maximum available: {space}": "", "Notes": "", "Notransfer Timeout": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of bytes": "", "Number of days to renew certificate before expiring.": "", @@ -1893,7 +1895,6 @@ "Reason": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -1966,8 +1967,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reserved for Dataset": "", @@ -1985,12 +1986,14 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Standby": "", "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -2305,7 +2308,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -2677,7 +2680,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -2690,7 +2693,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "There are no alerts.": "", "There are pending network interface changes. Review them now?": "", @@ -2850,7 +2853,7 @@ "Unable to retrieve Available Applications": "", "Unable to terminate processes which are using this pool: ": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "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.": "", @@ -2868,7 +2871,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset Generate Encryption Key to instead import a custom Hex key.": "", @@ -2888,6 +2891,7 @@ "Update Release Notes": "", "Update Software": "", "Update System": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updates available": "", "Updating custom app": "", @@ -3540,7 +3544,6 @@ "Automated Disk Selection": "Seleção Automática de Disco", "Automatic update check failed. Please check system network settings.": "A verificação da atualização automática falhou. Verifique as definições de rede do sistema.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Preenchido automaticamente com o nome do host original do sistema. Este nome está limitado a 15 caracteres e não pode ser o nome do Grupo de trabalho.", - "Automatically reboot the system after the update is applied.": "Reinicialize automaticamente o sistema após a atualização terminar.", "Automatically sets number of threads used by the kernel NFS server.": "Define automaticamente o número de tópicos usados pelo servidor NFS do kernel", "Automatically stop the script or command after the specified seconds.": "Pare automaticamente o script ou comando após os segundos especificados.", "Auxiliary Arguments": "Argumentos Auxiliares", @@ -4454,7 +4457,6 @@ "Notifications": "Notificações", "Nov": "Nov", "Now": "Agora", - "Now/Reboot": "Agora/Reiniciar", "Number of VDEVs": "Número de VDEVs", "Number of simultaneous file transfers. Enter a number based on the available bandwidth and destination system performance. See rclone --transfers.": "Number of simultaneous file transfers. Enter a number based on the available bandwidth and destination system performance. See rclone --transfers.", "OFFLINE": "DESLIGADO", @@ -4576,7 +4578,6 @@ "Read Errors": "Erros de leitura", "Read-only": "Apenas Leitura", "Reboot": "Reiniciar", - "Reboot After Update": "Reiniciar após atualização", "Recommended Apps": "Apps recomendadas", "Reconnect": "Reconectar", "Recursive": "Recursivo", @@ -4974,7 +4975,6 @@ "Update TrueCommand Settings": "Atualizar configurações do TrueCommand", "Update available": "Atualização disponível", "Update in Progress": "Atualização em execução", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Atualização bem sucedida. Reinicie para que a atualização tenha efeito. Reiniciar agora?", "Updated Date": "Atualizar Data", "Updates": "Atualizações", "Updates Available": "Atualizações Disponíveis", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 6c65382c921..6639c105783 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -30,6 +30,7 @@ "Internal Certificates use system-managed CAs for certificate issuance. Import Certificate lets you import an existing certificate onto the system.": "", "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.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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.": "", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", @@ -241,7 +242,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any system service can communicate externally.": "", @@ -273,6 +274,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Service Not Configured": "", @@ -346,6 +348,7 @@ "Auto Refresh": "", "Auto TRIM": "", "Automated Disk Selection": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Apps": "", "Available Memory": "", @@ -1795,7 +1798,7 @@ "Notifications": "", "Notransfer Timeout": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of days to retain local audit messages.": "", @@ -2048,7 +2051,6 @@ "Reboot": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", "Recommended Apps": "", @@ -2123,8 +2125,8 @@ "Reporting Write": "", "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -2146,6 +2148,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Service": "", @@ -2153,6 +2156,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -2432,6 +2436,7 @@ "Set the domain name to the username. Unset to prevent name collisions when Allow Trusted Domains is set and multiple domains use the same username.": "", "Set to allow user to authenticate to Samba shares.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to enable the iSCSI extent.": "", "Set to ignore mapping requests for the BUILTIN domain.": "", @@ -2785,6 +2790,7 @@ "The secret used to generate OTPs. The secret is produced by the system when Two-Factor Authentication is first activated.": "", "The standby controller will be automatically restarted to finalize the update. Apply updates and restart the standby controller?": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -2793,7 +2799,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -2946,7 +2952,7 @@ "Unassigned Disks": "", "Unavailable": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "Unit": "", "Unix NSS Info": "", @@ -2963,7 +2969,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -2987,6 +2993,7 @@ "Update System": "", "Update TrueCommand Settings": "", "Update available": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates available": "", @@ -3410,7 +3417,6 @@ "Standard uses the sync settings that have been requested by the client software, Always waits for data writes to complete, and Disabled never waits for writes to complete.": "Стандарт использует настройки синхронизации, запрошенные клиентским программным обеспечением, Всегда ожидает завершения записи данных, и Отключено никогда не ожидает завершения записи.", "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global - зарезервированное имя, которое нельзя использовать в качестве имени общего ресурса. Пожалуйста, введите другое имя ресурса. ", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Включение секретного семени пароля позволяет использовать этот файл конфигурации с новым загрузочным устройством. Это также расшифровывает все системные пароли для повторного использования при загрузке файла конфигурации.


Сохраните файл конфигурации в безопасности и защитите его от несанкционированного доступа!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

Система перезагрузится для выполнения этой операции!

Все пароли сбрасываются при загрузке конфигурации сохраненной без секретного пароля.

", "Dataset: ": "Набор данных: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Токен доступа пользователя для Box. токен доступа позволяет Box проверять принадлежность запроса к авторизованному сеансу. Пример токена: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "На новый адрес электронной почты было отправлено сообщение с инструкциями по подтверждению. Пожалуйста, подтвердите адрес электронной почты, прежде чем продолжить.", @@ -3534,7 +3540,6 @@ "Apply permissions to child datasets": "Применить разрешения к дочерним наборам данных", "Apply the same quota critical alert settings as the parent dataset.": "Применить те же параметры оповещения о критических квотах, что и у родительского набора данных.", "Apply the same quota warning alert settings as the parent dataset.": "Применить те же параметры предупреждения о квоте, что и у родительского набора данных.", - "Apply updates and reboot system after downloading.": "Применить обновления и перезагрузить систему после загрузки.", "Apps": "Приложения", "Apr": "Апр", "Archive": "Архив", @@ -3562,7 +3567,6 @@ "Autoconfigure IPv6": "Автоконфигурирование IPv6", "Automatic update check failed. Please check system network settings.": "Автоматическая проверка обновления не удалась. Пожалуйста, проверьте настройки сети.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Автоматически заполняется исходным именем хоста системы. Это имя может содержать до 15 символов и не может быть именем рабочей группы", - "Automatically reboot the system after the update is applied.": "Автоматически перезагрузить систему после применения обновления.", "Automatically stop the script or command after the specified seconds.": "Автоматически останавливать сценарий или команду через указанные секунды.", "Auxiliary Arguments": "Вспомогательные аргументы", "Auxiliary Groups": "Вспомогательные группы", @@ -4572,7 +4576,6 @@ "Read Errors": "Ошибки чтения", "Read-only": "Только чтение", "Realm": "Область", - "Reboot After Update": "Перезагрузить после обновления", "Rebuild Directory Service Cache": "Перестроить кеш службы каталогов", "Recommended when Max. Poll is greater than 10. Only use on personal NTP servers or those under direct control. Do not enable when using public NTP servers.": "Рекомендуется, когда Макс. Опрос больше 10. Используйте только на личных NTP-серверах или серверах, находящихся под прямым контролем. Не включать при использовании общедоступных NTP-серверов.", "Recursive": "Рекурсивно", @@ -4781,7 +4784,6 @@ "Set to also replicate all snapshots contained within the selected source dataset snapshots. Unset to only replicate the selected dataset snapshots.": "Установите чтобы реплицировать все снимки, содержащиеся в выбранных наборах данных снимков источника. Отключите, чтобы реплицировать только выбранные снимки набора данных.", "Set to attempt to reduce latency over slow networks.": "Установите, чтобы попытаться уменьшить задержку в медленных сетях.", "Set to automatically create the defined Remote Path if it does not exist.": "Установите для автоматического создание Удаленного пути, если он не существует.", - "Set to boot a debug kernel after the next system reboot.": "Установите для загрузки отладочного ядра после следующей перезагрузки системы.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Установите для создания новой основной группы с тем же именем, что и у пользователя. Снимите, чтобы выбрать существующую группу для пользователя.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Установите, чтобы определить, что система участвует в выборах браузера. Оставьте неустановленным, если сеть содержит сервер AD или LDAP, или когда присутствуют машины Vista или Windows 7.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Установите, чтобы отключить кэширование пользователей и групп AD. Это может помочь при невозможности привязки к домену с большим количеством пользователей или групп.", @@ -4955,7 +4957,6 @@ "The standby controller has finished upgrading. To complete the update process, failover to the standby controller.": "Резервный контроллер завершил обновление. Чтобы завершить процесс обновления, переключитесь на резервный контроллер.", "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "Системный набор данных будет обновлен, а служба SMB перезапущена. Это приведет к временному нарушению любых активных соединений SMB.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Система ограничивает создание zvol, которое доводит использование пула сверх 80%. Установите для принудительного создания zvol (НЕ рекомендуется).", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Система перезагрузится и будет ненадолго недоступна при применении обновлений. Применить обновления и перезагрузить?", "The update file is temporarily stored here before being applied.": "Файл обновления будет временно сохранен здесь до момента применения.", "The user account Email address to use for the envelope From email address. The user account Email in Accounts > Users > Edit must be configured first.": "Адрес электронной почты учетной записи пользователя, который будет использоваться для конверта От адреса электронной почты. Учетная запись пользователя Электронная почта в разделе Учетные записи > Пользователи > Изменить должна быть настроена в первую очередь.", "The web service must restart for the protocol changes to take effect. The UI will be temporarily unavailable. Restart the service?": "Веб-служба должна быть перезапущена, чтобы изменения протокола вступили в силу. Пользовательский интерфейс будет временно недоступен. Перезапустить службу?", @@ -5026,7 +5027,6 @@ "Update Image": "Обновить образ", "Update License": "Обновить лицензию", "Update in Progress": "Производится обновление", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Обновление прошло успешно. Пожалуйста, перезагрузитесь, чтобы обновление вступило в силу. Перезагрузить сейчас?", "Updates": "Обновления", "Updates Available": "Доступны обновления", "Updates successfully downloaded": "Обновления успешно загружены", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index ca1e64c260c..b61400ec8ca 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -26,6 +26,7 @@ "WARNING: Rolling the dataset back destroys data on the dataset and can destroy additional snapshots that are related to the dataset. This can result in permanent data loss! Do not roll back until all desired data and snapshots are backed up.": "", "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.": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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.": "", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "", @@ -137,7 +138,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -159,6 +160,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps Read": "", "Apps Service Not Configured": "", @@ -207,6 +209,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Available Memory": "", "Back to Discover Page": "", @@ -1107,6 +1110,7 @@ "Not Shared": "", "Notes": "", "Notifications": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of days to retain local audit messages.": "", "Offline VDEVs": "", @@ -1268,8 +1272,8 @@ "Reporting Read": "", "Reporting Write": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", "Reservation (in GiB)": "", @@ -1285,12 +1289,14 @@ "Resilver configuration saved": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Standby": "", "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -1442,6 +1448,7 @@ "Set new password": "", "Set password for TrueNAS administrative user:": "", "Set the domain name to the username. Unset to prevent name collisions when Allow Trusted Domains is set and multiple domains use the same username.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to include child datasets and zvols of the chosen dataset.": "", "Settings Menu": "", @@ -1638,8 +1645,9 @@ "The following { n, plural, one {snapshot} other {# snapshots} } will be deleted. Are you sure you want to proceed?": "", "The list is empty.": "", "The number of children must at the minimum accomodate the total number of disks required for the previous configuration options including parity drives.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The {name} service is {status}": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "There are no alerts.": "", "These disks do not support S.M.A.R.T. tests:": "", @@ -1717,14 +1725,14 @@ "URI of the ACME Server Directory. Enter a custom URI.": "", "URL": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unix NSS Info": "", "Unix Primary Group": "", "Unix Socket": "", "Unknown PID": "", "Unlink": "", "Unlock Pool": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unshare {name}": "", @@ -1739,6 +1747,7 @@ "Update Release Notes": "", "Update Software": "", "Update System": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updates available": "", "Updating custom app": "", "Upgrade All Selected": "", @@ -2008,7 +2017,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global - зарезервоване ім'я, яке не можна використовувати як ім'я загального ресурсу. Будь ласка, введіть інше ім'я ресурсу.", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

Наразі ізольовано такі графічні процесори:

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

Увімкнення секретного насіння пароля дозволяє використовувати цей конфігураційний файл з новим завантажувальним пристроєм. Це також розшифровує всі системні паролі для повторного використання при завантаженні конфігураційного файлу.


Збережіть файл конфігурації в безпеці та захистіть його від несанкціонованого доступу!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

Система перезавантажиться для виконання цієї операції!

Всі паролі скидаються при завантаженні конфігурації збереженої без секретного пароля.

", "Dataset: ": " Набір даних: ", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": "Струмок доступу користувача для Box. токен доступу дозволяє Box перевіряти належність запиту до авторизованого сеансу. Приклад токена: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "На нову адресу електронної пошти було надіслано повідомлення з інструкціями на підтвердження. Будь ласка, підтвердіть адресу електронної пошти, перш ніж продовжити.", @@ -2242,7 +2250,6 @@ "Apply permissions to child datasets": "Застосувати дозволи на набори дочірніх даних", "Apply the same quota critical alert settings as the parent dataset.": "Застосувати самі параметри оповіщення про критичні квоти, що й у батьківського набору даних.", "Apply the same quota warning alert settings as the parent dataset.": "Застосувати самі параметри попередження про квоту, як і батьківського набору даних.", - "Apply updates and reboot system after downloading.": "Застосувати оновлення та перезавантажити систему після завантаження.", "Apps": "Програми", "Apr": "Квіт", "Archive": "Архів", @@ -2295,7 +2302,6 @@ "Automated Disk Selection": "Автоматичний вибір диска", "Automatic update check failed. Please check system network settings.": "Автоматична перевірка поновлення не вдалася. Будь ласка, перевірте налаштування мережі.", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "Автоматично заповнюється вихідним ім'ям хоста системи. Це ім'я може містити до 15 символів і не може бути ім'ям робочої групи", - "Automatically reboot the system after the update is applied.": "Автоматично перезапустити систему після використання оновлення.", "Automatically stop the script or command after the specified seconds.": "Автоматично зупиняти сценарій або команду за вказані секунди.", "Auxiliary Arguments": "Допоміжні аргументи", "Auxiliary Groups": "Допоміжні групи", @@ -3747,7 +3753,6 @@ "Notransfer Timeout": "Немає часу очікування передачі", "Nov": "Лист", "Now": "Зараз", - "Now/Reboot": "Зараз/Перезавантажити", "Number of VDEVs": "Кількість VDEV", "Number of bytes": "Кількість байтів", "Number of days to renew certificate before expiring.": "Кількість днів для продовження сертифіката до закінчення терміну дії.", @@ -3986,8 +3991,6 @@ "Read-only": "Тільки читання", "Realm": "Область", "Reboot": "Перезавантажити", - "Reboot After Update": "Перезавантажити після оновлення", - "Reboot standby TrueNAS controller": "Перезавантажити резервний контролер TrueNAS", "Rebuild Directory Service Cache": "Перебудувати кеш служби каталогів", "Recommended Apps": "Рекомендовані програми", "Recommended block size based on pool topology:": "Рекомендований розмір блоку на основі топології пулу:", @@ -4365,7 +4368,6 @@ "Set to attempt to reduce latency over slow networks.": "Встановіть, щоб спробувати зменшити затримку в повільних мережах.", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "Налаштуйте автоматичне налаштування IPv6. Таким чином можна налаштувати лише один інтерфейс.", "Set to automatically create the defined Remote Path if it does not exist.": "Встановіть для автоматичного створення Віддаленого шляху, якщо він не існує.", - "Set to boot a debug kernel after the next system reboot.": "Встановіть для завантаження ядра налагодження після наступного перезавантаження системи.", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "Встановіть, щоб створити нову основну групу з тим же іменем, що і користувач. Видаліть, щоб вибрати існуючу групу для користувача.", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "Встановіть, щоб визначити, що система бере участь у виборах браузера. Залишіть невстановленим, якщо мережа містить сервер AD або LDAP, або коли є машини Vista або Windows 7.", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "Встановіть, щоб вимкнути кешування користувачів та груп AD. Це може допомогти, якщо неможливо прив’язати домен з великою кількістю користувачів або груп.", @@ -4696,7 +4698,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "Системний набір даних буде оновлений, а послуга SMB перезапускається. Це призведе до тимчасового порушення будь-яких активних сполук SMB.", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "Система обмежує створення ZVOL, що приводить використання пулу понад 80%. Встановити ZVOL (Не рекомендується для примусового створення ).", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "Система використовує самопідписаний сертифікат для підключення зашифрованих веб-інтерфейсів. Щоб змінити стандартний сертифікат, виберіть інший сертифікат, який було створено або імпортовано в меню Сертифікати.", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "Система буде перезавантажена і не буде доступна при використанні оновлень. Застосувати оновлення та перезапустити?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "Квиток створено успішно (див. посилання нижче), але не вдалося приєднати файл налагодження. Будь ласка, завантажте налагодження вручну (Система → Додатково → Зберегти налагодження), завантажте його до служби зберігання сторонніх розробників і надайте посилання в коментарі до проблеми JIRA.", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "Час у секундах, протягом якого система очікує чіткого завершення роботи віртуальної машини. Під час вимкнення системи система ініціює вимикання для віртуальної машини після закінчення часу очікування вимкнення.", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "Час виконання завдання. Приймає стандартні значення crontab(5).

Символи:
кома (,) відокремлює окремі значення.
зірочка (*) означає \"відповідати всім значенням\".
цифри через дефіс (1- 5) встановлює діапазон часу.
Слеш (/) позначає крок у значенні: */2 означає кожну другу хвилину.

Приклад: 30-35 у хвилинах, 1, 14 у годинах і */2 у днях означає, що завдання виконуватиметься з 1:30 до 1:35 ранку та з 14:30 до 14:35 через день.", @@ -4868,7 +4869,6 @@ "Update TrueCommand Settings": "Оновити налаштування TrueСommand", "Update available": "Доступне оновлення", "Update in Progress": "Виконується оновлення", - "Update successful. Please reboot for the update to take effect. Reboot now?": "Оновлення пройшло успішно. Будь ласка, перезапустіться, щоб оновлення вступило в силу. Перезавантажити зараз?", "Updated 'Use as Home Share'": "Оновлено \"Використовувати як домашню спільну мову\"", "Updated Date": "Дата оновлення", "Updates": "Оновлення", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index db5b2a31b11..fe62fc8c441 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -85,7 +85,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -399,7 +399,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -449,7 +449,7 @@ "Apply permissions to child datasets": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", - "Apply updates and reboot system after downloading.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -547,7 +547,7 @@ "Automated Disk Selection": "", "Automatic update check failed. Please check system network settings.": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Auxiliary Arguments": "", @@ -2891,7 +2891,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -3246,10 +3246,8 @@ "Rear": "", "Reason": "", "Reboot": "", - "Reboot After Update": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Rebuild Directory Service Cache": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", @@ -3362,8 +3360,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -3396,6 +3394,7 @@ "Resilvering:": "", "Resolution": "", "Restart": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart SMB Service": "", @@ -3406,6 +3405,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3840,7 +3840,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -4360,7 +4360,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -4373,7 +4373,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -4573,7 +4573,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -4597,7 +4597,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -4632,7 +4632,7 @@ "Update TrueCommand Settings": "", "Update available": "", "Update in Progress": "", - "Update successful. Please reboot for the update to take effect. Reboot now?": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index d80b6e659a1..d30215922cc 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -12,6 +12,7 @@ "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.": "", "WARNING: Rolling the dataset back destroys data on the dataset and can destroy additional snapshots that are related to the dataset. This can result in permanent data loss! Do not roll back until all desired data and snapshots are backed up.": "", "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.": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "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 Editor": "", @@ -101,7 +102,7 @@ "Always Chroot": "", "An enclosure must be selected when 'Limit Pool to a Single Enclosure' is enabled.": "", "An instance of this app already installed. Click the badge to see installed apps.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Api Key": "", @@ -122,6 +123,7 @@ "Apply Quotas to Selected Users": "", "Apply To Groups": "", "Apply To Users": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Arbitrary Text": "", "Asymmetric Logical Unit Access (ALUA)": "", @@ -134,6 +136,7 @@ "Authentication Type": "", "Authority Key Config": "", "Auto Refresh": "", + "Automatically restart the system after the update is applied.": "", "Available Memory": "", "Back to Discover Page": "", "Back to Support": "", @@ -785,6 +788,7 @@ "None requested": "", "Not Shared": "", "Notes": "", + "Now/Restart": "", "Ok": "", "Once an enclosure is selected, all other VDEV creation steps will limit disk selection options to disks in the selected enclosure. If the enclosure selection is changed, all disk selections will be reset.": "", "One half widget and two quarter widgets below": "", @@ -890,8 +894,8 @@ "Report Bug": "", "Reporting Exporter": "", "Require IDENT Authentication": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reserved for Dataset": "", "Reserved for Dataset & Children": "", @@ -902,12 +906,14 @@ "Resilver configuration saved": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Standby": "", "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -1024,6 +1030,7 @@ "Set email": "", "Set new password": "", "Set password for TrueNAS administrative user:": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to enable connecting to the SPICE web interface.": "", "Set to include child datasets and zvols of the chosen dataset.": "", "Settings Menu": "", @@ -1142,6 +1149,8 @@ "The length of the field should be no more than {maxLength}": "", "The list is empty.": "", "The number of children must at the minimum accomodate the total number of disks required for the previous configuration options including parity drives.": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", + "The {service} service is running and will auto-start after a system restart.": "", "There are no alerts.": "", "These disks do not support S.M.A.R.T. tests:": "", "These running processes are using {datasetName}:": "", @@ -1199,11 +1208,11 @@ "UPS Utilization": "", "URL": "", "Uncheck": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unix NSS Info": "", "Unix Primary Group": "", "Unknown PID": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unsupported Hardware": "", @@ -1216,6 +1225,7 @@ "Update Release Notes": "", "Update Software": "", "Update System": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updates available": "", "Updating custom app": "", "Upgrade All Selected": "", @@ -1468,7 +1478,6 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "global是保留名称,不能用作共享名。请输入其他共享名。", "

Currently following GPU(s) have been isolated:

    {gpus}

": "

目前以下 GPU(s) 已经被隔离:

    {gpus}

", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "

包括密码密钥种子在内,可以将此配置文件与新的引导设备一起使用。上传配置文件时,会解密所有系统密码以供重复使用。


请保管好配置文件并保护好它,其免受未经授权的访问!", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "

系统将重新启动以执行此操作!

在没有密码密钥种子的情况下保存上传的配置数据库文件时,所有密码都会重置。

", "Dataset: ": "数据集:", "A User Access Token for Box. An access token enables Box to verify a request belongs to an authorized session. Example token: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl.": " Box 的用户访问令牌。访问令牌使 Box 能够验证请求是否属于授权会话。令牌示例: T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl 。", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "带有验证说明的消息已发送到新的电子邮件地址,请在继续之前验证电子邮件地址。", @@ -1725,7 +1734,6 @@ "Apply permissions to child datasets": "将权限应用于子数据集", "Apply the same quota critical alert settings as the parent dataset.": "应用与父数据集相同的配额严重警报设置。", "Apply the same quota warning alert settings as the parent dataset.": "应用与父数据集相同的配额警告设置。", - "Apply updates and reboot system after downloading.": "下载后应用更新并重新启动系统。", "Apps": "应用", "Apps Read": "应用程序读取", "Apps Service Not Configured": "应用程序服务未配置", @@ -1814,7 +1822,6 @@ "Automated Disk Selection": "自动选择磁盘", "Automatic update check failed. Please check system network settings.": "自动更新检查失败。请检查系统网络设置。", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "使用系统的原始主机名自动填充。此名称限制为 15 个字符,不能以 Workgroup 为名称。", - "Automatically reboot the system after the update is applied.": "应用更新后,自动重启系统。", "Automatically sets number of threads used by the kernel NFS server.": "自动设置内核 NFS 服务器使用的线程数。", "Automatically stop the script or command after the specified seconds.": "在指定的秒数后自动停止脚本或命令。", "Auxiliary Arguments": "附加参数", @@ -3515,7 +3522,6 @@ "Notransfer Timeout": "无传输超时", "Nov": "十一月", "Now": "现在", - "Now/Reboot": "正在使用/重启后使用", "Num Pending Deletes": "待删除数量", "Number of VDEVs": "VDEVs 数量", "Number of bytes": "字节数", @@ -3794,8 +3800,6 @@ "Readonly Admin": "只读管理员", "Realm": "领域", "Reboot": "重启", - "Reboot After Update": "更新后重启", - "Reboot standby TrueNAS controller": "重启备用 TrueNAS 控制器", "Rebuild Directory Service Cache": "重建目录服务缓存", "Recommended Apps": "推荐的应用程序", "Recommended block size based on pool topology:": "基于池拓扑的推荐块大小:", @@ -4229,7 +4233,6 @@ "Set to attempt to reduce latency over slow networks.": "设置为尝试减少慢速网络上的延迟。", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "设置为自动配置 IPv6,这样只能配置一个接口。", "Set to automatically create the defined Remote Path if it does not exist.": "设置为自动创建已定义的远程路径(如果不存在)。", - "Set to boot a debug kernel after the next system reboot.": "设置为在下次系统重新引导后引导调试内核。", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "设置为创建一个与用户同名的新主组。取消选择来为用户选择一个现有组。", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "设置以确定系统是否参与浏览器选举。当网络包含 AD 或 LDAP 服务器,或者存在 Vista 或 Windows 7 计算机时,请保持未设置状态。", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "设置为禁用缓存 AD 用户和组。当无法绑定到具有大量用户或组的域时,这可以提供帮助。", @@ -4638,7 +4641,6 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "系统数据集将被更新,SMB 服务将重新启动。这将导致任何活动的 SMB 连接暂时中断。", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "系统限制创建 zvol 以使池达到 80% 以上的容量。设置为强制创建 zvol(不推荐)。", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "系统使用自签名证书来启用加密的 Web 界面连接。要更改默认证书,请在证书菜单中选择一个已创建或导入的其他证书。", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "系统将重新启动,并且在应用更新时短暂不可用。应用更新并重新启动?", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "工单已成功创建(请参见下面的链接),但调试文件未能附加。请手动下载调试(系统 → 高级 → 保存调试),上传到第三方存储服务并在 JIRA 问题评论中提供链接。", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "系统等待虚拟机完全关闭的时间(以秒为单位)。在系统关闭期间,关闭超时到期后,系统将启动虚拟机的电源关闭。", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "任务运行的时间值。接受标准 crontab(5) 值。

符号:
逗号 (,) 分隔各个值。
星号 (*) 表示「匹配所有值」。
连字符数字(1-5) 设置时间范围。
斜线 (/) 表示值中的一个步长:*/2 表示每隔一分钟。

示例:30-35 in Minutes, 1, 14 小时和 */2 天表示任务将在 1:30 - 1:35 AM 和 2:30 - 2:35 PM 每隔一天运行一次。", @@ -4651,7 +4653,6 @@ "The {name} service is {status}": "服务 {name} 的状态为 {status}", "The {service} service failed to start.": "{service} 服务未能启动。", "The {service} service failed to stop.": "{service} 服务未能停止。", - "The {service} service is running and will auto-start after a system reboot.": "{service} 服务正在运行,在系统重启后服务将自动启动。", "The {service} service is running.": "{service} 服务正在运行。", "Theme": "主题", "There are no records to show.": "没有可显示的记录。", @@ -4837,7 +4838,6 @@ "Update TrueCommand Settings": "更新 TrueCommand 设置", "Update available": "更新可用", "Update in Progress": "正在进行更新", - "Update successful. Please reboot for the update to take effect. Reboot now?": "更新成功。请重启以便更新生效。现在重启吗?", "Updated 'Use as Home Share'": "更新了「用作家庭共享」", "Updated Date": "更新日期", "Updates": "更新", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 6170d93d599..412b7b18d1a 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -74,7 +74,7 @@ "global is a reserved name that cannot be used as a share name. Please enter a different share name.": "", "

Currently following GPU(s) have been isolated:

    {gpus}

": "", "

Including the Password Secret Seed allows using this configuration file with a new boot device. This also decrypts all system passwords for reuse when the configuration file is uploaded.


Keep the configuration file safe and protect it from unauthorized access!": "", - "

The system will reboot to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", + "

The system will restart to perform this operation!

All passwords are reset when the uploaded configuration database file was saved without the Password Secret Seed.

": "", "Dataset: ": "", "A message with verification instructions has been sent to the new email address. Please verify the email address before continuing.": "", "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.": "", @@ -334,7 +334,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.": "", - "An update is already applied. Please reboot the system.": "", + "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", "Any notes about initiators.": "", @@ -380,6 +380,7 @@ "Apply permissions recursively to all directories and files within the current dataset.": "", "Apply the same quota critical alert settings as the parent dataset.": "", "Apply the same quota warning alert settings as the parent dataset.": "", + "Apply updates and restart system after downloading.": "", "Applying important system or security updates.": "", "Apps": "", "Apps Read": "", @@ -470,7 +471,7 @@ "Auto TRIM": "", "Automated Disk Selection": "", "Automatically populated with the original hostname of the system. This name is limited to 15 characters and cannot be the Workgroup name.": "", - "Automatically reboot the system after the update is applied.": "", + "Automatically restart the system after the update is applied.": "", "Automatically sets number of threads used by the kernel NFS server.": "", "Automatically stop the script or command after the specified seconds.": "", "Available Apps": "", @@ -2417,7 +2418,7 @@ "Notransfer Timeout": "", "Nov": "", "Now": "", - "Now/Reboot": "", + "Now/Restart": "", "Num Pending Deletes": "", "Number of VDEVs": "", "Number of bytes": "", @@ -2705,7 +2706,6 @@ "Reboot": "", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", - "Reboot standby TrueNAS controller": "", "Received: {received}/s Sent: {sent}/s": "", "Recent Searches": "", "Recommended Apps": "", @@ -2797,8 +2797,8 @@ "Requested action performed for selected Applications": "", "Require IDENT Authentication": "", "Require Kerberos for NFSv4": "", - "Required reboot after new software installation.": "", "Required reset to fix system operation issues.": "", + "Required restart after new software installation.": "", "Required unless Enable password login is No. Passwords cannot contain a ?.": "", "Required – always encrypt transport (rejecting access if client does not support encryption – incompatible with SMB1 server enable_smb1)": "", "Reservation": "", @@ -2825,6 +2825,7 @@ "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", + "Restart After Update": "", "Restart App": "", "Restart Now": "", "Restart Service": "", @@ -2832,6 +2833,7 @@ "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "", "Restart is required after changing this setting.": "", "Restart of a remote system is required for new FIPS setting to take effect. Would you like to restart standby now?": "", + "Restart standby TrueNAS controller": "", "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", @@ -3213,7 +3215,7 @@ "Set to attempt to reduce latency over slow networks.": "", "Set to automatically configure the IPv6. Only one interface can be configured this way.": "", "Set to automatically create the defined Remote Path if it does not exist.": "", - "Set to boot a debug kernel after the next system reboot.": "", + "Set to boot a debug kernel after the next system restart.": "", "Set to create a new primary group with the same name as the user. Unset to select an existing group for the user.": "", "Set to determine if the system participates in a browser election. Leave unset when the network contains an AD or LDAP server, or when Vista or Windows 7 machines are present.": "", "Set to disable caching AD users and groups. This can help when unable to bind to a domain with a large number of users or groups.": "", @@ -3663,7 +3665,7 @@ "The system dataset will be updated and the SMB service restarted. This will cause a temporary disruption of any active SMB connections.": "", "The system restricts creating a zvol that brings the pool to over 80% capacity. Set to force creation of the zvol (NOT Recommended).": "", "The system uses a self-signed certificate to enable encrypted web interface connections. To change the default certificate, select a different certificate that was created or imported in the Certificates menu.": "", - "The system will reboot and be briefly unavailable while applying updates. Apply updates and reboot?": "", + "The system will restart and be briefly unavailable while applying updates. Apply updates and restart?": "", "The ticket was created successfully (see link below), but the debug file failed to attach. Please download the debug manually (System → Advanced → Save Debug), upload it to a third-party storage service and provide a link in the JIRA issue comment.": "", "The time in seconds the system waits for the VM to cleanly shut down. During system shutdown, the system initiates poweroff for the VM after the shutdown timeout has expired.": "", "The time values when the task will run. Accepts standard crontab(5) values.

Symbols:
A comma (,) separates individual values.
An asterisk (*) means \"match all values\".
Hyphenated numbers (1-5) sets a range of time.
A slash (/) designates a step in the value: */2 means every other minute.

Example: 30-35 in Minutes, 1,14 in Hours, and */2 in Days means the task will run on 1:30 - 1:35 AM and 2:30 - 2:35 PM every other day.": "", @@ -3676,7 +3678,7 @@ "The {name} service is {status}": "", "The {service} service failed to start.": "", "The {service} service failed to stop.": "", - "The {service} service is running and will auto-start after a system reboot.": "", + "The {service} service is running and will auto-start after a system restart.": "", "The {service} service is running.": "", "Theme": "", "There are no alerts.": "", @@ -3857,7 +3859,7 @@ "Unavailable": "", "Uncheck": "", "Unencrypted": "", - "Unexpected power loss necessitating a reboot.": "", + "Unexpected power loss necessitating a restart.": "", "Unhealthy": "", "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.": "", @@ -3880,7 +3882,7 @@ "Unlock with Key file": "", "Unlocked": "", "Unlocking Datasets": "", - "Unresponsive system necessitating a forced reboot.": "", + "Unresponsive system necessitating a forced restart.": "", "Unsaved Changes": "", "Unselect All": "", "Unset": "", @@ -3910,6 +3912,7 @@ "Update System": "", "Update TrueCommand Settings": "", "Update available": "", + "Update successful. Please restart for the update to take effect. Restart now?": "", "Updated 'Use as Home Share'": "", "Updated Date": "", "Updates": "", @@ -4400,7 +4403,6 @@ "Apply Update": "套用更新", "Apply permissions recursively": "完整套用權限", "Apply permissions to child datasets": "套用權限至子資料集", - "Apply updates and reboot system after downloading.": "下載後自動套用更新並重新啟動。", "Archive": "封存", "Attach NIC": "附加網路介面卡", "Auth Token from alternate authentication - optional (rclone documentation).": "Auth Token from alternate authentication - optional (rclone documentation).", @@ -4888,7 +4890,6 @@ "Read Errors": "讀取錯誤", "Read-only": "唯讀", "Realm": "領域", - "Reboot After Update": "更新後重新開機", "Rebuild Directory Service Cache": "重建目錄服務快取", "Recommended when Max. Poll is greater than 10. Only use on personal NTP servers or those under direct control. Do not enable when using public NTP servers.": "当 最大轮询 大于10时推荐使用。仅在个人NTP服务器或直接控制的服务器上使用。请勿在使用公共NTP服务器时启用。", "Recursive": "遞迴", @@ -5076,7 +5077,6 @@ "Update Available": "有可用更新", "Update File": "更新檔案", "Update in Progress": "正在更新", - "Update successful. Please reboot for the update to take effect. Reboot now?": "更新成功。請重新啟動以套用更新。要現在重新啟動嗎?", "Updates successfully downloaded": "已成功下載更新", "Upgrade": "升級", "Upgrade Pool": "升級儲存集區",