diff --git a/src/app/enums/boot-environment-active.enum.ts b/src/app/enums/boot-environment-active.enum.ts index 2ddac6c7bce..b6daee83993 100644 --- a/src/app/enums/boot-environment-active.enum.ts +++ b/src/app/enums/boot-environment-active.enum.ts @@ -1,7 +1,7 @@ export enum BootEnvironmentActive { Now = 'N', Restart = 'R', - NowReboot = 'NR', + NowRestart = 'NR', Dash = '-', Empty = '', } diff --git a/src/app/helptext/apps/apps.ts b/src/app/helptext/apps/apps.ts index b1526f033b5..515d818d6fa 100644 --- a/src/app/helptext/apps/apps.ts +++ b/src/app/helptext/apps/apps.ts @@ -258,4 +258,8 @@ export const helptextApps = { process may stall as images cannot be pulled. The current limit will be renewed in {seconds}. The application\ can still be staged for installation.'), }, + + ports: T('Host ports are listed on the left and associated container ports are on the right.\ + \ + 0.0.0.0 on the host side represents binding to any IP address on the host.'), }; diff --git a/src/app/modules/tooltip/tooltip.component.html b/src/app/modules/tooltip/tooltip.component.html index e52d4738597..3fa37e7c968 100644 --- a/src/app/modules/tooltip/tooltip.component.html +++ b/src/app/modules/tooltip/tooltip.component.html @@ -33,5 +33,6 @@
[popperTrigger]="'click' | cast" [popper]="popperTooltip" [popperShowOnStart]="false" + [popperPlacement]="placement()" > diff --git a/src/app/modules/tooltip/tooltip.component.ts b/src/app/modules/tooltip/tooltip.component.ts index b121a56e2a3..becec84c064 100644 --- a/src/app/modules/tooltip/tooltip.component.ts +++ b/src/app/modules/tooltip/tooltip.component.ts @@ -2,7 +2,7 @@ import { ChangeDetectionStrategy, Component, input, } from '@angular/core'; import { TranslateModule } from '@ngx-translate/core'; -import { NgxPopperjsModule } from 'ngx-popperjs'; +import { NgxPopperjsModule, NgxPopperjsPlacements } from 'ngx-popperjs'; import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component'; import { CastPipe } from 'app/modules/pipes/cast/cast.pipe'; import { TestDirective } from 'app/modules/test-id/test.directive'; @@ -24,4 +24,11 @@ import { TestDirective } from 'app/modules/test-id/test.directive'; export class TooltipComponent { readonly message = input(); readonly header = input(); + + // Conversion here just allows us to use enum values as string without having to import the enum + readonly placement = input(NgxPopperjsPlacements.AUTO, { + transform: (value) => { + return value as NgxPopperjsPlacements; + }, + }); } diff --git a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.html b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.html index ff8bd70cec8..7df533c83b4 100644 --- a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.html +++ b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.html @@ -6,7 +6,14 @@

-
{{ 'Ports' | translate }}:
+
+ {{ 'Ports' | translate }} + +
@for (port of hostPorts(); track port.hostPort) {
diff --git a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.scss b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.scss index 5ce005d58dd..06be0a20057 100644 --- a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.scss +++ b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.scss @@ -6,6 +6,7 @@ .details-item .label { align-self: flex-start; + margin-right: 10px; } .details-item .value { @@ -17,10 +18,11 @@ .with-tooltip { cursor: help; - text-decoration: underline; - text-decoration-color: var(--alt-fg1); - text-decoration-style: dotted; - text-underline-offset: 2px; +} + +.ports-tooltip { + margin-left: -2px; + vertical-align: -3px; } .separator { diff --git a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.spec.ts b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.spec.ts index 8d2de98a013..5d81fea4da2 100644 --- a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.spec.ts +++ b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.spec.ts @@ -101,7 +101,7 @@ describe('AppContainersCardComponent', () => { const details = spectator.queryAll('.details-item'); expect(details).toHaveLength(1); - expect(details[0].querySelector('.label')).toHaveText('Ports:'); + expect(details[0].querySelector('.label')).toHaveText('Ports'); expect(details[0].querySelector('.value')).toHaveText('tcp://0.0.0.0:20489:20489'); expect(details[0].querySelector('.value')).toHaveText('tcp://0.0.0.0:8080:80'); }); diff --git a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.ts b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.ts index 7a19ba5fc40..1cf52d3368a 100644 --- a/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.ts +++ b/src/app/pages/apps/components/installed-apps/app-workloads-card/app-workloads-card.component.ts @@ -14,6 +14,7 @@ import { TranslateModule, TranslateService } from '@ngx-translate/core'; import { RequiresRolesDirective } from 'app/directives/requires-roles/requires-roles.directive'; import { AppState } from 'app/enums/app-state.enum'; import { Role } from 'app/enums/role.enum'; +import { helptextApps } from 'app/helptext/apps/apps'; import { App, AppContainerDetails, appContainerStateLabels, } from 'app/interfaces/app.interface'; @@ -21,6 +22,7 @@ import { ShellDetailsDialogFormValue } from 'app/interfaces/shell-details-dialog import { IxIconComponent } from 'app/modules/ix-icon/ix-icon.component'; import { MapValuePipe } from 'app/modules/pipes/map-value/map-value.pipe'; import { TestDirective } from 'app/modules/test-id/test.directive'; +import { TooltipComponent } from 'app/modules/tooltip/tooltip.component'; import { VolumeMountsDialogComponent, } from 'app/pages/apps/components/installed-apps/app-workloads-card/volume-mounts-dialog/volume-mounts-dialog.component'; @@ -47,6 +49,7 @@ import { ShellDetailsType } from 'app/pages/apps/enum/shell-details-type.enum'; MatIconButton, MatCardContent, DecimalPipe, + TooltipComponent, ], }) export class AppWorkloadsCardComponent { @@ -56,6 +59,7 @@ export class AppWorkloadsCardComponent { protected readonly requiredRoles = [Role.AppsWrite]; protected readonly appContainerStateLabels = appContainerStateLabels; + protected readonly helptext = helptextApps; constructor( private matDialog: MatDialog, 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 32b203e611d..f39474ebcd9 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 @@ -122,7 +122,7 @@ export class BootEnvironmentListComponent implements OnInit { return this.translate.instant('Now'); case BootEnvironmentActive.Restart: return this.translate.instant('Restart'); - case BootEnvironmentActive.NowReboot: + case BootEnvironmentActive.NowRestart: return this.translate.instant('Now/Restart'); default: return row.active; @@ -149,7 +149,9 @@ export class BootEnvironmentListComponent implements OnInit { iconName: iconMarker('mdi-check-decagram'), requiredRoles: this.requiredRoles, tooltip: this.translate.instant('Activate'), - hidden: (row) => of(row.active.includes('R')), + hidden: (row) => { + return of([BootEnvironmentActive.NowRestart, BootEnvironmentActive.Restart].includes(row.active)); + }, onClick: (row) => this.doActivate(row), }, { diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 4b96b4df805..9b2618e3800 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -1610,6 +1610,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname Database": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 0c752f6ada8..05dee41e29e 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1460,6 +1460,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Hostname (TrueNAS Controller 2)": "", "Hostname Database": "", "Hostname Database:": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index e1227df3002..adefd428fb9 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -26,7 +26,6 @@ "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": "", - "ACL": "ACL", "ACL Editor": "", "ACL Types & ACL Modes": "", "ACME Certificate Created": "", @@ -36,7 +35,6 @@ "ACME Server Directory URI": "", "AD Timeout": "", "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "", - "ALL Initiators Allowed": "TODOS los iniciadores permitidos", "ARN": "", "Abort Job": "", "Access Control Entry": "", @@ -46,21 +44,16 @@ "Access from your IP is restricted": "", "Account Read": "", "Account Write": "", - "Ace has errors.": "Ace tiene errores.", "Activate the Basic Constraints extension to identify whether the certificate's subject is a CA and the maximum depth of valid certification paths that include this certificate.": "", "Activate this certificate extension. The key usage extension defines the purpose (e.g., encipherment, signature, certificate signing) of the key contained in the certificate. The usage restriction might be employed when a key that could be used for more than one operation is to be restricted. For example, when an RSA key should be used only to verify signatures on objects other than public key certificates and CRLs, the Digital Signature bits would be asserted. Likewise, when an RSA key should be used only for key management, the Key Encipherment bit would be asserted.
See RFC 3280, section 4.2.1.3 for more information.": "", "Activate this certificate extension.The Extended Key Usage extension identifies and limits valid uses for this certificate, such as client authentication or server authentication.See RFC 3280, section 4.2.1.13 for more details.": "", "Activate this extension. The authority key identifier extension provides a means of identifying the public key corresponding to the private key used to sign a certificate. This extension is used where an issuer has multiple signing keys (either due to multiple concurrent key pairs or due to changeover). The identification MAY be based on either the key identifier (the subject key identifier in the issuer's certificate) or on the issuer name and serial number.
See RFC 3280, section 4.2.1.1 for more information.": "", "Add Share": "", "Add any more sshd_config(5) options not covered in this screen. Enter one option per line. These options are case-sensitive. Misspellings can prevent the SSH service from starting.": "", - "Add bucket": "Agregar balde", "Add catalog to system even if some trains are unhealthy.": "", - "Add iSCSI": "Agregar iSCSI", - "Add new": "Añadir nuevo", "Add the required no. of disks to get a vdev size estimate": "", "Add to trusted store": "", "Add user linked API Key": "", - "Add {item}": "Agregar {item}", "Adding data VDEVs of different types is not supported.": "", "Adding, removing, or changing hardware components.": "", "Additional Kerberos application settings. See the \"appdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "", @@ -72,20 +65,10 @@ "Adjust Resilver Priority": "", "Adjust Scrub Priority": "", "Admins": "", - "Alert List Read": "Lista de alertas de lectura", - "Alert List Write": "Lista de alertas de escritura", - "Alert Services": "Servicios de alerta", - "Alert service saved": "Servicio de alerta guardado", - "Aliases": "Alias", - "All Users": "Todos los usuarios", - "Allow Directory Service users to access WebUI": "Permitir que los usuarios del servicio de directorio accedan a la interfaz web", - "Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "Permitir que los clientes accedan al servidor TrueNAS si son miembros de dominios que tienen una relación de confianza con el dominio al que está unido TrueNAS. Esto requiere una configuración de backend de idmap válida para todos los dominios de confianza.", - "Allow files which return cannotDownloadAbusiveFile to be downloaded.": "Permitir que se descarguen archivos que devuelven cannotDownloadAbusiveFile.", "Allow group members to use sudo. Group members are prompted for their password when using sudo.": "", "Allow more ciphers for sshd(8) in addition to the defaults in sshd_config(5). None allows unencrypted SSH connections and AES128-CBC allows the 128-bit Advanced Encryption Standard.

WARNING: these ciphers are considered security vulnerabilities and should only be allowed in a secure network environment.": "", "Allow non-unique serialed disks (not recommended)": "", "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "", - "Allowed IP Addressed": "Direcciones IP permitidas", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "", "Allowed network in network/mask CIDR notation (example 1.2.3.4/24). One entry per field. Leave empty to allow everybody.": "", "Alternatively, you can start by configuring VDEVs in the wizard first and then opening Manual selection to make adjustments.": "", @@ -97,9 +80,6 @@ "An update is already applied. Please restart the system.": "", "Anonymous User Download Bandwidth": "", "Anonymous User Upload Bandwidth": "", - "App Network": "Red de app", - "App is restarted": "App está reiniciada", - "App is restarting": "App está reiniciándose", "Appends a suffix to the share connection path. This is used to provide unique shares on a per-user, per-computer, or per-IP address basis. Suffixes can contain a macro. See the smb.conf manual page for a list of supported macros. The connectpath **must** be preset before a client connects.": "", "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "", "Apps Read": "", @@ -143,16 +123,11 @@ "AuthVersion": "", "Authority Key Config": "", "Authorized Keys": "", - "Auto": "Auto", - "Auto Refresh": "Auto refrezco", - "Auto TRIM": "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.": "", - "Autostart": "Inicio automático", "Back up the encryption key now! If the key is lost, the data on the disks will also be lost with no hope of recovery. Click Download Encryption Key to begin the download. This type of encryption is for users storing sensitive data. iXsystems, Inc. cannot be held responsible for any lost or unrecoverable data as a consequence of using this feature.": "", "Backblaze B2": "", - "Backend": "Backend", "Backup Tasks": "", "Backup to Cloud or another TrueNAS via links below": "", "Base Image": "", @@ -169,10 +144,6 @@ "Bridge Members": "", "Bridge Settings": "", "Bridge interface": "", - "Browse": "Navegar", - "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "Buscar un archivo existente. Creá un nuevo archivo buscando un conjunto de datos y agregando /(filename.ext) a la ruta.", - "Browse to the path to be copied. Linux file path limits apply. Other operating systems can have different limits which might affect how they can be used as sources or destinations.": "Buscá la ruta que deseas copiar. Se aplican límites a las rutas de archivo de Linux. Otros sistemas operativos pueden tener límites diferentes que podrían afectar la forma en que se pueden usar como fuentes o destinos.", - "Browser time: {time}": "Hora del navegador: {time}", "Bucket Name": "", "Bucket Policy Only": "", "Bulk Actions": "", @@ -180,22 +151,10 @@ "Bulk actions": "", "By clicking the share creation checkbox below, a new share will be created on form submission with the default share settings Additionally, local TrueNAS users will have access to the resulting share and some more configuration options will be available.": "", "By snapshot creation time": "", - "CA": "CA", "CC": "", - "CD-ROM": "CD-ROM", - "CD-ROM Path": "Ruta del CD-ROM", - "CLI": "CLI", "CN": "", "CN Realm": "", - "CONVEYANCE": "TRANSPORTE", - "CPU": "CPU", - "CSR": "CSR", - "CSR deleted": "CSR eliminado", - "CSRs": "CSRs", "Cache VDEVs": "", - "Calculate number of threads dynamically": "Calcular el número de subprocesos dinámicamente", - "Callback Address": "Dirección de devolución de llamada", - "Callback State": "Estado de devolución de llamada", "Can be set to 0, left empty for TrueNAS to assign a port when the VM is started, or set to a fixed, preferred port number.": "", "Can not retrieve response": "", "Canceled Resilver on {date}": "", @@ -205,11 +164,7 @@ "Capture and attach screenshot to the review": "", "Catalog Read": "", "Catalog Write": "", - "Certificate Authority Read": "Autoridad de certificación de lectura", - "Certificate Authority Write": "Autoridad de certificación de escritura", - "Certificate Options": "Opciones de certificado", "Certificate Read": "", - "Certificate Subject": "Asunto del certificado", "Changes to ACL type affect how on-disk ZFS ACL is written and read.\nWhen the ACL type is changed from POSIX to NFSv4, no migration is performed for default and access ACLs encoded in the posix1e acl extended attributes to native ZFS ACLs.\nWhen ACL type is changed from NFSv4 to POSIX, native ZFS ACLs are not converted to posix1e extended attributes, but the native ACL will be used internally by ZFS for access checks.\n\nThis means that the user must manually set new ACLs recursively on the dataset after ACL type changes in order to avoid unexpected permissions behavior.\n\nThis action will be destructive, and so it is advised to take a ZFS snapshot of the dataset prior to ACL type changes and permissions modifications.": "", "Changing Advanced settings can be dangerous when done incorrectly. Please use caution before saving.": "", "Changing global 2FA settings might cause user secrets to reset. Which means users will have to reconfigure their 2FA. Are you sure you want to continue?": "", @@ -228,21 +183,16 @@ "Click Add to add first VDEV.": "", "Click for information on TrueNAS SCALE Migration, Nightly trains and other upgrade options.": "", "Click to give {index} star rating.": "", - "Client ID": "ID del cliente", - "Close Feedback Dialog": "Cerrar envío de comentarios", "Close Inspect VDEVs Dialog": "", "Close Instance Form": "", "Close scheduler": "", - "Close the form": "Cerrar el formulario", "Close {formType} Form": "", - "Cloud Backup": "Copia de seguridad en la nube", "Cloud Backup Read": "", "Cloud Backup Restored Successfully": "", "Cloud Backup Snapshot": "", "Cloud Backup Write": "", "Cloud Backup «{name}» has started.": "", "Cloud Credential": "", - "Cloud Sync": "Sincronización en la nube", "Cloud Sync Read": "", "Cloud Sync Task": "", "Cloud Sync Task Wizard": "", @@ -263,7 +213,6 @@ "Config Email": "", "Config Service": "", "Config-Reset": "", - "Configure 2FA Secret": "Configurar secreto 2FA", "Configure Audit": "", "Configure Global Two Factor Authentication": "", "Configure Isolated GPU Devices": "", @@ -349,7 +298,6 @@ "Data Topology": "", "Data VDEVs": "", "Data Written": "", - "Data is identical in each disk. A mirror requires at least two disks, provides the most redundancy, and has the least capacity.": "Los datos son idénticos en cada disco. Un espejo requiere al menos dos discos, proporciona la mayor redundancia y tiene la menor capacidad.", "Dataset Capacity Management": "", "Dataset Data Protection": "", "Dataset Delete": "", @@ -782,6 +730,7 @@ "Host Model": "", "Host Mounts": "", "Host Passthrough": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname Database": "", "Hostname Database:": "", @@ -907,19 +856,11 @@ "Issue": "", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "", "It is not recommended to extend a pool with one or more VDEVs containing different numbers of disks. Continue?": "", - "It seems you haven't configured pools yet.": "Parece que todavía no configuraste los pools.", - "Items per page": "Elementos por página", "JBOF": "", "JBOF Read": "", "JBOF Write": "", "Jira": "", - "Job": "Trabajo", - "Job aborted": "Trabajo abortado", "Job {job} Completed Successfully": "", - "Jobs": "Trabajos", - "Jobs History": "Historial de trabajos", - "Jobs in progress": "Trabajos en proceso", - "Joining": "Uniendo", "KDC": "", "KMIP": "", "KMIP Read": "", @@ -931,9 +872,6 @@ "Kerberos Keytabs": "", "Kerberos Principal": "", "Kerberos Realms": "", - "Kernel": "Núcleo", - "Kernel Parameters": "Parámetros del núcleo", - "Kernel Settings": "Configuración del núcleo", "Key Cert Sign": "", "Key Usage Config": "", "Key for {id}": "", @@ -942,17 +880,12 @@ "Keychain Credential Read": "", "Keychain Credential Write": "", "Keyhash": "", - "Keypairs": "Pares de claves", - "Keys Synced": "Claves sincronizadas", "Keys for {id} datasets": "", "Keys pending to be synced between KMIP server and TN database were cleared.": "", - "Keywords": "Palabras clave", "LACPDU Rate": "", "LBA of First Error": "", "LDAP": "", - "LDAP Domain": "Dominio LDAP", "LDAP Realm": "", - "LDAP Server": "Servidor LDAP", "LDAP Timeout": "", "LDAP User DN": "", "LDAP User DN Password": "", @@ -961,224 +894,65 @@ "LINK STATE DOWN": "", "LINK STATE UNKNOWN": "", "LINK STATE UP": "", - "LOCAL": "LOCAL", - "LONG": "LARGO", "LUN ID": "", "LUN RPM": "", - "Label": "Etiqueta", "Lan": "", "Languages other than English are provided by the community and may be incomplete. Learn how to contribute.": "", - "Last 24 hours": "Ultimas 24 horas", - "Last 3 days": "Últimos 3 días", - "Last Page": "Última página", "Last Resilver": "", "Last Run": "", - "Last Scan": "Último escaneo", - "Last Scan Duration": "Duración del último escaneo", - "Last Scan Errors": "Errores del último escaneo", "Last Scrub": "", "Last Scrub Date": "", "Last Scrub Run": "", - "Last month": "Mes pasado", - "Last successful": "Último exitoso", - "Last week": "La semana pasada", "Last {result} Test": "", - "Latest version": "Última versión", "Launch Docker Image": "", "Layout": "", - "Leave Feedback": "Dejar un comentario", "Leaving": "", - "Legacy AFP Compatibility": "Compatibilidad con AFP heredada", "Legacy OS: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "Legacy feature.

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

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

MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "", "License Update": "", "Licensed Serials": "", "Light status is unknown.": "", - "Limit": "Limitar", - "Limit Pool To A Single Enclosure": "Limitar pool a un solo recinto", - "Limit To {name} Enclosure": "Limitar al recinto {name}", - "Link Aggregation Interfaces": "Interfaces de agregación de enlaces", - "Link Aggregation Protocol": "Protocolo de agregación de enlaces", - "Link aggregation interface": "Interfaz de agregación de enlaces", - "Linked Service": "Servicio vinculado", "Linux": "", "List of groups for which to generate audit messages. Keep this list empty to Watch All.": "", "List of groups to ignore when auditing. If conflict arises between Watch List and Ignore List (based on user group membership), then Watch List will take precedence and ops will be audited.": "", "Load an existing provider configuration.": "", "Loading disks...": "", - "Local": "Local", - "Local Administrator": "Administrador local", - "Local Groups Name": "Nombre de los grupos locales", "Local Master": "", - "Local User Download Bandwidth": "Ancho de banda de descarga de usuario local", "Local heartbeat interface does not exist.": "", "Local heartbeat interface is down.": "", - "Localization Settings": "Configuración de localización", - "Lock Dataset": "Bloquear conjunto de datos", - "Lock Dataset {datasetName}?": "¿Bloquear conjunto de datos {datasetName}?", "Locked": "", "Locked by ancestor": "", "Locks": "", "Log Details": "", "Log Excerpt": "", - "Log In": "Iniciar sesión", - "Log In To Gmail": "Iniciar sesión en Gmail", - "Log In To Provider": "Iniciar sesión en el proveedor", - "Log Path": "Ruta de registro", "Log VDEVs": "", - "Log in to Gmail to set up Oauth credentials.": "Iniciar sesión en Gmail para configurar las credenciales de Oauth.", - "Logged In To Gmail": "Inició sesión en Gmail", - "Logged In To Jira": "Inició sesión en Jira", - "Logged In To Provider": "Inició sesión en el proveedor", - "Logging in...": "Iniciando sesión...", - "Login Banner": "Pancarta de inicio de sesión", "Login To Jira To Submit": "", "Login error. Please try again.": "", "Login was canceled. Please try again if you want to connect your account.": "", "Logoff": "", - "Logout": "Cerrar sesión", - "Logs Details": "Detalles de los registros", - "Long": "Largo", - "Long time ago": "Hace mucho tiempo", - "Loss of Functionality": "Pérdida de funcionalidad", - "Low Bandwidth (4)": "Ancho de banda bajo (4)", - "Low Capacity": "Capacidad baja", - "Lowest Temperature": "Temperatura más baja", - "MAC Address": "Dirección MAC", "MOTD": "", - "MOVE": "MOVER", "MTU": "", "Machine": "", "Machine Time: {machineTime} \n Browser Time: {browserTime}": "", "Mail Server Port": "", - "Main menu": "Menú principal", "Maintenance Window": "", "Major": "", "Make the currently active TrueNAS controller the default when both TrueNAS controllers are online and HA is enabled. To change the default TrueNAS controller, unset this option on the default TrueNAS controller and allow the system to fail over. This briefly interrupts system services.": "", "Makes the group available for permissions editors over SMB protocol (and the share ACL editor). It is not used for SMB authentication or determining the user session token or internal permissions checks.": "", - "Manage Advanced Settings": "Administrar configuraciones avanzadas", - "Manage Apps Settings": "Administrar configuración de apps", - "Manage Cloud Sync Tasks": "Administrar tareas de sincronización en la nube", - "Manage Container Images": "Administrar imágenes de contenedores", - "Manage Credentials": "Administrar credenciales", - "Manage Datasets": "Administrar conjuntos de datos", - "Manage Devices": "Administrar dispositivos", - "Manage Disks": "Administrar discos", "Manage Global SED Password": "", - "Manage Group Quotas": "Administrar cuotas de grupo", - "Manage Groups Server-side": "Administrar grupos del lado del servidor", - "Manage Installed Apps": "Administrar apps instaladas", - "Manage NFS Shares": "Administrar recursos compartidos NFS", - "Manage Replication Tasks": "Administrar tareas de replicación", - "Manage Rsync Tasks": "Administrar tareas de Rsync", - "Manage S.M.A.R.T. Tasks": "Administrar tareas S.M.A.R.T.", - "Manage SED Password": "Administrar contraseña SED", - "Manage SMB Shares": "Administrar recursos compartidos SMB", - "Manage Snapshot Tasks": "Administrar tareas de instantánea", - "Manage Snapshots": "Administrar instantáneas", - "Manage Snapshots Tasks": "Administrar tareas de instantáneas", - "Manage User Quotas": "Administrar cuotas de usuarios", - "Manage VM Settings": "Administrar configuración de la VM", - "Manage iSCSI Shares": "Administrar recursos compartidos iSCSI", - "Manage members of {name} group": "Administrar miembros del grupo {name}", - "Managed by TrueCommand": "Administrado por TrueCommand", - "Manual": "Manual", - "Manual Disk Selection": "Selección manual de discos", - "Manual Selection": "Selección manual", - "Manual Test": "Prueba manual", - "Manual Upgrade": "Actualización manual", - "Manual disk selection allows you to create VDEVs and add disks to those VDEVs individually.": "La selección manual de discos te permite crear VDEVs y agregar discos a esos VDEVs individualmente.", - "Manual layout": "Disposición manual", - "Manually Configured VDEVs": "VDEVs configurados manualmente", - "Mapall Group": "Grupo Mapall", - "Mapall User": "Usuario Mapall", - "Maproot Group": "Grupo Maproot", - "Maproot User": "Usuario Maproot", - "Masquerade Address": "Dirección de máscara", - "Matching naming schema": "Esquema de nombres coincidente", - "Matching regular expression": "Expresión regular coincidente", - "Max dataset nesting in ZFS is limited to 50. We are already at that limit in the parent dataset path. It is not possible to create anymore nested datasets under this path.": "La anidación máxima de conjuntos de datos en ZFS está limitada a 50. Ya alcanzamos ese límite en la ruta del conjunto de datos principal. No se puede crear más conjuntos de datos anidados en esta ruta.", - "Maximize Dispersal": "Maximizar dispersión", - "Maximize Enclosure Dispersal": "Maximizar la dispersión del recinto", - "Maximum Passive Port": "Puerto pasivo máximo", - "Maximum number of replication tasks being executed simultaneously.": "Número máximo de tareas de replicación que se ejecutan simultáneamente.", - "Maximum number of seconds a client is allowed to spend connected, after\nauthentication, without issuing a command which results in creating an active or passive data connection\n(i.e. sending/receiving a file, or receiving a directory listing).": "Número máximo de segundos que un cliente puede permanecer conectado, después de la autenticación, sin emitir un comando que resulte en la creación de una conexión de datos activa o pasiva\n(es decir, enviar/recibir un archivo o recibir un listado de directorios).", - "Maximum number of seconds that proftpd will allow clients to stay connected without receiving\nany data on either the control or data connection.": "Número máximo de segundos que proftpd permitirá que los clientes permanezcan conectados sin recibir\nningún dato ni en la conexión de control ni en la de datos.", - "Medium Bandwidth (8)": "Ancho de banda medio (8)", - "Mega": "Mega", - "Memory Stats": "Estadísticas de memoria", - "Memory Usage": "Uso de memoria", - "Memory Utilization": "Utilización de memoria", - "Memory device": "Dispositivo de memoria", - "Memory usage of app": "Uso de memoria de la app", - "Message": "Mensaje", "Metadata (Special) Small Block Size": "", "Metadata VDEVs": "", "Method Call": "", "Method of snapshot transfer:
  • SSH is supported by most systems. It requires a previously created connection in System > SSH Connections.
  • SSH+NETCAT uses SSH to establish a connection to the destination system, then uses py-libzfs to send an unencrypted data stream for higher transfer speeds. This only works when replicating to a TrueNAS, or other system with py-libzfs installed.
  • LOCAL efficiently replicates snapshots to another dataset on the same system without using the network.
  • LEGACY uses the legacy replication engine from FreeNAS 11.2 and earlier.
": "", - "Metrics": "Métricas", - "Microsoft Azure": "Microsoft Azure", - "Middleware": "Software intermedio", - "Middleware - Credentials": "Software intermedio - Credenciales", - "Middleware - Method": "Software intermedio - Método", - "Minimum Memory": "Memoria mínima", - "Minimum Memory Size": "Tamaño mínimo de memoria", - "Minimum Passive Port": "Puerto pasivo Mínimo", - "Minor": "Menor", - "Minor Version": "Versión menor", "Minutes of inactivity before the drive enters standby mode. Temperature monitoring is disabled for standby disks.": "", - "Missing group - {gid}": "Grupo desaparecido - {gid}", - "Missing permissions for this action": "Permisos faltantes para esta acción", - "Mixed Capacity": "Capacidad mixta", "Mixing disks of different sizes in a vdev is not recommended.": "", "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "", - "Modify": "Modificar", - "Module": "Módulo", - "Monitor": "Monitor", - "More info...": "Más info...", - "Move all items to the left side list": "Mover todos los elementos a la lista del lado izquierdo", - "Move all items to the right side list": "Mover todos los elementos a la lista del lado derecho", - "Move selected items to the left side list": "Mover los elementos seleccionados a la lista del lado izquierdo", - "Move selected items to the right side list": "Mover los elementos seleccionados a la lista del lado derecho", - "Move widget down": "Mover el widget hacia abajo", - "Move widget up": "Mover el widget hacia arriba", - "Multichannel": "Multicanal", - "Multiple Errors": "Múltiples errores", - "Multiprotocol": "Multiprotocolo", - "Must be part of the pool to check errors.": "Debe ser parte del grupo para verificar errores.", - "N/A": "N/A", "NAA": "", - "NEW": "NUEVO", - "NFS": "NFS", - "NFS Sessions": "Sesiones NFS", - "NFS Share": "Recursos compartidos NFS", - "NFS share created": "Recurso compartido NFS creado", - "NFS share updated": "Recurso compartido NFS actualizado", - "NFS3 Session": "Sesión NFS3", - "NFS4 Session": "Sesión NFS4", - "NFSv4": "NFSv4", - "NFSv4 DNS Domain": "Dominio DNS NFSv4", - "NIC": "NIC", - "NIC To Attach": "NIC para adjuntar", - "NS": "NS", - "NTP Server": "Servidor NTP", "NVMe-oF Expansion Shelves": "", - "Name And Method": "Nombre y método", "Name ^ \"Local\" AND \"Web Shell Access\" = true": "", "Name must start and end with a lowercase alphanumeric character. Hyphen is allowed in the middle e.g abc123, abc, abcd-1232": "", - "Name not added": "Nombre no añadido", - "Name of the new alert service.": "Nombre del nuevo servicio de alerta.", - "Name of the pool is required": "El nombre del pool es obligatorio", - "Name of the pool must be correct": "El nombre del pool tiene que ser correcto", - "Name of the zvol is required": "El nombre del zvol es obligatorio", - "Name of the zvol must be correct": "El nombre del zvol tiene que ser correcto.", "Name ~ \"admin\"": "", - "Nameserver": "Servidor de nombres", - "Nameserver (DHCP)": "Servidor de nombres (DHCP)", - "Nameserver {n}": "Servidor de nombres {n}", - "Negotiate – only encrypt transport if explicitly requested by the SMB client": "Negociar: solo cifrar el transporte si lo pide explícitamente el cliente SMB", - "NetBIOS": "NetBIOS", "NetBIOS Name of this NAS. This name must differ from the Workgroup name and be no greater than 15 characters.": "", "Netcat Active Side": "", "Netcat Active Side Connect Address": "", @@ -1186,157 +960,52 @@ "Netcat Active Side Max Port": "", "Netcat Active Side Min Port": "", "Netdata": "", - "Network Configuration": "Configuración de red", "Network General Read": "", - "Network I/O": "E/S de red", - "Network Interface Card": "Tarjeta de interfaz de red", "Network Interface Read": "", "Network Interface Write": "", "Network Reconnection Issue": "", - "Network Reset": "Restablecimiento de red", - "Network Settings": "Configuración de red", - "Network Stats": "Estadísticas de red", - "Network Traffic": "Tráfico de red", - "Network Usage": "Uso de red", - "Network Utilization": "Utilización de la red", - "Network interface settings have been temporarily changed for testing. The settings will revert to the previous configuration after {x} seconds unless SAVE CHANGES is chosen to make them permanent.": "Se modificaron temporalmente las configuraciones de la interfaz de red para realizar pruebas. Las configuraciones volverán a la configuración anterior después de {x} segundos, a menos que se seleccione GUARDAR CAMBIOS para que sean permanentes.", "Network interface updated": "", "Network interface {interface} not found.": "", "Network interfaces do not match between storage controllers.": "", "Network size of each docker network which will be cut off from base subnet.": "", - "Networking": "Redes", - "New & Updated Apps": "Apps nuevas y actualizadas", "New ACME DNS-Authenticator": "", - "New Alert": "Nueva alerta", - "New Backup Credential": "Nueva credencial de respaldo", "New Bucket Name": "", - "New CSR": "Nuevo CSR", - "New Certificate": "Nuevo certificado", - "New Certificate Authority": "Nueva autoridad de certificación", - "New Certificate Signing Requests": "Nuevas solicitudes de firma de certificados", - "New Cloud Backup": "Nueva copia en la nube", - "New Cloud Sync Task": "Nueva tarea de sincronización en la nube", "New Could Credential": "", - "New Credential": "Nueva credencial", - "New Cron Job": "Nueva tarea cron", - "New DNS Authenticator": "Nuevo autenticador de DNS", - "New Dataset": "Nuevo conjunto de datos", - "New Devices": "Nuevos dispositivos", - "New Disk Test": "Prueba de disco nueva", "New Exporter": "", - "New Group": "Nuevo grupo", - "New IPv4 Default Gateway": "Nueva puerta de enlace predeterminada IPv4", "New Idmap": "", - "New Init/Shutdown Script": "Nuevo script de inicio/apagado", - "New Interface": "Nueva interfaz", "New Kerberos Keytab": "", "New Kerberos Realm": "", "New Kernel Parameters": "", - "New Key": "Nueva clave", - "New NFS Share": "Nuevo recurso compartido NFS", - "New NTP Server": "Nuevo servidor NTP", - "New Periodic S.M.A.R.T. Test": "Nueva prueba periódica S.M.A.R.T.", "New Periodic Snapshot Task": "", - "New Pool": "Nuevo pool", - "New Privilege": "Nuevo privilegio", - "New Replication Task": "Nueva tarea de replicación", "New Reporting Exporter": "", - "New Rsync Task": "Nueva tarea Rsync", - "New SMB Share": "Nuevo recurso compartido SMB", - "New SSH Connection": "Nueva conexión SSH", - "New SSH Keypair": "Nuevo par de claves SSH", "New Scrub Task": "", - "New Share": "Nuevo recurso compartido", - "New Smart Test": "Nueva prueba inteligente", - "New Snapshot Task": "Nueva tarea de instantánea", - "New Static Route": "Nueva ruta estática", - "New Sysctl": "Nuevo Sysctl", "New TrueCloud Backup Task": "", "New Tunable": "", - "New User": "Nuevo usuario", "New VM": "", - "New Virtual Machine": "Nueva máquina virtual", - "New Widget": "Nuevo widget", - "New Zvol": "Nuevo Zvol", - "New iSCSI": "Nuevo iSCSI", - "New password": "Nueva contraseña", - "New password and confirmation should match.": "La nueva contraseña y la confirmación deben ser iguales.", - "New widgets and layouts.": "Nuevos widgets y diseños.", "Newsletter": "", - "Next Page": "Página siguiente", - "No": "No", - "No Applications Installed": "No hay aplicaciones instaladas", - "No Applications are Available": "No hay aplicaciones disponibles", - "No Changelog": "Sin registro de cambios", - "No Data": "Sin datos", - "No Datasets": "Sin conjuntos de datos", "No Enclosure Dispersal Strategy": "", - "No Inherit": "No heredar", "No Isolated GPU Device(s) configured": "", "No Pods Found": "", "No Pools Found": "", "No Propagate Inherit": "", - "No Search Results.": "No hay resultados de búsqueda.", - "No VDEVs added.": "No se agregaron VDEVs.", "No arguments are passed": "", "No available licensed Expansion Shelves ": "", - "No containers are available.": "No hay contenedores disponibles.", - "No descriptor provided": "No se proporcionó ninguna descripción", - "No disks available.": "No hay discos disponibles", - "No e-mail address is set for root user or any other local administrator. Please, configure such an email address first.": "No se configuró ninguna dirección de correo para el usuario root ni para ningún otro administrador local. Configurá primero dicha dirección de correo.", - "No enclosure": "Sin recinto", - "No errors": "Sin errores", - "No events to display.": "No hay eventos para mostrar.", - "No images found": "No se encontraron imágenes", - "No items have been added yet.": "Todavía no se agregaron artículos.", - "No jobs running.": "No hay trabajos ejecutándose.", - "No logs are available": "No hay registros disponibles", - "No logs available": "No hay registros disponibles", - "No logs yet": "Todavía no hay registros", - "No matching results found": "No se encontraron resultados coincidentes", - "No options": "Sin opciones", "No options are passed": "", - "No ports are being used.": "No se están usando puertos.", - "No records": "Sin registros", "No results found in {section}": "", - "No similar apps found.": "No se encontraron apps similares.", "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "", "No unused disks": "", "No update found.": "", "No vdev info for this disk": "", - "No volume mounts": "Sin montajes de volumen", - "No warnings": "Sin advertencias", "Node set allows setting NUMA nodes for multi NUMA processors when CPU set was defined. Better memory locality can be achieved by setting node set based on assigned CPU set. E.g. if cpus 0,1 belong to NUMA node 0 then setting nodeset to 0 will improve memory locality": "", "Nodes Virtual IP states do not agree.": "", - "None requested": "No se solicitó ninguna", - "Normal": "Normal", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "", "Not Set": "", - "Not Shared": "No compartido", "Not enough free space. Maximum available: {space}": "", - "Notes": "Notas", - "Notifications": "Notificaciones", "Notransfer Timeout": "", - "Now": "Ahora", - "Now/Restart": "Ahora/Reiniciar", - "Num Pending Deletes": "Número de eliminaciones pendientes", - "Number of VDEVs": "Número de VDEVs", - "Number of bytes": "Número de bytes", - "Number of days to retain local audit messages.": "Número de días para conservar los mensajes de auditoría local.", - "OAuth Authentication": "Autenticación OAuth", - "OAuth Token for current session": "Token OAuth para la sesión actual", - "OK": "OK", - "OQ Used": "OQ usado", - "OS": "OS", - "OS Version": "Versión del SO", - "Oct": "Oct", - "Off by default. When set, smbd(8) attempts to authenticate users with the insecure and vulnerable NTLMv1 encryption. This setting allows backward compatibility with older versions of Windows, but is not recommended and should not be used on untrusted networks.": "Desactivado de forma predeterminada. Cuando está configurado, smbd(8) intenta autenticar a los usuarios con el cifrado NTLMv1, que es inseguro y vulnerable. Esta configuración permite la compatibilidad con versiones anteriores de Windows, pero no se recomienda y no se debe utilizar en redes que no sean de confianza.", "Offline VDEVs": "", "Offline disk {name}?": "", "Offload Read": "", "Offload Write": "", - "Ok": "Ok", - "Okay": "Okay", "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.": "", "Once enabled, users will be required to set up two factor authentication next time they login.": "", "One half widget and two quarter widgets below": "", @@ -1358,15 +1027,12 @@ "Open ticket": "", "OpenStack Swift": "", "Opened at": "", - "Operation": "Operación", "Operation will change permissions on path: {path}": "", - "Optional IP": "IP opcional", "Optional IP of 2nd Redfish management interface.": "", "Optional. Only needed for private images.": "", "Optional: CPU Set (Examples: 0-3,8-11)": "", "Optional: NUMA nodeset (Example: 0-1)": "", "Options cannot be loaded": "", - "Other Devices": "Otros dispositivos", "Other Execute": "", "Other Read": "", "Other TrueNAS controller cannot be reached.": "", @@ -1375,7 +1041,6 @@ "Other Write": "", "Other node is currently configuring the system dataset.": "", "Other node is currently processing a failover event.": "", - "Others": "Otros", "Outbound Activity": "", "Outbound Network:": "", "Outgoing Mail Server": "", @@ -1399,32 +1064,18 @@ "Passthrough": "", "Password Login": "", "Password Login Groups": "", - "Password Servers": "Servidores de contraseñas", - "Password and confirmation should match.": "La contraseña y la confirmación deben ser iguales.", - "Password is not set": "La contraseña no está establecida", - "Password is set": "La contraseña está establecida", - "Password login enabled": "Inicio de sesión con contraseña habilitado", - "Pattern": "Patrón", "Pattern of naming custom snapshots to include in the replication with the periodic snapshot schedule. Enter the strftime(3) strings that match the snapshots to include in the replication.

When a periodic snapshot is not linked to the replication, enter the naming schema for manually created snapshots. Has the same %Y, %m, %d, %H, and %M string requirements as the Naming Schema in a Periodic Snapshot Task. Separate entries by pressing Enter.": "", "Pattern of naming custom snapshots to be replicated. Enter the name and strftime(3) %Y, %m, %d, %H, and %M strings that match the snapshots to include in the replication. Separate entries by pressing Enter. The number of snapshots matching the patterns are shown.": "", "Pause Scrub": "", - "Pending": "Pendiente", "Pending Sync": "", "Pending Sync Keys Cleared": "", "Percentage of total core utilization": "", "Percentage used of dataset quota at which to generate a critical alert.": "", "Percentage used of dataset quota at which to generate a warning alert.": "", "Perform Reverse DNS Lookups": "", - "Performance": "Rendimiento", - "Performance Optimization": "Optimización de rendimiento", - "Periodic S.M.A.R.T. Tests": "Pruebas periódicas S.M.A.R.T.", - "Permissions Advanced": "Permisos avanzados", - "Permissions Basic": "Permisos básicos", - "Permissions Editor": "Editor de permisos", "Permissions cannot be modified on a locked dataset.": "", "Permissions cannot be modified on a read-only dataset.": "", "Permissions cannot be modified on a root dataset.": "", - "Permissions saved.": "Permisos guardados.", "Photo Library API client secret generated from the Google API Console": "", "Pin vcpus": "", "Please click the button below to create a pool.": "", @@ -1435,16 +1086,12 @@ "Please specify name to be used to lookup catalog.": "", "Please specify the name of the image to pull. Format for the name is \"registry/repo/image\"": "", "Please specify trains from which UI should retrieve available applications for the catalog.": "", - "Please specify whether to install NVIDIA driver or not.": "Por favor especificá si deseás instalar el controlador NVIDIA o no.", "Pods": "", - "Pool": "Pool", "Pool Creation Wizard": "", "Pool Disks have {alerts} alerts and {smartTests} failed S.M.A.R.T. tests": "", - "Pool Name": "Nombre del pool", "Pool Options for {pool}": "", "Pool Scrub Read": "", "Pool Scrub Write": "", - "Pool Usage": "Uso del pool", "Pool Wizard": "", "Pool contains {status} Data VDEVs": "", "Pool created successfully": "", @@ -1460,33 +1107,19 @@ "Pool {name} is {status}.": "", "Pool {name} successfully upgraded.": "", "Pool «{pool}» has been exported/disconnected successfully.": "", - "Pools:": "Pools", - "Portal": "Portal", "Post Init": "", "Post Script": "", "Post-script": "", - "Power Menu": "Menú de energía", - "Power On Hours Ago": "Encendido hace horas", - "Power Outage": "Corte de energía", - "Power Supply": "Fuente de alimentación", "Pre Init": "", "Pre Script": "", "Pre-script": "", "Preferred Trains": "", "Preset": "", "Preset Name": "", - "Previous Page": "Página anterior", "Priority Code Point": "", "Privacy Passphrase": "", "Privacy Protocol": "", - "Privilege": "Privilegio", - "Privileges": "Privilegios", "Proactive support settings is not available.": "", - "Processor": "Procesador", - "Product": "Producto", - "Product ID": "ID de producto", - "Production": "Producción", - "Profile": "Perfil", "Promote": "", "Prompt": "", "Properties Exclude": "", @@ -1497,9 +1130,6 @@ "Provisioning Type": "", "Proxy": "", "Pull": "", - "Pull Image": "Extraer imagen", - "Quota": "Cuota", - "Quota (in GiB)": "Cuota (en GiB)", "Quota Fill Critical": "", "Quota Fill Critical (in %)": "", "Quota Fill Warning": "", @@ -1508,82 +1138,36 @@ "Quotas set for {n, plural, one {# group} other {# groups}}": "", "Quotas set for {n, plural, one {# user} other {# users}}": "", "Quotas updated": "", - "RAIDZ1": "RAIDZ1", - "RAIDZ2": "RAIDZ2", - "RAIDZ3": "RAIDZ3", - "RAM": "RAM", "REQUIRE": "", - "Range Size": "Tamaño del rango", - "Rate this page": "Calificá esta página", - "Raw Filesize": "Tamaño de archivo sin procesar", - "Re-Open": "Reabrir", - "Re-Open All Alerts": "Reabrir todas las alertas", "Read ACL": "", "Read Attributes": "", "Read Data": "", "Read Named Attributes": "", - "Read Only": "Solo lectura", "Readonly Admin": "", "Rear": "", - "Reason": "Razón", - "Reboot": "Reiniciar", "Reboot of the other node is required for FIPS changes.": "", "Reboot of this node is required for FIPS changes.": "", "Received: {received}/s Sent: {sent}/s": "", - "Recent Searches": "Búsquedas recientes", "Recommended Apps": "", "Recommended number of data disks for optimal space allocation should be power of 2 (2, 4, 8, 16...).": "", - "Record Size": "Tamaño del registro", "Redfish administrative password.": "", "Redfish administrative username.": "", - "Referenced": "Referenciado", "Refresh Catalog": "", "Refresh Events": "", "Refreshing": "", - "Register": "Registrar", - "Register Default Gateway": "Registrar puerta de enlace predeterminada", - "Regularly scheduled system checks and updates.": "Comprobaciones y actualizaciones del sistema programadas periódicamente.", - "Reject": "Rechazar", "Release": "", - "Release Notes": "Notas de la versión", - "Remote Host Key": "Clave de host remoto", - "Remote machine": "Maquina remota", "Remove Invalid Quotas": "", - "Remove device": "Eliminar dispositivo", - "Remove device {name}?": "¿Eliminar dispositivo {name}?", - "Remove file": "Eliminar archivo", - "Remove file?": "¿Eliminar archivo?", - "Remove iXVolumes": "Eliminar iXVolumes", "Remove preset": "", - "Remove this error to try again": "Eliminar este error para volver a intentarlo", "Remove {label} item": "", "Remove {value} from recent searches": "", - "Removed": "Eliminado", - "Rename Boot Environment": "Cambiar nombre del entorno de arranque", - "Renew 2FA Secret": "Renovar secreto 2FA", "Renew Certificate Days Before Expiry": "", "Replacing Boot Pool Disk": "", - "Replacing disk {name}": "Reemplazando disco {name}", - "Replicate «{name}» now?": "¿Replicar «{name}» ahora?", - "Replication {name} has started.": "Se inició la replicación {name}.", - "Replication Admin": "Admin de replicación", - "Replication Settings": "Configuración de replicación", - "Replication Task": "Tarea de replicación", "Replication Task Config Read": "", "Replication Task Config Write": "", - "Replication Task Manager": "Administrador de tareas de replicación", "Replication Task Read": "", "Replication Task Wizard": "", "Replication Task Write": "", "Replication Task Write Pull": "", - "Replication Tasks": "Tareas de replicación", - "Replication Tasks Limit": "Límite de tareas de replicación", - "Replication from scratch": "Replicación desde cero", - "Replication task created.": "Tarea de replicación creada", - "Replication task saved.": "Tarea de replicación guardada.", - "Replication «{name}» has started.": "Se inició la replicación «{name}».", - "Report Bug": "Informar error", - "Report a bug": "Informar un error", "Reporting Exporter": "", "Reporting Exporters": "", "Reporting Read": "", @@ -1593,30 +1177,14 @@ "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": "Reserva", - "Reservation (in GiB)": "Reserva (en GiB)", - "Reserved for Dataset": "Reservado para el conjunto de datos", - "Reserved for Dataset & Children": "Reservado para conjuntos de datos y niños", - "Reset Default Config": "Restablecer configuración predeterminada", - "Reset Defaults": "Restablecer valores predeterminados", - "Reset Search": "Restablecer búsqueda", "Reset Step": "", - "Reset Zoom": "Restablecer zoom", - "Reset configuration": "Restablecer configuración", - "Reset password": "Restablecer contraseña", - "Reset to default": "Restablecer a valores predeterminados", "Resetting interfaces while HA is enabled is not allowed.": "", - "Resetting. Please wait...": "Reiniciando. Por favor esperá...", "Resilver configuration saved": "", "Resilvering": "", "Resilvering Status": "", "Resilvering pool: ": "", "Resilvering:": "", "Resolution": "", - "Restart After Update": "Reiniciar después de la actualización", - "Restart App": "Reiniciar app", - "Restart Now": "Reiniciar ahora", - "Restart Service": "Reiniciar servicio", "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.": "", @@ -1625,71 +1193,26 @@ "Restart to improve system performance speed.": "", "Restart to re-establish network connections.": "", "Restarting Standby": "", - "Restore Config": "Restaurar config", - "Restore Config Defaults": "Restaurar config predeterminada", - "Restore Default": "Restaurar valor predeterminado", - "Restore Default Config": "Restaurar config predeterminada", - "Restore Default Configuration": "Restaurar configuración predeterminada", - "Restore Defaults": "Restaurar valores predeterminados", - "Restore default set of widgets": "Restaurar el conjunto predeterminado de widgets", - "Restore default widgets": "Restaurar widgets predeterminados", - "Restore from Snapshot": "Restaurar desde una instantánea", "Restores files to the selected directory.": "", - "Restoring backup": "Restaurando copia de seguridad", "Restrict PAM": "", "Restrict share visibility to users with read or write access to the share. See the smb.conf manual page.": "", "Resume Scrub": "", - "Retention": "Retención", - "Retention (in days)": "Retención (en días)", "Retry": "", "Review": "", "Revoking this CA will revoke the complete CA chain. This is a one way action and cannot be reversed. Are you sure you want to revoke this CA?": "", "Roles": "", - "Roll Back": "Retroceder", "Roll back snapshots": "", "Roll back snapshots of ix_volumes": "", "Rolling back...": "", "Root TCP Socket": "", - "Routing": "Enrutamiento", - "Rsync": "Rsync", - "Rsync Task": "Tarea Rsync", - "Rsync Task Manager": "Administrador de tareas Rsync", - "Rsync Tasks": "Tareas Rsync", - "Rsync task has started.": "La tarea Rsync empezó.", - "Rsync task «{name}» has started.": "Emepzó la tarea Rsync «{name}».", - "Rsync to another server": "Rsync a otro servidor", - "Run As Context": "Ejecutar como contexto", - "Run Manual Test": "Ejecutar prueba manual", - "Run job": "Ejecutar trabajo", - "Run «{name}» Cloud Backup now?": "¿Ejecutar ahora la copia de seguridad en la nube «{name}»?", - "Running Jobs": "Trabajos en ejecución", - "S.M.A.R.T.": "S.M.A.R.T.", - "S.M.A.R.T. Extra Options": "Opciones adicionales S.M.A.R.T.", - "S.M.A.R.T. Info for {disk}": "Información S.M.A.R.T. para {disk}", - "S.M.A.R.T. Options": "Opciones S.M.A.R.T.", - "S.M.A.R.T. Tasks": "Tareas S.M.A.R.T.", - "S.M.A.R.T. Test Results": "Resultados de la prueba S.M.A.R.T.", - "S.M.A.R.T. Test Results of {pk}": "Resultados de la prueba S.M.A.R.T. de {pk}", "SAN": "", "SAS Connector": "", "SAS Expander": "", "SED": "", - "SED User": "Usuario SED", "SED password and confirmation should match.": "", "SED password updated.": "", "SET": "", - "SFTP": "SFTP", - "SFTP Log Facility": "Instalación de registro SFTP", - "SFTP Log Level": "Nivel de registro SFTP", - "SHORT": "CORTO", "SID": "", - "SMB": "SMB", - "SMB - Client Account": "SMB - Cuenta de cliente", - "SMB - Destination File Path": "SMB - Ruta del archivo de destino", - "SMB - File Handle Type": "SMB - Tipo de identificador de archivo", - "SMB - File Handle Value": "SMB - Valor del identificador de archivo", - "SMB - File Path": "SMB - Ruta de archivo", - "SMB - Host": "SMB - Host", "SMB - Operation Close": "", "SMB - Operation Create": "", "SMB - Operation Read": "", @@ -1703,10 +1226,8 @@ "SMB - UNIX Token UID": "", "SMB - Vers Major": "", "SMB - Vers Minor": "", - "SMB Group": "Grupo SMB", "SMB Lock": "", "SMB Locks": "", - "SMB Name": "Nombre SMB", "SMB Notification": "", "SMB Notifications": "", "SMB Open File": "", @@ -1714,39 +1235,18 @@ "SMB Sessions": "", "SMB Share": "", "SMB Shares": "", - "SMB Status": "Estado de SMB", - "SMB User": "Usuario SMB", "SMB multichannel allows servers to use multiple network connections simultaneously by combining the bandwidth of several network interface cards (NICs) for better performance. SMB multichannel does not function if you combine NICs into a LAGG. Read more in docs": "", "SMB preset sets most optimal settings for SMB sharing.": "", "SMB/NFSv4": "", - "SMTP": "SMTP", - "SMTP Authentication": "Autenticación SMTP", - "SNMP": "SNMP", - "SSH": "SSH", - "SSH Connection saved": "Conexión SSH guardada", - "SSH Connections": "Conexiones SSH", - "SSH Key": "Clave SSH", - "SSH Key Pair": "Par de claves SSH", - "SSH Keypair created": "Par de claves SSH creado", - "SSH Keypair updated": "Par de claves SSH actualizado", - "SSH Keyscan": "Escaneo de claves SSH", - "SSH connection from the keychain": "Conexión SSH desde el llavero", "SSH password login enabled": "", "SSH private key stored in user's home directory": "", - "SSL Certificate": "Certificado SSL", - "SSL Protocols": "Protocolos SSL", "SSL Web Interface Port": "", "SSSD Compat": "", - "SYNC": "SINCRONIZAR", - "Samba": "Samba", "Save ACL as preset": "", "Save Access Control List": "", "Save And Failover": "", "Save And Go To Review": "", "Save As Preset": "", - "Save Config": "Guardar config", - "Save Instance": "Guardar instancia", - "Save Selection": "Guardar selección", "Save current ACL entries as a preset for future use.": "", "Save the 'Require Kerberos for NFSv4' value before adding SMP": "", "Saving Instance": "", @@ -1756,7 +1256,6 @@ "Scheduled Scrub Task": "", "Schema": "", "Schema Mode": "", - "Screenshots": "Capturas de pantalla", "Script": "", "Script deleted.": "", "Scroll to top": "", @@ -1769,10 +1268,8 @@ "Scrub Tasks": "", "Scrub interval (in days)": "", "Scrub interval set to {scrubIntervalValue} days": "", - "Search": "Buscar", "Search Alert Categories": "", "Search Documentation for «{value}»": "", - "Search Images": "Buscar imágenes", "Search Input Fields": "", "Search Results for «{query}»": "", "Search UI": "", @@ -1796,10 +1293,6 @@ "Select All": "", "Select Existing Zvol": "", "Select IP addresses to listen to for NFS requests. Leave empty for NFS to listen to all available addresses. Static IPs need to be configured on the interface to appear on the list.": "", - "Select Image": "Seleccionar imagen", - "Select Pool": "Seleccionar pool", - "Select Rating": "Seleccionar calificación", - "Select Reporting": "Seleccionar Informes", "Select VDEV layout. This is the first step in setting up your VDEVs.": "", "Select a schedule preset or choose Custom to setup custom schedule.": "", "Select a schema when LDAP NSS schema is set.": "", @@ -1832,24 +1325,14 @@ "Selected": "", "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "", "Selected train does not have production releases, and should only be used for testing.": "", - "Self-Encrypting Drive Settings": "Configuración de la unidad con cifrado automático", - "Semi-automatic (TrueNAS only)": "Semiautomático (solo TrueNAS)", - "Send Feedback": "Enviar comentarios", "Send Mail Method": "", "Send Method": "", "Send Test Alert": "", "Send Test Email": "", - "Sensitive": "Sensible", - "Serial": "Serie", "Serial Shell": "", - "Serial – Active": "Serie – Activo", - "Serial – Passive": "Serie – Pasivo", - "Series": "Series", "Server error: {error}": "", - "Service": "Servicio", "Service = \"SMB\" AND Event = \"CLOSE\"": "", "Service Account Key": "", - "Service Announcement:": "Anuncio de servicios", "Service Name": "", "Service Read": "", "Service Write": "", @@ -1857,21 +1340,10 @@ "Service started": "", "Service status": "", "Service stopped": "", - "Session": "Sesión", - "Session ID": "ID de sesión", "Session Timeout": "", "Session Token Lifetime": "", "Session dialect": "", - "Sessions": "Sesiones", "Set": "", - "Set Attribute": "Establecer atributo", - "Set Frequency": "Establecer frecuencia", - "Set Quota": "Establecer cuota", - "Set Warning Level": "Establecer nivel de advertencia", - "Set email": "Establecer correo", - "Set font size": "Establecer tamaño de fuente", - "Set new password": "Establecer nueva contraseña", - "Set password for TrueNAS administrative user:": "Establecer contraseña para el usuario administrativo de TrueNAS:", "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 Samba to do DNS updates when joining a domain.": "", @@ -1882,13 +1354,10 @@ "Set to log rpc.statd(8) and rpc.lockd(8) syslog requests.": "", "Set to prevent the zvol from being modified.": "", "Set to restrict SSH access in certain circumstances to only members of BUILTIN\\Administrators": "", - "Settings Menu": "Menú de configuración", - "Settings saved": "Configuraciones guardadas", "Setup Cron Job": "", "Setup Method": "", "Setup Pool To Create Custom App": "", "Setup Pool To Install": "", - "Severity Level": "Nivel de gravedad", "Share ACL for {share}": "", "Share Attached": "", "Share Path updated": "", @@ -1921,18 +1390,13 @@ "Sharing iSCSI Target Write": "", "Sharing iSCSI Write": "", "Shell": "", - "Shell Commands": "Comandos de Shell", - "Short": "Corto", - "Show All": "Mostrar todo", "Show Built-in Groups": "", "Show Built-in Users": "", "Show Events": "", "Show Expander Status": "", "Show Ipmi Events": "", - "Show Logs": "Mostrar registros", "Show Password": "", "Show Pools": "", - "Show Status": "Mostrar estado", "Show all available groups, including those that do not have quotas set.": "", "Show all available users, including those that do not have quotas set.": "", "Show extra columns": "", @@ -1941,37 +1405,18 @@ "Shows only the groups that have quotas. This is the default view.": "", "Signing": "", "Signup": "", - "Similar Apps": "Apps similares", - "Site Name": "Nombre del sitio", "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "", "Size in GiB of the maximum amount of space that may be consumed by the dataset where the audit dabases are stored.": "", "Skip automatic detection of the Endpoint URL region. Set this only if AWS provider does not support regions.": "", "Slot {n}": "", - "Smart": "Inteligente", - "Smart Task": "Tarea inteligente", - "Smart Test Result": "Resultado de la prueba inteligente", - "Smart Tests": "Pruebas inteligentes", "Snapdev": "", "Snapshot Read": "", - "Snapshot Task": "Tarea de instantánea", - "Snapshot Task Manager": "Administrador de tareas de instantáneas", "Snapshot Task Read": "", "Snapshot Task Write": "", - "Snapshot Tasks": "Tareas de instantáneas", - "Snapshot Time": "Tiempo de instantánea", - "Snapshot Time {time}": "Tiempo de instantánea {time}", "Snapshot Write": "", - "Snapshot added successfully.": "Instantánea agregada exitosamente.", - "Snapshot deleted.": "Instantánea eliminada.", "Snapshot name format string. The default is auto-%Y-%m-%d_%H-%M. Must include the strings %Y, %m, %d, %H, and %M, which are replaced with the four-digit year, month, day of month, hour, and minute as defined in strftime(3).

For example, snapshots of pool1 with a Naming Schema of customsnap-%Y%m%d.%H%M have names like pool1@customsnap-20190315.0527.": "", - "Snapshots": "Instantáneas", - "Snapshots could not be loaded": "No se pudieron cargar las instantáneas", - "Snapshots must not have dependent clones": "Las instantáneas no deben tener clones dependientes", - "Snapshots will be created automatically.": "Las instantáneas se crearán automáticamente.", - "Software Installation": "Instalación de software", "Some of the disks are attached to the exported pools\n mentioned in this list. Checking a pool name means you want to\n allow reallocation of the disks attached to that pool.": "", "Some of the selected disks have exported pools on them. Using those disks will make existing pools on them unable to be imported. You will lose any and all data in selected disks.": "", - "Sort": "Clasificar", "Source Dataset": "", "Source Path": "", "Space Available to Dataset": "", @@ -1989,63 +1434,37 @@ "Staging": "", "Standby {controller}.": "", "Standby: TrueNAS Controller {id}": "", - "Start All Selected": "Iniciar todo lo seleccionado", - "Start Automatically": "Iniciar automáticamente", "Start Over": "", "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "", "Start scrub on pool {poolName}?": "", - "Start service": "Iniciar servicio", "Start session time": "", "Start {service} Service": "", "Starting task": "", "Step Back": "", "Step Forward": "", - "Stop All Selected": "Detener todo lo seleccionado", "Stop Flashing": "", - "Stop service": "Detener servicio", "Stop the scrub on {poolName}?": "", "Stop the {serviceName} service and close these connections?": "", "Stop {serviceName}?": "", "Stop {vmName}?": "", - "Stopped": "Detenido", - "Stopping": "Deteniendo", - "Stopping Apps Service": "Deteniendo servicio de apps", - "Stopping {rowName}": "Deteniendo {rowName}", "Storj": "", "Storj iX": "", "Storj is a decentralized, open-source cloud storage platform. It uses blockchain technology and cryptography to secure files. Instead of storing files in a centralized server, Storj splits up files, encrypts them, and distributes them across a network of computers around the world.": "", "Stream Compression": "", "String of additional smb4.conf parameters not covered by the system's API.": "", "Strip ACL": "", + "Stripe": "", "Subdir Filter": "", - "Subfolder": "Subcarpeta", - "Subject Alternative Name": "Nombre alternativo del sujeto", "Submit": "", "Success! The API key has been created or reset.": "", "Successfully expanded pool {name}.": "", "Successfully replaced disk {disk}.": "", "Successfully saved IPMI settings.": "", "Successfully saved {n, plural, one {Disk} other {Disks}} settings.": "", - "Sudo": "Sudo", - "Sudo Enabled": "Sudo habilitado", - "Suggest an improvement": "Sugerir una mejora", - "Support License": "Licencia de soporte", "Support Read": "", "Support Write": "", - "Switch To Advanced": "Cambiar a avanzado", - "Switch To Basic": "Cambiar a básico", - "Switch To Wizard": "Cambiar al asistente", - "Switch to Advanced Options": "Cambiar a opciones avanzadas", - "Switched to new dataset «{name}».": "Se cambió al nuevo conjunto de datos «{name}».", - "Switched to new zvol «{name}».": "Se cambió al nuevo zvol «{name}».", - "Switching to Advanced Options will lose data entered on second step. Do you want to continue?": "Al cambiar a opciones avanzadas se perderán los datos ingresados ​​en el segundo paso. ¿Querés continuar?", - "Sync From Peer": "Sincronizar desde el par", "Sync To Peer": "", - "Synced": "Sincronizado", - "Sysctl": "Sysctl", "Sysctl \"{name}\" deleted": "", - "Syslog": "Registro del sistema", - "Syslog Settings": "Configuración de Syslog", "Syslog TLS Certificate": "", "Syslog TLS Certificate Authority": "", "System Audit Read": "", @@ -2053,20 +1472,10 @@ "System Data Pool": "", "System Dataset": "", "System Freeze": "", - "System Image": "Imagen del sistema", "System Information – Active": "", "System Information – Standby": "", "System Overload": "", - "System Reports": "Informes del sistema", - "System Security": "Seguridad del sistema", - "System Security Settings": "Configuración de seguridad del sistema", - "System Security Settings Updated.": "Configuración de seguridad del sistema actualizada.", - "System Serial": "Serie del sistema", - "System Stats": "Estadísticas del sistema", "System Update": "", - "System Uptime": "Tiempo de actividad del sistema", - "System Utilization": "Utilización del sistema", - "System Version": "Versión del sistema", "System dataset updated.": "", "TLS (STARTTLS)": "", "TLS Allow Client Renegotiations": "", @@ -2082,33 +1491,12 @@ "TLS No Session Reuse Required": "", "TLS Policy": "", "Table Actions of Expandable Table": "", - "Tags": "Etiquetas", "Tail Lines": "", "Take screenshot of the current page": "", "Target Dataset": "", "Target Stats": "", "Target Utilization": "", - "Target dataset encryption will be inherited from its parent dataset.": "El cifrado del conjunto de datos de destino se heredará de su conjunto de datos principal.", - "Target with this name already exists": "El objetivo con este nombre ya existe", - "Task": "Tarea", - "Task Details for {task}": "Detalles de la tarea para {task}", - "Task Settings": "Configuración de tareas", - "Task created": "Tarea creada", - "Task started": "Tarea iniciada", - "Task updated": "Tarea actualizada", - "Tasks could not be loaded": "No se pudieron cargar las tareas", - "Temperature Alerts": "Alertas de temperatura", - "Temperature Sensors": "Sensores de temperatura", - "Temperature data missing.": "Faltan datos de temperatura.", - "Tenant Domain": "Dominio del inquilino", - "Terminal": "Terminal", - "Terminate Other Sessions": "Terminar otras sesiones", - "Terminate Other User Sessions": "Terminar otras sesiones de usuario", - "Terminate session": "Terminar sesión", - "Test": "Prueba", - "Test alert sent": "Alerta de prueba enviada", "Test email sent.": "", - "Testing": "Probando", "Tests are only performed when Never is selected.": "", "Thank you for sharing your feedback with us! Your insights are valuable in helping us improve our product.": "", "Thank you. Ticket was submitted succesfully.": "", @@ -2204,20 +1592,15 @@ "Toggle Sidenav": "", "Toggle off to defer interface learning until runtime, preventing premature state transitions and potential issues during system startup.": "", "Toggle {row}": "", - "Token": "Token", "Token created with Google Drive.": "", "Token expired": "", "Tolerance Window": "", "Top": "", "Top bar": "", "Topology Summary": "", - "Total": "Total", "Total Allocation": "", "Total Down": "", "Total Raw Capacity": "", - "Total Snapshots": "Instantáneas totales", - "Total ZFS Errors": "Errores totales de ZFS", - "Total failed": "Total fallido", "Transmit Hash Policy": "", "Transport Encryption Behavior": "", "Treat Disk Size as Minimum": "", @@ -2246,7 +1629,6 @@ "UI Search Result: {result}": "", "UNIX (NFS) Shares": "", "UNIX Charset": "", - "UPS": "SAI", "URI of the ACME Server Directory. Choose a pre configured URI": "", "URI of the ACME Server Directory. Enter a custom URI.": "", "USB Passthrough Device": "", @@ -2310,12 +1692,7 @@ "Username on the remote system which will be used to login via SSH.": "", "Usernames can be up to 32 characters long. Usernames cannot begin with a hyphen (-) or contain a space, tab, or these characters: , : + & # % ^ ( ) ! @ ~ * ? < > =. $ can only be used as the last character of the username.": "", "Users could not be loaded": "", - "Uses one disk for parity while all other disks store data. RAIDZ1 requires at least three disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa un disco para la paridad mientras que todos los demás discos almacenan datos. RAIDZ1 requiere al menos tres discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", - "Uses three disks for parity while all other disks store data. RAIDZ3 requires at least five disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa tres discos para la paridad mientras que el resto de los discos almacenan datos. RAIDZ3 requiere al menos cinco discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", - "Uses two disks for parity while all other disks store data. RAIDZ2 requires at least four disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa dos discos para la paridad mientras que todos los demás discos almacenan datos. RAIDZ2 requiere al menos cuatro discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", "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.": "", - "Using CSR": "Usando CSR", - "Using pool {name}": "Usando pool {name}", "Using this option will replicate all snapshots which names match specified regular expression. The performance on the systems with large number of snapshots will be lower, as snapshots metadata needs to be read in order to determine snapshots creation order.": "", "Using this option will replicate all snapshots which names match specified regular expression. The performance on the systems with large number of snapshots will be lower, as snapshots metadata needs to be read in order to determine snapshots creation order.": "", "VDEV is highly discouraged and will result in data loss if it fails": "", @@ -2337,107 +1714,44 @@ "VMware Snapshot Integration": "", "VMware Snapshots": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", - "Validate Certificates": "Validar certificados", - "Validate Remote Path": "Validar ruta remota", "Validate effective ACL": "", - "Value must be a number": "El valor debe ser un número", - "Value must be a valid email address": "El valor debe ser una dirección de correo válida", - "Value must be a {type}": "El valor debe ser un {type}", - "Value must be greater than Range Low": "El valor debe ser mayor que el rango bajo", - "Value must be greater than {label}": "El valor debe ser mayor que {label}", "Var": "", - "Variant": "Variante", - "Vdev": "Vdev", "Vdev successfully extended.": "", "Vdevs spans enclosure": "", - "Vendor ID": "ID de proveedor", - "Verbose Logging": "Registro detallado", "Version to be upgraded to": "", - "View All": "Ver todo", - "View All S.M.A.R.T. Tests": "Ver todas las pruebas S.M.A.R.T.", - "View All Scrub Tasks": "Ver todas las tareas de limpieza", - "View All Test Results": "Ver todos los resultados de las pruebas", - "View Changelog": "Ver registro de cambios", - "View Details": "Ver detalles", - "View Disk Space Reports": "Ver informes de espacio en disco", "View Enclosure": "", - "View Less": "Ver menos", - "View Logs": "Ver registros", - "View More": "Ver más", "View Netdata": "", "View Release Notes": "", - "View Reports": "Ver informes", - "View logs": "Ver registros", - "View/Download CSR": "Ver/Descargar CSR", - "View/Download Certificate": "Ver/Descargar certificado", - "View/Download Key": "Ver/Descargar clave", "Virtual IP Address (Failover Address)": "", - "Virtual Machine": "Máquina virtuale", - "Virtual Machines": "Máquinas virtuales", "Virtual machine created": "", "Virtualization Global Read": "", "Virtualization Global Write": "", "Virtualization Instance Write": "", "Virtualization is not supported": "", "Virtualization settings updated": "", - "Visible": "Visible", - "Voltage": "Voltaje", - "Volume Mounts": "Montajes de volumen", - "Volume Size": "Tamaño del volumen", - "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "ADVERTENCIA: No se recomienda agregar VDEVs de datos con diferentes cantidades de discos.", - "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "ADVERTENCIA: Según la topología del pool, {size} es el tamaño de registro mínimo recomendado. Elegir un tamaño menor puede reducir el rendimiento del sistema.", "WARNING: Exporting/disconnecting pool {pool}. Data on the pool will not be available after export. Data on the pool disks can be destroyed by setting the Destroy data option. Back up critical data before exporting/disconnecting the pool.": "", "WARNING: Keys for all nested datasets with encryption applied will be downloaded.": "", "WARNING: Only the key for the dataset in question will be downloaded.": "", "WARNING: These unknown processes will be terminated while exporting the pool.": "", "Wait to start VM until SPICE client connects.": "", - "Waiting": "Esperando", - "Waiting for Active TrueNAS controller to come up...": "Esperando que aparezca el controlador TrueNAS activo...", "Waiting for standby controller": "", - "Warning!": "¡Advertencia!", - "Warning: Debugs may contain log files with personal information such as usernames or other identifying information about your system. Please review debugs and redact any sensitive information before sharing with external entities.": "Advertencia: los archivos de depuración pueden contener archivos de registro con información personal, como nombres de usuario u otra información de identificación sobre su sistema. Revisá los archivos de depuración y eliminá cualquier información confidencial antes de compartirlos con entidades externas.", - "Warning: {n} of {total} boot environments could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} entornos de arranque.", - "Warning: {n} of {total} docker images could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} imágenes de Docker.", - "Warning: {n} of {total} snapshots could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} instantáneas.", - "Warnings": "Advertencias", "Watch List": "", "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", - "Web Interface": "Interfaz web", - "Web Interface Address": "Dirección de la interfaz web", - "Web Interface Port": "Puerto de la interfaz web", - "Web Portal": "Portal web", "Web Shell Access": "", "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "", - "What and When": "Qué y cuándo", - "When battery power is low or the shutdown timer ends, enter the custom command to overrule the default shutdown command.": "Cuando la batería esté baja o finalice el temporizador de apagado, ingresá el comando personalizado para anular el comando de apagado predeterminado.", - "When both days of month and days of week have restrictions, these restrictions work as an OR condition.": "Cuando tanto los días del mes como los días de la semana tienen restricciones, estas restricciones funcionan como una condición OR.", "When checked it will ensure that the guest always has access to a video device. For headless installations like ubuntu server this is required for the guest to operate properly. However for cases where consumer would like to use GPU passthrough and does not want a display device added should uncheck this.": "", "When not specified, guest system is given fixed amount of memory specified above.\nWhen minimum memory is specified, guest system is given memory within range between minimum and fixed as needed.": "", "When number of vcpus is equal to number of cpus in CPU set vcpus can be automatically pinned into CPU set. Pinning is done by mapping each vcpu into single cpu number in following the order in CPU set. This will improve CPU cache locality and can reduce possible stutter in GPU passthrough VMs.": "", "When replicated snapshots are deleted from the destination system:
  • Same as Source: use the Snapshot Lifetime from the source periodic snapshot task.
  • Custom: define a Snapshot Lifetime for the destination system.
  • None: never delete snapshots from the destination system.
  • ": "", "When set, the following text will be shown prior to showing login page to the user": "", "When this checkbox is checked, domain is inherited from DHCP.": "", - "Widget Category": "Categoría de widget", - "Widget Editor": "Editor de widgets", - "Widget Subtext": "Subtexto del widget", - "Widget Text": "Texto del widget", - "Widget Title": "Título del widget", - "Widget Type": "Tipo de widget", - "Widget has errors": "El widget tiene errores", "Widget {slot} Settings": "", - "Widgets": "Widgets", "Will be automatically destroyed at {datetime} by periodic snapshot task": "", "Will not be destroyed automatically": "", "Winbind NSS Info": "", - "Windows": "Windows", - "Windows (SMB) Shares": "Recursos compartidos de Windows (SMB)", - "Wipe Disk {name}": "Borrar disco {name}", - "With this configuration, the existing directory {path} will be used as a home directory without creating a new directory for the user.": "Con esta configuración, el directorio existente {path} se utilizará como directorio de inicio sin crear un nuevo directorio para el usuario.", - "With your selection, no GPU is available for the host to consume.": "Con tu selección, no habrá ninguna GPU disponible para que el host la consuma.", "Wizard": "", - "Workloads": "Cargas de trabajo", "Would you like to add a Service Principal Name (SPN) now?": "", "Would you like to ignore this error and try again?": "", "Would you like to restart the SMB Service?": "", @@ -2454,11 +1768,7 @@ "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "", "You have unsaved changes. Are you sure you want to close?": "", "You may enter a specific IP address (e.g., 192.168.1.1) for individual access, or use an IP address with a subnet mask (e.g., 192.168.1.0/24) to define a range of addresses.": "", - "Your dashboard is currently empty!": "¡Tu tablero está vacío actualmente!", - "ZFS": "ZFS", "ZFS L2ARC read-cache that can be used with fast devices to accelerate read operations.": "", - "ZFS Replication to another TrueNAS": "Replicación ZFS a otro TrueNAS", - "ZFS Reports": "Informes de ZFS", "ZFS/SED keys synced between KMIP Server and TN database.": "", "Zvol Location": "", "Zvol Space Management": "", @@ -2642,10 +1952,12 @@ "A system update is in progress. It might have been launched in another window or by an external source like TrueCommand.": "Una actualización del sistema está en progreso. Podría haber sido lanzado en otra ventana o por una fuente externa como TrueCommand.", "A unique name to identify this keypair. Automatically generated keypairs are named after the object that generated the keypair with \" Key\" appended to the name.": "Un nombre único para identificar este par de claves. Los pares de claves generados automáticamente se nombran después del objeto que generó el par de claves con \"Clave\" añadida al nombre.", "A username on the FTP Host system. This user must already exist on the FTP Host.": "Un nombre de usuario en el sistema FTP Host. Este usuario ya debe existir en el host FTP.", + "ACL": "ACL", "ACL Entries": "Entradas ACL", "ACL Mode": "Modo de ACL", "ACL Type": "Tipo de ACL", "ALERT": "ALERTA", + "ALL Initiators Allowed": "TODOS los iniciadores permitidos", "API Key": "Clave de API", "API Key or Password": "Clave API o Contraseña", "API Keys": "Claves de API", @@ -2670,6 +1982,7 @@ "Account Name": "Nombre de cuenta", "Account to be used for guest access. Default is nobody. The chosen account is required to have permissions to the shared pool or dataset. To adjust permissions, edit the dataset Access Control List (ACL), add a new entry for the chosen guest account, and configure the permissions in that entry. If the selected Guest Account is deleted the field resets to nobody.": "Cuenta para ser utilizada para el acceso de invitados. El valor predeterminado es nobody. Se requiere que la cuenta elegida tenga permisos para el grupo compartido o conjunto de datos. Para ajustar los permisos, edite la Lista de control de acceso (ACL) del conjunto de datos, agregue una nueva entrada para la cuenta de invitado elegida y configure los permisos en esa entrada. Si se elimina la Cuenta de invitado seleccionada, el campo se restablece a nobody.", "Account: {account}": "Cuenta: {account}", + "Ace has errors.": "Ace tiene errores.", "Action Not Possible": "Acción no posible", "Actions": "Acciones", "Activate": "Activar", @@ -2776,10 +2089,14 @@ "Add Zvol": "Añadir Zvol", "Add a new bucket to your Storj account.": "Añadir un nuevo depósito a tu cuenta de Storj.", "Add any notes about this zvol.": "Agregue cualquier nota sobre este zvol.", + "Add bucket": "Agregar balde", "Add entry": "Añadir entrada", "Add groups": "Añadir grupos", + "Add iSCSI": "Agregar iSCSI", "Add listen": "Añadir escucha", + "Add new": "Añadir nuevo", "Add this user to additional groups.": "Agregar este usuario a grupos adicionales.", + "Add {item}": "Agregar {item}", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "Los discos agregados se borran, luego el grupo se extiende a los nuevos discos con la topología elegida. Los datos existentes en el grupo se mantienen intactos.", "Additional rsync(1) options to include. Separate entries by pressing Enter.
    Note: The \"*\" character must be escaped with a backslash (\\*.txt) or used inside single quotes ('*.txt').": "rsync(1) opciones adicionales para incluir. Separe las entradas presionando Enter.
    Nota: El carácter \"*\" debe escaparse con una barra diagonal inversa (\\\\*.txt) o usarse dentro de comillas simples ('*.txt').", "Additional smartctl(8) options.": "Opciones adicionales de smartctl(8).", @@ -2810,14 +2127,20 @@ "After entering the Hostname, Username, and Password, click Fetch Datastores and select the datastore to be synchronized.": "Después de ingresar el Nombre de host, Nombre de usuario y Contraseña, hacé clic en Recuperar almacenes de datos y seleccione el almacén de datos que se sincronizará.", "Agree": "Aceptar", "Alert": "Alerta", + "Alert List Read": "Lista de alertas de lectura", + "Alert List Write": "Lista de alertas de escritura", + "Alert Services": "Servicios de alerta", "Alert Settings": "Configuraciones de alerta", + "Alert service saved": "Servicio de alerta guardado", "Alerts": "Aletas", "Alerts could not be loaded": "No se pudieron cargar las alertas", "Algorithm": "Algoritmo", "Alias for the identical interface on the other TrueNAS controller. The alias can be an IPv4 or IPv6 address.": "Alias para la interfaz idéntica en el otro controlador TrueNAS. El alias puede ser una dirección IPv4 o IPv6.", + "Aliases": "Alias", "Aliases must be 15 characters or less.": "Los alias deben tener 15 caracteres o menos.", "All": "Todos", "All Disks": "Todos los discos", + "All Users": "Todos los usuarios", "All data on that pool was destroyed.": "Todos los datos de ese grupo fueron destruidos.", "All disks healthy.": "Todos los discos están sanos.", "All pools are online.": "Todos los pools están en línea.", @@ -2833,6 +2156,7 @@ "Allow Blocks Larger than 128KB": "Permitir bloques de más de 128 KB", "Allow Compressed WRITE Records": "Permitir registros de ESCRITURA comprimidos", "Allow DNS Updates": "Permitir actualizaciones de DNS", + "Allow Directory Service users to access WebUI": "Permitir que los usuarios del servicio de directorio accedan a la interfaz web", "Allow Guest Access": "Permitir acceso de invitado", "Allow Kerberos Authentication": "Permitir autenticación Kerberos", "Allow Local User Login": "Permitir el inicio de sesión de usuarios locales", @@ -2847,14 +2171,17 @@ "Allow all sudo commands with no password": "Permitir todos los comandos sudo sin contraseña", "Allow anonymous FTP logins with access to the directory specified in Path.": "Permitir inicios de sesión FTP anónimos con acceso al directorio especificado en Ruta.", "Allow any local user to log in. By default, only members of the ftp group are allowed to log in.": "Permita que cualquier usuario local inicie sesión. De forma predeterminada, solo los miembros del grupo ftp pueden iniciar sesión.", + "Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "Permitir que los clientes accedan al servidor TrueNAS si son miembros de dominios que tienen una relación de confianza con el dominio al que está unido TrueNAS. Esto requiere una configuración de backend de idmap válida para todos los dominios de confianza.", "Allow configuring a non-standard port to access the GUI over HTTP. Changing this setting might require changing a Firefox configuration setting.": "Permita configurar un puerto no estándar para acceder a la GUI a través de HTTP. Cambiar esta configuración puede requerir cambiar una Configuración de Firefox.", "Allow configuring a non-standard port to access the GUI over HTTPS.": "Permite configurar un puerto no estándar para acceder a la GUI a través de HTTPS.", "Allow different groups to be configured with different authentication profiles. Example: all users with a group ID of 1 will inherit the authentication profile associated with Group 1.": "Permitir que diferentes grupos se configuren con diferentes perfiles de autenticación. Ejemplo: todos los usuarios con un ID de grupo de 1 heredarán el perfil de autenticación asociado con el Grupo 1.", "Allow encrypted connections. Requires a certificate created or imported with the System > Certificates menu.": "Permitir conexiones encriptadas. Requiere un certificado creado o importado con el menú Sistema > Certificados.", + "Allow files which return cannotDownloadAbusiveFile to be downloaded.": "Permitir que se descarguen archivos que devuelven cannotDownloadAbusiveFile.", "Allow non-root mount": "Permitir montaje no root", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "Permita el uso de identificadores de archivos abiertos que puedan soportar desconexiones breves. El soporte para bloqueos de rango de bytes POSIX en Samba también está deshabilitado. Esta opción no se recomienda al configurar el acceso multiprotocolo o local a los archivos.", "Allow {activities}": "Permitir {actividades}", "Allowed Address": "Dirección permitida", + "Allowed IP Addressed": "Direcciones IP permitidas", "Allowed IP Addresses": "Direcciones IP permitidas", "Allowed IP Addresses Settings": "Configuraciones de direcciones IP permitidas", "Allowed Initiators": "Iniciadores permitidos", @@ -2884,7 +2211,10 @@ "App": "App", "App Info": "Info de la app", "App Name": "Nombre de la app", + "App Network": "Red de app", "App Version": "Versión de app", + "App is restarted": "App está reiniciada", + "App is restarting": "App está reiniciándose", "Appdefaults Auxiliary Parameters": "Parámetros auxiliares de Appdefaults", "Append @realm to cn in LDAP queries for both groups and users when User CN is set).": "Agregue @realm a can en consultas LDAP tanto para grupos como para usuarios cuando se establece el CN de usuario).", "Append Data": "Agregar datos", @@ -2975,10 +2305,14 @@ "Authorized Access": "Acceso autorizado", "Authorized Hosts and IP addresses": "Hosts autorizados y Direcciones IP", "Authorized Networks": "Redes autorizadas", + "Auto": "Auto", + "Auto Refresh": "Auto refrezco", + "Auto TRIM": "Auto TRIM", "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 stop the script or command after the specified seconds.": "Detiene automáticamente el script o comando después de los segundos especificados.", + "Autostart": "Inicio automático", "Auxiliary Arguments": "Argumentos auxiliares", "Auxiliary Groups": "Grupos auxiliares", "Auxiliary Parameters": "Parámetros auxiliares", @@ -2996,6 +2330,7 @@ "Back": "Volver", "Back to Discover Page": "Volver a la página Descubrir", "Back to Support": "Volver a Soporte", + "Backend": "Backend", "Backend used to map Windows security identifiers (SIDs) to UNIX UIDs and GIDs. To configure the selected backend, click EDIT IDMAP.": "Backend utilizado para asignar identificadores de seguridad (SID) de Windows a UID y GID de UNIX. Para configurar el backend seleccionado, Hacé clic en EDITAR IDMAP.", "Background (lowest)": "Fondo (más bajo)", "Backup": "Respaldo", @@ -3034,8 +2369,10 @@ "Brainpool curves can be more secure, while secp curves can be faster. See Elliptic Curve performance: NIST vs Brainpool for more information.": "Las curvas de Brainpool pueden ser más seguras, mientras que las curvas segp pueden ser más rápidas. Consulte Rendimiento de la curva elíptica: NIST vs Brainpool para más información.", "Bridge": "Puente", "Browsable to Network Clients": "Navegable a clientes de red", + "Browse": "Navegar", "Browse to a CD-ROM file present on the system storage.": "Busque un archivo de CD-ROM presente en el almacenamiento del sistema.", "Browse to a storage location and add the name of the new raw file on the end of the path.": "Busque una ubicación de almacenamiento y agregue el nombre del nuevo archivo sin formato al final de la ruta.", + "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "Buscar un archivo existente. Creá un nuevo archivo buscando un conjunto de datos y agregando /(filename.ext) a la ruta.", "Browse to an existing pool or dataset to store the new zvol.": "Busque un Pool o conjunto de datos existente para almacenar el nuevo zvol.", "Browse to the desired zvol on the disk.": "Busque el zvol deseado en el disco.", "Browse to the existing path on the remote host to sync with. Maximum path length is 255 characters": "Busque la ruta existente en el host remoto para sincronizar. La longitud máxima de la ruta es de 255 caracteres", @@ -3043,13 +2380,21 @@ "Browse to the installer image file and click Upload.": "Busque el archivo de imagen del instalador y hacé clic en Cargar.", "Browse to the keytab file to upload.": "Busque el archivo de tabla de claves para cargar.", "Browse to the operating system installer image file.": "Busque el archivo de imagen del instalador del sistema operativo.", + "Browse to the path to be copied. Linux file path limits apply. Other operating systems can have different limits which might affect how they can be used as sources or destinations.": "Buscá la ruta que deseas copiar. Se aplican límites a las rutas de archivo de Linux. Otros sistemas operativos pueden tener límites diferentes que podrían afectar la forma en que se pueden usar como fuentes o destinos.", + "Browser time: {time}": "Hora del navegador: {time}", "Bucket": "Cubo", "Bug": "Error", "Builtin": "Incorporado", "Burst": "Estallar", "By default, Samba uses a hashing algorithm for NTFS illegal characters. Enabling this option translates NTFS illegal characters to the Unicode private range.": "De forma predeterminada, Samba utiliza un algoritmo hash para caracteres ilegales NTFS. Al habilitar esta opción, se traducen caracteres ilegales NTFS en el intervalo privado Unicode.", "By default, the VM receives an auto-generated random MAC address. Enter a custom address into the field to override the default. Click Generate MAC Address to add a new randomized address into this field.": "Por defecto, la VM recibe una dirección MAC aleatoria generada automáticamente. Ingrese una dirección personalizada en el campo para anular la predeterminada. Hacé clic en Generar dirección MAC para agregar una nueva dirección aleatoria en este campo.", + "CA": "CA", + "CD-ROM": "CD-ROM", + "CD-ROM Path": "Ruta del CD-ROM", + "CLI": "CLI", + "CONVEYANCE": "TRANSPORTE", "COPY": "COPIAR", + "CPU": "CPU", "CPU & Memory": "CPU y memoria", "CPU And Memory": "CPU y memoria", "CPU Configuration": "Configuración de CPU", @@ -3066,9 +2411,15 @@ "CPUs and Memory": "CPUs y memoria", "CRITICAL": "CRÍTICO", "CRL Sign": "Signo de CRL", + "CSR": "CSR", + "CSR deleted": "CSR eliminado", "CSR exists on this system": "CSR existe en este sistema", + "CSRs": "CSRs", "Cache": "Caché", "Caches": "Cachés", + "Calculate number of threads dynamically": "Calcular el número de subprocesos dinámicamente", + "Callback Address": "Dirección de devolución de llamada", + "Callback State": "Estado de devolución de llamada", "Cancel": "Cancelar", "Cancel any pending Key synchronization.": "Cancele cualquier sincronización de clave pendiente.", "Cannot Edit while HA is Enabled": "No se puede editar mientras HA está habilitado", @@ -3085,8 +2436,12 @@ "Certificate Authorities": "Autoridades de certificación", "Certificate Authority": "Autoridad de Certificación", "Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "Autoridad de certificación (CA) que se utilizará para conectarse al servidor de claves. Se requiere un certificado público de CA válido para autenticar la conexión. ADVERTENCIA: por razones de seguridad, proteja la Autoridad de certificación utilizada para la autenticación del servidor clave.", + "Certificate Authority Read": "Autoridad de certificación de lectura", + "Certificate Authority Write": "Autoridad de certificación de escritura", + "Certificate Options": "Opciones de certificado", "Certificate Signing Request": "Solicitud de firma de certificado", "Certificate Signing Requests": "Solicitudes de firma de certificado", + "Certificate Subject": "Asunto del certificado", "Certificate Write": "Certificado de escritura", "Certificate authority created": "Autoridad de certificación creada", "Certificate has been created.": "Se creó el certificado.", @@ -3184,6 +2539,7 @@ "Clearing Cache...": "Borrar caché...", "Click an item to view NFSv4 permissions": "Hacé clic en un artículo para ver los permisos de NFSv4", "Clicking Continue allows TrueNAS to finish the update in the background while Abort stops the process and reverts the dataset ACL to the previously active ACL.": "Hacer clic en Continuar permite a TrueNAS finalizar la actualización en segundo plano, mientras que Abortar detiene el proceso y revierte la ACL del conjunto de datos a la ACL previamente activa.", + "Client ID": "ID del cliente", "Client Name": "Nombre del cliente", "Clients": "Clientes", "Clone": "Clonar", @@ -3191,8 +2547,12 @@ "Clone To New Dataset": "Clonar a nuevo conjunto de datos", "Clone to New Dataset": "Clonar a un nuevo conjunto de datos", "Close": "Cerrar", + "Close Feedback Dialog": "Cerrar envío de comentarios", "Close panel": "Cerrar panel", + "Close the form": "Cerrar el formulario", + "Cloud Backup": "Copia de seguridad en la nube", "Cloud Credentials": "Credenciales en la nube", + "Cloud Sync": "Sincronización en la nube", "Cloud Sync Tasks": "Tareas de sincronización en la nube", "Collapse": "Colapsar", "Collapse Row": "Colapsar Row", @@ -3216,6 +2576,7 @@ "Configuration": "Configuración", "Configuration Preview": "Vista previa de la configuración", "Configure": "Configurar", + "Configure 2FA Secret": "Configurar secreto 2FA", "Configure ACL": "Configurar ACL", "Configure Access": "Configurar el acceso", "Configure Active Directory": "Configurar Active Directory", @@ -3361,6 +2722,7 @@ "Data Encipherment": "Cifrado de datos", "Data Protection": "Protección de datos", "Data Quota": "Cuota de datos", + "Data is identical in each disk. A mirror requires at least two disks, provides the most redundancy, and has the least capacity.": "Los datos son idénticos en cada disco. Un espejo requiere al menos dos discos, proporciona la mayor redundancia y tiene la menor capacidad.", "Data transfer security. The connection is authenticated with SSH. Data can be encrypted during transfer for security or left unencrypted to maximize transfer speed. Encryption is recommended, but can be disabled for increased speed on secure networks.": "Seguridad de transferencia de datos. La conexión se autentica con SSH. Los datos se pueden cifrar durante la transferencia por seguridad o no se cifran para maximizar la velocidad de transferencia. Se recomienda el cifrado, pero se puede deshabilitar para aumentar la velocidad en redes seguras.", "Database": "Base de datos", "Dataset": "Conjunto de datos", @@ -3993,8 +3355,16 @@ "Invalid value. Missing numerical value or invalid numerical value/unit.": "Valor no válido. Falta un valor numérico o un valor numérico/unidad no válido.", "Invalid value. Valid values are numbers followed by optional unit letters, like 256k or 1 G or 2 MiB.": "Valor no válido. Los valores válidos son números seguidos de letras de unidad opcionales, como 256k o 1 G o 2 MiB.", "Issuer": "Editor", + "It seems you haven't configured pools yet.": "Parece que todavía no configuraste los pools.", "Item": "Artículo", + "Items per page": "Elementos por página", "Jan": "Enero", + "Job": "Trabajo", + "Job aborted": "Trabajo abortado", + "Jobs": "Trabajos", + "Jobs History": "Historial de trabajos", + "Jobs in progress": "Trabajos en proceso", + "Joining": "Uniendo", "Jul": "Julio", "Jun": "Junio", "KMIP Key Status": "Estado de clave KMIP", @@ -4006,6 +3376,9 @@ "Kerberos Keytab": "Tab.Cla Kerberos", "Kerberos Realm": "Reino Kerberos", "Kerberos Settings": "Configuración de Kerberos", + "Kernel": "Núcleo", + "Kernel Parameters": "Parámetros del núcleo", + "Kernel Settings": "Configuración del núcleo", "Key": "Clave", "Key Agreement": "Acuerdo de clave", "Key Encipherment": "Cifrado de clave", @@ -4013,19 +3386,39 @@ "Key Length": "Longitud de la clave", "Key Type": "Tipo de clave", "Key Usage": "Uso de clave", + "Keypairs": "Pares de claves", + "Keys Synced": "Claves sincronizadas", + "Keywords": "Palabras clave", "LDAP - Primary Domain": "LDAP: Dominio Primario", + "LDAP Domain": "Dominio LDAP", + "LDAP Server": "Servidor LDAP", "LDAP server hostnames or IP addresses. Separate entries with an empty space. Multiple hostnames or IP addresses can be entered to create an LDAP failover priority list. If a host does not respond, the next host in the list is tried until a new connection is established.": "Nombres de host del servidor LDAP o direcciones IP. Entradas separadas con un espacio vacío. Se pueden ingresar varios nombres de host o direcciones IP para crear una lista de prioridades de conmutación por error LDAP. Si un host no responde, se prueba el siguiente host de la lista hasta que se establezca una nueva conexión.", "LDAP server to use for SID/uid/gid map entries. When undefined, idmap_ldap uses *ldap://localhost/*. Example: ldap://ldap.netscape.com/o=Airius.com.": "Servidor LDAP para usar para entradas de mapa SID/uid/gid. Cuando no está definido, idmap_ldap usa * ldap://localhost/*. Ejemplo: ldap: //ldap.netscape.com/o=Airius.com.", "LDAP timeout in seconds. Increase this value if a Kerberos ticket timeout occurs.": "Tiempo de espera de LDAP en segundos. Aumente este valor si se produce un tiempo de espera de ticket Kerberos.", + "LOCAL": "LOCAL", + "LONG": "LARGO", + "Label": "Etiqueta", "Language": "Idioma", - "Last Snapshot": "Última Instantánea", - "Leave Domain": "Dejar dominio", - "Leave at the default of 512 unless the initiator requires a different block size.": "Deje el valor predeterminado de 512 a menos que el iniciador requiera un tamaño de bloque diferente.", - "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "Deje en blanco para permitir todo o introduzca una lista de nombres de host del iniciador. Separe las entradas pulsando Enter.", + "Last 24 hours": "Ultimas 24 horas", + "Last 3 days": "Últimos 3 días", + "Last Page": "Última página", + "Last Scan": "Último escaneo", + "Last Scan Duration": "Duración del último escaneo", + "Last Scan Errors": "Errores del último escaneo", + "Last Snapshot": "Última Instantánea", + "Last month": "Mes pasado", + "Last successful": "Último exitoso", + "Last week": "La semana pasada", + "Latest version": "Última versión", + "Leave Domain": "Dejar dominio", + "Leave Feedback": "Dejar un comentario", + "Leave at the default of 512 unless the initiator requires a different block size.": "Deje el valor predeterminado de 512 a menos que el iniciador requiera un tamaño de bloque diferente.", + "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "Deje en blanco para permitir todo o introduzca una lista de nombres de host del iniciador. Separe las entradas pulsando Enter.", "Leave empty for default (OpsGenie API)": "Deje en blanco por defecto (API de OpsGenie)", "Leave empty or select number of existing portal to use.": "Deje en blanco o seleccione el número de portal existente para usar.", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "Dejar el dominio requiere suficientes privilegios. Ingrese sus credenciales a continuación.", "Legacy": "Heredado", + "Legacy AFP Compatibility": "Compatibilidad con AFP heredada", "Legacy NetBIOS name server. Advertises the SMB service NetBIOS Name. Can be required for legacy SMB1 clients to discover the server. When advertised, the server appears in Network Neighborhood).": "Servidor de nombres NetBIOS heredado. Anuncia el servicio SMB Nombre de NetBIOS. Puede ser necesario para que los clientes SMB1 heredados detecten el servidor. Cuando se anuncia, el servidor aparece en Entorno de red).", "Level": "Nivel", "Level 1 - Minimum power usage with Standby (spindown)": "Nivel 1 - Consumo mínimo de energía con modo de espera (spindown)", @@ -4037,8 +3430,15 @@ "Libdefaults Auxiliary Parameters": "Parámetros auxiliares de Libdefaults", "License": "Licencia", "Lifetime": "Toda la vida", + "Limit": "Limitar", + "Limit Pool To A Single Enclosure": "Limitar pool a un solo recinto", + "Limit To {name} Enclosure": "Limitar al recinto {name}", "Limit replication speed to this number of bytes per second.": "Limite la velocidad de replicación a este número de bytes por segundo.", "Link Aggregation": "Agregación de enlaces", + "Link Aggregation Interfaces": "Interfaces de agregación de enlaces", + "Link Aggregation Protocol": "Protocolo de agregación de enlaces", + "Link aggregation interface": "Interfaz de agregación de enlaces", + "Linked Service": "Servicio vinculado", "List any existing dataset properties to remove from the replicated files.": "Enumere las propiedades del conjunto de datos existentes para eliminar de los archivos replicados.", "List of chat IDs": "Lista de ID de chat", "List of files and directories to exclude from sync.
    Separate entries by pressing Enter. See rclone filtering for more details about the --exclude option.": "Lista de archivos y directorios para excluir de la sincronización.
    Separe las entradas presionando Enter. Consulte filtrado de rclone para obtener más detalles sobre la opción --exclude.", @@ -4046,51 +3446,128 @@ "Load Previous Replication Task": "Cargar tarea de replicación anterior", "Loading": "Cargando", "Loading...": "Cargando...", + "Local": "Local", "Local Account": "Cuenta local", + "Local Administrator": "Administrador local", "Local Groups": "Grupos locales", + "Local Groups Name": "Nombre de los grupos locales", + "Local User Download Bandwidth": "Ancho de banda de descarga de usuario local", "Local User Upload Bandwidth: ": "Ancho de banda de carga de usuario local: ", "Local Users": "Usuarios locales", "Locality": "Localidad", "Localization": "Localización", + "Localization Settings": "Configuración de localización", "Location": "Ubicación", "Lock": "Bloquear", + "Lock Dataset": "Bloquear conjunto de datos", + "Lock Dataset {datasetName}?": "¿Bloquear conjunto de datos {datasetName}?", "Lock User": "Bloquear usuario", "Locking Dataset": "Bloqueo de conjunto de datos", "Log": "Registro", + "Log In": "Iniciar sesión", + "Log In To Gmail": "Iniciar sesión en Gmail", + "Log In To Provider": "Iniciar sesión en el proveedor", "Log Level": "Nivel de registro", "Log Out": "Cerrar sesión", + "Log Path": "Ruta de registro", + "Log in to Gmail to set up Oauth credentials.": "Iniciar sesión en Gmail para configurar las credenciales de Oauth.", + "Logged In To Gmail": "Inició sesión en Gmail", + "Logged In To Jira": "Inició sesión en Jira", + "Logged In To Provider": "Inició sesión en el proveedor", "Logging Level": "Nivel de registro", + "Logging in...": "Iniciando sesión...", "Logical Block Size": "Tamaño del bloque lógico", "Login Attempts": "Intentos de acceso", + "Login Banner": "Pancarta de inicio de sesión", + "Logout": "Cerrar sesión", "Logs": "Registros", + "Logs Details": "Detalles de los registros", + "Long": "Largo", + "Long time ago": "Hace mucho tiempo", "Looking for help?": "¿Buscas ayuda?", "Losing the ability to unlock the pool can result in losing all data on the disks with no chance of recovery. Always back up the encryption key file or passphrase for an encrypted pool! The key file for an encrypted pool is secured in the system database and can be exported at any time from the pool options": "Perder la capacidad de desbloquear el grupo puede provocar la pérdida de todos los datos en los discos sin posibilidad de recuperación. ¡Siempre hacé una copia de seguridad del archivo de clave de cifrado o frase de contraseña para un grupo cifrado! El archivo de clave para un grupo cifrado está protegido en la base de datos del sistema y se puede exportar en cualquier momento desde las opciones del grupo", + "Loss of Functionality": "Pérdida de funcionalidad", + "Low Bandwidth (4)": "Ancho de banda bajo (4)", + "Low Capacity": "Capacidad baja", "Lowercase alphanumeric characters plus dot (.), dash (-), and colon (:) are allowed. See the Constructing iSCSI names using the iqn.format section of RFC3721.": "Se permiten caracteres alfanuméricos en minúscula más punto (.), Guión (-) y dos puntos (:). Vea la Construcción de nombres iSCSI utilizando la sección iqn.format de RFC3721 .", + "Lowest Temperature": "Temperatura más baja", "Lowest port number of the active side listen address that is open to connections.": "Número de puerto más bajo de la dirección de escucha del lado activo abierta a las conexiones.", + "MAC Address": "Dirección MAC", "MOTD Banner": "Pancarta MOTD", + "MOVE": "MOVER", "Mac Address": "Dirección Mac", + "Main menu": "Menú principal", "Make Destination Dataset Read-only?": "¿Hacer que el conjunto de datos de destino sea de solo lectura?", "Manage": "Gestionar", + "Manage Advanced Settings": "Administrar configuraciones avanzadas", + "Manage Apps Settings": "Administrar configuración de apps", "Manage Certificates": "Administrar Certificados", + "Manage Cloud Sync Tasks": "Administrar tareas de sincronización en la nube", "Manage Configuration": "Administrar Configuración", + "Manage Container Images": "Administrar imágenes de contenedores", + "Manage Credentials": "Administrar credenciales", + "Manage Datasets": "Administrar conjuntos de datos", + "Manage Devices": "Administrar dispositivos", + "Manage Disks": "Administrar discos", + "Manage Group Quotas": "Administrar cuotas de grupo", + "Manage Groups Server-side": "Administrar grupos del lado del servidor", + "Manage Installed Apps": "Administrar apps instaladas", + "Manage NFS Shares": "Administrar recursos compartidos NFS", + "Manage Replication Tasks": "Administrar tareas de replicación", + "Manage Rsync Tasks": "Administrar tareas de Rsync", + "Manage S.M.A.R.T. Tasks": "Administrar tareas S.M.A.R.T.", + "Manage SED Password": "Administrar contraseña SED", "Manage SED Passwords": "Administrar contraseñas SED", + "Manage SMB Shares": "Administrar recursos compartidos SMB", "Manage Services and Continue": "Gestionar servicios y continuar", + "Manage Snapshot Tasks": "Administrar tareas de instantánea", + "Manage Snapshots": "Administrar instantáneas", + "Manage Snapshots Tasks": "Administrar tareas de instantáneas", + "Manage User Quotas": "Administrar cuotas de usuarios", + "Manage VM Settings": "Administrar configuración de la VM", "Manage ZFS Keys": "Administrar claves ZFS", + "Manage iSCSI Shares": "Administrar recursos compartidos iSCSI", + "Manage members of {name} group": "Administrar miembros del grupo {name}", + "Managed by TrueCommand": "Administrado por TrueCommand", "Management": "Administración", + "Manual": "Manual", + "Manual Disk Selection": "Selección manual de discos", "Manual S.M.A.R.T. Test": "Prueba manual S.M.A.R.T.", + "Manual Selection": "Selección manual", + "Manual Test": "Prueba manual", "Manual Update": "Actualización manual", + "Manual Upgrade": "Actualización manual", + "Manual disk selection allows you to create VDEVs and add disks to those VDEVs individually.": "La selección manual de discos te permite crear VDEVs y agregar discos a esos VDEVs individualmente.", + "Manual layout": "Disposición manual", + "Manually Configured VDEVs": "VDEVs configurados manualmente", + "Mapall Group": "Grupo Mapall", + "Mapall User": "Usuario Mapall", + "Maproot Group": "Grupo Maproot", + "Maproot User": "Usuario Maproot", "Mar": "Marzo", "Mask": "Máscara", + "Masquerade Address": "Dirección de máscara", + "Matching naming schema": "Esquema de nombres coincidente", + "Matching regular expression": "Expresión regular coincidente", "Matching the fixed size of data, as in a database, may result in better performance.": "Hacer coincidir el tamaño fijo de los datos, como en una base de datos, puede resultar en un mejor rendimiento.", "Mathematical instruction sets that determine how plaintext is converted into ciphertext. See Advanced Encryption Standard (AES) for more details.": "Conjuntos de instrucciones matemáticas que determinan cómo se convierte el texto sin formato en texto cifrado. Consulte Estándar de cifrado avanzado (AES) para obtener más detalles.", "Mattermost username.": "Nombre de usuario más importante.", "Max Poll": "Máx Poll", + "Max dataset nesting in ZFS is limited to 50. We are already at that limit in the parent dataset path. It is not possible to create anymore nested datasets under this path.": "La anidación máxima de conjuntos de datos en ZFS está limitada a 50. Ya alcanzamos ese límite en la ruta del conjunto de datos principal. No se puede crear más conjuntos de datos anidados en esta ruta.", + "Maximize Dispersal": "Maximizar dispersión", + "Maximize Enclosure Dispersal": "Maximizar la dispersión del recinto", + "Maximum Passive Port": "Puerto pasivo máximo", "Maximum Transmission Unit, the largest protocol data unit that can be communicated. The largest workable MTU size varies with network interfaces and equipment. 1500 and 9000 are standard Ethernet MTU sizes. Leaving blank restores the field to the default value of 1500.": "Unidad de transmisión máxima, la unidad de datos de protocolo más grande que se puede comunicar. El mayor tamaño de MTU viable varía con las interfaces de red y el equipo. 1500 y 9000 son tamaños estándar de MTU de Ethernet. Dejar en blanco restaura el campo al valor predeterminado de 1500.", "Maximum Upload Parts": "Partes máximas de carga", + "Maximum number of replication tasks being executed simultaneously.": "Número máximo de tareas de replicación que se ejecutan simultáneamente.", + "Maximum number of seconds a client is allowed to spend connected, after\nauthentication, without issuing a command which results in creating an active or passive data connection\n(i.e. sending/receiving a file, or receiving a directory listing).": "Número máximo de segundos que un cliente puede permanecer conectado, después de la autenticación, sin emitir un comando que resulte en la creación de una conexión de datos activa o pasiva\n(es decir, enviar/recibir un archivo o recibir un listado de directorios).", + "Maximum number of seconds that proftpd will allow clients to stay connected without receiving\nany data on either the control or data connection.": "Número máximo de segundos que proftpd permitirá que los clientes permanezcan conectados sin recibir\nningún dato ni en la conexión de control ni en la de datos.", "Maximum value is {max}": "El valor máximo es {max}", "May": "Mayo", "Media Subtype": "Subtipo de medio", "Media Type": "Tipo de medio", + "Medium Bandwidth (8)": "Ancho de banda medio (8)", + "Mega": "Mega", "Member Disk": "Disco del miembro", "Member disk": "Disco del miembro", "Members": "Miembros", @@ -4098,63 +3575,132 @@ "Memory": "Memoria", "Memory Reports": "Reportes de memoria", "Memory Size": "Tamaño de memoria", + "Memory Stats": "Estadísticas de memoria", + "Memory Usage": "Uso de memoria", + "Memory Utilization": "Utilización de memoria", + "Memory device": "Dispositivo de memoria", + "Memory usage of app": "Uso de memoria de la app", + "Message": "Mensaje", "Message verbosity level in the replication task log.": "Nivel de verbosidad del mensaje en el registro de tareas de replicación.", "Metadata": "Metadados", "Method": "Método", + "Metrics": "Métricas", "MiB. Units smaller than MiB are not allowed.": "MiB. Las unidades más pequeñas que MiB no están permitidas.", + "Microsoft Azure": "Microsoft Azure", "Microsoft Onedrive Access Token. Log in to the Microsoft account to add an access token.": "Microsoft Onedrive Token de acceso. Inicie sesión en la cuenta de Microsoft para agregar un token de acceso.", + "Middleware": "Software intermedio", + "Middleware - Credentials": "Software intermedio - Credenciales", + "Middleware - Method": "Software intermedio - Método", "Min Poll": "Mín Poll", "Minimum": "Mínimo", + "Minimum Memory": "Memoria mínima", + "Minimum Memory Size": "Tamaño mínimo de memoria", + "Minimum Passive Port": "Puerto pasivo Mínimo", "Minimum value is {min}": "El valor mínimo es {min}", + "Minor": "Menor", + "Minor Version": "Versión menor", "Minutes": "Minutos", "Minutes when this task will run.": "Minutos cuando se ejecutará esta tarea.", "Minutes/Hours": "Minutos/Horas", "Minutes/Hours/Days": "Minutos/Horas/Días", "Mirror": "Espejo", + "Missing group - {gid}": "Grupo desaparecido - {gid}", + "Missing permissions for this action": "Permisos faltantes para esta acción", + "Mixed Capacity": "Capacidad mixta", "Mode": "Modo", "Model": "Modelo", + "Modify": "Modificar", + "Module": "Módulo", "Mon": "Lunes", "Monday": "Lunes", + "Monitor": "Monitor", "Monitor Password": "Contraseña del monitor", "Monitor User": "Monitorear usuario", "Month(s)": "Mes(es)", "Months": "Meses", "More Options": "Mas opciones", + "More info...": "Más info...", + "Move all items to the left side list": "Mover todos los elementos a la lista del lado izquierdo", + "Move all items to the right side list": "Mover todos los elementos a la lista del lado derecho", "Move existing keys from the current key server to a new key server. To switch to a different key server, key synchronization must be Enabled, then enable this setting, update the key server connection configuration, and click SAVE.": "Mueva las claves existentes del servidor de claves actual a un nuevo servidor de claves. Para cambiar a un servidor de claves diferente, la sincronización de claves debe estar Activada, luego active esta configuración, actualice la configuración de conexión del servidor de claves y hacé clic en GUARDAR.", + "Move selected items to the left side list": "Mover los elementos seleccionados a la lista del lado izquierdo", + "Move selected items to the right side list": "Mover los elementos seleccionados a la lista del lado derecho", + "Move widget down": "Mover el widget hacia abajo", + "Move widget up": "Mover el widget hacia arriba", "Multi-domain support. Enter additional domains to secure. Separate domains by pressing Enter For example, if the primary domain is example.com, entering www.example.com secures both addresses.": "Soporte multidominio. Ingrese dominios adicionales para proteger. Separe los dominios presionando Enter Por ejemplo, si el dominio principal es example.com, ingresar www.example.com asegura ambas direcciones.", "Multicast DNS. Uses the system Hostname to advertise enabled and running services. For example, this controls if the server appears under Network on MacOS clients.": "DNS multicast. Utiliza el sistema Nombre del host para anunciar servicios habilitados y en ejecución. Por ejemplo, esto controla si el servidor aparece en Red en clientes MacOS.", + "Multichannel": "Multicanal", + "Multiple Errors": "Múltiples errores", + "Multiprotocol": "Multiprotocolo", + "Must be part of the pool to check errors.": "Debe ser parte del grupo para verificar errores.", "Must match Windows workgroup name. When this is unconfigured and Active Directory or LDAP are active, TrueNAS will detect and set the correct workgroup from these services.": "Debe coincidir con el nombre del grupo de trabajo de Windows. Cuando esto no esté configurado y Active Directory o LDAP estén activos, TrueNAS detectará y establecerá el grupo de trabajo correcto de estos servicios.", "Mutual secret password. Required when Peer User is set. Must be different than the Secret.": "Contraseña secreta mutua Obligatorio cuando se establece el usuario par. Debe ser diferente al Secreto.", + "N/A": "N/A", + "NEW": "NUEVO", + "NFS": "NFS", + "NFS Sessions": "Sesiones NFS", + "NFS Share": "Recursos compartidos NFS", + "NFS share created": "Recurso compartido NFS creado", + "NFS share updated": "Recurso compartido NFS actualizado", + "NFS3 Session": "Sesión NFS3", + "NFS4 Session": "Sesión NFS4", + "NFSv4": "NFSv4", + "NFSv4 DNS Domain": "Dominio DNS NFSv4", + "NIC": "NIC", + "NIC To Attach": "NIC para adjuntar", "NOTICE": "AVISO", + "NS": "NS", "NTLMv1 Auth": "Autenticación NTLMv1", + "NTP Server": "Servidor NTP", "NTP Server Settings": "Configuración del servidor NTP", "NTP Servers": "Servidores NTP", "Name": "Nombre", + "Name And Method": "Nombre y método", "Name and Naming Schema cannot be provided at the same time.": "El esquema de nombres y nombres no se puede proporcionar al mismo tiempo.", "Name and Options": "Nombre y opciones", "Name and Provider": "Nombre y Proveedor", "Name and Type": "Nombre y Tipo", + "Name not added": "Nombre no añadido", "Name not found": "Nombre no encontrado", "Name of the channel to receive notifications. This overrides the default channel in the incoming webhook settings.": "Nombre del canal para recibir notificaciones. Esto anula el canal predeterminado en la configuración del webhook entrante.", "Name of the InfluxDB database.": "Nombre de la base de datos InfluxDB.", "Name of the WebDAV site, service, or software being used.": "Nombre del sitio, servicio o software de WebDAV que se está utilizando.", "Name of the extent. If the Extent size is not 0, it cannot be an existing file within the pool or dataset.": "Nombre de la extensión. Si el Tamaño de extensión no es 0, no puede ser un archivo existente dentro del grupo o conjunto de datos.", + "Name of the new alert service.": "Nombre del nuevo servicio de alerta.", "Name of the new cloned boot environment. Alphanumeric characters, dashes (-), underscores (_), and periods (.) are allowed.": "Nombre del nuevo entorno de arranque clonado. Se permiten caracteres alfanuméricos, guiones (-), guiones bajos (_) y puntos (.).", "Name of the new dataset created from the cloned snapshot.": "Nombre del nuevo conjunto de datos creado a partir de la instantánea clonada.", + "Name of the pool is required": "El nombre del pool es obligatorio", + "Name of the pool must be correct": "El nombre del pool tiene que ser correcto", + "Name of the zvol is required": "El nombre del zvol es obligatorio", + "Name of the zvol must be correct": "El nombre del zvol tiene que ser correcto.", "Name of this SSH connection. SSH connection names must be unique.": "Nombre de esta conexión SSH. Los nombres de conexión SSH deben ser únicos.", "Name of this replication configuration.": "Nombre de esta configuración de replicación.", "Name or Naming Schema must be provided.": "Se debe proporcionar el nombre o el esquema de nombres.", + "Nameserver": "Servidor de nombres", + "Nameserver (DHCP)": "Servidor de nombres (DHCP)", "Nameserver 1": "Nombre de servidor 1", "Nameserver 2": "Nombre de servidor 2", "Nameserver 3": "Nombre de servidor 3", + "Nameserver {n}": "Servidor de nombres {n}", "Nameservers": "Servidores de nombres", "Naming Schema": "Esquema de nomenclatura", + "Negotiate – only encrypt transport if explicitly requested by the SMB client": "Negociar: solo cifrar el transporte si lo pide explícitamente el cliente SMB", + "NetBIOS": "NetBIOS", "NetBIOS Alias": "Alias de NetBIOS", "NetBIOS Name": "Nombre de NetBIOS", "Network": "Red", + "Network Configuration": "Configuración de red", + "Network I/O": "E/S de red", "Network Interface": "Interfaz de red", + "Network Interface Card": "Tarjeta de interfaz de red", "Network Reports": "Reportes de red", + "Network Reset": "Restablecimiento de red", + "Network Settings": "Configuración de red", + "Network Stats": "Estadísticas de red", "Network Timeout Before Initiating Failover": "Tiempo de espera de red antes de iniciar la conmutación por error", + "Network Traffic": "Tráfico de red", + "Network Usage": "Uso de red", + "Network Utilization": "Utilización de la red", "Network addresses allowed to use this initiator. Leave blank to allow all networks or list network addresses with a CIDR mask. Separate entries by pressing Enter.": "Las direcciones de red pueden usar este iniciador. Déjelo en blanco para permitir todas las redes o enumere las direcciones de red con una máscara CIDR. Separe las entradas presionando Enter.", "Network addresses allowed use this initiator. Each address can include an optional CIDR netmask. Click + to add the network address to the list. Example: 192.168.2.0/24.": "Las direcciones de red permitidas usan este iniciador. Cada dirección puede incluir una CIDR netmask opcional. Hacé clic en + para agregar la dirección de red a la lista. Ejemplo: 192.168.2.0/24.", "Network changes applied successfully.": "Cambios en la red aplicados con éxito.", @@ -4162,36 +3708,122 @@ "Network control (highest)": "Control de red (más alto)", "Network interface changes have been made permanent.": "Los cambios en la interfaz de red se han hecho permanentes.", "Network interface changes have been temporarily applied for testing. Keep changes permanently? Changes are automatically reverted after the testing delay if they are not permanently applied.": "Los cambios en la interfaz de red se han aplicado temporalmente para las pruebas. ¿Mantener cambios permanentemente? Los cambios se revierten automáticamente después del retraso de la prueba si no se aplican de forma permanente.", + "Network interface settings have been temporarily changed for testing. The settings will revert to the previous configuration after {x} seconds unless SAVE CHANGES is chosen to make them permanent.": "Se modificaron temporalmente las configuraciones de la interfaz de red para realizar pruebas. Las configuraciones volverán a la configuración anterior después de {x} segundos, a menos que se seleccione GUARDAR CAMBIOS para que sean permanentes.", "Network interfaces to include in the bridge.": "Interfaces de red para incluir en el puente.", + "Networking": "Redes", "Networks": "Redes", "Never": "Nunca", "Never Delete": "Nunca borrar", + "New & Updated Apps": "Apps nuevas y actualizadas", + "New Alert": "Nueva alerta", + "New Backup Credential": "Nueva credencial de respaldo", + "New CSR": "Nuevo CSR", + "New Certificate": "Nuevo certificado", + "New Certificate Authority": "Nueva autoridad de certificación", + "New Certificate Signing Requests": "Nuevas solicitudes de firma de certificados", + "New Cloud Backup": "Nueva copia en la nube", + "New Cloud Sync Task": "Nueva tarea de sincronización en la nube", + "New Credential": "Nueva credencial", + "New Cron Job": "Nueva tarea cron", + "New DNS Authenticator": "Nuevo autenticador de DNS", + "New Dataset": "Nuevo conjunto de datos", + "New Devices": "Nuevos dispositivos", "New Disk": "Nuevo disco", + "New Disk Test": "Prueba de disco nueva", + "New Group": "Nuevo grupo", + "New IPv4 Default Gateway": "Nueva puerta de enlace predeterminada IPv4", + "New Init/Shutdown Script": "Nuevo script de inicio/apagado", + "New Interface": "Nueva interfaz", + "New Key": "Nueva clave", + "New NFS Share": "Nuevo recurso compartido NFS", + "New NTP Server": "Nuevo servidor NTP", "New Password": "Nueva contraseña", + "New Periodic S.M.A.R.T. Test": "Nueva prueba periódica S.M.A.R.T.", + "New Pool": "Nuevo pool", + "New Privilege": "Nuevo privilegio", + "New Replication Task": "Nueva tarea de replicación", + "New Rsync Task": "Nueva tarea Rsync", + "New SMB Share": "Nuevo recurso compartido SMB", + "New SSH Connection": "Nueva conexión SSH", + "New SSH Keypair": "Nuevo par de claves SSH", + "New Share": "Nuevo recurso compartido", + "New Smart Test": "Nueva prueba inteligente", + "New Snapshot Task": "Nueva tarea de instantánea", + "New Static Route": "Nueva ruta estática", + "New Sysctl": "Nuevo Sysctl", + "New User": "Nuevo usuario", + "New Virtual Machine": "Nueva máquina virtual", + "New Widget": "Nuevo widget", + "New Zvol": "Nuevo Zvol", + "New iSCSI": "Nuevo iSCSI", + "New password": "Nueva contraseña", + "New password and confirmation should match.": "La nueva contraseña y la confirmación deben ser iguales.", "New users are not given su permissions if wheel is their primary group.": "Los nuevos usuarios no tienen permisos de su si wheel es su grupo principal.", + "New widgets and layouts.": "Nuevos widgets y diseños.", "Newer Clone": "Clon más nuevo", "Newer Intermediate, Child, and Clone": "Intermedio más reciente, niño y clon", "Next": "Siguiente", + "Next Page": "Página siguiente", "Next Run": "Siguiente arranque", + "No": "No", + "No Applications Installed": "No hay aplicaciones instaladas", + "No Applications are Available": "No hay aplicaciones disponibles", + "No Changelog": "Sin registro de cambios", "No Communication Warning Time": "Sin tiempo de advertencia de comunicación", + "No Data": "Sin datos", + "No Datasets": "Sin conjuntos de datos", "No Encryption (less secure, but faster)": "Sin encriptación (menos seguro, pero más rápido)", + "No Inherit": "No heredar", "No Logs": "Sin registros", "No Pools": "Sin Grupos (Pools)", "No Safety Check (CAUTION)": "Sin verificación de seguridad (PRECAUCIÓN)", + "No Search Results.": "No hay resultados de búsqueda.", + "No VDEVs added.": "No se agregaron VDEVs.", + "No containers are available.": "No hay contenedores disponibles.", + "No descriptor provided": "No se proporcionó ninguna descripción", + "No disks available.": "No hay discos disponibles", + "No e-mail address is set for root user or any other local administrator. Please, configure such an email address first.": "No se configuró ninguna dirección de correo para el usuario root ni para ningún otro administrador local. Configurá primero dicha dirección de correo.", + "No enclosure": "Sin recinto", + "No errors": "Sin errores", + "No events to display.": "No hay eventos para mostrar.", + "No images found": "No se encontraron imágenes", "No interfaces configured with Virtual IP.": "No hay interfaces configuradas con IP virtual.", + "No items have been added yet.": "Todavía no se agregaron artículos.", + "No jobs running.": "No hay trabajos ejecutándose.", + "No logs are available": "No hay registros disponibles", "No logs are available for this task.": "No hay registros disponibles para esta tarea.", + "No logs available": "No hay registros disponibles", + "No logs yet": "Todavía no hay registros", "No longer keep this Boot Environment?": "¿Ya no conserva este entorno de arranque?", + "No matching results found": "No se encontraron resultados coincidentes", "No network interfaces are marked critical for failover.": "Ninguna interfaz de red se considera crítica para la conmutación por error.", + "No options": "Sin opciones", "No pools are configured.": "No hay grupos configurados.", + "No ports are being used.": "No se están usando puertos.", + "No records": "Sin registros", "No records have been added yet": "No se agregaron registros", + "No similar apps found.": "No se encontraron apps similares.", "No snapshots sent yet": "Aún no se han enviado instantáneas", "No updates available.": "No hay actualizaciones disponibles.", + "No volume mounts": "Sin montajes de volumen", + "No warnings": "Sin advertencias", "None": "Ninguno", + "None requested": "No se solicitó ninguna", + "Normal": "Normal", + "Not Shared": "No compartido", + "Notes": "Notas", "Notes about this disk.": "Notas sobre este disco.", "Notes about this extent.": "Notas sobre esta extensión.", "Notice": "Aviso", + "Notifications": "Notificaciones", "Nov": "Noviembre", + "Now": "Ahora", + "Now/Restart": "Ahora/Reiniciar", + "Num Pending Deletes": "Número de eliminaciones pendientes", + "Number of VDEVs": "Número de VDEVs", + "Number of bytes": "Número de bytes", "Number of days to renew certificate before expiring.": "Número de días para renovar el certificado antes de caducar.", + "Number of days to retain local audit messages.": "Número de días para conservar los mensajes de auditoría local.", "Number of objects that can be owned by each of the selected groups. Entering 0 (zero) allows unlimited objects.": "Número de objetos que pueden ser propiedad de cada uno de los grupos seleccionados. Al ingresar 0 (cero) se permiten objetos ilimitados.", "Number of objects that can be owned by each of the selected users. Entering 0 (zero) allows unlimited objects.": "Número de objetos que pueden ser propiedad de cada uno de los usuarios seleccionados. Al ingresar 0 (cero) se permiten objetos ilimitados.", "Number of password-based key derivation function 2 (PBKDF2) iterations to use for reducing vulnerability to brute-force attacks. Entering a number larger than 100000 is required. See PBKDF2 for more details.": "Número de iteraciones de la función de derivación de clave basada en contraseña 2 (PBKDF2) para reducir la vulnerabilidad a los ataques de fuerza bruta. Se requiere ingresar un número mayor que 100000. Consulte PBKDF2 para obtener más detalles.", @@ -4202,15 +3834,25 @@ "Number of simultaneous file transfers. Enter a number based on the available bandwidth and destination system performance. See rclone --transfers.": "Número de transferencias simultáneas de archivos. Ingrese un número basado en el ancho de banda disponible y el rendimiento del sistema de destino. Consulte rclone --transfers .", "Number of times the replication is attempted before stopping and marking the task as failed.": "Número de veces que se intenta la replicación antes de detener y marcar la tarea como fallida.", "Number of virtual CPUs to allocate to the virtual machine. The VM operating system might have operational or licensing restrictions on the number of CPUs.": "Número de CPU virtuales para asignar a la máquina virtual. El sistema operativo de la máquina virtual puede tener restricciones operativas o de licencia sobre la cantidad de CPU.", + "OAuth Authentication": "Autenticación OAuth", "OAuth Client ID": "ID de cliente de OAuth", "OAuth Client Secret": "Secreto de cliente OAuth", + "OAuth Token for current session": "Token OAuth para la sesión actual", "OFFLINE": "FUERA DE LÍNEA", + "OK": "OK", "OQ % Used": "OQ % utilizado", + "OQ Used": "OQ usado", + "OS": "OS", + "OS Version": "Versión del SO", "OTHER": "OTRO", "Object Quota": "Cuota de objeto", + "Oct": "Oct", "Off": "Apagado", + "Off by default. When set, smbd(8) attempts to authenticate users with the insecure and vulnerable NTLMv1 encryption. This setting allows backward compatibility with older versions of Windows, but is not recommended and should not be used on untrusted networks.": "Desactivado de forma predeterminada. Cuando está configurado, smbd(8) intenta autenticar a los usuarios con el cifrado NTLMv1, que es inseguro y vulnerable. Esta configuración permite la compatibilidad con versiones anteriores de Windows, pero no se recomienda y no se debe utilizar en redes que no sean de confianza.", "Offline": "Desconectado", "Offline Disk": "Disco sin conexión", + "Ok": "Ok", + "Okay": "Okay", "On": "En", "On a Different System": "En un sistema diferente", "On this System": "En este sistema", @@ -4226,6 +3868,8 @@ "Openstack API key or password. This is the OS_PASSWORD from an OpenStack credentials file.": "Clave o contraseña de API OpenStack. Esta es la OS_PASSWORD de un archivo de credenciales OpenStack .", "Openstack user name for login. This is the OS_USERNAME from an OpenStack credentials file.": "Nombre de usuario de OpenStack para iniciar sesión. Este es el OS_USERNAME de un archivo de credenciales OpenStack .", "Operating System": "Sistema operativo", + "Operation": "Operación", + "Optional IP": "IP opcional", "Optional description. Portals are automatically assigned a numeric group.": "Descripción opcional A los portales se les asigna automáticamente un grupo numérico.", "Optional user-friendly name.": "Nombre opcional fácil de usar.", "Optional. Enter a server description.": "Opcional. Ingrese una descripción del servidor.", @@ -4237,8 +3881,10 @@ "Organizational Unit": "Unidad organizacional", "Organizational unit of the entity.": "Unidad organizativa de la entidad.", "Other": "Otro", + "Other Devices": "Otros dispositivos", "Other Options": "Otras opciones", "Other Settings": "Otros ajustes", + "Others": "Otros", "Out": "Salida", "Outbound Network": "Red saliente", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "Reemplaza la máscara de creación de directorios predeterminada de 0777 que concede acceso de lectura, escritura y ejecución de directorios para todos.", @@ -4252,11 +3898,16 @@ "Password": "Contraseña", "Password Disabled": "Contraseña Deshabilitada", "Password Server": "Servidor de contraseñas", + "Password Servers": "Servidores de contraseñas", + "Password and confirmation should match.": "La contraseña y la confirmación deben ser iguales.", "Password associated with the LDAP User DN.": "Contraseña asociada con el DN de usuario LDAP.", "Password for the Active Directory administrator account. Required the first time a domain is configured. After initial configuration, the password is not needed to edit, start, or stop the service.": "Contraseña para la cuenta de administrador de Active Directory. Se requiere la primera vez que se configura un dominio. Después de la configuración inicial, la contraseña no es necesaria para editar, iniciar o detener el servicio.", "Password for the Bind DN.": "Contraseña para el enlace DN.", "Password for the SSH Username account.": "Contraseña para la cuenta de nombre de usuario SSH.", "Password for the user account.": "Contraseña para la cuenta de usuario.", + "Password is not set": "La contraseña no está establecida", + "Password is set": "La contraseña está establecida", + "Password login enabled": "Inicio de sesión con contraseña habilitado", "Password to encrypt and decrypt remote data. Warning: Always securely back up this password! Losing the encryption password will result in data loss.": "Contraseña para cifrar y descifrar datos remotos. Advertencia: ¡Realice siempre una copia de seguridad de esta contraseña! La pérdida de la contraseña de cifrado provocará la pérdida de datos.", "Password updated.": "Contraseña actualizada.", "Passwords cannot contain a ?. Passwords should be at least eight characters and contain a mix of lower and upper case, numbers, and special characters.": "Las contraseñas no pueden contener un ?. Las contraseñas deben tener al menos ocho caracteres y contener una combinación de minúsculas y mayúsculas, números y caracteres especiales.", @@ -4270,16 +3921,25 @@ "Path Length": "Longitud de la ruta", "Path Suffix": "Sufijo de ruta", "Path to the Extent": "Ruta a la extensión", + "Pattern": "Patrón", "Peer Secret": "Secreto de pares", "Peer Secret (Confirm)": "Secreto del par (Confirmar)", "Peer User": "Usuario del par", + "Pending": "Pendiente", "Pending Network Changes": "Cambios de red pendientes", "Pending Upgrade": "Actualización pendiente", + "Performance": "Rendimiento", + "Performance Optimization": "Optimización de rendimiento", "Performs authentication from an LDAP server.": "Realiza la autenticación desde un servidor LDAP.", + "Periodic S.M.A.R.T. Tests": "Pruebas periódicas S.M.A.R.T.", "Periodic Snapshot Tasks": "Tareas periódicas de instantáneas", "Permission": "Permiso", "Permissions": "Permisos", + "Permissions Advanced": "Permisos avanzados", + "Permissions Basic": "Permisos básicos", + "Permissions Editor": "Editor de permisos", "Permissions Type": "Tipo de permisos", + "Permissions saved.": "Permisos guardados.", "Phone": "Teléfono", "Phone Number": "Número de teléfono", "Plain (No Encryption)": "Sencillo (sin cifrado)", @@ -4288,22 +3948,32 @@ "Please input password.": "Por favor, ingrese una contraseña.", "Please input user name.": "Por favor, ingrese un nombre de usuario", "Please select a tag": "Por favor, seleccione una etiqueta", + "Please specify whether to install NVIDIA driver or not.": "Por favor especificá si deseás instalar el controlador NVIDIA o no.", "Please wait": "Por favor espere", + "Pool": "Pool", "Pool Available Space Threshold (%)": "Umbral de espacio disponible del Pool (%)", + "Pool Name": "Nombre del pool", "Pool Status": "Estado de Pool", + "Pool Usage": "Uso del pool", "Pool/Dataset": "Pool/Conjunto de datos", "Pools": "Grupos (Pools)", + "Pools:": "Pools", "Port": "Puerto", "Port number on the remote system to use for the SSH connection.": "Número de puerto en el sistema remoto para usar para la conexión SSH.", "Port or Hostname": "Puerto o nombre de host", + "Portal": "Portal", "Portal Group ID": "ID de grupo de portal", "Portals": "Portales", "Ports": "Puertos", "Power": "Potencia", "Power Management": "Administración de energía", + "Power Menu": "Menú de energía", "Power Mode": "Modo de energía", "Power Off": "Apagar", "Power Off UPS": "Apagar UPS", + "Power On Hours Ago": "Encendido hace horas", + "Power Outage": "Corte de energía", + "Power Supply": "Fuente de alimentación", "Predefined certificate extensions. Choose a profile that best matches your certificate usage scenario.": "Extensiones de certificado predefinidas. Elija el perfil que mejor se adapte a su escenario de uso de certificado.", "Predefined permission combinations:
    Read: Read access and Execute permission on the object (RX).
    Change: Read access, Execute permission, Write access, and Delete object (RXWD).
    Full: Read access, Execute permission, Write access, Delete object, change Permissions, and take Ownership (RXWDPO).

    For more details, see smbacls(1).": "Combinaciones de permisos predefinidos:
    Leer : acceso de lectura y permiso de ejecución sobre el objeto (RX).
    Cambiar : acceso de lectura, permiso de ejecución, acceso de escritura y Eliminar objeto (RXWD).
    Completo : Acceso de lectura, Ejecutar permiso, Acceso de escritura, Eliminar objeto, cambiar Permisos y tomar Propiedad (RXWDPO).

    Para más detalles, consulte smbacls (1) .", "Prefer": "Preferir", @@ -4313,52 +3983,83 @@ "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "Evite que las Política de retención de instantáneas eliminen automáticamente las instantáneas del sistema de origen que han fallado la replicación.", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "Evite que el usuario inicie sesión o use servicios basados en contraseña hasta que esta opción esté desactivada. El bloqueo de una cuenta solo es posible cuando Desactivar contraseña es No y se ha creado una Contraseña para la cuenta.", "Preview JSON Service Account Key": "Vista previa de la clave de cuenta de servicio JSON", + "Previous Page": "Página anterior", "Primary Contact": "Primer contacto", "Primary DNS server.": "Servidor DNS primario.", "Primary Group": "Grupo primario", "Private Key": "Clave privada", + "Privilege": "Privilegio", + "Privileges": "Privilegios", "Proactive Support": "Apoyo proactivo", "Proceed": "Continuar", "Proceed with upgrading the pool? WARNING: Upgrading a pool is a one-way operation that might make some features of the pool incompatible with older versions of TrueNAS: ": "¿Continuar con la actualización del Pool? ADVERTENCIA: La actualización de un Pool es una operación unidireccional que puede hacer que algunas características del Pool sean incompatibles con versiones anteriores de TrueNAS: ", + "Processor": "Procesador", + "Product": "Producto", + "Product ID": "ID de producto", + "Production": "Producción", "Production status successfully updated": "Estado de producción actualizado con éxito", + "Profile": "Perfil", "Prohibits writes to this share.": "Prohíbe las escrituras a este recurso compartido.", "Provider": "Proveedor", "Provides a plugin interface for Winbind to use varying backends to store SID/uid/gid mapping tables. The correct setting depends on the environment in which the NAS is deployed.": "Proporciona una interfaz de complemento para que Winbind use backends variables para almacenar tablas de mapeo SID / uid / gid. La configuración correcta depende del entorno en el que se implementa el NAS.", "Provisioning URI (includes Secret - Read only):": "URI de aprovisionamiento (incluye secreto: solo lectura):", "Public IP address or hostname. Set if FTP clients cannot connect through a NAT device.": "Dirección IP pública o nombre de host. Establezca si los clientes FTP no pueden conectarse a través de un dispositivo NAT.", "Public Key": "Clave pública", + "Pull Image": "Extraer imagen", "Pulling...": "Obteniendo...", "Purpose": "Propósito", "Push": "Empujar", "Quick": "Rápido", "Quiet": "Silencioso", + "Quota": "Cuota", + "Quota (in GiB)": "Cuota (en GiB)", "Quota critical alert at, %": "Alerta crítica de cuota en, %", "Quota for this dataset": "Cuota para este conjunto de datos", "Quota for this dataset and all children": "Cuota para este conjunto de datos y todos los niños", "Quota size is too small, enter a value of 1 GiB or larger.": "El tamaño de la cuota es demasiado pequeño, ingrese un valor de 1 GiB o mayor.", "Quota warning alert at, %": "Alerta de advertencia de cuota en, %", + "RAIDZ1": "RAIDZ1", + "RAIDZ2": "RAIDZ2", + "RAIDZ3": "RAIDZ3", + "RAM": "RAM", "REMOTE": "REMOTO", "Randomly generate an encryption key for securing this dataset. Disabling requires manually defining the encryption key.
    WARNING: the encryption key is the only means to decrypt the information stored in this dataset. Store the encryption key in a secure location.": "Genere aleatoriamente una clave de cifrado para proteger este conjunto de datos. La desactivación requiere la definición manual de la clave de cifrado. ADVERTENCIA: la clave de cifrado es el único medio para descifrar la información almacenada en este conjunto de datos. Almacene la clave de cifrado en una ubicación segura.", "Range High": "Rango alto", "Range Low": "Rango bajo", "Range Low and Range High set the range of UID/GID numbers which this IDMap backend translates. If an external credential like a Windows SID maps to a UID or GID number outside this range, the external credential is ignored.": "Range Low y Range High establecen el rango de números UID / GID que traduce este backend de IDMap. Si una credencial externa como un SID de Windows se asigna a un número UID o GID fuera de este rango, la credencial externa se ignora.", + "Range Size": "Tamaño del rango", + "Rate this page": "Calificá esta página", "Raw File": "Archivo crudo", + "Raw Filesize": "Tamaño de archivo sin procesar", + "Re-Open": "Reabrir", + "Re-Open All Alerts": "Reabrir todas las alertas", "Read": "Leer", "Read Errors": "Errores de lectura", + "Read Only": "Solo lectura", "Read-only": "Sólo lectura", "Realm": "Reino", + "Reason": "Razón", + "Reboot": "Reiniciar", "Rebuild Directory Service Cache": "Reconstruir caché del servicio de directorio", + "Recent Searches": "Búsquedas recientes", "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.", "Reconnect": "Reconectar", "Record SMB service messages up to the specified log level. By default, error and warning level messages are logged.": "Grabe mensajes de servicio SMB hasta el nivel de registro especificado. De manera predeterminada, se registran los mensajes de nivel de error y advertencia.", + "Record Size": "Tamaño del registro", "Recursive": "Recursivo", "Redirect HTTP connections to HTTPS. A GUI SSL Certificate is required for HTTPS. Activating this also sets the HTTP Strict Transport Security (HSTS) maximum age to 31536000 seconds (one year). This means that after a browser connects to the web interface for the first time, the browser continues to use HTTPS and renews this setting every year.": "Redireccione las conexiones HTTP a HTTPS. Se requiere un Certificado SSL de GUI para HTTPS . Activar esto también establece la HTTP Strict Transport Security (HSTS) edad máxima a 31536000 segundos (un año). Esto significa que después de que un navegador se conecta a la interfaz web por primera vez, el navegador continúa usando HTTPS y renueva esta configuración cada año.", "Reenter Password": "Reingrese la contraseña", + "Referenced": "Referenciado", "Refresh": "Refrezcar", "Region": "Región", "Region Name": "Nombre de región", "Region name - optional (rclone documentation).": "Nombre de la región: opcional (documentación de rclone) .", + "Register": "Registrar", + "Register Default Gateway": "Registrar puerta de enlace predeterminada", + "Regularly scheduled system checks and updates.": "Comprobaciones y actualizaciones del sistema programadas periódicamente.", + "Reject": "Rechazar", + "Release Notes": "Notas de la versión", "Reload now": "Recargar ahora", "Reload the page": "Recargar esta página", "Reload the page for the license to take effect.": "Vuelva a cargar la página para que la licencia tenga efecto.", @@ -4367,20 +4068,31 @@ "Remote Controller": "Control remoto", "Remote Encryption": "Encriptación remota", "Remote Host": "Host remoto", + "Remote Host Key": "Clave de host remoto", "Remote Module Name": "Nombre del módulo remoto", "Remote Monitor": "Monitor remoto", "Remote Path": "Ruta remota", "Remote Port": "Puerto remoto", "Remote SSH Port": "Puerto SSH remoto", + "Remote machine": "Maquina remota", "Remote syslog server DNS hostname or IP address. Nonstandard port numbers can be used by adding a colon and the port number to the hostname, like mysyslogserver:1928. Log entries are written to local logs and sent to the remote syslog server.": "Servidor syslog remoto Nombre de host DNS o dirección IP. Los números de puerto no estándar se pueden usar agregando dos puntos y el número de puerto al nombre de host, como mysyslogserver: 1928 . Las entradas de registro se escriben en registros locales y se envían al servidor remoto de syslog.", "Remote system SSH key for this system to authenticate the connection. When all other fields are properly configured, click DISCOVER REMOTE HOST KEY to query the remote system and automatically populate this field.": "Clave SSH del sistema remoto para que este sistema autentique la conexión. Cuando todos los demás campos estén configurados correctamente, hacé clic en DESCUBRIR CLAVE DE HOST REMOTO para consultar el sistema remoto y completar automáticamente este campo.", "Remove": "Eliminar", "Remove Keep Flag": "Eliminar Keep Flag", + "Remove device": "Eliminar dispositivo", + "Remove device {name}?": "¿Eliminar dispositivo {name}?", + "Remove file": "Eliminar archivo", + "Remove file?": "¿Eliminar archivo?", + "Remove iXVolumes": "Eliminar iXVolumes", "Remove the ACL and permissions from child datasets of the current dataset": "Eliminar la ACL y los permisos de los conjuntos de datos secundarios del conjunto de datos actual", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "Elimine la clave API existente y genere una nueva clave aleatoria. Un cuadro de diálogo muestra la nueva clave y tiene una opción para copiar la clave. ¡Hacé una copia de seguridad y asegure la clave API! La cadena de clave se muestra solo una vez, en la creación.", + "Remove this error to try again": "Eliminar este error para volver a intentarlo", + "Removed": "Eliminado", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "Elimina la ACL y los permisos de forma recursiva de todos los conjuntos de datos secundarios del conjunto de datos actual, incluidos todos los directorios y archivos contenidos en esos conjuntos de datos secundarios. Esto puede hacer que los datos sean inaccesibles hasta que se creen nuevos permisos.", "Rename": "Renombrar", + "Rename Boot Environment": "Cambiar nombre del entorno de arranque", "Renew": "Renovar", + "Renew 2FA Secret": "Renovar secreto 2FA", "Renew Certificate Days": "Renovar días de certificado", "Renew Secret": "Renovar secreto", "Renewing the secret will cause a new URI and a new QR code to be generated, making it necessary to update your two-factor device or app.": "Renovar el secreto hará que se genere un nuevo URI y un nuevo código QR, por lo que será necesario actualizar su dispositivo o aplicación de dos factores.", @@ -4388,36 +4100,79 @@ "Replace Disk": "Reemplazar disco", "Replace existing dataset properties with these new defined properties in the replicated files.": "Reemplace las propiedades del conjunto de datos existente con estas nuevas propiedades definidas en los archivos replicados.", "Replacing Disk": "Reemplazando disco", + "Replacing disk {name}": "Reemplazando disco {name}", "Replacing disk...": "Reemplazando disco...", "Replicate Custom Snapshots": "Replicar instantáneas personalizadas", "Replicate Specific Snapshots": "Replicar instantáneas específicas", "Replicate all child dataset snapshots. When set, Exclude Child Datasets becomes available.": "Replicar todas las instantáneas de conjuntos de datos secundarios. Cuando se establece, Excluir conjuntos de datos secundarios queda disponible.", "Replicate snapshots that have not been created by an automated snapshot task. Requires setting a naming schema for the custom snapshots.": "Replicar instantáneas que no hayan sido creadas por una tarea de instantánea automatizada. Requiere establecer un esquema de nomenclatura para las instantáneas personalizadas.", + "Replicate «{name}» now?": "¿Replicar «{name}» ahora?", "Replication": "Replicación", + "Replication {name} has started.": "Se inició la replicación {name}.", + "Replication Admin": "Admin de replicación", "Replication Schedule": "Horario de replicación", + "Replication Settings": "Configuración de replicación", + "Replication Task": "Tarea de replicación", + "Replication Task Manager": "Administrador de tareas de replicación", + "Replication Tasks": "Tareas de replicación", + "Replication Tasks Limit": "Límite de tareas de replicación", + "Replication from scratch": "Replicación desde cero", + "Replication task created.": "Tarea de replicación creada", + "Replication task saved.": "Tarea de replicación guardada.", + "Replication «{name}» has started.": "Se inició la replicación «{name}».", + "Report Bug": "Informar error", + "Report a bug": "Informar un error", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "Informe si la temperatura de la unidad es igual o superior a esta temperatura en grados Celsius. 0 deshabilita el informe.", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "Informe si la temperatura de una unidad ha cambiado tantos grados Celsius desde el último informe. 0 deshabilita el informe.", "Reporting": "Informes", "Reports": "Informes", "Require Kerberos for NFSv4": "Requerir Kerberos para NFSv4", "Required unless Enable password login is No. Passwords cannot contain a ?.": "Se requiere a menos que Habilitar inicio de sesión con contraseña sea No . Las contraseñas no pueden contener un ? .", + "Reservation": "Reserva", + "Reservation (in GiB)": "Reserva (en GiB)", + "Reserved for Dataset": "Reservado para el conjunto de datos", + "Reserved for Dataset & Children": "Reservado para conjuntos de datos y niños", "Reserved space for this dataset": "Espacio reservado para este conjunto de datos", "Reserved space for this dataset and all children": "Espacio reservado para este conjunto de datos y todos los niños", "Reset": "Reestablecer", "Reset Config": "Restablecer Config", "Reset Configuration": "Restablecer configuración", + "Reset Default Config": "Restablecer configuración predeterminada", + "Reset Defaults": "Restablecer valores predeterminados", + "Reset Search": "Restablecer búsqueda", + "Reset Zoom": "Restablecer zoom", + "Reset configuration": "Restablecer configuración", + "Reset password": "Restablecer contraseña", "Reset system configuration to default settings. The system will restart to complete this operation. You will be required to reset your password.": "Restablezca la configuración del sistema a la configuración predeterminada. El sistema se reiniciará para completar esta operación. Deberá restablecer su contraseña.", "Reset to Defaults": "Restablecer los valores predeterminados", + "Reset to default": "Restablecer a valores predeterminados", "Resetting system configuration to default settings. The system will restart.": "Restablecer la configuración del sistema a la configuración predeterminada. El sistema se reiniciará.", + "Resetting. Please wait...": "Reiniciando. Por favor esperá...", "Resilver Priority": "Prioridad de resilver", "Restart": "Reiniciar", + "Restart After Update": "Reiniciar después de la actualización", + "Restart App": "Reiniciar app", + "Restart Now": "Reiniciar ahora", "Restart SMB Service": "Reiniciar servicio SMB", "Restart SMB Service?": "¿Reiniciar servicio SMB?", + "Restart Service": "Reiniciar servicio", "Restart Web Service": "Reiniciar servicio Web", "Restore": "Restaurar", "Restore Cloud Sync Task": "Restaurar tarea de sincronización en la nube", + "Restore Config": "Restaurar config", + "Restore Config Defaults": "Restaurar config predeterminada", + "Restore Default": "Restaurar valor predeterminado", + "Restore Default Config": "Restaurar config predeterminada", + "Restore Default Configuration": "Restaurar configuración predeterminada", + "Restore Defaults": "Restaurar valores predeterminados", "Restore Replication Task": "Restaurar tarea de replicación", + "Restore default set of widgets": "Restaurar el conjunto predeterminado de widgets", + "Restore default widgets": "Restaurar widgets predeterminados", + "Restore from Snapshot": "Restaurar desde una instantánea", + "Restoring backup": "Restaurando copia de seguridad", "Restricted": "Restringido", + "Retention": "Retención", + "Retention (in days)": "Retención (en días)", "Return to pool list": "Volver a la lista de grupos", "Revert Changes": "Revertir cambios", "Revert Network Interface Changes": "Revertir cambios en la interfaz de red", @@ -4427,47 +4182,103 @@ "Revoke Certificate Authority": "Revocar Autoridad de Certificación", "Revoked": "Revocado", "Revoking Certificate": "Revocando Certificado", + "Roll Back": "Retroceder", "Rollback": "Retroceder", "Root dataset ACL cannot be edited.": "El conjunto de datos root ACL no se puede editar.", "Rotation Rate": "Velocidad de rotación", "Rotation Rate (RPM)": "Velocidad de rotación (RPM)", + "Routing": "Enrutamiento", "Routing Key": "Clave de enrutamiento", + "Rsync": "Rsync", "Rsync Mode": "Modo Rsync", + "Rsync Task": "Tarea Rsync", + "Rsync Task Manager": "Administrador de tareas Rsync", + "Rsync Tasks": "Tareas Rsync", + "Rsync task has started.": "La tarea Rsync empezó.", + "Rsync task «{name}» has started.": "Emepzó la tarea Rsync «{name}».", + "Rsync to another server": "Rsync a otro servidor", + "Run As Context": "Ejecutar como contexto", "Run As User": "Ejecutar como usuario", "Run Automatically": "Ejecutar automáticamente", + "Run Manual Test": "Ejecutar prueba manual", "Run Now": "Ejecutar ahora", "Run On a Schedule": "Ejecutar en un horario", "Run Once": "Ejecutar una vez", + "Run job": "Ejecutar trabajo", "Run this job now?": "Ejecutar este trabajo ahora?", + "Run «{name}» Cloud Backup now?": "¿Ejecutar ahora la copia de seguridad en la nube «{name}»?", "Run «{name}» Cloud Sync now?": "¿Ejecutar esta sincronización en la nube ahora?", "Run «{name}» Rsync now?": "¿Ejecutar «{name}» Rsync ahora?", "Running": "Ejecutando", + "Running Jobs": "Trabajos en ejecución", + "S.M.A.R.T.": "S.M.A.R.T.", + "S.M.A.R.T. Extra Options": "Opciones adicionales S.M.A.R.T.", + "S.M.A.R.T. Info for {disk}": "Información S.M.A.R.T. para {disk}", + "S.M.A.R.T. Options": "Opciones S.M.A.R.T.", + "S.M.A.R.T. Tasks": "Tareas S.M.A.R.T.", + "S.M.A.R.T. Test Results": "Resultados de la prueba S.M.A.R.T.", + "S.M.A.R.T. Test Results of {pk}": "Resultados de la prueba S.M.A.R.T. de {pk}", "S.M.A.R.T. extra options": "Opciones extra de S.M.A.R.T.", "SED Password": "Contraseña del SED", + "SED User": "Usuario SED", + "SFTP": "SFTP", + "SFTP Log Facility": "Instalación de registro SFTP", + "SFTP Log Level": "Nivel de registro SFTP", + "SHORT": "CORTO", + "SMB": "SMB", + "SMB - Client Account": "SMB - Cuenta de cliente", + "SMB - Destination File Path": "SMB - Ruta del archivo de destino", + "SMB - File Handle Type": "SMB - Tipo de identificador de archivo", + "SMB - File Handle Value": "SMB - Valor del identificador de archivo", + "SMB - File Path": "SMB - Ruta de archivo", + "SMB - Host": "SMB - Host", "SMB - Primary Domain": "SMB: Dominio Primario", + "SMB Group": "Grupo SMB", + "SMB Name": "Nombre SMB", "SMB Service": "Servicio SMB", + "SMB Status": "Estado de SMB", + "SMB User": "Usuario SMB", + "SMTP": "SMTP", + "SMTP Authentication": "Autenticación SMTP", "SMTP port number. Typically 25,465 (secure SMTP), or 587 (submission).": "Número de puerto SMTP. Por lo general, 25,465 (SMTP seguro) o 587 (envío).", + "SNMP": "SNMP", "SNMP Community": "Comunidad SNMP", "SNMP v3 Options": "Opciones de SNMP v3", "SNMP v3 Support": "Soporte SNMP v3", "SNMPv3 Security Model": "Modelo de seguridad SNMPv3", + "SSH": "SSH", "SSH Connection": "Conexión SSH", + "SSH Connection saved": "Conexión SSH guardada", + "SSH Connections": "Conexiones SSH", "SSH Host to connect to.": "Host SSH para conectarse.", + "SSH Key": "Clave SSH", + "SSH Key Pair": "Par de claves SSH", "SSH Keypair": "Par de claves SSH", + "SSH Keypair created": "Par de claves SSH creado", + "SSH Keypair updated": "Par de claves SSH actualizado", "SSH Keypairs": "Pares de calves SSH", + "SSH Keyscan": "Escaneo de claves SSH", "SSH Transfer Security": "Seguridad de transferencia SSH", "SSH Username.": "Nombre de usuario SSH.", + "SSH connection from the keychain": "Conexión SSH desde el llavero", "SSH port number. Leave empty to use the default port 22.": "Número de puerto SSH. Deje en blanco para usar el puerto predeterminado 22.", "SSL (Implicit TLS)": "SSL (TLS implícito)", + "SSL Certificate": "Certificado SSL", + "SSL Protocols": "Protocolos SSL", + "SYNC": "SINCRONIZAR", + "Samba": "Samba", "Samba Authentication": "Autenticación Samba", "Same as Source": "Lo mismo que la fuente", "Sat": "Sábado", "Saturday": "Sábado", "Save": "Guardar", "Save Changes": "Guardar cambios", + "Save Config": "Guardar config", "Save Configuration": "Guardar configuración", "Save Debug": "Guardar depuración", + "Save Instance": "Guardar instancia", "Save Pending Snapshots": "Guardar instantáneas pendientes", + "Save Selection": "Guardar selección", "Save Without Restarting": "Guardar sin reiniciar", "Save and Restart SMB Now": "Guardar y Reiniciar SMB ahora", "Save configuration settings from this machine before updating?": "¿Guardar ajustes de configuración de esta máquina antes de actualizar?", @@ -4477,9 +4288,12 @@ "Saving Permissions": "Guardar permisos", "Schedule": "Calendario", "Schedule Preview": "Vista previa de horario", + "Screenshots": "Capturas de pantalla", "Script to execute after running sync.": "Script para ejecutar después de ejecutar la sincronización.", "Script to execute before running sync.": "Script para ejecutar antes del inicio de la sincronización.", "Scrub Started": "Scrub Iniciado", + "Search": "Buscar", + "Search Images": "Buscar imágenes", "Secondary Contact": "Contacto secundario", "Secondary DNS server.": "Servidor DNS secundario.", "Secret": "Secreto", @@ -4497,6 +4311,10 @@ "Select UEFI for newer operating systems or UEFI-CSM (Compatibility Support Mode) for older operating systems that only support BIOS booting. Grub is not recommended but can be used when the other options do not work.": "Seleccione UEFI para los sistemas operativos más nuevos o UEFI-CSM (Modo de soporte de compatibilidad) para los sistemas operativos más antiguos que solo admiten el arranque del BIOS. Grub no se recomienda, pero se puede usar cuando las otras opciones no funcionan.", "Select Configuration File": "Seleccionar archivo de configuración", "Select Disk Type": "Seleccionar tipo de disco", + "Select Image": "Seleccionar imagen", + "Select Pool": "Seleccionar pool", + "Select Rating": "Seleccionar calificación", + "Select Reporting": "Seleccionar Informes", "Select a compression algorithm to reduce the size of the data being replicated. Only appears when SSH is chosen for Transport type.": "Seleccione un algoritmo de compresión para reducir el tamaño de los datos que se replican. Solo aparece cuando se elige SSH para el tipo Transporte .", "Select a dataset for the new zvol.": "Seleccione un conjunto de datos para el nuevo zvol.", "Select a dataset or zvol.": "Seleccione un conjunto de datos o zvol.", @@ -4558,35 +4376,56 @@ "Select which existing initiator group has access to the target.": "Seleccione qué grupo iniciador existente tiene acceso al objetivo.", "Self-Encrypting Drive": "Unidad de autocifrado", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "Las contraseñas de unidad de autocifrado (SED) se pueden administrar con KMIP. Al habilitar esta opción, el servidor de claves puede administrar la creación o actualización de la contraseña SED global, la creación o actualización de contraseñas SED individuales y la recuperación de contraseñas SED cuando se desbloquean los SED. Deshabilitar esta opción deja la administración de contraseñas SED con el sistema local.", + "Self-Encrypting Drive Settings": "Configuración de la unidad con cifrado automático", + "Semi-automatic (TrueNAS only)": "Semiautomático (solo TrueNAS)", "Send Email Status Updates": "Enviar actualizaciones de estado de Email", + "Send Feedback": "Enviar comentarios", "Send Test Mail": "Enviar Mail de prueba", "Send initial debug": "Enviar depuración inicial", + "Sensitive": "Sensible", "Sep": "Septiembre", "Separate multiple values by pressing Enter.": "Separe los valores múltiples presionando Enter.", "Separate values with commas, and without spaces.": "Separe los valores con comas y sin espacios.", + "Serial": "Serie", "Serial Port": "Puerto serie", "Serial Speed": "Velocidad de serie", "Serial number for this disk.": "Número de serie para este disco.", "Serial numbers of each disk being edited.": "Números de serie de cada disco que se está editando.", "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.": "Puerto serie o USB conectado al UPS. Para detectar y administrar automáticamente la configuración del puerto USB, seleccione auto.

    Cuando se selecciona un controlador SNMP, ingrese la dirección IP o el nombre de host del dispositivo UPS SNMP.", + "Serial – Active": "Serie – Activo", + "Serial – Passive": "Serie – Pasivo", + "Series": "Series", "Server": "Servidor", "Server Side Encryption": "Encriptación del lado del servidor", + "Service": "Servicio", "Service Announcement": "Anuncio del servicio", + "Service Announcement:": "Anuncio de servicios", "Service Key": "Clave del servicio", "Service failed to start": "El servicio no pudo iniciarse", "Service failed to stop": "El servicio no pudo detenerse", "Services": "Servicios", + "Session": "Sesión", + "Session ID": "ID de sesión", + "Sessions": "Sesiones", "Set ACL": "Establecer ACL", "Set ACL for this dataset": "Establecer ACL para este conjunto de datos", + "Set Attribute": "Establecer atributo", + "Set Frequency": "Establecer frecuencia", "Set Keep Flag": "Establecer Mantener Bandera", + "Set Quota": "Establecer cuota", "Set Quotas": "Establecer cuotas", + "Set Warning Level": "Establecer nivel de advertencia", + "Set email": "Establecer correo", "Set enable sending messages to the address defined in the Email field.": "Configure habilitar el envío de mensajes a la dirección definida en el campo Email.", + "Set font size": "Establecer tamaño de fuente", "Set for the LDAP server to disable authentication and allow read and write access to any client.": "Configurado para que el servidor LDAP desactive la autenticación y permita el acceso de lectura y escritura a cualquier cliente.", "Set for the UPS to power off after shutting down the system.": "Configure el UPS para que se apague después de apagar el sistema.", "Set for the default configuration to listen on all interfaces using the known values of user: upsmon and password: fixmepass.": "Establezca la configuración predeterminada para escuchar en todas las interfaces utilizando los valores conocidos del usuario: upsmon y contraseña: fixmepass.", "Set if the initiator does not support physical block size values over 4K (MS SQL).": "Se establece si el iniciador no admite valores de tamaño de bloque físico sobre 4K (MS SQL).", + "Set new password": "Establecer nueva contraseña", "Set only if required by the NFS client. Set to allow serving non-root mount requests.": "Establezca solo si lo requiere el cliente NFS. Configurado para permitir el servicio de solicitudes de montaje no root.", "Set or change the password of this SED. This password is used instead of the global SED password.": "Establezca o cambie la contraseña de este SED. Esta contraseña se utiliza en lugar de la contraseña global de SED.", + "Set password for TrueNAS administrative user:": "Establecer contraseña para el usuario administrativo de TrueNAS:", "Set production status as active": "Establecer el estado de producción como activo", "Set specific times to snapshot the Source Datasets and replicate the snapshots to the Destination Dataset. Select a preset schedule or choose Custom to use the advanced scheduler.": "Establezca tiempos específicos para tomar una instantánea de los Conjuntos de datos de origen y replicar las instantáneas en el Conjunto de datos de destino. Seleccione un horario preestablecido o elija Personalizado para usar el programador avanzado.", "Set the maximum number of connections per IP address. 0 means unlimited.": "Establezca el número máximo de conexiones por dirección IP. 0 significa ilimitado.", @@ -4654,16 +4493,24 @@ "Setting this option reduces the security of the connection, so only use it if the client does not understand reused SSL sessions.": "Establecer esta opción reduce la seguridad de la conexión, por lo que solo úsela si el cliente no comprende las sesiones SSL reutilizadas.", "Setting this option will result in timeouts if identd is not running on the client.": "Establecer esta opción dará como resultado tiempos de espera si identd no se está ejecutando en el cliente.", "Settings": "Configuraciones", + "Settings Menu": "Menú de configuración", + "Settings saved": "Configuraciones guardadas", "Settings saved.": "Configuraciones guardadas.", + "Severity Level": "Nivel de gravedad", "Shares": "Comparticiones", "Sharing Platform": "Compartir Plataforma", + "Shell Commands": "Comandos de Shell", + "Short": "Corto", "Short Description": "Descripción corta", "Should only be used for highly accurate NTP servers such as those with time monitoring hardware.": "Solo debe usarse para servidores NTP de alta precisión, como aquellos con hardware de monitoreo de tiempo.", "Show": "Mostrar", + "Show All": "Mostrar todo", "Show All Groups": "Mostrar todos los grupos", "Show All Users": "Mostrar todos los usuarios", "Show Console Messages": "Mostrar mensajes de consola", "Show Extra Columns": "Mostrar columnas adicionales", + "Show Logs": "Mostrar registros", + "Show Status": "Mostrar estado", "Show Text Console without Password Prompt": "Mostrar consola de texto sin solicitud de contraseña", "Shrinking a ZVOL is not allowed in the User Interface. This can lead to data loss.": "Reducir un ZVOL no está permitido en la interfaz de usuario. Esto puede conducir a la pérdida de datos.", "Shut Down": "Apagar", @@ -4684,12 +4531,18 @@ "Signing Certificate Authority": "Autoridad de certificación de firma", "Signing Request": "Solicitud de firma", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "Cobertura de plata/oro Los clientes pueden habilitar el soporte proactivo de iXsystems. Esto automáticamente envía correos electrónicos a iXsystems cuando ocurren ciertas condiciones en este sistema TrueNAS. El equipo de soporte de iX se comunicará de inmediato con los contactos guardados a continuación para resolver rápidamente cualquier problema que pueda haber ocurrido en el sistema.", + "Similar Apps": "Apps similares", + "Site Name": "Nombre del sitio", "Size": "Tamaño", "Size for this zvol": "Tamaño para este zvol", "Skip": "Omitir", "Sleep": "Dormir", "Slot": "Ranura", "Slot {number} is empty.": "La ranura {number} está vacía.", + "Smart": "Inteligente", + "Smart Task": "Tarea inteligente", + "Smart Test Result": "Resultado de la prueba inteligente", + "Smart Tests": "Pruebas inteligentes", "Snapshot": "Instantánea", "Snapshot Delete": "Eliminar instantánea", "Snapshot Directory": "Directorio de instantáneas", @@ -4697,7 +4550,20 @@ "Snapshot Manager": "Administrador de instantáneas", "Snapshot Name Regular Expression": "Expresión regular del nombre de la instantánea", "Snapshot Retention Policy": "Política de retención de instantáneas", + "Snapshot Task": "Tarea de instantánea", + "Snapshot Task Manager": "Administrador de tareas de instantáneas", + "Snapshot Tasks": "Tareas de instantáneas", + "Snapshot Time": "Tiempo de instantánea", + "Snapshot Time {time}": "Tiempo de instantánea {time}", + "Snapshot added successfully.": "Instantánea agregada exitosamente.", + "Snapshot deleted.": "Instantánea eliminada.", "Snapshot schedule for this replication task. Choose from previously configured Periodic Snapshot Tasks. This replication task must have the same Recursive and Exclude Child Datasets values as the chosen periodic snapshot task. Selecting a periodic snapshot schedule removes the Schedule field.": "Programa de instantáneas para esta tarea de replicación. Elija entre Tareas periódicas de instantáneas previamente configuradas. Esta tarea de replicación debe tener los mismos valores Recursivos y Excluir conjuntos de datos secundarios que la tarea de instantánea periódica elegida. Al seleccionar una programación periódica de instantáneas, se elimina el campo Programación.", + "Snapshots": "Instantáneas", + "Snapshots could not be loaded": "No se pudieron cargar las instantáneas", + "Snapshots must not have dependent clones": "Las instantáneas no deben tener clones dependientes", + "Snapshots will be created automatically.": "Las instantáneas se crearán automáticamente.", + "Software Installation": "Instalación de software", + "Sort": "Clasificar", "Source": "Origen", "Source Location": "Lugar de origen", "Space": "Espacio", @@ -4716,9 +4582,12 @@ "Standard": "Estándar", "Standby": "En espera", "Start": "Iniciar", + "Start All Selected": "Iniciar todo lo seleccionado", + "Start Automatically": "Iniciar automáticamente", "Start Scrub": "Iniciar Scrub", "Start a dry run test of this cloud sync task? The system will connect to the cloud service provider and simulate transferring a file. No data will be sent or received.": "¿Iniciar una prueba de ejecución en seco de esta tarea de sincronización en la nube? El sistema se conectará al proveedor de servicios en la nube y simulará la transferencia de un archivo. No se enviarán ni recibirán datos.", "Start on Boot": "Iniciar en el arranque", + "Start service": "Iniciar servicio", "Start the scrub now?": "¿Iniciar el scrub ahora?", "Start time for the replication task.": "Hora de inicio de la tarea de replicación.", "Started": "Iniciado", @@ -4738,10 +4607,16 @@ "Status of TrueCommand": "Estado de TrueCommand", "Status: ": "Estado", "Stop": "Detener", + "Stop All Selected": "Detener todo lo seleccionado", "Stop Rollback if Snapshots Exist:": "Detener la reversión si existen instantáneas:", "Stop Scrub": "Detener Scrub", "Stop TrueCommand Cloud Connection": "Detener la conexión a la nube de TrueCommand", + "Stop service": "Detener servicio", "Stop this Cloud Sync?": "¿Detener esta sincronización en la nube?", + "Stopped": "Detenido", + "Stopping": "Deteniendo", + "Stopping Apps Service": "Deteniendo servicio de apps", + "Stopping {rowName}": "Deteniendo {rowName}", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "Detiene la reversión cuando la verificación de seguridad encuentra instantáneas de clones relacionadas que son más nuevas que la instantánea de reversión.", "Stops the rollback when the safety check finds any related intermediate, child dataset, or clone snapshots that are newer than the rollback snapshot.": "Detiene la reversión cuando la verificación de seguridad encuentra instantáneas intermedias, de datos secundarios o clonadas relacionadas que son más nuevas que la instantánea de reversión.", "Storage": "Almacenamiento", @@ -4755,34 +4630,61 @@ "Store Encryption key in Sending TrueNAS database": "Almacenar la clave de cifrado en la base de datos de envío de TrueNAS", "Store system logs on the system dataset. Unset to store system logs in /var/ on the operating system device.": "Almacene registros del sistema en el conjunto de datos del sistema. Desconéctelo para almacenar registros del sistema en / var / en el dispositivo del sistema operativo.", "Strip ACLs": "Quitar ACLs", - "Stripe": "", "Stripping ACLs": "Eliminando ACLs", + "Subfolder": "Subcarpeta", "Subject": "Sujeto", + "Subject Alternative Name": "Nombre alternativo del sujeto", "Subnet mask of the IPv4 address.": "Máscara de subred de la dirección IPv4.", "Success": "Éxito", "Successfully saved proactive support settings.": "Configuración de soporte proactiva guardada con éxito.", + "Sudo": "Sudo", + "Sudo Enabled": "Sudo habilitado", + "Suggest an improvement": "Sugerir una mejora", "Suggestion": "Sugerencia", "Summary": "Resumen", "Sun": "Domingo", "Sunday": "Domingo", "Support": "Soporte", + "Support License": "Licencia de soporte", + "Switch To Advanced": "Cambiar a avanzado", + "Switch To Basic": "Cambiar a básico", + "Switch To Wizard": "Cambiar al asistente", "Switch Train": "Cambiar de tren", + "Switch to Advanced Options": "Cambiar a opciones avanzadas", "Switch update trains?": "¿Cambiar trenes de actualización?", + "Switched to new dataset «{name}».": "Se cambió al nuevo conjunto de datos «{name}».", + "Switched to new zvol «{name}».": "Se cambió al nuevo zvol «{name}».", + "Switching to Advanced Options will lose data entered on second step. Do you want to continue?": "Al cambiar a opciones avanzadas se perderán los datos ingresados ​​en el segundo paso. ¿Querés continuar?", "Sync": "Sincronizar", + "Sync From Peer": "Sincronizar desde el par", "Sync Keys": "Sincronizar claves", "Sync from Peer": "Sincronizar del Par", "Sync from peer succeeded.": "La sincronización del par tuvo éxito.", "Sync to Peer": "Sincronizar con el Par", "Sync to peer succeeded.": "Sincronización con el par exitosa.", + "Synced": "Sincronizado", "Synchronize": "Sincronizar", + "Sysctl": "Sysctl", + "Syslog": "Registro del sistema", "Syslog Level": "Nivel de Syslog", "Syslog Server": "Servidor de Syslog", + "Syslog Settings": "Configuración de Syslog", "Syslog Transport": "Transporte de Syslog", "System": "Sistema", "System Clock": "Reloj del sistema", "System Dataset Pool": "Pool de conjuntos de datos del sistema", + "System Image": "Imagen del sistema", "System Information": "Información del sistema", + "System Reports": "Informes del sistema", + "System Security": "Seguridad del sistema", + "System Security Settings": "Configuración de seguridad del sistema", + "System Security Settings Updated.": "Configuración de seguridad del sistema actualizada.", + "System Serial": "Serie del sistema", + "System Stats": "Estadísticas del sistema", "System Time Zone:": "Zona horaria del sistema:", + "System Uptime": "Tiempo de actividad del sistema", + "System Utilization": "Utilización del sistema", + "System Version": "Versión del sistema", "System domain name, like example.com": "Nombre de dominio del sistema, como ejemplo.com", "System hostname.": "Nombre de Host del sistema.", "System is failing over...": "El sistema está fallando...", @@ -4791,27 +4693,48 @@ "TCP Port": "Puerto TCP", "TCP port used to access the iSCSI target. Default is 3260.": "Puerto TCP utilizado para acceder al objetivo iSCSI. El valor predeterminado es 3260 .", "Tag": "Etiqueta", + "Tags": "Etiquetas", "Take Snapshot": "Tomar instantánea", "Target": "Objetivo", "Target Alias": "Alias de objetivo", "Target Global Configuration": "Configuración global de destino", "Target Name": "Nombre del objetivo", + "Target dataset encryption will be inherited from its parent dataset.": "El cifrado del conjunto de datos de destino se heredará de su conjunto de datos principal.", + "Target with this name already exists": "El objetivo con este nombre ya existe", "Targets": "Objetivos", + "Task": "Tarea", + "Task Details for {task}": "Detalles de la tarea para {task}", "Task Name": "Nombre de la tarea", + "Task Settings": "Configuración de tareas", + "Task created": "Tarea creada", "Task is on hold": "La tarea está en espera", "Task is running": "La tarea se está ejecutando", + "Task started": "Tarea iniciada", + "Task updated": "Tarea actualizada", "Tasks": "Tareas", + "Tasks could not be loaded": "No se pudieron cargar las tareas", "Team Drive ID": "ID de unidad de equipo", "Telegram Bot API Token (How to create a Telegram Bot)": "Token de API del Bot de Telegram (Cómo crear un Telegram Bot)", + "Temperature Alerts": "Alertas de temperatura", + "Temperature Sensors": "Sensores de temperatura", + "Temperature data missing.": "Faltan datos de temperatura.", + "Tenant Domain": "Dominio del inquilino", "Tenant ID": "ID del inquilino", "Tenant ID - optional for v1 auth, this or tenant required otherwise (rclone documentation).": "Id. De inquilino: opcional para la autenticación v1; de lo contrario, se requiere este inquilino (documentación de rclone) .", "Tenant Name": "Nombre del inquilino", "Tenant domain - optional (rclone documentation).": "Dominio del inquilino: opcional (documentación de rclone) .", + "Terminal": "Terminal", + "Terminate Other Sessions": "Terminar otras sesiones", + "Terminate Other User Sessions": "Terminar otras sesiones de usuario", + "Terminate session": "Terminar sesión", "Terms of Service": "Términos de servicio", + "Test": "Prueba", "Test Changes": "Probar cambios", "Test Cloud Sync": "Probar la sincronización de la nube", + "Test alert sent": "Alerta de prueba enviada", "Test network interface changes for ": "Pruebe los cambios en la interfaz de red para ", "Test network interface changes? Network connectivity can be interrupted.": "¿Probar cambios en la interfaz de red? La conectividad de red puede ser interrumpida.", + "Testing": "Probando", "Tests the server connection and verifies the chosen Certificate chain. To test, configure the Server and Port values, select a Certificate and Certificate Authority, enable this setting, and click SAVE.": "Prueba la conexión del servidor y verifica la cadena Certificado elegida. Para probar, configure los valores de Servidor y Puerto, seleccione un Certificado y Autoridad de certificación, habilite esta configuración y hacé clic en GUARDAR.", "The TrueNAS Community Forums are the best place to ask questions and interact with fellow TrueNAS users.": "Los foros de la comunidad TrueNAS son el mejor lugar para hacer preguntas e interactuar con otros usuarios de TrueNAS.", "The TrueNAS Documentation Site is a collaborative website with helpful guides and information about your new storage system.": "El Sitio de documentación de TrueNAS es un sitio web colaborativo con guías útiles e información sobre su nuevo sistema de almacenamiento.", @@ -4916,14 +4839,19 @@ "To activate this periodic snapshot schedule, set this option. To disable this task without deleting it, unset this option.": "Para activar esta programación periódica de instantáneas, configure esta opción. Para deshabilitar esta tarea sin eliminarla, desactive esta opción.", "Today": "Hoy", "Toggle Collapse": "Alternar colapso", + "Token": "Token", "Token created with Google Drive. Access Tokens expire periodically and must be refreshed.": "Token creado con Google Drive. Los tokens de acceso caducan periódicamente y deben actualizarse.", "Toolbar": "Barra de herramientas", "Top level of the LDAP directory tree to be used when searching for resources. Example: dc=test,dc=org.": "Nivel superior del árbol de directorios LDAP que se utilizará al buscar recursos. Ejemplo: dc=test,dc=org.", "Topic Amazon Resource Name (ARN) for publishing. Example: arn:aws:sns:us-west-2:111122223333:MyTopic.": "Tema Nombre de recurso de Amazon (ARN) para publicación. Ejemplo: arn: aws: sns: us-west-2: 111122223333: MyTopic .", "Topology": "Topología", + "Total": "Total", "Total Capacity": "Capacidad total", "Total Disks": "Total de discos", "Total Disks:": "Total de discos:", + "Total Snapshots": "Instantáneas totales", + "Total ZFS Errors": "Errores totales de ZFS", + "Total failed": "Total fallido", "Traffic": "Tráfico", "Train": "Tren", "Transfer": "Transferir", @@ -4953,6 +4881,7 @@ "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "Tipo de cuenta de Microsoft. Iniciar sesión en una cuenta de Microsoft elige automáticamente el tipo de cuenta correcto.", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "Número de puerto UDP en el sistema que recibe notificaciones de captura SNMP. El valor predeterminado es 162 .", "UID": "UID", + "UPS": "SAI", "UPS Mode": "Modo UPS", "UPS Stats": "Estadísticas de UPS", "UPS Utilization": "Uso de UPS", @@ -5080,14 +5009,30 @@ "Username for this service.": "Nombre de usuario para este servicio.", "Username of the SNMP User-based Security Model (USM) user.": "Nombre de usuario del SNMP Modelo de seguridad basado en el usuario (USM) usuario.", "Users": "Usuarios", + "Uses one disk for parity while all other disks store data. RAIDZ1 requires at least three disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa un disco para la paridad mientras que todos los demás discos almacenan datos. RAIDZ1 requiere al menos tres discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", "Uses the SMB Service NetBIOS Name to advertise the server to WS-Discovery clients. This causes the computer appear in the Network Neighborhood of modern Windows OSes.": "Utiliza el servicio SMB Nombre de NetBIOS para anunciar el servidor a los clientes de WS-Discovery. Esto hace que la computadora aparezca en el Entorno de red de los sistemas operativos Windows modernos.", + "Uses three disks for parity while all other disks store data. RAIDZ3 requires at least five disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa tres discos para la paridad mientras que el resto de los discos almacenan datos. RAIDZ3 requiere al menos cinco discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", + "Uses two disks for parity while all other disks store data. RAIDZ2 requires at least four disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "Usa dos discos para la paridad mientras que todos los demás discos almacenan datos. RAIDZ2 requiere al menos cuatro discos. RAIDZ es un esquema de protección de datos ZFS tradicional. \nElegí RAIDZ en lugar de dRAID cuando administre un conjunto más pequeño de unidades, donde la simplicidad de la configuración y el uso predecible del disco son consideraciones principales.", + "Using CSR": "Usando CSR", + "Using pool {name}": "Usando pool {name}", "VLAN ID": "ID de VLAN", "VM system time. Default is Local.": "Tiempo del sistema VM. El valor predeterminado es Local.", "VMware Sync": "Sincronización VMware", + "Validate Certificates": "Validar certificados", "Validate Connection": "Validar conexión", + "Validate Remote Path": "Validar ruta remota", "Value": "Valor", + "Value must be a number": "El valor debe ser un número", + "Value must be a valid email address": "El valor debe ser una dirección de correo válida", + "Value must be a {type}": "El valor debe ser un {type}", + "Value must be greater than Range Low": "El valor debe ser mayor que el rango bajo", + "Value must be greater than {label}": "El valor debe ser mayor que {label}", "Variable": "Variable", "Variable deleted.": "Variable eliminada", + "Variant": "Variante", + "Vdev": "Vdev", + "Vendor ID": "ID de proveedor", + "Verbose Logging": "Registro detallado", "Verify": "Verificar", "Verify Credential": "Verificar credencial", "Verify Email Address": "Confirme su dirección de correo electrónico", @@ -5095,18 +5040,53 @@ "Version": "Versión", "Video, < 100ms latency": "Video, <100 ms de latencia", "Video, < 10ms latency": "Video, <10 ms de latencia", + "View All": "Ver todo", + "View All S.M.A.R.T. Tests": "Ver todas las pruebas S.M.A.R.T.", + "View All Scrub Tasks": "Ver todas las tareas de limpieza", + "View All Test Results": "Ver todos los resultados de las pruebas", + "View Changelog": "Ver registro de cambios", + "View Details": "Ver detalles", + "View Disk Space Reports": "Ver informes de espacio en disco", + "View Less": "Ver menos", + "View Logs": "Ver registros", + "View More": "Ver más", + "View Reports": "Ver informes", + "View logs": "Ver registros", + "View/Download CSR": "Ver/Descargar CSR", + "View/Download Certificate": "Ver/Descargar certificado", + "View/Download Key": "Ver/Descargar clave", "Virtual CPUs": "CPUs virtuales", + "Virtual Machine": "Máquina virtuale", + "Virtual Machines": "Máquinas virtuales", "Virtualization": "Virtualización", + "Visible": "Visible", + "Voltage": "Voltaje", + "Volume Mounts": "Montajes de volumen", + "Volume Size": "Tamaño del volumen", "Volume size cannot be zero.": "El tamaño del volumen no puede ser cero.", "WARNING": "ADVERTENCIA", "WARNING: A failover will temporarily interrupt system services.": "ADVERTENCIA: Una conmutación por error interrumpirá temporalmente los servicios del sistema.", + "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "ADVERTENCIA: No se recomienda agregar VDEVs de datos con diferentes cantidades de discos.", + "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "ADVERTENCIA: Según la topología del pool, {size} es el tamaño de registro mínimo recomendado. Elegir un tamaño menor puede reducir el rendimiento del sistema.", + "Waiting": "Esperando", + "Waiting for Active TrueNAS controller to come up...": "Esperando que aparezca el controlador TrueNAS activo...", "Warning": "Advertencia", + "Warning!": "¡Advertencia!", + "Warning: Debugs may contain log files with personal information such as usernames or other identifying information about your system. Please review debugs and redact any sensitive information before sharing with external entities.": "Advertencia: los archivos de depuración pueden contener archivos de registro con información personal, como nombres de usuario u otra información de identificación sobre su sistema. Revisá los archivos de depuración y eliminá cualquier información confidencial antes de compartirlos con entidades externas.", "Warning: iSCSI Target is already in use.
    ": "Advertencia: Objetivo iSCSI ya está en uso.
    ", + "Warning: {n} of {total} boot environments could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} entornos de arranque.", + "Warning: {n} of {total} docker images could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} imágenes de Docker.", + "Warning: {n} of {total} snapshots could not be deleted.": "Advertencia: no se pudieron eliminar {n} de {total} instantáneas.", + "Warnings": "Advertencias", + "Web Interface": "Interfaz web", + "Web Interface Address": "Dirección de la interfaz web", "Web Interface HTTP -> HTTPS Redirect": "Interfaz Web HTTP -> Redireccionar a HTTPS", "Web Interface HTTP Port": "Puerto HTTP de la interfaz web", "Web Interface HTTPS Port": "Puerto HTTPS de la interfaz web", "Web Interface IPv4 Address": "Dirección IPv4 de la interfaz web", "Web Interface IPv6 Address": "Dirección IPv6 de la interfaz web", + "Web Interface Port": "Puerto de la interfaz web", + "Web Portal": "Portal web", "WebDAV": "WebDAV", "WebDAV Service": "Servicio WebDAV", "WebDAV account password.": "Contraseña de la cuenta WebDAV.", @@ -5116,10 +5096,13 @@ "Wednesday": "Miércoles", "Week(s)": "Semana(s)", "Weeks": "Semanas", + "What and When": "Qué y cuándo", "What and Where": "Que y dónde", "When": "Cuando", "When a group is selected, the root user is also limited to the permissions of that group.": "Cuando se selecciona un grupo, el usuario root también está limitado a los permisos de ese grupo.", "When a user is selected, the root user is limited to the permissions of that user.": "Cuando se selecciona un usuario, el usuario root está limitado a los permisos de ese usuario.", + "When battery power is low or the shutdown timer ends, enter the custom command to overrule the default shutdown command.": "Cuando la batería esté baja o finalice el temporizador de apagado, ingresá el comando personalizado para anular el comando de apagado predeterminado.", + "When both days of month and days of week have restrictions, these restrictions work as an OR condition.": "Cuando tanto los días del mes como los días de la semana tienen restricciones, estas restricciones funcionan como una condición OR.", "When checked, the primary group membership is fetched from the LDAP attributes (gidNumber). When not checked, the primary group membership is calculated via the \"primaryGroupID\" LDAP attribute.": "Cuando se marca, la pertenencia al grupo primario se obtiene de los atributos LDAP (gidNumber). Cuando no está marcada, la membresía del grupo primario se calcula mediante el atributo LDAP \"primaryGroupID\".", "When checked, winbind will retrieve the login shell and home directory from the LDAP attributes. When not checked or when the AD LDAP entry lacks the SFU attributes the smb4.conf parameters template shell and template homedir are used.": "Cuando se marca, winbind recuperará el shell de inicio de sesión y el directorio de inicio de los atributos LDAP. Cuando no está marcada o cuando la entrada AD LDAP carece de los atributos SFU, se usan los parámetros smb4.conf template shell y template homedir.", "When replicated snapshots are deleted from the destination system:
    Same as Source: use the configured Snapshot Lifetime value from the source dataset periodic snapshot task.
    Never Delete: never delete snapshots from the destination system.
    Custom: set a how long a snapshot remains on the destination system. Enter a number and choose a measure of time from the drop-down.": "Cuando las instantáneas replicadas se eliminan del sistema de destino:
    Igual que la fuente: use el valor configurado Vida útil de la instantánea de la tarea de instantánea periódica del conjunto de datos de origen.
    Nunca eliminar: nunca elimine instantáneas del sistema de destino.
    Personalizado: establezca cuánto tiempo permanece una instantánea en el sistema de destino. Ingrese un número y elija una medida de tiempo del menú desplegable.", @@ -5131,12 +5114,26 @@ "Who": "Quien", "Who this ACL entry applies to, shown as a Windows Security Identifier. Either a SID or a Domain and Name is required for this ACL.": "A quién se aplica esta entrada de ACL, que se muestra como un Identificador de seguridad de Windows. Se requiere un SID o un Dominio y Nombre para esta ACL.", "Who this ACL entry applies to, shown as a user name. Requires adding the user Domain.": "A quién se aplica esta entrada de ACL, que se muestra como un nombre de usuario. Requiere agregar el usuario Dominio.", + "Widget Category": "Categoría de widget", + "Widget Editor": "Editor de widgets", + "Widget Subtext": "Subtexto del widget", + "Widget Text": "Texto del widget", + "Widget Title": "Título del widget", + "Widget Type": "Tipo de widget", + "Widget has errors": "El widget tiene errores", + "Widgets": "Widgets", "Width": "Ancho", "Window": "Ventana", + "Windows": "Windows", + "Windows (SMB) Shares": "Recursos compartidos de Windows (SMB)", "Wipe": "Limpiar", + "Wipe Disk {name}": "Borrar disco {name}", "Wipe this disk?": "¿Limpiar este disco?", "Wiping disk...": "Limpiando disco...", + "With this configuration, the existing directory {path} will be used as a home directory without creating a new directory for the user.": "Con esta configuración, el directorio existente {path} se utilizará como directorio de inicio sin crear un nuevo directorio para el usuario.", + "With your selection, no GPU is available for the host to consume.": "Con tu selección, no habrá ninguna GPU disponible para que el host la consuma.", "Workgroup": "Grupo de trabajo", + "Workloads": "Cargas de trabajo", "Write": "Escribir", "Write ACL": "Escribir ACL", "Write Data": "Escribir datos", @@ -5151,6 +5148,8 @@ "You are using an insecure connection. Switch to HTTPS for secure access.": "Estás usando una conexión insegura. Cambie a HTTPS para tener acceso seguro.", "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "Puede unirse al boletín informativo de TrueNAS para recibir actualizaciones mensuales y los últimos desarrollos.", "You have left the domain.": "Has dejado el dominio.", + "Your dashboard is currently empty!": "¡Tu tablero está vacío actualmente!", + "ZFS": "ZFS", "ZFS Cache": "Caché ZFS", "ZFS Deduplication": "Deduplicación ZFS", "ZFS Encryption": "Cifrado de ZFS", @@ -5159,6 +5158,8 @@ "ZFS Health": "Salud de ZFS", "ZFS Info": "Info de ZFS", "ZFS LOG device that can improve speeds of synchronous writes. Optional write-cache that can be removed.": "Dispositivo ZFS LOG que puede mejorar las velocidades de escrituras sincrónicas. Caché de escritura opcional que se puede quitar.", + "ZFS Replication to another TrueNAS": "Replicación ZFS a otro TrueNAS", + "ZFS Reports": "Informes de ZFS", "ZFS Stats": "Estadísticas de ZFS", "ZFS Utilization": "Uso de ZFS", "ZFS pools must conform to strict naming conventions. Choose a memorable name.": "Los Grupos ZFS deben cumplir con las estrictas nomenclaturas convenciones. Elige un nombre memorable.", @@ -5190,4 +5191,4 @@ "zstd-5 (slow)": "zstd-5 (lento)", "zstd-7 (very slow)": "zstd-7 (muy lento)", "zstd-fast (default level, 1)": "zstd-fast (nivel rpedeterminado, 1)" -} +} \ No newline at end of file diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 61b3dc52a0a..dfcdbfaa8f4 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1902,6 +1902,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname (Virtual)": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index eb2501a8ccc..030fed2a4cc 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -313,6 +313,7 @@ "Host Model": "", "Host Mounts": "", "Host Passthrough": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname Database": "", "Hostname Database:": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 20c618f3ee3..c851e02b2f0 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -87,6 +87,7 @@ "Group Members": "", "Hardware Change": "", "High usage necessitating a system reset.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "IPv4 Network": "", "IPv6 Network": "", "If URL above fails to open, it may be due to the unavailability of Basic HTTP authentication in your browser.": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 972587b7de8..197da0d6b4b 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1896,6 +1896,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index e6e4173eddf..71125232e97 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1804,6 +1804,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname (Virtual)": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index fc361931000..f1296e2f223 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1665,6 +1665,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 60b9895df3d..0d41f886b69 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -2077,6 +2077,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 2f44d395b94..bdf52eff122 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -526,6 +526,7 @@ "High usage necessitating a system reset.": "", "Home Widgets": "", "Host Mounts": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Hostname Database": "", "Hostname Database:": "", "Hostname – Active": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 1e03ffdb861..8c4e0b26e99 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -2031,6 +2031,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname (Virtual)": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 9b27cd13e33..36f53a8bde3 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -2025,6 +2025,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 7908643d25f..2acf607cb89 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -1092,6 +1092,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Hostname (TrueNAS Controller 2)": "", "Hostname (Virtual)": "", "Hostname Database": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index e137c93a0db..210420e1eed 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -1248,6 +1248,7 @@ "Host Model": "", "Host Mounts": "", "Host Passthrough": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname Database": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 107eab0504b..aa802cb40d2 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -777,6 +777,7 @@ "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "", "Home Widgets": "", "Host Mounts": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Hostname Database": "", "Hostname Database:": "", "Hostname – Active": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 468c7c9e421..b21d5afa05e 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -2083,6 +2083,7 @@ "Host Sync": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname": "", "Hostname (TrueNAS Controller 2)": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 6893e874c00..ce347fb5f68 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -1,1479 +1,15 @@ { "": "", - " Est. Usable Raw Capacity": "估计可用原始容量", - " as of {dateTime}": "截至 {dateTime}", - "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "上电时间 是指磁盘自开机以来经过的小时数。累计上电时间 是指自每次测试以来经过的开机小时数。", - "({n, plural, =1 {# widget} other {# widgets}})": "({n} 个小部件)", - "...": "", - "... Make sure the TrueNAS system is powered on and connected to the network.": "请确保 TrueNAS 系统已通电并连接到网络。", - "1m Average": "1分钟平均", - "2FA": "双因素认证 (2FA)", - "2FA Settings": "2FA 设置", - "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.": "S3 API 端点 URL。在使用 AWS 时,端点字段可以为空,以使用该区域的默认端点, 可用的存储桶会自动获取。有关 简单存储服务网站端点 的列表,请参阅 AWS 文档。", - "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.": "是:禁用 密码 字段。该帐户无法使用基于密码的登录服务。例如,禁用密码会阻止使用帐户凭据登录到 SMB 共享或在系统上打开 SSH 会话。同时,锁定用户允许 Sudo 选项也被移除。

    否: 需要为帐户新增一个 密码。该帐户可以使用保存的 密码 来进行基于密码的服务认证。", - "

    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.": "按 rclone 格式的 单个带宽限制 或 带宽限制计划。通过按 Enter 键分隔条目。例如: 08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off。单位可以使用后缀 b(默认为此), kMG 来指定。请参阅 rclone --bwlimit。", - "ACL": "ACL(访问控制列表)", - "ACL Editor": "ACL 编辑器", - "ACL Mode": "ACL 模式", - "ACME Certificate Created": "ACME 证书已创建", - "ACME DNS Authenticator": "ACME DNS 验证器", - "ACME DNS-Authenticator": "ACME DNS 验证器", - "ACME Server Directory URI": "ACME 服务器目录 URI", - "AD Timeout": "AD 超时", - "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "AD 用户和组默认将具有域名前缀(`DOMAIN\\`)。在某些特定情况下,这可能会导致某些客户和应用程序的不稳定行为,特别是那些设计不佳且无法处理该前缀的应用程序。仅在特定应用或客户端需要时设置此项。请注意,使用此设置并不推荐,因为可能会与本地用户帐户名称发生冲突。", - "Abort Job": "停止任务", - "Aborting...": "正在停止……", - "Accept": "接受", - "Ace has errors.": "Ace 有错误。", - "Active Directory is disabled.": "AD 已禁用。", - "Active IP Addresses": "活动 IP 地址", - "Add ACME DNS-Authenticator": "新增 ACME DNS 验证器", - "Add Alert": "新增警报", - "Add Backup Credential": "新增备份凭据", - "Add Certificate Signing Requests": "新增证书签名请求(CSR)", - "Add Cloud Backup": "新增云备份", - "Add Cloud Credential": "新增云凭据", - "Add Credential": "新增凭据", - "Add Custom App": "新增自定义应用程序", - "Add Disk Test": "新增磁盘测试", - "Add Expansion Shelf": "新增扩展机柜", - "Add Exporter": "新增导出器", - "Add Filesystem": "新增文件系统", - "Add Image": "新增图像", - "Add Item": "新增项目", - "Add Kernel Parameters": "新增内核参数", - "Add Key": "新增密钥", - "Add Local Group": "新增本地组", - "Add Local User": "新增本地用户", - "Add New": "新增", - "Add Periodic S.M.A.R.T. Test": "新增定期 S.M.A.R.T. 测试", - "Add Pool": "新增池", - "Add Privilege": "新增权限", - "Add SMB Share": "新增 SMB 共享", - "Add SPN": "新增 SPN", - "Add SSH Connection": "新增 SSH 连接", - "Add SSH Keypair": "新增 SSH 密钥对", - "Add Share": "新建共享", - "Add Smart Test": "新增 S.M.A.R.T. 测试", - "Add Snapshot Task": "新增快照任务", - "Add TrueCloud Backup Task": "新增 TrueCloud 备份任务", - "Add Tunable": "新增可调参数", - "Add VM": "新增虚拟机", - "Add Virtual Machine": "新增虚拟机", - "Add Volume": "新增卷", - "Add Widget": "新增小部件", - "Add iSCSI": "新增 iSCSI 共享", - "Add the required no. of disks to get a vdev size estimate": "新增所需数量的磁盘以获取 vdev 大小估算", - "Add to trusted store": "添加到可信存储区", - "Add user linked API Key": "新增用户 API Key", - "Add {item}": "新增 {item}", - "Adding, removing, or changing hardware components.": "添加、移除或更改硬件组件。", - "Additional Domains:": "附加域:", - "Additional Hardware": "额外硬件", - "Additional Parameters String": "附加参数字符串", - "Address Pool": "地址池", - "Address Pools": "地址池", - "Adjust Resilver Priority": "调整一致性重建优先级", - "Adjust Scrub Priority": "调整巡检优先级", - "Admin Password": "管理员密码", - "Admin Username": "管理员用户名", - "Administrators": "管理员", - "Administrators Group": "管理员组", - "Admins": "管理员", - "Alert List Write": "编辑警报列表", - "Aliases": "别名", - "All Users": "所有用户", - "All disks healthy.": "所有磁盘状态正常。", - "Allow Anonymous Binding": "允许匿名绑定", - "Allow Anonymous Login": "允许匿名登录", - "Allow DNS Updates": "允许 DNS 更新", - "Allow Directory Service users to access WebUI": "允许 AD 用户访问 WebUI", - "Allow Local User Login": "允许本地用户登录", - "Allow Transfer Resumption": "允许恢复传输", - "Allow Trusted Domains": "允许受信任的域名", - "Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "允许客户端访问TrueNAS服务器,如果它们是与TrueNAS所加入域具有信任关系的域的成员。这要求对所有受信任域进行有效的 idmap 后端配置。", - "Allow non-unique serialed disks (not recommended)": "允许非唯一序列号的磁盘(不推荐)", - "Allowed Address": "允许的地址", - "Allowed IP Addressed": "允许的 IP 地址", - "Allowed IP Addresses Settings": "允许的IP地址设置", - "Allowed Initiators": "允许的发起者", - "Also Include Naming Schema": "还包括命名方案", - "Alternatively, you can start by configuring VDEVs in the wizard first and then opening Manual selection to make adjustments.": "或者,您可以先在向导中配置 VDEVs,然后打开手动选择进行调整。", - "Always Chroot": "始终 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 restart the system.": "更新已应用。请重新启动系统。", - "Anonymous User Download Bandwidth": "匿名用户下载带宽", - "Anonymous User Upload Bandwidth": "匿名用户上传带宽", - "App": "应用程序", - "App Info": "应用信息", - "App Network": "网络", - "App is restarted": "应用程序已重新启动", - "App is restarting": "应用程序正在重启", - "Application CPU Usage": "CPU使用率", - "Application Information": "应用程序信息", - "Application Memory": "内存", - "Application Network": "网络", - "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "应用程序名称必须满足以下要求: 1) 可以使用小写字母和数字字符 2) 名称必须以字母字符开头,可以以字母或数字字符结尾 3) 允许使用连字符 '-',但不能作为第一个或最后一个字符,例如 abc123、abc、abcd-1232", - "Applied Dataset Quota": "配置的数据集配额", - "Apply Owner": "设置所有者", - "Apply Pending update": "应用待处理更新", - "Apply Quotas to Selected Groups": "应用配额到选定组", - "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": "任意文本", - "Arch": "架构", - "Are you sure you want to restore the default set of widgets?": "您确定要恢复默认的小工具设置吗?", - "Asymmetric Logical Unit Access (ALUA)": "非对称逻辑单元访问 (ALUA)", - "Attach images (optional)": "附加镜像(可选)", - "Attaching Disk to Boot Pool": "将磁盘附加到启动池", - "Audit Entry": "审计条目", - "Audit Logging": "审计日志记录", - "Audit Settings": "审核设置", - "Authentication Protocol": "认证协议", - "Authentication Type": "认证类型", - "Authority Key Config": "权限密钥配置", - "Auto Refresh": "自动刷新", - "Automatically restart the system after the update is applied.": "在应用更新后自动重启系统。", - "Autostart": "自动启动", - "Available Memory": "可用内存", - "Back to Discover Page": "返回发现页面", - "Back to Support": "返回支持页面", - "Backup": "备份", - "Backup Config": "备份配置", - "Backup Credential": "备份凭据", - "Backup to Cloud or another TrueNAS via links below": "通过以下链接备份到云或其他TrueNAS。", - "Bandwidth": "带宽", - "Base": "基础", - "Base Image": "基础镜像", - "Basic Constraints Config": "基本约束配置", - "Batch Operations": "批量操作", - "Before updating, please read the release notes.": "在更新之前,请阅读发布说明。", - "Bind": "绑定", - "Bind Interfaces": "绑定接口", - "Block I/O": "块I/O", - "Block I/O read and writes": "块 I/O 读写", - "Boot Environment": "启动环境", - "Boot Pool Condition": "启动池状态", - "Boot Pool Disk Replaced": "引导池磁盘已更换", - "Bridge Members": "桥接成员", - "Bridge Settings": "桥接设置", - "Browse": "浏览", - "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "浏览到现有文件。通过浏览数据集并在路径后追加 /(文件名.扩展名) 来创建新文件。", - "Browser time: {time}": "浏览器时间:{time}", - "Bug": "错误", - "Bulk Actions": "批量操作", - "By snapshot creation time": "按快照创建时间", - "CD-ROM Path": "光盘路径", - "CLI": "命令行界面 (CLI)", - "CN Realm": "CN 领域", - "CPU & Memory": "CPU与内存", - "CPU Overview": "CPU 概述", - "CPU Recent Usage": "CPU 最近使用情况", - "CPU Stats": "CPU 统计信息", - "CPU Temperature Per Core": "每个核心的CPU温度", - "CPU Usage Per Core": "每核CPU使用率", - "CPU Utilization": "CPU 利用率", - "CSR": "证书签名请求 CSR", - "CSR deleted": "CSR 已删除", - "Caches": "缓存", - "Cannot be enabled for built-in users.": "无法为内置用户启用。", - "Capabilities": "能力", - "Categories": "类别", - "Caution: Allocating too much memory can slow the system or prevent VMs from running.": "注意:分配过多的内存可能会导致系统变慢或阻止虚拟机运行。", - "Certificate Options": "证书选项", - "Certificate Subject": "证书名称", - "Change log": "变更日志", - "Check": "检查", - "Check Alerts for more details.": "查看警报以获取更多详细信息。", - "Check App Details": "检查应用程序详情", - "Check for Software Updates": "检查软件更新", - "Check for docker image updates": "检查 Docker 镜像更新", - "Check the update server daily for any updates on the chosen train. Automatically download an update if one is available. Click APPLY PENDING UPDATE to install the downloaded update.": "每天检查更新服务器以获取所选版本的任何更新。如果有可用更新,自动下载该更新。点击应用待定更新以安装下载的更新。", - "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "检查{name}和 {n} 个其他磁盘。", - "Check {name}.": "检查 {name}。", - "Child Shares": "子数据集共享", - "Choose Master if the UPS is plugged directly into the system serial port. The UPS will remain the last item to shut down. Choose Slave to have this system shut down before Master. See the Network UPS Tools Overview.": "如果UPS直接插入系统串口,请选择主设备。UPS将是最后关闭的项目。选择从设备可以使该系统在主设备之前关闭。请参阅网络UPS工具概述。", - "Choose Shell Details": "选择 Shell 详情", - "Clear": "清除", - "Click \"Add\" to specify NFS client hosts for this share. If both networks and hosts are empty the share will be exported to everyone.": "点击“新增”以指定此共享的NFS客户端主机。如果网络和主机都为空,则该共享将对所有人开放。", - "Click \"Add\" to specify NFS client network ranges for this share. If both networks and hosts are empty the share will be exported to everyone.": "点击“新增”以指定该共享的NFS客户端网络范围。如果网络和主机都为空,则该共享将对所有人开放。", - "Click Add to add first VDEV.": "点击“新增”以创建第一个VDEV。", - "Click to give {index} star rating.": "点击给{index}星评级。", - "Close Feedback Dialog": "关闭反馈对话框", - "Close Inspect VDEVs Dialog": "关闭检查 VDEVs 对话框", - "Close Instance Form": "关闭实例表单", - "Close scheduler": "关闭调度器", - "Close {formType} Form": "关闭 {formType} 表单", - "Cloud Backup": "云备份", - "Cloud Backup Read": "读取云备份", - "Cloud Backup Restored Successfully": "云备份恢复成功", - "Cloud Backup Snapshot": "云备份快照", - "Cloud Backup Write": "编辑云备份", - "Cloud Backup «{name}» has started.": "云备份 «{name}» 已启动。", - "Cloud Credential": "云凭据", - "Cloud Sync Task": "云同步任务", - "Cloud Sync Task Wizard": "云同步任务向导", - "Cloud Sync to Storj or similar provider": "云同步到Storj或类似的服务提供商", - "Cloud Sync «{name}» has been deleted.": "云同步 «{name}» 已被删除。", - "Cloud Sync «{name}» has been restored.": "云同步 «{name}» 已被恢复。", - "Collapse": "折叠", - "Command Line Interface": "命令行界面", - "Command: {command}": "命令:{command}", - "Completed Jobs": "已完成的任务", - "Compress Connections": "压缩连接", - "Computer Account OU": "计算机账户组织单位", - "Config Email": "配置邮箱", - "Configuration": "配置", - "Configure Access": "配置访问权限", - "Configure Alerts": "配置警报", - "Configure Allowed IP Addresses": "配置允许的 IP 地址", - "Configure Audit": "配置审计", - "Configure Console": "配置控制台", - "Configure Email": "配置电子邮件", - "Configure Global Two Factor Authentication": "配置全局双因素身份验证", - "Configure Isolated GPU Devices": "配置隔离的 GPU 设备", - "Configure Kernel": "配置内核", - "Configure Notifications": "配置通知", - "Configure Replication": "配置复制", - "Configure Self-Encrypting Drive": "配置自加密驱动器(SED)", - "Configure Sessions": "配置会话", - "Configure Storage": "配置存储", - "Configure Syslog": "配置 Syslog", - "Configure dashboard to edit this widget.": "配置仪表板以编辑此小部件。", - "Configure iSCSI": "配置 iSCSI", - "Configuring NFS exports of root-level datasets may lead to storage reconfiguration issues. Consider creating a dataset instead.": "配置根级数据集的 NFS 共享可能会导致存储重配置问题。建议改为创建一个数据集。", - "Configuring SMB exports of root-level datasets may lead to storage reconfiguration issues. Consider creating a dataset instead.": "配置根级数据集的 SMB 共享可能会导致存储重配置问题。建议考虑创建一个数据集。", - "Connect using:": "使用以下连接:", - "Connecting to TrueNAS": "连接到 TrueNAS", - "Console Menu": "控制台菜单", - "Console Settings": "控制台设置", - "Container ID": "容器ID", - "Container Logs": "容器日志", - "Container Shell": "容器 Shell", - "Containers (WIP)": "容器(进行中)", - "Continue in background": "在后台继续执行", - "Contract Type": "合同类型", - "Controller": "控制器", - "Controller Type": "控制器类型", - "Controls": "控件", - "Cooling": "冷却", - "Copies": "副本", - "Crashed": "崩溃", - "Create ACME DNS-Authenticator": "创建 ACME DNS 验证器", - "Create Alert": "创建警报", - "Create Backup Credential": "创建备份凭据", - "Create CSR": "创建 CSR", - "Create Certificate": "创建证书", - "Create Certificate Authority": "创建证书授权机构", - "Create Certificate Signing Requests": "创建证书签名请求", - "Create Cloud Backup": "创建云备份", - "Create Cloud Credential": "创建云凭证", - "Create Cloud Sync Task": "创建云同步任务", - "Create Credential": "创建凭证", - "Create Cron Job": "创建定时任务", - "Create DNS Authenticator": "创建 DNS 验证器", - "Create Disk Test": "创建磁盘测试", - "Create Exporter": "创建导出器", - "Create Group": "创建组", - "Create Idmap": "创建 Idmap", - "Create Init/Shutdown Script": "创建初始化/关闭脚本", - "Create Instance": "创建实例", - "Create Interface": "创建接口", - "Create Kerberos Keytab": "创建 Kerberos 密钥表", - "Create Kerberos Realm": "创建 Kerberos 领域", - "Create Kernel Parameters": "创建内核参数", - "Create Key": "创建密钥", - "Create NTP Server": "创建NTP服务器", - "Create New Instance": "创建新实例", - "Create Periodic S.M.A.R.T. Test": "创建定期 S.M.A.R.T. 测试", - "Create Periodic Snapshot Task": "创建定期快照任务", - "Create Privilege": "创建权限", - "Create Replication Task": "创建复制任务", - "Create Reporting Exporter": "创建报告导出器", - "Create Rsync Task": "创建 Rsync 任务", - "Create SSH Connection": "创建 SSH 连接", - "Create SSH Keypair": "创建 SSH 密钥对", - "Create Scrub Task": "创建数据巡检任务", - "Create Share": "创建共享", - "Create Smart Test": "创建 S.M.A.R.T. 测试", - "Create Snapshot Task": "创建快照任务", - "Create Static Route": "创建静态路由", - "Create Sysctl": "创建 Sysctl", - "Create TrueCloud Backup Task": "创建 TrueCloud 备份任务", - "Create Tunable": "创建可调参数", - "Create User": "创建用户", - "Create VM": "创建虚拟机", - "Create Zvol": "创建 Zvol", - "Create boot environment": "新建启动环境", - "Create iSCSI": "创建 iSCSI", - "Created": "创建", - "Created by: {creationSource} ({creationType})": "创建者: {creationSource} ({creationType})", - "Created date": "创建日期", - "Creating custom app": "创建自定义应用程序", - "Credentials have been successfully added.": "凭据已成功添加。", - "Cron Job": "计划任务", - "Cronjob": "计划任务", - "Current Sensor": "当前传感器", - "Current Train:": "当前通道:", - "Custom ({customTransfers})": "自定义 ({customTransfers})", - "Custom App via YAML": "通过YAML自定义应用程序", - "Custom Config": "自定义配置", - "Custom Name": "自定义名称", - "Custom Reason": "自定义原因", - "Custom Transfers": "自定义传输", - "Custom app config in YAML format.": "自定义应用程序配置采用YAML格式。", - "Custom schedule": "自定义计划", - "Customer Name": "客户名称", - "DNS Timeout": "DNS 超时", - "DS Groups": "DS 组", - "DS Groups Name": "DS 组名称", - "Data Topology": "数据拓扑", - "Data Written": "已写入数据", - "Dataset Capacity Management": "数据集容量管理", - "Dataset Data Protection": "数据集数据保护", - "Dataset Information": "数据集信息", - "Dataset Name": "数据集名称", - "Dataset Permissions": "数据集权限", - "Dataset Preset": "数据集预设", - "Dataset Quota": "数据集配额", - "Dataset Roles": "数据集角色", - "Dataset ZFS Encryption": "数据集 ZFS 加密", - "Dataset is locked": "数据集已锁定", - "Dataset is shared via NFS": "数据集通过 NFS 共享。", - "Dataset is shared via SMB": "数据集通过 SMB 共享。", - "Dataset is shared via SMB as {shares}": "数据集通过 SMB 共享为 {shares}。", - "Dataset is shared via iSCSI": "数据集通过 iSCSI 共享。", - "Dataset rolled back to snapshot {name}.": "数据集已回滚到快照 {name}。", - "Dataset {name} was created.": "数据集 {name} 已创建。", - "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "去重在 24.10 中是实验性的,并且不完全支持。启用后,数据将以这种内存密集型的方法永久存储,无法撤消。请极为谨慎,确保在启用此功能之前有足够的数据备份。", - "Default Route": "默认路由", - "Default widgets restored": "默认小部件已恢复", - "Default – follow upstream / TrueNAS default": "默认 - 跟随上游 / TrueNAS 默认设置", - "Defect": "缺陷", - "Delay VM Boot Until SPICE Connects": "延迟虚拟机启动直到 SPICE 连接。", - "Delete Alert Service \"{name}\"?": "删除警报服务 \"{name}\"?", - "Delete All Selected": "删除所有选定项", - "Delete Cloud Backup \"{name}\"?": "删除云备份 \"{name}\"?", - "Delete Snapshot": "删除快照", - "Delete all TrueNAS configurations that depend on the exported pool. Impacted configurations may include services (listed above if applicable), applications, shares, and scheduled data protection tasks.": "删除所有依赖于已导出存储池的 TrueNAS 配置。受影响的配置可能包括服务(如适用,见上文)、应用程序、共享和计划的数据保护任务。", - "Delete dataset {name}": "删除数据集 {name}", - "Delete group": "删除组", - "Delete raw file": "删除原始文件", - "Delete selections": "删除选择项", - "Delete user primary group `{name}`": "删除用户主组 `{name}`", - "Delete zvol device": "删除 zvol 设备", - "Delete zvol {name}": "删除 zvol {name}", - "Deleted {n, plural, one {# snapshot} other {# snapshots}}": "删除了 {n} 个快照", - "Descriptor": "描述符", - "Desired – encrypt transport if supported by client during session negotiation": "期望 - 在会话协商期间,如果客户端支持,则加密传输。", - "Destroy the ZFS filesystem for pool data. This is a permanent operation. You will be unable to re-mount data from the exported pool.": "销毁池数据的 ZFS 文件系统。这是一个永久性操作。您将无法重新挂载来自已导出池的数据。", - "Device removed": "设备已移除", - "Device «{disk}» has been detached.": "设备 «{disk}» 已被卸载。", - "Device «{name}» was successfully attached.": "设备 «{name}» 已成功连接。", - "Directory Mask": "目录掩码", - "Directory Permissions": "目录权限", - "Disable": "禁用", - "Disable AD User / Group Cache": "禁用 AD 用户 / 组缓存", - "Disable LDAP User/Group Cache": "禁用 LDAP 用户/组缓存", - "Disabled in Disk Settings": "在磁盘设置中禁用", - "Discover Remote Host Key": "发现远程主机密钥", - "Disk Details for {disk}": "{disk} 的磁盘详情", - "Disk Details for {disk} ({descriptor})": "{disk} ({descriptor}) 的磁盘详细信息", - "Disk I/O": "磁盘I/O", - "Disk IO": "磁盘IO", - "Disk Sector Size": "扇区大小", - "Disk Tests": "磁盘测试", - "Disks on {enclosure}": "{enclosure}上的磁盘", - "Disks w/ZFS Errors": "带有ZFS错误的磁盘", - "Disks with exported pools": "含有导出池的磁盘", - "Dismiss": "忽略", - "Dismiss All Alerts": "忽略所有警报", - "Dispersal Strategy": "分散策略", - "Display Login": "显示登录", - "Distributed Hot Spares": "分布式热备份", - "Do any of them look similar?": "它们中有没有看起来相似的?", - "Docker Hub Rate Limit Warning": "Docker Hub 速率限制警告", - "Docker Image": "Docker 镜像", - "Docker Write": "修改 Docker", - "Docs": "文档", - "Domain Account Password": "域账户密码", - "Domain Name System": "域名系统 DNS", - "Domain:": "域:", - "Door Lock": "门锁", - "Download Authorized Keys": "下载授权密钥", - "Download Config": "下载配置", - "Download Configuration": "下载配置", - "Drag & drop disks to add or remove them": "拖放磁盘以添加或移除它们", - "Drive Bay {n}": "驱动器托架 {n}", - "Drive Details": "驱动器详细信息", - "Drive Details {disk}": "驱动器详细信息 {disk}", - "Drop session": "结束会话", - "Dry run completed.": "模拟运行完成。", - "EXPIRED": "过期", - "EXPIRES TODAY": "今天到期", - "Edit Custom App": "编辑自定义应用程序", - "Edit Disk(s)": "编辑磁盘", - "Edit Expansion Shelf": "编辑扩展机架", - "Edit Label": "编辑标签", - "Edit Trim": "编辑 TRIM", - "Edit TrueCloud Backup Task": "编辑 TrueCloud 备份任务", - "Edit group": "编辑组", - "Element": "元素", - "Elements": "元素", - "Empty drive cage": "空驱动托架", - "Enable Apple SMB2/3 Protocol Extensions": "启用 Apple SMB2/3 协议扩展", - "Enable Atime": "启用访问时间(Atime)", - "Enable FXP": "启用 FXP", - "Enable Kernel Debug": "启用内核调试", - "Enable Learning": "启用学习", - "Enable NFS over RDMA": "启用基于 RDMA 的 NFS", - "Enable TLS": "启用 TLS", - "Enable passwordless sudo for zfs commands": "为 zfs 命令启用无密码 sudo 权限", - "Enable server support for NFSv3 or NFSv4 or both NFSv3 and NFSv4 clients.": "启用服务器支持 NFSv3 或 NFSv4,或同时支持 NFSv3 和 NFSv4 客户端。", - "Enable server-side management of group memberships. This option allows the server to determine group IDs based on server-side lookups rather than relying solely on the information provided by the NFS client. This can support more than 16 groups and provide more accurate group memberships.": "启用服务器端的组成员管理。该选项允许服务器根据服务器端查找来确定组 ID,而不仅仅依赖于 NFS 客户端提供的信息。这可以支持超过 16 个组,并提供更准确的组成员资格。", - "Enable this TrueCloud Backup Task. Unset to disable this TrueCloud Backup Task without deleting it.": "启用此 TrueCloud 备份任务。取消设置以禁用此 TrueCloud 备份任务而不删除它。", - "Enclosure Options": "机箱选项", - "Enclosure Read": "只读机箱", - "Enclosure Services Controller Electronics": "机柜服务控制器电子设备", - "Enclosure Unavailable": "机箱不可用", - "Enclosure Write": "修改机箱", - "Encryption Mode": "加密模式", - "Encryption Protocol": "加密协议", - "Encryption Root": "加密根", - "Encryption Standard": "加密标准", - "End session": "结束会话", - "Ensure that ACL permissions are validated for all users and groups. Disabling this may allow configurations that do not provide the intended access. It is recommended to keep this option enabled.": "确保对所有用户和组验证ACL权限。禁用此设置可能会允许不提供预期访问权限的配置。建议保持此选项启用。", - "Enter a SPICE password to automatically pass to the SPICE session.": "输入 SPICE 密码以自动传递给 SPICE 会话。", - "Enter a list of chat IDs separated by space, comma or semicolon. To find your chat ID send a message to the bot, group or channel and visit https://api.telegram.org/bot(BOT_TOKEN)/getUpdates.": "输入一个由空格、逗号或分号分隔的聊天ID列表。要找到你的聊天ID,可以向机器人、群组或频道发送消息,并访问 https://api.telegram.org/bot(BOT_TOKEN)/getUpdates。", - "Enter a name of the TrueCloud Backup Task.": "输入 TrueCloud 备份任务的名称。", - "Enter a password for the SPICE display.": "请输入 SPICE 显示的密码。", - "Enter a shell glob pattern to match files and directories to exclude from the backup.": "输入一个 shell 通配符模式,以匹配要从备份中排除的文件和目录。", - "Enter an email address to override the admin account’s default email. If left blank, the admin account’s email address will be used": "输入一个电子邮件地址以覆盖管理员帐户的默认电子邮件。如果留空,将使用管理员帐户的电子邮件地址。", - "Enter the name of the new bucket. Only lowercase letters, numbers, and hyphens are allowed.": "输入新桶的名称。只允许使用小写字母、数字和短横线。", - "Enter the number of last kept backups.": "输入最后保留备份的数量。", - "Error ({code})": "错误 ({code})", - "Error when loading similar apps.": "加载类似应用时出错。", - "Error:": "错误:", - "Eula": "最终用户许可协议", - "Exclude Child Datasets": "排除子数据集", - "Exclude by pattern": "按模式排除", - "Excluded Paths": "排除路径", - "Exec": "执行", - "Exit": "退出", - "Exited": "已退出", - "Expiration Date": "到期日期", - "Expires date": "到期日期", - "Export All Keys": "导出所有密钥", - "Export Config": "导出配置", - "Export Configuration": "导出配置", - "Export File": "导出文件", - "Export Key": "导出密钥", - "Exporter": "导出器", - "Exporters": "导出器", - "Extending VDEV": "扩展 VDEV", - "Extends the validity of OTP by that many windows of intervals before and after the current interval": "通过在当前时间区间之前和之后扩展有效性,使 OTP 的有效期延长了那么多窗口区间。", - "Extra Constraints": "额外限制条件", - "FIPS Settings": "FIPS 设置", - "Failed Disks:": "故障磁盘:", - "Failed Jobs": "失败的任务", - "Failed to load datasets": "无法加载数据集", - "Failover Group": "故障切换组", - "Failover Now": "立即故障切换", - "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "建议进行故障转移以使新的 FIPS 设置生效。您想现在进行故障转移吗?", - "Fatal error! Check logs.": "致命错误!请检查日志。", - "Feature Request": "功能请求", - "Features": "特点", - "Feedback Type": "反馈类型", - "Fetching Encryption Summary for {dataset}": "获取 {dataset} 的加密摘要", - "File Mask": "文件掩码", - "File Permissions": "文件权限", - "First Page": "第一页", - "Flags Advanced": "高级标志", - "Flags Basic": "基本标志", - "Flash Identify Light": "点亮定位灯", - "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "出于性能考虑,对于启用去重的数据集,建议使用SHA512而不是SHA256。", - "Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "强制使用 签名版本 2 来签署 API 请求。仅在您的 AWS 提供商不支持默认的版本 4 签名时设置此项。", - "Forums": "论坛", - "Four quarter widgets in two by two grid": "两个两列两行的四个四分之一部件", - "Free RAM": "可用内存", - "Free Space": "可用空间", - "From Email": "来自电子邮件", - "From Name": "从名称", - "Front": "字体", - "General Settings": "常规设置", - "Generate": "生成", - "Generate CSR": "生成CSR", - "Generate Certificate": "生成证书", - "Generate Certificate Signing Requests": "生成证书签名请求", - "Generate New Password": "生成新密码", - "Get Support": "获取支持", - "Global 2FA Enable": "全局两因素认证启用", - "Global Config": "全局配置", - "Global Configuration Settings": "全局配置设置", - "Global Settings": "全局设置", - "Gmail": "Gmail", - "Gmail credentials have been applied.": "Gmail 凭据已应用。", - "Go To Dataset": "转到数据集", - "Go To Encryption Root": "转到加密根目录", - "Go to Datasets": "转到数据集", - "Go to Documentation": "前往文档", - "Go to Jobs Page": "前往任务页面", - "Go to Storage": "前往存储管理", - "Group Bind Path": "组绑定路径", - "Group Members": "组成员", - "Group Quota Manager": "组配额管理器", - "Guest Account": "访客帐户", - "HA is Disabled": "高可用性已禁用", - "HTTP Port": "HTTP 端口", - "HTTP Proxy:": "HTTP 代理:", - "HTTPS Port": "HTTPS 端口", - "HTTPS Redirect": "HTTPS 重定向", - "Hardware Change": "硬件更改", - "Healthy": "健康", - "Hide Job": "隐藏任务", - "Hide Password": "隐藏密码", - "High usage necessitating a system reset.": "系统过载需要重启系统。", - "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "高亮路径是 {node}。按 '空格键' 来 {expand}。按 '回车键' 来 {select}。", - "Home Widgets": "主页小工具", - "Host Mounts": "主机挂载", - "Hostname Database": "主机名数据库", - "Hostname Database:": "主机名数据库:", - "Hostname – Active": "活动主机名", - "Hostname – Passive": "被动主机名", - "Hostname:": "主机名:", - "Hostname: {hostname}": "主机名: {hostname}", - "I would like to": "我想要", - "IP of 1st Redfish management interface.": "第一个 Redfish 管理接口的 IP 。", - "IPs": "IP 地址", - "IPv4": "IPv4", - "IPv4 Network": "IPv4 网络", - "IPv6": "IPv6", - "IPv6 Address": "IPv6 地址", - "IPv6 Network": "IPv6 网络", - "ISCSI Associated Target": "iSCSI 关联目标", - "Identify": "定位", - "Identify Light": "定位灯", - "Identify light is off.": "定位灯已关闭。", - "Identify light is on.": "定位等已点亮。", - "Idmap Backend": "Idmap 后端", - "If URL above fails to open, it may be due to the unavailability of Basic HTTP authentication in your browser.": "如果上述 URL 无法打开,可能是由于您的浏览器不支持 HTTP 简单身份验证。", - "If automatic login has failed, please try the following credentials manually.": "如果自动登录失败,请手动尝试以下凭据。", - "If downloading a file returns the error \"This file has been identified as malware or spam and cannot be downloaded\" with the error code \"cannotDownloadAbusiveFile\" then enable this flag to indicate you acknowledge the risks of downloading the file and TrueNAS will download it anyway.": "如果下载文件时出现错误“此文件已被识别为恶意软件或垃圾邮件,无法下载”,错误代码为“cannotDownloadAbusiveFile”,则启用此标志以表示您已承认下载该文件的风险,TrueNAS 将仍然下载该文件。", - "If set, the value will be used to override the default DNS domain name for NFSv4. Specifies the \"Domain\" idmapd.conf setting.": "如果设置,则该值将用于覆盖 NFSv4 的默认 DNS 域名。指定 \"Domain\" idmapd.conf 设置。", - "If you can't use QR code, use this text code instead": "如果您无法使用二维码,请使用此文本代码。", - "Ignore Builtin": "忽略内置功能", - "Ignore List": "忽略列表", - "Image": "图像", - "Implementation Domain": "实现域", - "Implementation Name": "实现名称", - "Import Config": "导入配置", - "Import Configuration": "导入配置", - "Import File": "导入文件", - "Improvement": "改进", - "Include Dataset Properties": "包含数据集属性", - "Include everything": "包括所有内容", - "Include from subfolder": "包含子文件夹", - "Include or exclude files and directories from the backup.": "从备份中包含或排除文件和目录。", - "Include/Exclude": "包含/排除", - "Included Paths": "包含的路径", - "Incoming / Outgoing network traffic": "进出网络流量", - "Incoming [{networkInterfaceName}]": "入站 [{networkInterfaceName}]", - "Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "在 /var/log/middlewared.log 中增加与活动目录服务相关的日志详细程度。", - "Inherit encryption properties from parent": "从父级继承加密属性", - "Inherit from DHCP": "使用 DHCP", - "Inherited Quotas": "继承配额", - "Init/Shutdown Script": "开机/关机脚本", - "Initialized": "已初始化", - "Initializing...": "初始化中...", - "Install Another Instance": "安装另一个实例", - "Install NVIDIA Drivers": "安装 NVIDIA 驱动程序", - "Install via YAML": "通过YAML进行安装", - "Instance Configuration": "实例配置", - "Instance saved": "实例已保存", - "Integrate Snapshots with VMware": "VMware 集成快照", - "Internal": "内部", - "Invalid CPU configuration.": "无效 CPU 配置", - "Invalid Date": "无效日期", - "Invalid pool name (please refer to the documentation for valid rules for pool name)": "无效的池名称(请参阅文档以获取有效的池名称规则)", - "Ipmi": "IPMI(智能平台管理接口)", - "Isolated GPU Devices Settings": "隔离 GPU 设备设置", - "Issue": "问题", - "JBOF": "JBOF", - "Jira": "Jira", - "Job": "任务", - "Job aborted": "任务已中止", - "Jobs History": "任务历史", - "Jobs in progress": "进行中的任务", - "Joining": "加入", - "Keep Last": "保留最后一次", - "Kerberos Keytabs": "Kerberos 密钥表", - "Kerberos Principal": "Kerberos 主体", - "Kernel Parameters": "内核参数", - "Kernel Settings": "内核设置", - "Key Usage Config": "密钥使用配置", - "Key not set": "密钥未设置", - "Key set": "键集", - "Keyhash": "密钥哈希", - "Keypairs": "密钥对", - "LACPDU Rate": "LACPDU 速率", - "LBA of First Error": "首个错误的逻辑块地址 (LBA)", - "LDAP Domain": "LDAP 域", - "LDAP Realm": "LDAP 领域", - "LDAP Server": "LDAP 服务器", - "LDAP Timeout": "LDAP 超时", - "LDAP User DN": "LDAP 用户 DN", - "LDAP User DN Password": "LDAP 用户 DN 密码", - "LDAP configuration updated": "LDAP 配置已更新", - "LDAP is disabled.": "LDAP 已禁用。", - "LINK STATE DOWN": "链路离线", - "LINK STATE UNKNOWN": "链接状态未知", - "LINK STATE UP": "链路在线", - "Label": "标签", - "Lan": "局域网", - "Languages other than English are provided by the community and may be incomplete. Learn how to contribute.": "除了英语以外的语言由社区提供,可能不完整。了解如何贡献。", - "Last Page": "最后一页", - "Last Resilver": "最后一致性重建", - "Last Scan": "最后扫描", - "Last Scrub Date": "上次巡检时间", - "Last Scrub Run": "上次巡检", - "Last successful": "上次成功", - "Last {result} Test": "最后 {result} 测试", - "Latest version": "最新版本", - "Layout": "布局", - "Leaving": "离开", - "Legacy OS: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "传统操作系统:数据区块大小 512 字节,启用 TPC,无 Xen 兼容模式,SSD 速度", - "Legacy feature.

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

    MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "传统功能。

    权限与访客帐户相同。Windows 10 版本 1709 和 Windows Server 版本 1903 默认禁用访客访问。需要额外的客户端配置才能为这些客户端提供访客访问。

    MacOS 客户端:尝试以在 TrueNAS 中不存在的用户身份连接并不会自动以访客帐户连接。必须在 MacOS 中明确选择作为连接:访客选项以以访客帐户登录。有关更多详细信息,请参见苹果文档。", - "License Update": "许可证更新", - "Licensed Serials": "授权序列号", - "Light status is unknown.": "灯光状态未知。", - "Limit": "限制", - "Limit Pool To A Single Enclosure": "将池限制到单个机箱", - "Limit To {name} Enclosure": "限制到 {name} 机箱", - "Link Aggregation Interfaces": "链路聚合接口", - "Link Aggregation Protocol": "链路聚合协议", - "Linked Service": "链接服务", - "Local Groups Name": "本地组名称", - "Local Master": "本地主控器", - "Local User Download Bandwidth": "本地用户下载带宽", - "Log In": "登录", - "Log in to Gmail to set up Oauth credentials.": "设置 Oauth 凭据来登录 Gmail。", - "Logging in...": "登录中...", - "Login Banner": "登录横幅", - "Login was canceled. Please try again if you want to connect your account.": "登录已取消。如果您想连接您的账户,请重试。", - "Logoff": "注销", - "Logs Details": "日志详情", - "Low Capacity": "低容量", - "MAC Address": "MAC地址", - "MOTD": "MOTD", - "Machine": "机器", - "Machine Time: {machineTime} \n Browser Time: {browserTime}": "机器时间: {machineTime} \n 浏览器时间: {browserTime}", - "Mail Server Port": "邮件服务器端口", - "Main menu": "主菜单", - "Maintenance Window": "维护窗口", - "Makes the group available for permissions editors over SMB protocol (and the share ACL editor). It is not used for SMB authentication or determining the user session token or internal permissions checks.": "使该组在SMB协议(及共享ACL编辑器)上可供权限编辑器使用。它不用于SMB身份验证或确定用户会话令牌或内部权限检查。", - "Manage Advanced Settings": "管理高级设置", - "Manage Apps Settings": "管理应用设置", - "Manage Groups Server-side": "管理服务器的组", - "Manage NFS Shares": "管理 NFS 共享", - "Manage S.M.A.R.T. Tasks": "管理 S.M.A.R.T. 任务", - "Manage SMB Shares": "管理 SMB 共享", - "Manage Snapshots Tasks": "管理快照任务", - "Manage VM Settings": "管理虚拟机设置", - "Manage iSCSI Shares": "管理 iSCSI 共享", - "Manage members of {name} group": "管理 {name} 组的成员", - "Managed by TrueCommand": "由 TrueCommand 管理", - "Manual Test": "手动测试", - "Manual Upgrade": "手动升级", - "Mapall Group": "映射组", - "Mapall User": "映射用户", - "Maproot Group": "映射 root 组", - "Maproot User": "映射 root 用户", - "Masquerade Address": "伪装地址", - "Maximize Dispersal": "最大分散", - "Maximize Enclosure Dispersal": "最大机箱分散", - "Maximum Passive Port": "被动端口(高位)", - "Memory Stats": "内存状态", - "Memory Utilization": "内存利用率", - "Memory usage of app": "App 的内存使用情况", - "Metadata (Special) Small Block Size": "元数据(特殊)小块大小", - "Metrics": "指标", - "Minimum Passive Port": "被动端口(低位)", - "Mixed Capacity": "多种容量", - "Mixing disks of different sizes in a vdev is not recommended.": "在 vdev 中混合不同大小的磁盘是不建议的。", - "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "现代操作系统:扩展块大小 4k,启用 TPC,无 Xen 兼容模式,SSD 速度", - "More info...": "更多信息...", - "Move all items to the left side list": "移动所有项目到左侧列表", - "Move all items to the right side list": "移动所有项目到右侧列表", - "Move selected items to the left side list": "将选定的项目移动到左侧列表", - "Move selected items to the right side list": "将选定的项目移动到右侧列表", - "Move widget down": "向下移动小部件", - "Move widget up": "向上移动小部件", - "Multichannel": "多通道", - "Multiple Errors": "多个错误", - "Must be part of the pool to check errors.": "必须是池的一部分才能检查错误。", - "NFS Share": "NFS 共享", - "NFS3 Session": "NFS3 会话", - "NFS4 Session": "NFS4 会话", - "NIC To Attach": "要附加的网卡(NIC)", - "NS": "NS", - "NTP Server": "时间同步服务器(NTP)", - "NVMe-oF Expansion Shelves": "NVMe-oF 扩展机架", - "Name ^ \"Local\" AND \"Web Shell Access\" = true": "名称 ^ \"本地\" AND \"网络shell访问\" = true", - "Name must start and end with a lowercase alphanumeric character. Hyphen is allowed in the middle e.g abc123, abc, abcd-1232": "名称必须以小写字母和数字字符开头和结束。中间允许有短横线,例如 abc123、abc、abcd-1232。", - "Name ~ \"admin\"": "名称 ~ \"admin\"", - "Nameserver": "域名服务器", - "Nameservers": "域名服务器", - "Negotiate – only encrypt transport if explicitly requested by the SMB client": "协商 - 仅在SMB客户端明确请求时加密传输", - "Netcat Active Side": "Netcat 活动侧", - "Netcat Active Side Connect Address": "Netcat 主动侧连接地址", - "Netcat Active Side Listen Address": "Netcat 主动侧监听地址", - "Netcat Active Side Max Port": "Netcat 活动端最大端口", - "Netcat Active Side Min Port": "Netcat 活动端最小端口", - "Netdata": "Netdata", - "Network Configuration": "网络配置", - "Network I/O": "网络 I/O", - "Network Interface Card": "网卡", - "Network Reconnection Issue": "网络重连问题", - "Network Reset": "网络重置", - "Network Settings": "网络设置", - "Network Stats": "网络统计", - "Network Traffic": "网络流量", - "Network Usage": "网络使用情况", - "Network Utilization": "网络利用率", - "Network interface {interface} not found.": "未找到网络接口 {interface}。", - "Network interfaces do not match between storage controllers.": "存储控制器之间的网络接口不匹配。", - "Network size of each docker network which will be cut off from base subnet.": "每个 Docker 网络的网络大小,将从基础子网中分配。", - "New ACME DNS-Authenticator": "新的 ACME DNS 验证器", - "New Alert": "新警报", - "New Backup Credential": "新的备份凭据", - "New Bucket Name": "新存储桶名称", - "New CSR": "新的CSR", - "New Certificate": "新证书", - "New Certificate Authority": "新的证书授权机构", - "New Certificate Signing Requests": "新的证书签名请求", - "New Cloud Backup": "新的云备份", - "New Cloud Sync Task": "新的云同步任务", - "New Could Credential": "新可以凭证", - "New Credential": "新凭据", - "New Cron Job": "新的定时任务", - "New DNS Authenticator": "新的DNS身份验证器", - "New Dataset": "新数据集", - "New Disk Test": "新磁盘测试", - "New Exporter": "新导出器", - "New Group": "新建组", - "New Idmap": "新 Idmap", - "New Init/Shutdown Script": "新的开机/关机脚本", - "New Interface": "新接口", - "New Kerberos Keytab": "新的 Kerberos 密钥表", - "New Kerberos Realm": "新 Kerberos 域", - "New Kernel Parameters": "新内核参数", - "New Key": "新密钥", - "New NFS Share": "新的 NFS 共享", - "New NTP Server": "新 NTP 服务器", - "New Periodic S.M.A.R.T. Test": "新的定期 S.M.A.R.T. 测试", - "New Periodic Snapshot Task": "新的周期性快照任务", - "New Replication Task": "新复制任务", - "New Reporting Exporter": "新的报告导出器", - "New Rsync Task": "新建 Rsync 任务", - "New SMB Share": "新的 SMB 共享", - "New SSH Keypair": "新的 SSH 密钥对", - "New Scrub Task": "新数据巡检任务", - "New Share": "新共享", - "New Smart Test": "新 S.M.A.R.T. 测试", - "New Snapshot Task": "新快照任务", - "New Static Route": "新静态路由", - "New Sysctl": "新 Sysctl", - "New TrueCloud Backup Task": "新的 TrueCloud 备份任务", - "New Tunable": "新的可调参数", - "New User": "新用户", - "New VM": "新虚拟机", - "New Virtual Machine": "新虚拟机", - "New Widget": "新小部件", - "New Zvol": "新建 Zvol", - "New iSCSI": "新的 iSCSI", - "New password": "新密码", - "New widgets and layouts.": "新的小部件和布局。", - "Newsletter": "通讯简报", - "Next Page": "下一页", - "No Changelog": "无更新日志", - "No Enclosure Dispersal Strategy": "无机箱分散策略", - "No VDEVs added.": "未新增任何 VDEV。", - "No available licensed Expansion Shelves ": "没有已授权的扩展机箱", - "No containers are available.": "没有可用的容器。", - "No disks available.": "没有可用的磁盘。", - "No enclosure": "无机箱", - "No images found": "未找到图片", - "No items have been added yet.": "尚未新增任何项目。", - "No jobs running.": "没有正在运行的任务。", - "No logs available": "没有可用的日志", - "No logs yet": "尚无日志", - "No options": "没有选项", - "No options are passed": "没有传递任何选项", - "No results found in {section}": "在 {section} 中未找到结果。", - "No similar apps found.": "未找到类似的应用程序。", - "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "系统未报告任何温度数据。出现这种情况可能有多种原因。", - "No unused disks": "没有未使用的磁盘", - "No update found.": "未找到更新。", - "No vdev info for this disk": "没有这块磁盘的 vdev 信息。", - "No volume mounts": "没有卷挂载", - "None requested": "没有请求。", - "Not Shared": "未共享", - "Notes": "注释", - "Now/Restart": "当前/下次启动", - "OS": "操作系统", - "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.": "一旦选择了机箱,所有其他 VDEV 创建步骤将限制磁盘选择选项为所选机箱中的磁盘。如果更改了机箱选择,所有磁盘选择将被重置。", - "One half widget and two quarter widgets below": "一个半小部件和两个四分之一小部件在下面", - "One large widget": "一个大型小组件", - "One-Time Password (if necessary)": "一次性密码(如果有必要)", - "Only Replicate Snapshots Matching Schedule": "仅复制与计划匹配的快照", - "Only disks that are at least {size} are shown.": "只有大小至少为 {size} 的磁盘会被显示。", - "Only first {number} examples are shown.": "仅显示前 {number} 个示例。", - "Only image(s) will be updated": "仅会更新镜像。", - "OpenStack Swift": "OpenStack Swift", - "Opened at": "打开于", - "Operation": "操作", - "Operation will change permissions on path: {path}": "操作将更改路径上的权限:{path}", - "Optional IP": "可选 IP", - "Optional IP of 2nd Redfish management interface.": "第二个 Redfish 管理接口的可选 IP。", - "Options cannot be loaded": "无法加载选项", - "Other Devices": "其他设备", - "Other Execute": "其他执行", - "Other Read": "其他读取", - "Other Write": "其他写入", - "Other node is currently configuring the system dataset.": "另一个节点正在配置系统数据集。", - "Outbound Network:": "出站网络:", - "Outgoing Mail Server": "外发邮件服务器", - "Outgoing [{networkInterfaceName}]": "出站 [{networkInterfaceName}]", - "Override Admin Email": "覆盖管理员邮箱", - "Owner Group": "所有者组", - "Parent": "父级", - "Parent Interface": "父接口", - "Parent Path": "父路径", - "Pattern": "模式", - "Pause Scrub": "暂停数据巡检", - "Pending Sync": "待同步", - "Percentage of total core utilization": "总核心利用率的百分比", - "Percentage used of dataset quota at which to generate a critical alert.": "生成报错的数据集配额使用百分比。", - "Percentage used of dataset quota at which to generate a warning alert.": "生成警告的数据集配额使用百分比。", - "Perform Reverse DNS Lookups": "执行 rDNS 查找", - "Performance Optimization": "性能优化", - "Permissions Advanced": "高级权限", - "Permissions Basic": "基础权限", - "Permissions Editor": "权限编辑器", - "Permissions cannot be modified on a locked dataset.": "在锁定的数据集中无法修改权限。", - "Permissions cannot be modified on a read-only dataset.": "在只读数据集上无法修改权限。", - "Permissions cannot be modified on a root dataset.": "根数据集上的权限无法修改。", - "Permissions saved.": "权限已保存。", - "Photo Library API client secret generated from the Google API Console": "从 Google API 控制台 生成的照片库 API 客户端 secret", - "Please describe:\n1. Steps to reproduce\n2. Expected Result\n3. Actual Result\n\nPlease use English for your report.": "请描述:\n1. 重现步骤\n2. 预期结果\n3. 实际结果\n\n请使用英语撰写您的报告。", - "Please specify whether to install NVIDIA driver or not.": "请选择是否安装 NVIDIA 驱动程序。", - "Pool Usage": "池使用情况", - "Pool Wizard": "池向导", - "Pool does not exist": "池不存在", - "Pool imported successfully.": "池导入成功。", - "Pool is not selected": "未选择池", - "Pool {name} is {status}.": "池 {name} 的状态是 {status}。", - "Pool «{pool}» has been exported/disconnected successfully.": "池 «{pool}» 已成功导出/断开连接。", - "Pools:": "池:", - "Post Script": "运行后脚本", - "Power Menu": "电源菜单", - "Power On Hours Ago": "累计上电时间", - "Power Outage": "停电", - "Power Supply": "电源供应", - "Pre Script": "运行前脚本", - "Preset": "预设", - "Previous Page": "前一页", - "Priority Code Point": "优先级代码点", - "Privacy Passphrase": "隐私密码短语", - "Privacy Protocol": "隐私协议", - "Privilege": "特权", - "Processor": "处理器", - "Product": "产品", - "Product ID": "产品编号", - "Promote": "推广", - "Prompt": "提示", - "Properties Exclude": "排除属性", - "Properties Override": "覆盖属性", - "Provisioning Type": "配置类型", - "Proxy": "代理", - "Quotas set for {n, plural, one {# group} other {# groups}}": "为 {n} 个组设置的配额", - "Quotas set for {n, plural, one {# user} other {# users}}": "为 {n} 个用户设置配额", - "Range Size": "大小范围", - "Raw Filesize": "原始文件大小", - "Re-Open": "重新打开", - "Re-Open All Alerts": "重新打开所有警报", - "Read Only": "只读", - "Rear": "后面", - "Reason": "原因", - "Reboot of the other node is required for FIPS changes.": "需要重新启动另一个节点以应用FIPS更改。", - "Reboot of this node is required for FIPS changes.": "此节点需要重启以应用FIPS更改。", - "Received: {received}/s Sent: {sent}/s": "接收: {received}/s 发送: {sent}/s", - "Recent Searches": "最近搜索记录", - "Record Size": "记录大小", - "Redfish administrative password.": "Redfish 管理密码。", - "Redfish administrative username.": "Redfish 管理用户名。", - "Refresh Catalog": "刷新目录", - "Regularly scheduled system checks and updates.": "定期进行系统检查和更新。", - "Reject": "拒绝", - "Release": "发布", - "Release Notes": "发布说明", - "Remote Host Key": "远程主机密钥", - "Remove file": "删除文件", - "Remove file?": "删除文件吗?", - "Remove iXVolumes": "删除 iXVolumes", - "Remove preset": "移除预设", - "Remove this error to try again": "消除此错误以重试", - "Remove {label} item": "删除 {label} 项目", - "Remove {value} from recent searches": "从最近的搜索中移除 {value}", - "Renew Certificate Days Before Expiry": "在到期前续订证书的天数", - "Replication Settings": "复制设置", - "Replication Task": "复制任务", - "Replication Task Manager": "复制任务管理器", - "Report Bug": "报告错误", - "Reporting Exporter": "报告导出器", - "Require IDENT Authentication": "需要 IDENT 认证", - "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)": "要求 - 始终加密传输(如果客户端不支持加密,则拒绝访问 - 与 SMB1 服务器不兼容)", - "Reserved for Dataset": "保留用于数据集", - "Reserved for Dataset & Children": "保留给数据集及其子项", - "Reset Default Config": "重置默认配置", - "Reset Defaults": "重置为默认设置", - "Reset Zoom": "重置缩放", - "Reset password": "重置密码", - "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?": "建议重启以使新的 FIPS 设置生效。您现在想要重启吗?", - "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?": "需要重新启动远程系统以使新的 FIPS 设置生效。您是否想立即重启备用系统?", - "Restart standby TrueNAS controller": "重启备用的 TrueNAS 控制器", - "Restart to improve system performance speed.": "重新启动以提高系统性能速度。", - "Restart to re-establish network connections.": "重启以重新建立网络连接。", - "Restarting Standby": "重启备用机", - "Restore Config": "恢复配置", - "Restore Config Defaults": "恢复配置默认值", - "Restore Default": "恢复默认设置", - "Restore Default Config": "恢复默认配置", - "Restore Default Configuration": "恢复默认配置", - "Restore Defaults": "恢复默认设置", - "Restore default set of widgets": "恢复默认的小部件设置", - "Restore default widgets": "恢复默认小部件", - "Restore from Snapshot": "从快照恢复", - "Restores files to the selected directory.": "将文件恢复到选定目录。", - "Restoring backup": "恢复备份", - "Restrict PAM": "限制 PAM", - "Resume Scrub": "恢复数据巡检", - "Retry": "重试", - "Review": "评审", - "Root TCP Socket": "根 TCP 套接字", - "Routing": "路由", - "Rsync Task": "Rsync 任务", - "Rsync Task Manager": "Rsync 任务管理器", - "Rsync to another server": "将数据同步到另一台服务器", - "Run As Context": "以上下文身份运行", - "Run «{name}» Cloud Backup now?": "现在运行 «{name}» 云备份吗?", - "Running Jobs": "运行任务", - "S.M.A.R.T. Options": "S.M.A.R.T. 选项", - "S.M.A.R.T. Tasks": "S.M.A.R.T. 任务", - "SAS Connector": "SAS 连接器", - "SAS Expander": "SAS 扩展器", - "SED User": "SED 用户", - "SFTP Log Facility": "SFTP 日志设施", - "SFTP Log Level": "SFTP 日志级别", - "SID": "SID ", - "SMB Group": "SMB 组", - "SMB Lock": "SMB 锁", - "SMB Locks": "SMB 锁", - "SMB Name": "SMB 名称", - "SMB Notification": "SMB 通知", - "SMB Notifications": "SMB 通知", - "SMB Open File": "SMB 打开文件", - "SMB Session": "SMB 会话", - "SMB Sessions": "SMB 会话", - "SMB Share": "SMB 共享", - "SMB Shares": "SMB 共享", - "SMB User": "SMB 用户", - "SMTP": "SMTP", - "SMTP Authentication": "SMTP 身份验证", - "SSH Key": "SSH 密钥", - "SSH Key Pair": "SSH 密钥对", - "SSH Keyscan": "SSH 密钥扫描", - "SSL Certificate": "SSL 证书", - "SSL Protocols": "SSL 协议", - "SSL Web Interface Port": "SSL Web 接口端口", - "SSSD Compat": "SSSD 兼容性", - "Samba": "Samba", - "Save Access Control List": "保存 ACL", - "Save Config": "保存配置", - "Save Instance": "保存实例", - "Save the 'Require Kerberos for NFSv4' value before adding SMP": "在新增 SMP 之前,请保存 '需要 Kerberos 用于 NFSv4' 的值。", - "Saving Instance": "保存实例", - "Saving settings": "保存设置", - "Schema": "模式", - "Schema Mode": "模式模式", - "Screenshots": "屏幕截图", - "Scroll to top": "返回顶部", - "Scrub Task": "数据巡检任务", - "Scrub interval (in days)": "数据巡检间隔(天数)", - "Search Documentation for «{value}»": "搜索有关«{value}»的文档", - "Search Images": "搜索图片", - "Search Input Fields": "搜索输入字段", - "Search Results for «{query}»": "搜索结果 «{query}»", - "Search UI": "搜索用户界面", - "Secret Authentication Key": "秘密认证密钥", - "Secret Encryption Key": "秘密加密密钥", - "Section Help": "章节帮助", - "Security": "安全性", - "Select": "选择", - "Select All": "选择所有", - "Select Existing Zvol": "选择现有的 Zvol", - "Select Image": "选择图像", - "Select Rating": "选择评级", - "Select Reporting": "选择报告", - "Select VDEV layout. This is the first step in setting up your VDEVs.": "选择 VDEV 布局。这是设置您的 VDEV 的第一步。", - "Select a schedule preset or choose Custom to setup custom schedule.": "选择一个预设的计划或选择自定义来设置自定义计划。", - "Select a schema when LDAP NSS schema is set.": "在设置 LDAP NSS 模式时选择一个模式。", - "Select a screen resolution to use for SPICE sessions.": "选择用于 SPICE 会话的屏幕分辨率。", - "Select a subfolder from which to restore content.": "选择一个子文件夹以恢复内容。", - "Select action": "选择操作", - "Select an IP address to use for SPICE sessions.": "选择一个 IP 地址用于 SPICE 会话。", - "Select an IP address to use for remote SPICE sessions. Note: this setting only applies if you are using a SPICE client other than the TrueNAS WebUI.": "选择一个 IP 地址用于远程 SPICE 会话。注意:此设置仅在您使用非 TrueNAS WebUI 的 SPICE 客户端时适用。", - "Select disks you want to use": "选择您想要使用的磁盘", - "Select files and directories to exclude from the backup.": "选择要从备份中排除的文件和目录。", - "Select files and directories to include from the backup. Leave empty to include everything.": "选择要从备份中包含的文件和目录。留空以包含所有内容。", - "Select images you want attach to review": "选择您想要附加到审查的图像。", - "Select paths to exclude": "选择要排除的路径", - "Select the bucket to store the backup data.": "选择存储备份数据的桶。", - "Select the directories or files to be sent to the cloud for backup.": "选择要发送到云端进行备份的目录或文件。", - "Select the folder to store the backup data.": "选择存储备份数据的文件夹。", - "Select the level of severity. Alert notifications send for all warnings matching and above the selected level. For example, a warning level set to Critical triggers notifications for Critical, Alert, and Emergency level warnings.": "选择严重性级别。对于所有与所选级别匹配及以上的警告,将发送警报通知。例如,设置为“严重”级别的警告将触发“严重”、“警报”和“紧急”级别警告的通知。", - "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "选择以启用。从同一数据集中删除的文件会移动到该数据集中的回收站,并且不会占用额外空间。回收站仅用于通过SMB协议访问。文件会被重命名到.recycle目录中的每个用户子目录,位于(1)SMB共享的根目录(如果路径与SMB共享是同一数据集)或(2)当前数据集的根目录(如果我们有嵌套的数据集)。由于(2),不会根据文件大小自动删除。", - "Selected": "已选择", - "Selected train does not have production releases, and should only be used for testing.": "所选的分支没有生产发布,应该仅用于测试。", - "Self-Encrypting Drive Settings": "自加密驱动器设置", - "Send Method": "发送方法", - "Send Test Email": "发送测试邮件", - "Serial Shell": "串行 Shell", - "Serial – Active": "活动序列号", - "Serial – Passive": "备用序列号", - "Server error: {error}": "服务器错误:{error}", - "Service = \"SMB\" AND Event = \"CLOSE\"": "服务 = \"SMB\" AND 事件 = \"关闭\"", - "Service Announcement:": "", - "Service Name": "服务名称", - "Service started": "服务已启动", - "Service status": "服务状态", - "Service stopped": "服务已停止", - "Session Token Lifetime": "会话令牌生命周期", - "Session dialect": "会话方言", - "Set Frequency": "设置频率", - "Set Warning Level": "设置警告级别", - "Set email": "设置电子邮件", - "Set new password": "设置新密码", - "Set password for TrueNAS administrative user:": "为 TrueNAS 管理用户设置密码:", - "Set to boot a debug kernel after the next system restart.": "设置在下次系统重启后启动调试内核。", - "Set to enable Samba to do DNS updates when joining a domain.": "设置以启用 Samba 在加入域时进行 DNS 更新。", - "Set to enable connecting to the SPICE web interface.": "设置以启用连接到 SPICE web 界面。", - "Set to include child datasets and zvols of the chosen dataset.": "设置为包含所选数据集的子数据集和 zvol。", - "Set to restrict SSH access in certain circumstances to only members of BUILTIN\\Administrators": "在某些情况下,将SSH访问限制为仅限BUILTIN\\Administrators组的成员。", - "Settings Menu": "设置菜单", - "Setup Cron Job": "设置定时任务", - "Setup Method": "设置方法", - "Setup Pool To Install": "设置池以进行安装", - "Share Attached": "共享附件", - "Sharing": "共享", - "Shell Commands": "Shell 命令", - "Show All": "显示全部", - "Show Expander Status": "显示扩展器状态", - "Show Ipmi Events": "显示 IPMI 事件", - "Show Logs": "显示日志", - "Show Password": "显示密码", - "Show Pools": "显示存储池", - "Show Status": "显示状态", - "Show extra columns": "显示额外列", - "Sign Out": "注销", - "Signed By": "签名者", - "Signed Certificates": "签名证书", - "Site Name": "站点名称", - "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "在存储审计数据库的 ZFS 数据集上设置的 refreservation 大小(以 GiB 为单位)。refreservation 指定了保证给该数据集的最小空间量,并计入存储审计数据集所在的 zpool 中其他数据集可用空间的计算。", - "Slot {number} is empty.": "插槽 {number} 是空的。", - "Slot {n}": "插槽 {n}", - "Smart": "S.M.A.R.T.", - "Smart Task": "S.M.A.R.T. 任务", - "Smart Test Result": "S.M.A.R.T. 测试结果", - "Smart Tests": "S.M.A.R.T. 测试", - "Snapshot Directory": "快照目录", - "Snapshot Manager": "快照管理器", - "Snapshot Task": "快照任务", - "Snapshot Task Manager": "快照任务管理器", - "Snapshot Time": "快照时间", - "Snapshot Time {time}": "快照时间 {time}", - "Software Installation": "软件安装", - "Some of the disks are attached to the exported pools\n mentioned in this list. Checking a pool name means you want to\n allow reallocation of the disks attached to that pool.": "某些磁盘连接到此列表中提到的导出池。检查池名称意味着您希望允许重新分配连接到该池的磁盘。", - "Sort": "排序", - "Source Path": "源路径", - "Space Available to Dataset": "数据集可用空间", - "Space Available to Zvol": "Zvol 可用空间", - "Spares": "备件", - "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.": "指定身份验证和加密保护的级别。如果没有 KDC 可用,应使用 SYS 或 none。如果有 KDC 可用,例如 Active Directory,建议使用 KRB5。如果需要,可以在 KRB5 中包括 KRB5I(完整性保护)和/或 KRB5P(隐私保护)。", - "Specify custom": "指定自定义", - "Specify number of threads manually": "手动指定线程数", - "Split": "划分", - "Standby: TrueNAS Controller {id}": "待机:TrueNAS 控制器 {id}", - "Start All Selected": "启动所有选定项", - "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "开始新增小部件以个性化它。点击“配置”按钮以进入编辑模式。", - "Start service": "启动服务", - "Static Route": "静态路由", - "Static Routing": "静态路由", - "Step Back": "步骤回退", - "Step Forward": "向前迈进", - "Stop All Selected": "停止所有选定的项", - "Stop Flashing": "停止闪烁", - "Stop service": "停止服务", - "Storj iX": "Storj iX", - "Stream Compression": "流压缩", - "String of additional smb4.conf parameters not covered by the system's API.": "与系统 API 不涵盖的额外 smb4.conf 参数的字符串。", - "Strip ACL": "剥离 ACL", - "Subfolder": "子文件夹", - "Subject Alternative Name": "主题备用名称", - "Sudo": "Sudo", - "Support License": "支持许可证", - "Switch To Advanced": "切换到高级模式", - "Switch To Wizard": "切换到向导", - "Synced": "同步完成", - "Syslog Settings": "系统日志设置", - "Syslog TLS Certificate": "Syslog TLS 证书", - "Syslog TLS Certificate Authority": "Syslog TLS 证书颁发机构", - "System Data Pool": "系统数据池", - "System Dataset": "系统数据集", - "System Freeze": "系统冻结", - "System Image": "系统映像", - "System Information – Active": "系统信息 – 活动", - "System Information – Standby": "系统信息 - 待机", - "System Overload": "系统过载", - "System Reports": "系统报告", - "System Security Settings": "系统安全设置", - "System Serial": "系统序列号", - "System Stats": "系统统计", - "System Update": "系统更新", - "System Uptime": "系统运行时间", - "System Utilization": "系统利用率", - "System Version": "系统版本", - "TLS Allow Client Renegotiations": "允许客户端重新协商 TLS", - "TLS Allow Dot Login": "TLS 允许点登录", - "TLS Allow Per User": "TLS 允许每个用户单独设置", - "TLS Common Name Required": "TLS 公共名称必需", - "TLS DNS Name Required": "TLS DNS 名称必需", - "TLS Enable Diagnostics": "TLS 启用诊断", - "TLS Export Certificate Data": "TLS 导出证书数据", - "TLS Export Standard Vars": "TLS 导出标准变量", - "TLS IP Address Required": "需要 TLS IP 地址", - "TLS No Empty Fragments": "TLS 不允许空片段", - "TLS No Session Reuse Required": "TLS 不需要会话重用", - "TLS Policy": "TLS 策略", - "Table Actions of Expandable Table": "可扩展表的表操作", - "Target Stats": "目标统计信息", - "Target Utilization": "目标利用率", - "Task": "任务", - "Task Details for {task}": "{task} 的任务详情", - "Task Settings": "任务设置", - "Tasks": "任务", - "Temperature Sensors": "温度传感器", - "Temperature data missing.": "温度数据缺失。", - "Tenant Domain": "租户域", - "Terminal": "终端", - "Terminate Other User Sessions": "终止其他用户会话", - "Test": "测试", - "The expanded vdev uses the pre-expanded parity ratio, which reduces the total vdev capacity. To reset the vdev parity ratio and fully use the new capacity, manually rewrite all data in the vdev. This process takes time and is irreversible.": "扩展的 vdev 使用扩展前的奇偶校验比率,这会减少总的虚拟设备容量。要重置虚拟设备的奇偶校验比率并完全利用新容量,请手动重写虚拟设备中的所有数据。此过程需要时间,并且不可逆。", - "The following issues were already reported.": "以下问题已被报告。", - "The following { n, plural, one {boot environment} other {# boot environments} } will be deleted. Are you sure you want to proceed?": "以下 {n} 个启动环境将被删除。您确定要继续吗?", - "The following { n, plural, one {docker image} other {# docker images} } will be deleted. Are you sure you want to proceed?": "以下 {n} 个docker 镜像将被删除。您确定要继续吗?", - "The following { n, plural, one {snapshot} other {# snapshots} } will be deleted. Are you sure you want to proceed?": "以下将被删除 {n} 个快照。您确定要继续吗?", - "The length of the field should be at least {minLength}": "该字段的长度应至少为 {minLength}", - "The length of the field should be no more than {maxLength}": "该字段的长度应不超过 {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:": "这些磁盘不支持 S.M.A.R.T. 测试:", - "These running processes are using {datasetName}:": "这些正在运行的进程正在使用 {datasetName}:", - "These running processes are using {name}:": "这些正在运行的进程正在使用 {name}:", - "These services depend on dataset {name} and will be destroyed if the dataset is deleted:": "这些服务依赖于数据集 {name},如果数据集被删除,这些服务将被销毁:", - "These services depend on pool {name} and will be disrupted if the pool is detached:": "这些服务依赖于池 {name},如果池被分离将会受到影响:", - "These unknown processes are using the pool:": "这些未知的进程正在使用池:", - "Thick": "厚制备", - "This action will set all dataset quotas for the removed or invalid groups to 0, virtually removing any dataset quota entires for such groups. Are you sure you want to proceed?": "此操作将把已移除或无效组的所有数据集配额设置为0,从而实际上移除这些组的任何数据集配额条目。您确定要继续吗?", - "This action will set all dataset quotas for the removed or invalid users to 0, virtually removing any dataset quota entires for such users. Are you sure you want to proceed?": "此操作将把已移除或无效用户的所有数据集配额设置为0,实际上会移除该用户的任何数据集配额条目。您确定要继续吗?", - "This dataset has children with shares": "该数据集包含具有共享的子项。", - "This dataset is used by the system": "该数据集由系统使用。", - "This dataset is used by: {apps}": "此数据集由以下应用程序使用:{apps}", - "This dataset is used by: {vms}": "此数据集由以下虚拟机使用:{vms}", - "This dataset is used to store apps config and other container related data": "该数据集用于存储应用配置和其他与容器相关的数据。", - "This disk is part of the exported pool {pool}. Wiping this disk will make {pool} unable\n to import. You will lose any and all data in {pool}. Please make sure that any sensitive data in {pool} is backed up before wiping this disk.": "此磁盘是导出池 {pool} 的一部分。擦除此磁盘将使 {pool} 无法导入。您将丢失 {pool} 中的所有数据。在擦除此磁盘之前,请确保 {pool} 中的任何敏感数据已备份。", - "This is a production system": "这是一个生产系统。", - "This node is currently configuring the system dataset.": "该节点正在配置系统数据集。", - "This option ensures data consistency by creating a snapshot at the start of the backup or synchronization task. The process involves the following steps:

    1. Snapshot Creation: A snapshot of the current state is taken at the moment the task is initiated.

    2. Backup/Sync Operation: The task utilizes the snapshot contents to perform the backup or synchronization, ensuring that the data remains consistent and unchanged during the operation.

    3. Snapshot Removal: Once the task is completed, the snapshot is automatically removed to save storage space.

    This mechanism guarantees that the backup or synchronization task captures an exact state of your data at the start, even if changes occur during the process.": "此选项通过在备份或同步任务开始时创建快照来确保数据一致性。该过程涉及以下步骤:

    1. 快照创建:任务启动时对当前状态进行快照。

    2. 备份/同步操作:任务利用快照内容进行备份或同步,确保在操作过程中数据保持一致且不变。

    3. 快照移除:任务完成后,快照会自动移除以节省存储空间。

    该机制确保备份或同步任务在开始时捕获数据的确切状态,即使在过程中发生更改。", - "This system is not licensed for HA.": "该系统没有获得高可用性 HA 的许可。", - "This view is not available for this enclosure.": "该视图对该外 enclosure 不可用。", - "Ticket": "票据", - "Time": "时间", - "Time Server": "时间服务器", - "To enable disable Active Directory first.": "首先启用或禁用 Active Directory。", - "To enable disable LDAP first.": "首先禁用 LDAP。", - "Toggle Sidenav": "切换侧边栏", - "Toggle off to defer interface learning until runtime, preventing premature state transitions and potential issues during system startup.": "关闭此选项以推迟接口学习,直到运行时,从而防止过早的状态转换和在系统启动期间可能出现的问题。", - "Tolerance Window": "容忍窗口", - "Toolbar": "工具栏", - "Top": "顶部", - "Top bar": "顶部栏", - "Total": "总计", - "Total Disks": "总磁盘数量", - "Total Disks:": "总磁盘数:", - "Total failed": "总失败", - "Traffic": "流量", - "Translate App": "翻译应用", - "Transmit Hash Policy": "传输哈希策略", - "Transport Encryption Behavior": "传输加密行为", - "Troubleshooting Issues": "故障排除问题", - "TrueCloud Backup Tasks": "TrueCloud 备份任务", - "TrueNAS URL": "TrueNAS URL", - "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS 为 API 消费者(包括 WebUI)维护用户和组的缓存。这是一个便利的功能,但如果域中包含大量用户和组,或者缓存对域控制器产生过大负载,可以禁用该功能。", - "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS 建议将同步设置始终保持为默认的\"标准\"或增加到\"始终\"。在生产环境中不应使用\"禁用\"设置,仅在发生崩溃或断电时数据回滚几秒钟不是问题的情况下使用。", - "Trust Guest Filters": "信任来宾过滤器", - "Tunable": "可调节的", - "Turn Off": "关闭", - "Two half widgets, one below another": "两个半部件,一个在另一个下面", - "Two quarter widgets and one half widget below": "下面有两个四分之一的小部件和一个二分之一的小部件。", - "Two-Factor Authentication Code": "双重身份验证代码", - "UI": "用户界面", - "UI Search Result: {result}": "用户界面搜索结果:{result}", - "UNIX Charset": "UNIX 字符集", - "UPS Stats": "UPS 状态", - "UPS Utilization": "UPS 负载", - "URL": "网址", - "Uncheck": "取消勾选", - "Unexpected power loss necessitating a restart.": "意外断电导致需要重启。", - "Unix NSS Info": "Unix NSS 信息", - "Unix Primary Group": "Unix 主组", - "Unknown PID": "未知的进程ID", - "Unresponsive system necessitating a forced restart.": "无响应的系统需要强制重启。", - "Unsaved Changes": "未保存的更改", - "Unselect All": "取消全选", - "Unsupported Hardware": "不支持的硬件", - "Unused Disks": "未使用的磁盘", - "Update All": "更新全部", - "Update Dashboard": "更新仪表板", - "Update Interval": "更新间隔", - "Update Members": "更新成员", - "Update Password": "更新密码", - "Update Release Notes": "更新发布说明", - "Update Software": "更新软件", - "Update System": "更新系统", - "Update successful. Please restart for the update to take effect. Restart now?": "更新成功。请重启以使更新生效。现在重启吗?", - "Updates available": "可用更新", - "Updating custom app": "更新自定义应用程序", - "Updating settings": "更新设置", - "Upgrade All Selected": "升级所有选择项", - "Upgrade Release Notes": "升级发行说明", - "Upload Configuration": "上传配置", - "Upload Manual Update File": "上传手动更新文件", - "Usage Collection": "使用收集", - "Usages": "用法", - "Use Default Domain": "使用默认域", - "Use Preset": "使用预设", - "Use Snapshot": "使用快照", - "Use Syslog Only": "仅使用 Syslog", - "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "使用 {snapshot} 快照将 {dataset} 回滚到 {datetime}?", - "User API Keys": "用户 API 密钥", - "User Bind Path": "用户绑定路径", - "User CN": "用户 CN", - "User Domain": "用户域", - "User ID": "用户 ID", - "User List": "用户列表", - "User Management": "用户管理", - "User Quota Manager": "用户配额管理器", - "User limit to Docker Hub has almost been reached or has already been reached. The installation process may stall as images cannot be pulled. The current limit will be renewed in {seconds}. The application can still be staged for installation.": "对 Docker Hub 的用户限制几乎已达到或已经达到。安装过程可能会停滞,因为无法拉取镜像。当前的限制将在 {seconds} 秒后更新。应用程序仍然可以准备安装。", - "User linked API Keys": "用户链接的API密钥", - "User password": "用户密码", - "Username associated with this API key.": "与此API密钥相关的用户名。", - "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.": "使用第三方应用程序与 TrueNAS 结合,可以扩展其功能,超出标准 NAS 的使用范围,但这可能会引入数据丢失或系统中断等风险。

    \niXsystems 不保证应用程序的安全性或可靠性,这些应用程序可能不在支持合同的范围内。如果这些应用程序访问相同的数据或文件系统,核心 NAS 功能的问题可能会在不进行进一步调查的情况下关闭。", - "VLAN Settings": "VLAN 设置", - "VLAN Tag": "VLAN 标签", - "VMWare Sync": "VMware 同步", - "VMware Snapshot": "VMware 快照", - "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "VMware:扩展块大小 512 字节,启用 TPC,未启用 Xen 兼容模式,SSD 速度", - "Validate Certificates": "验证证书", - "Validate Remote Path": "验证远程路径", - "Validate effective ACL": "验证有效的 ACL", - "Value must be greater than Range Low": "值必须大于范围下限。", - "Value must be greater than {label}": "值必须大于 {label}", - "Variant": "变量", - "Vdevs spans enclosure": "Vdevs 跨越机箱", - "Vendor ID": "供应商 ID", - "Verbose Logging": "详细日志记录", - "View All": "查看全部", - "View All Test Results": "查看所有测试结果", - "View Changelog": "查看变更日志", - "View Details": "查看详情", - "View Less": "查看较少", - "View Logs": "查看日志", - "View More": "查看更多", - "View Netdata": "查看 Netdata", - "View Release Notes": "查看发行说明", - "View logs": "查看日志", - "View/Download CSR": "查看/下载 CSR", - "View/Download Certificate": "查看/下载证书", - "View/Download Key": "查看/下载密钥", - "Virtual IP Address (Failover Address)": "虚拟IP地址(故障转移地址)", - "Virtual Machine": "虚拟机", - "Virtualization Global Read": "虚拟化全局读取", - "Virtualization Global Write": "虚拟化全局写入", - "Virtualization Instance Write": "虚拟化实例写入", - "Virtualization settings updated": "虚拟化设置已更新", - "Voltage": "电压", - "Volume Mounts": "卷挂载", - "Volume Size": "卷大小", - "WARNING: These unknown processes will be terminated while exporting the pool.": "警告:在导出池时,这些未知进程将被终止。", - "Wait to start VM until SPICE client connects.": "等待 SPICE 客户端连接后再启动虚拟机。", - "Waiting for Active TrueNAS controller to come up...": "等待活动的 TrueNAS 控制器启动…", - "Waiting for standby controller": "等待备用控制器", - "Warning: {n} of {total} boot environments could not be deleted.": "警告: {n} 个启动环境无法被删除,共处理 {total} 个启动环境。", - "Warning: {n} of {total} docker images could not be deleted.": "警告:{n} 个 docker 镜像无法被删除,共处理 {total} 个 docker 镜像。", - "Warning: {n} of {total} snapshots could not be deleted.": "警告:{n} 个快照无法被删除,共处理 {total} 个快照。", - "Warnings": "警告", - "Watch List": "观察列表", - "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "在应用新的网络更改时,我们遇到了一个问题。很遗憾,在实施更改后,我们无法重新连接到系统。因此,我们恢复了之前的网络配置以确保继续连接。", - "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "我们已生成一个 Netdata 密码,并尝试在新标签页中自动登录您。", - "Weak Ciphers": "弱密码算法", - "Web Interface": "网页界面", - "Web Interface Address": "网页接口地址", - "Web Interface Port": "Web 界面端口", - "Web Portal": "网页门户", - "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "我们目前无法访问机箱。请确保它连接正确,然后重新加载页面。", - "When set, the following text will be shown prior to showing login page to the user": "当设置时,以下文本将在向用户显示登录页面之前显示。", - "Widget Category": "小部件分类", - "Widget Editor": "小部件编辑器", - "Widget Subtext": "小工具副文本", - "Widget Text": "小部件文本", - "Widget Title": "小部件标题", - "Widget Type": "小部件类型", - "Widget has errors": "小部件存在错误", - "Widget {slot} Settings": "小部件 {slot} 设置", - "Widgets": "小部件", - "Winbind NSS Info": "Winbind NSS 信息", - "Xen: Extent block size 512b, TPC enabled, Xen compat mode enabled, SSD speed": "Xen: 扩展块大小 512 字节,启用 TPC,启用 Xen 兼容模式,SSD 速度", - "You are using an insecure connection. Switch to HTTPS for secure access.": "您正在使用不安全的连接。请切换到 HTTPS 以实现安全访问。", - "You can also vote for new features on our forum.": "您也可以在我们的论坛上为新功能投票 ", - "You can only lock a dataset if it was encrypted with a passphrase": "只有在数据集使用密码短语加密的情况下,您才能对其进行锁定。", - "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "您可以搜索本地组以及来自 Active Directory 的组。按 ENTER 键分隔条目。", - "You have unsaved changes. Are you sure you want to close?": "您有未保存的更改。您确定要关闭吗?", - "Your dashboard is currently empty!": "您的仪表盘当前是空的!", - "ZFS Errors": "ZFS 错误", - "ZFS Replication to another TrueNAS": "ZFS 复制任务到另一个TrueNAS", - "ZFS Reports": "ZFS 报告", - "ZFS Stats": "ZFS 统计信息", - "ZFS Utilization": "ZFS 使用情况", - "Zoom In": "放大", - "Zoom Out": "缩小", - "Zvol Location": "Zvol 位置", - "Zvol Space Management": "Zvol 空间管理", - "by ancestor": "由上级提供", - "details": "细节", - "disk stats": "磁盘统计", - "disk writes": "磁盘写入", - "expires in {n, plural, one {# day} other {# days} }": "在 {n} 天后过期", - "iSCSI Extent": "iSCSI 扩展", - "iSCSI Initiator": "iSCSI 发起者", - "iSCSI Share": "iSCSI 共享", - "iSCSI Target": "iSCSI 目标", - "of": "/", - "on this enclosure.": "在这个机箱上。", - "or": "或", - "pbkdf2iters": "pbkdf2iters ", - "standby": "待机", - "to another TrueNAS": "到另一个 TrueNAS", - "to cloud": "到云端", - "{ n, plural, one {# snapshot} other {# snapshots} }": "{n} 个快照", - "{bits}/s": "{bits}/s", - "{checked} exporter: {name}": "{checked} 导出器: {name}", - "{comparator} (Contains)": "{comparator}(包含)", - "{comparator} (Ends With)": "{comparator}(以...结尾)", - "{comparator} (Equals)": "{comparator} (等于)", - "{comparator} (Greater Than or Equal To)": "{comparator}(大于或等于)", - "{comparator} (Greater Than)": "{comparator}(大于)", - "{comparator} (In)": "{comparator}(输入)", - "{comparator} (Less Than or Equal To)": "{comparator} (小于或等于)", - "{comparator} (Less Than)": "{comparator}(小于)", - "{comparator} (Not Ends With)": "{comparator}(不以...结尾)", - "{comparator} (Not Equals)": "{comparator}(不等于)", - "{comparator} (Not In)": "{comparator}(不在)", - "{comparator} (Not Starts With)": "{comparator}(不以...开始)", - "{comparator} (Range In)": "{comparator}(范围输入)", - "{comparator} (Range Not In)": "{comparator} (范围不在)", - "{comparator} (Starts With)": "{comparator}(以...开始)", - "{coreCount, plural, one {# core} other {# cores} }": "{coreCount} 个核心", - "{days, plural, =1 {# day} other {# days}}": "{days} 天", - "{email} via {server}": "{email} 通过 {server}", - "{failedCount} of {allCount, plural, =1 {# task} other {# tasks}} failed": "{allCount} 中的 {failedCount} 个任务失败", - "{hours, plural, =1 {# hour} other {# hours}}": "{hours} 小时", - "{license} contract, expires {date}": "{license} 合同,到期日期为 {date}", - "{minutes, plural, =1 {# minute} other {# minutes}}": "{minutes} 分钟", - "{n, plural, =0 {No errors} one {# Error} other {# Errors}}": "{n, plural, =0 {没有错误} other {# 个错误}}", - "{n, plural, =0 {No keys} =1 {# key} other {# keys}}": "{n, plural, =0 {没有密钥} other {# 个密钥}}", - "{n, plural, =0 {No open files} one {# open file} other {# open files}}": "{n, plural, =0 {没有打开的文件} other {# 个打开的文件}}", - "{n, plural, one {# CPU} other {# CPUs}}": "{n} 个 CPUs", - "{n, plural, one {# GPU} other {# GPUs}} isolated": "{n} 个隔离 GPUs", - "{n, plural, one {# boot environment} other {# boot environments}} has been deleted.": "{n} 个启动环境已被删除。", - "{n, plural, one {# core} other {# cores}}": "{n} 个核心", - "{n, plural, one {# docker image} other {# docker images}} has been deleted.": "{n} 个 docker 镜像已被删除。", - "{n, plural, one {# thread} other {# threads}}": "{n} 个线程", - "{n, plural, one {Failed Disk} other {Failed Disks}}": "{n} 块失败的磁盘", - "{n, plural, one {Pool in Enclosure} other {Pools in Enclosure}}": "{n} 个机箱中的池", - "{n, plural, one {SAS Expander} other {SAS Expanders}}": "{n} 个 SAS 扩展器", - "{n, plural, one {There is an active iSCSI connection.} other {There are # active iSCSI connections}}": "当前有 {n} 个活跃的iSCSI连接。", - "{name} Devices": "设备 {name}", - "{name} Sessions": "会话 {name}", - "{name} and {n, plural, one {# other pool} other {# other pools}} are not healthy.": "{name} 和 {n} 个池的状态不健康。", - "{nic} Address": "{nic} 地址", - "{n} (applies to descendants)": "{n}(适用于后代)", - "{n} from {dataset}": "{n} 来自 {dataset}", - "{rate} RPM": "{rate} RPM", - "{seconds, plural, =1 {# second} other {# seconds}}": "{seconds} 秒", - "{service} Volume Mounts": "{service} 卷挂载", - "{size} {type} at {location}": "{size} {type} 挂载在 {location}", - "{tasks, plural, =1 {# receive task} other {# receive tasks}}": "{tasks} 个接收任务", - "{tasks, plural, =1 {# received task} other {# received tasks}} this week": "本周完成 {tasks} 个接收任务", - "{tasks, plural, =1 {# send task} other {# send tasks}}": "{tasks} 个发送任务", - "{tasks, plural, =1 {# sent task} other {# sent tasks}} this week": "本周完成 {tasks} 个发送任务", - "{temp}°C (All Cores)": "{temp}°C(所有核心)", - "{temp}°C (Core #{core})": "{temp}°C(核心 #{core})", - "{temp}°C ({coreCount} cores at {temp}°C)": "{temp}°C (核心 {coreCount} {temp}°C)", - "{threadCount, plural, one {# thread} other {# threads} }": "{threadCount} 个线程", - "{type} VDEVs": "{类型} VDEVs", - "{type} at {location}": "{type} 在 {location}", - "{type} widget does not support {size} size.": "{type} 小部件不支持 {size} 大小。", - "{type} widget is not supported.": "{type} 控件不受支持。", - "{type} | {vdevWidth} wide | ": "{type} | {vdevWidth} 盘 | ", - "{usage}% (All Threads)": "{usage}%(所有线程)", - "{usage}% (Thread #{thread})": "{usage}% (线程 #{thread})", - "{usage}% ({threadCount} threads at {usage}%)": "{usage}% (线程{threadCount}在 {usage}%)", - "{view} on {enclosure}": "在 {enclosure} 上查看 {view}", + "...": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", + "Service Announcement:": "", "\n It looks like your session has been inactive for more than {lifetime} seconds.
    \n For security reasons we will log you out at {time}.\n ": "\n您的会话似乎已超过 {lifetime} 秒处于非活动状态。
    \n 出于安全原因,我们将在 {time} 后注销您的会话。\n", + " Est. Usable Raw Capacity": "估计可用原始容量", " When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": "当 UPS 模式 设置为 附属 时。输入 UPS 系统的开放端口号。默认端口为 3493。", + " as of {dateTime}": "截至 {dateTime}", " bytes.": " 字节。", " seconds.": " 秒。", + "\"Power On Hours\" are how many hours have passed while the disk has been powered on. \"Power On Hours Ago\" is how many power on hours have passed since each test.": "上电时间 是指磁盘自开机以来经过的小时数。累计上电时间 是指自每次测试以来经过的开机小时数。", "% of all cores": "% 所有核心", "'Hosts Allow' or 'Hosts Deny' has been set": "「Hosts Allow」或「Hosts Deny」已设置", "'Hosts Allow' or 'Hosts Deny' has been updated": "「Hosts Allow」或「Hosts Deny」已更新", @@ -1485,16 +21,21 @@ "(This Controller)": "(此控制器)", "(TrueNAS Controller 1)": "(TrueNAS 控制器 1)", "(TrueNAS Controller 2)": "(TrueNAS 控制器 2)", + "({n, plural, =1 {# widget} other {# widgets}})": "({n} 个小部件)", "+ Add a backup credential": " 新增备份凭据", + "... Make sure the TrueNAS system is powered on and connected to the network.": "请确保 TrueNAS 系统已通电并连接到网络。", "0=Disabled, blank=inherit": "0=禁用,留空=继承", "1 day": "一天", "1 hour": "一个小时", "1 month": "一个月", "1 week": "一个星期", + "1m Average": "1分钟平均", "2 days ago": "2 天前", "2 months ago": "2 月前", "2 weeks ago": "2 周前", "20 characters is the maximum length.": "最大长度为 20 个字符。", + "2FA": "双因素认证 (2FA)", + "2FA Settings": "2FA 设置", "2FA has been configured for this account. Enter the OTP to continue.": "已为此账户配置了双因素认证。请输入一次性密码以继续。", "3 days ago": "3 天前", "3 months ago": "3 月前", @@ -1505,6 +46,7 @@ "5 months ago": "5 月前", "6 months": "六个月", "6 months ago": "6 月前", + "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.": "S3 API 端点 URL。在使用 AWS 时,端点字段可以为空,以使用该区域的默认端点, 可用的存储桶会自动获取。有关 简单存储服务网站端点 的列表,请参阅 AWS 文档。", "AWS resources in a geographic area. Leave empty to automatically detect the correct public region for the bucket. Entering a private region name allows interacting with Amazon buckets created in that region. For example, enter us-gov-east-1 to discover buckets created in the eastern AWS GovCloud region.": "地理区域中的 AWS 资源。留空以自动检测存储桶的正确公共区域。输入私有区域名称允许与在该区域中创建的 Amazon 存储桶进行交互。例如,输入 us-gov-east-1 以发现在东部创建的存储桶 AWS GovCloud 区域。", "Microsoft Azure account name.": "Microsoft Azure 帐户名称。", "pCloud Access Token. These tokens can expire and require extension.": " pCloud 访问令牌。这些令牌可能会过期,并需要延期。", @@ -1525,6 +67,7 @@ "MOVE: After files are copied from the source to the destination, they are deleted from the source. Files with the same names on the destination are overwritten.": "移动:从源复制文件到目标后,这些文件将从源删除。而目标上具有相同名称的文件将被覆盖。", "SET will changes all destination datasets to readonly=on after finishing the replication.
    REQUIRE stops replication unless all existing destination datasets to have the property readonly=on.
    IGNORE disables checking the readonly property during replication.": "复制完成后,SET会将所有目标数据集更改为readonly=on
    要求停止复制,除非所有现有目标数据集都具有属性readonly=on
    忽略禁止在复制期间检查readonly属性。", "SYNC: Files on the destination are changed to match those on the source. If a file does not exist on the source, it is also deleted from the destination.": "同步:对目标上的文件进行更改以匹配源上的文件。如果源上不存在文件,则还会从目标删除。", + "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.": "警告: 将数据集回滚会破坏数据集上的数据 并且 可能会破坏与该数据集相关的其他快照。这可能导致永久数据丢失! 在备份所有所需的数据和快照之前,请勿进行回滚。", "WARNING: The configuration file contains sensitive data like system passwords. However, SSH keys that are stored in /root/.ssh are NOT backed up by this operation. Additional sensitive information can be included in the configuration file.
    ": "警告: 配置文件包含敏感数据,如系统密码。但是,此操作不会备份存储在 /root/.ssh 中的 SSH 密钥。配置文件中会包含其他敏感信息。
    ", "Warning: The WireGuard service must be active on the client system to access the TrueCommand UI.": "警告: WireGuard 服务必须在客户端系统上处于活动状态才能访问 TrueCommand UI。", "0 disables quotas. Specify a maximum allowed space for this dataset.": "0禁用配额。定义这个数据集的最大允许空间。", @@ -1541,23 +84,35 @@ "Quick erases only the partitioning information on a disk without clearing other old data. Full with zeros overwrites the entire disk with zeros. Full with random data overwrites the entire disk with random binary data.": "快速只擦除磁盘的分区信息,不删除其他旧的数据。用 0 填充用 0 覆盖整个磁盘。使用随机数据填充 用随机二进制数据覆盖整个磁盘。", "Sensitive assumes filenames are case sensitive. Insensitive assumes filenames are not case sensitive.": "Sensitive 假定文件名区分大小写。Insensitive 假定文件名不区分大小写。", "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.": "是:禁用 密码 字段。该帐户无法使用基于密码的登录服务。例如,禁用密码会阻止使用帐户凭据登录到 SMB 共享或在系统上打开 SSH 会话。同时,锁定用户允许 Sudo 选项也被移除。

    否: 需要为帐户新增一个 密码。该帐户可以使用保存的 密码 来进行基于密码的服务认证。", "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 restart 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.": "带有验证说明的消息已发送到新的电子邮件地址,请在继续之前验证电子邮件地址。", "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, k (default), M, or G. See rclone --bwlimit.": "rclone 格式的单个带宽限制或带宽限制计划。通过按 Enter 分隔条目。例如:08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off。可以使用开头字母指定单位:b, k(默认),MG。请参阅rclone --bwlimit 。", + "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.": "按 rclone 格式的 单个带宽限制 或 带宽限制计划。通过按 Enter 键分隔条目。例如: 08:00,512 12:00,10MB 13:00,512 18:00,30MB 23:00,off。单位可以使用后缀 b(默认为此), kMG 来指定。请参阅 rclone --bwlimit。", "A smaller block size can reduce sequential I/O performance and space efficiency.": "较小的块大小会降低顺序 I/O 性能和空间效率。", "A stripe log VDEV may result in data loss if it fails combined with a power outage.": "如果一个条带式日志 VDEV 发生故障并同时发生断电,则可能会导致数据丢失。", "A stripe {vdevType} VDEV is highly discouraged and will result in data loss if it fails": "强烈建议不要使用条带 {vdevType} VDEV,如果失败将导致数据丢失", "A system update is in progress. It might have been launched in another window or by an external source like TrueCommand.": "正在进行系统更新。它可能是在另一个窗口中启动的,也可能是由 TrueCommand 等外部源启动的。", "A unique name to identify this keypair. Automatically generated keypairs are named after the object that generated the keypair with \" Key\" appended to the name.": "标识此密钥对的唯一名称。自动生成的密钥对以生成密钥对的对象命名,并在名称后附加\" Key \"。", "A username on the FTP Host system. This user must already exist on the FTP Host.": "FTP 主机系统上的用户名。该用户必须已经存在于 FTP 主机上。", + "ACL": "ACL(访问控制列表)", + "ACL Editor": "ACL 编辑器", "ACL Entries": "ACL 条目", + "ACL Mode": "ACL 模式", "ACL Type": "ACL 类型", "ACL Types & ACL Modes": "ACL 类型与 ACL 模式", + "ACME Certificate Created": "ACME 证书已创建", + "ACME DNS Authenticator": "ACME DNS 验证器", + "ACME DNS-Authenticator": "ACME DNS 验证器", "ACME DNS-Authenticators": "ACME DNS 身份验证器", + "ACME Server Directory URI": "ACME 服务器目录 URI", + "AD Timeout": "AD 超时", + "AD users and groups by default will have a domain name prefix (`DOMAIN\\`). In some edge cases this may cause erratic behavior from some clients and applications that are poorly designed and cannot handle the prefix. Set only if required for a specific application or client. Note that using this setting is not recommended as it may cause collisions with local user account names.": "AD 用户和组默认将具有域名前缀(`DOMAIN\\`)。在某些特定情况下,这可能会导致某些客户和应用程序的不稳定行为,特别是那些设计不佳且无法处理该前缀的应用程序。仅在特定应用或客户端需要时设置此项。请注意,使用此设置并不推荐,因为可能会与本地用户帐户名称发生冲突。", "ALERT": "警报", "ALL Initiators Allowed": "允许所有启动器", "API Key": "API 密钥", @@ -1567,7 +122,10 @@ "ATA Security User": "ATA 安全用户", "AWS Region": "AWS 地区", "Abort": "中止", + "Abort Job": "停止任务", + "Aborting...": "正在停止……", "About": "关于", + "Accept": "接受", "Access": "访问", "Access Based Share Enumeration": "基于访问的共享枚举", "Access Control Entry": "访问控制入口", @@ -1590,6 +148,7 @@ "Account Write": "账号写入", "Account to be used for guest access. Default is nobody. The chosen account is required to have permissions to the shared pool or dataset. To adjust permissions, edit the dataset Access Control List (ACL), add a new entry for the chosen guest account, and configure the permissions in that entry. If the selected Guest Account is deleted the field resets to nobody.": "用于访客访问的帐户。默认为nobody。所选帐户必须具有共享池或数据集的权限。要调整权限,请编辑数据集访问控制列表 (ACL),为所选访客帐户添加新条目,并在该条目中配置权限。如果所选的访客帐户被删除,该字段将重置为nobody。", "Account: {account}": "账号:{account}", + "Ace has errors.": "Ace 有错误。", "Action Not Possible": "无法采取行动", "Actions": "动作", "Activate": "启用", @@ -1606,61 +165,98 @@ "Active Directory": "活动目录", "Active Directory - Primary Domain": "活动目录 - 主域名", "Active Directory and LDAP are disabled.": "AD 和 LDAP 被禁用。", + "Active Directory is disabled.": "AD 已禁用。", "Active Directory must be enabled before adding new domains.": "在新增新域之前,必须先启用 AD 。", + "Active IP Addresses": "活动 IP 地址", "Active Sessions": "活动的会话", "Active {controller}.": "活跃的 {controller}。", "Active: TrueNAS Controller {id}": "活跃:TrueNAS 控制器 {id}", "Adapter Type": "适配器类型", "Add": "新增", + "Add ACME DNS-Authenticator": "新增 ACME DNS 验证器", "Add API Key": "新增 API 密钥", + "Add Alert": "新增警报", "Add Alert Service": "新增警报服务", "Add Allowed Initiators (IQN)": "新增允许的启动器 (IQN)", "Add Associated Target": "新增 Associated Target", "Add Authorized Access": "新增授权访问", + "Add Backup Credential": "新增备份凭据", "Add CSR": "新增 CSR", "Add Catalog": "新增目录", "Add Certificate": "新增证书", "Add Certificate Authority": "新增证书颁发机构 (CA)", + "Add Certificate Signing Requests": "新增证书签名请求(CSR)", + "Add Cloud Backup": "新增云备份", + "Add Cloud Credential": "新增云凭据", "Add Cloud Sync Task": "新增云同步任务", + "Add Credential": "新增凭据", "Add Cron Job": "新增定时任务", + "Add Custom App": "新增自定义应用程序", "Add DNS Authenticator": "新增 DNS 身份验证器", "Add Dataset": "新增数据集", "Add Device": "新增设备", + "Add Disk Test": "新增磁盘测试", "Add Disks": "新增磁盘", "Add Disks To:": "将磁盘新增到", + "Add Expansion Shelf": "新增扩展机柜", + "Add Exporter": "新增导出器", "Add Extent": "新增范围", "Add External Interfaces": "新增外部接口", + "Add Filesystem": "新增文件系统", "Add Group": "新增组", "Add Group Quotas": "新增组配额", "Add ISCSI Target": "新增 ISCSI Target", "Add Idmap": "新增 Idmap", + "Add Image": "新增图像", "Add Init/Shutdown Script": "新增开机/关机脚本", "Add Initiator": "新增启动器", "Add Interface": "新增接口", + "Add Item": "新增项目", "Add Kerberos Keytab": "新增 Kerberos 密钥表", "Add Kerberos Realm": "新增 Kerberos 领域", "Add Kerberos SPN Entry": "新增 Kerberos SPN 条目", + "Add Kernel Parameters": "新增内核参数", + "Add Key": "新增密钥", "Add License": "新增许可证", + "Add Local Group": "新增本地组", + "Add Local User": "新增本地用户", "Add NFS Share": "新增 NFS 共享", "Add NTP Server": "新增 NTP 服务器", + "Add New": "新增", + "Add Periodic S.M.A.R.T. Test": "新增定期 S.M.A.R.T. 测试", "Add Periodic Snapshot Task": "新增定期快照任务", + "Add Pool": "新增池", "Add Portal": "新增门户", + "Add Privilege": "新增权限", "Add Replication Task": "新增复制任务", "Add Reporting Exporter": "新增报告导出器", "Add Rsync Task": "新增 Rsync 任务", "Add S.M.A.R.T. Test": "新增 S.M.A.R.T. 硬盘测试", "Add SMB": "新增 SMB 共享", + "Add SMB Share": "新增 SMB 共享", + "Add SPN": "新增 SPN", + "Add SSH Connection": "新增 SSH 连接", + "Add SSH Keypair": "新增 SSH 密钥对", "Add Scrub Task": "新增数据巡检任务", + "Add Share": "新建共享", + "Add Smart Test": "新增 S.M.A.R.T. 测试", "Add Snapshot": "新增快照", + "Add Snapshot Task": "新增快照任务", "Add Static Route": "新增静态路由", "Add Sysctl": "新增 Sysctl", "Add To Pool": "新增到池", "Add To Trusted Store": "新增到信任库", + "Add TrueCloud Backup Task": "新增 TrueCloud 备份任务", + "Add Tunable": "新增可调参数", "Add User": "新增用户", "Add User Quotas": "新增用户配额", "Add VDEV": "新增 VDEV", + "Add VM": "新增虚拟机", "Add VM Snapshot": "新增 VM 快照", "Add Vdevs to Pool": "向池中新增 Vdevs", + "Add Virtual Machine": "新增虚拟机", + "Add Volume": "新增卷", + "Add Widget": "新增小部件", "Add Zvol": "新增 Zvol", "Add a new bucket to your Storj account.": "将新存储桶新增到您的 Storj 帐户。", "Add any more sshd_config(5) options not covered in this screen. Enter one option per line. These options are case-sensitive. Misspellings can prevent the SSH service from starting.": "新增更多 sshd_config(5) 未在此处显示的选项。每行输入一个选项。选项是大小写敏感的。错误的拼写可能导致 SSH 服务无法启动。", @@ -1669,25 +265,43 @@ "Add catalog to system even if some trains are unhealthy.": "即使某些分支不健康,也将目录添加到系统中。", "Add entry": "新增条目", "Add groups": "新增组", + "Add iSCSI": "新增 iSCSI 共享", "Add listen": "新增监听", "Add new": "新增", + "Add the required no. of disks to get a vdev size estimate": "新增所需数量的磁盘以获取 vdev 大小估算", "Add this user to additional groups.": "将此用户添加到其他组。", + "Add to trusted store": "添加到可信存储区", + "Add user linked API Key": "新增用户 API Key", + "Add {item}": "新增 {item}", "Added disks are erased, then the pool is extended onto the new disks with the chosen topology. Existing data on the pool is kept intact.": "擦除添加的磁盘,然后将池扩展到具有所选拓扑的新磁盘上。池中的现有数据保持不变。", "Adding data VDEVs of different types is not supported.": "不支持添加不同类型的数据 VDEVs", + "Adding, removing, or changing hardware components.": "添加、移除或更改硬件组件。", "Additional rsync(1) options to include. Separate entries by pressing Enter.
    Note: The \"*\" character must be escaped with a backslash (\\*.txt) or used inside single quotes ('*.txt').": "要包含的附加rsync(1)选项。通过按 Enter 分隔条目。
    注意: \"*\"字符必须以反斜杠 (\\\\*.txt) 进行转义,或在单引号 ('*.txt') 内使用。", "Additional smartctl(8) options.": "附加的smartctl(8)参数。", "Additional Domains": "附加域", + "Additional Domains:": "附加域:", + "Additional Hardware": "额外硬件", "Additional Kerberos application settings. See the \"appdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "更多 Kerberos 应用设置。请参阅 \"appdefaults\" section of [krb.conf(5)]. 以获取可用设置和用法语法。", "Additional Kerberos library settings. See the \"libdefaults\" section of [krb.conf(5)]. for available settings and usage syntax.": "更多 Kerberos 库设置。请参阅 \"libdefaults\" section of [krb.conf(5)]. 以获取可用设置和用法语法。", + "Additional Parameters String": "附加参数字符串", "Additional domains to search. Separate entries by pressing Enter. Adding search domains can cause slow DNS lookups.": "要搜索的其他域。通过按 Enter 分隔条目。增加搜索域可能会导致 DNS 查找速度变慢。", "Additional hosts to be appended to /etc/hosts. Separate entries by pressing Enter. Hosts defined here are still accessible by name even when DNS is not available. See hosts(5) for additional information.": "在 /etc/hosts中添加更多主机。按下 Enter 以分隔条目. 此处定义的主机在 DNS 失效的情况下仍可用名称访问。参阅 hosts(5) 以获取更多信息", "Additional options for nslcd.conf.": "附加选项 nslcd.conf。", "Address": "地址", + "Address Pool": "地址池", + "Address Pools": "地址池", + "Adjust Resilver Priority": "调整一致性重建优先级", + "Adjust Scrub Priority": "调整巡检优先级", "Adjust Scrub/Resilver Priority": "调整数据巡检/一致性重建优先级", "Adjust how often alert notifications are sent, use the Frequency drop-down. Setting the Frequency to NEVER prevents that alert from being added to alert notifications, but the alert can still show in the web interface if it is triggered.": "调整发送警报通知的频率,使用频率下拉列表。将频率设置为 NEVER 可防止将该警报添加到警报通知中,但如果触发该警报,该警报仍可显示在 Web 界面中。", + "Admin Password": "管理员密码", "Admin Server": "管理服务器", "Admin Servers": "管理服务器", + "Admin Username": "管理员用户名", "Administrative account name on the LDAP server. Example: cn=Manager,dc=test,dc=org.": "LDAP 服务器上的管理帐户名。例子:cn=Manager,dc=test,dc=org.", + "Administrators": "管理员", + "Administrators Group": "管理员组", + "Admins": "管理员", "Adv. Power Management": "高级电源管理", "Advanced": "高级", "Advanced Mode": "高级模式", @@ -1701,6 +315,7 @@ "Agree": "同意", "Alert": "警报", "Alert List Read": "警报列表读取", + "Alert List Write": "编辑警报列表", "Alert Services": "警报服务", "Alert Settings": "警报设置", "Alert service saved": "警报服务已保存", @@ -1708,10 +323,13 @@ "Alerts could not be loaded": "无法加载警告", "Algorithm": "算法", "Alias for the identical interface on the other TrueNAS controller. The alias can be an IPv4 or IPv6 address.": "另一个 TrueNAS 控制器上相同接口的别名。别名可以是 IPv4 或 IPv6 地址。", + "Aliases": "别名", "Aliases must be 15 characters or less.": "别名不得超过 15 个字符。", "All": "全部", "All Disks": "所有磁盘", + "All Users": "所有用户", "All data on that pool was destroyed.": "所有在此存储池上的数据将被摧毁。", + "All disks healthy.": "所有磁盘状态正常。", "All pools are online.": "所有存储池在线", "All selected directories must be at the same level i.e., must have the same parent directory.": "所有选定的目录必须处于同一级别,即必须具有相同的父目录。", "Allocate RAM for the VM. Minimum value is 256 MiB.": "为虚拟机分配内存,最小值为 256 MiB。", @@ -1720,19 +338,27 @@ "Allow": "允许", "Allow All": "允许全部", "Allow All Initiators": "允许所有启动器", + "Allow Anonymous Binding": "允许匿名绑定", + "Allow Anonymous Login": "允许匿名登录", "Allow Blocks Larger than 128KB": "允许大于 128KB 的块", "Allow Compressed WRITE Records": "允许压缩的写记录", + "Allow DNS Updates": "允许 DNS 更新", + "Allow Directory Service users to access WebUI": "允许 AD 用户访问 WebUI", "Allow Guest Access": "允许访客访问", "Allow Kerberos Authentication": "允许 Kerberos 身份验证", + "Allow Local User Login": "允许本地用户登录", "Allow Password Authentication": "允许密码验证", "Allow Specific": "允许特定", "Allow TCP Port Forwarding": "允许 TCP 端口转发", "Allow Taking Empty Snapshots": "允许创建空快照", + "Allow Transfer Resumption": "允许恢复传输", + "Allow Trusted Domains": "允许受信任的域名", "Allow all initiators": "允许所有发起者", "Allow all sudo commands": "允许使用所有 sudo 命令", "Allow all sudo commands with no password": "允许使用所有 sudo 命令且不需要密码鉴权", "Allow anonymous FTP logins with access to the directory specified in Path.": "允许匿名 FTP 登录名访问路径中指定的目录。", "Allow any local user to log in. By default, only members of the ftp group are allowed to log in.": "允许任何本地用户登录。默认情况下,仅允许 ftp 组的成员登录。", + "Allow clients to access the TrueNAS server if they are members of domains that have a trust relationship with the domain to which TrueNAS is joined. This requires valid idmap backend configuration for all trusted domains.": "允许客户端访问TrueNAS服务器,如果它们是与TrueNAS所加入域具有信任关系的域的成员。这要求对所有受信任域进行有效的 idmap 后端配置。", "Allow configuring a non-standard port to access the GUI over HTTP. Changing this setting might require changing a Firefox configuration setting.": "允许配置一个非标准端口来通过HTTP访问 GUI。修改这个设置可能需要修改一个Firefox 配置设置。", "Allow configuring a non-standard port to access the GUI over HTTPS.": "允许配置非标准端口来通过HTTPS访问 GUI。", "Allow different groups to be configured with different authentication profiles. Example: all users with a group ID of 1 will inherit the authentication profile associated with Group 1.": "允许不同的群组配置不同的验证配置文件。例子:所有有着群组 ID1的用户将会继承群组1的验证配置文件。", @@ -1741,11 +367,16 @@ "Allow group members to use sudo. Group members are prompted for their password when using sudo.": "允许组使用 sudo sudo. 组成员使用 sudo 以提升权限.", "Allow more ciphers for sshd(8) in addition to the defaults in sshd_config(5). None allows unencrypted SSH connections and AES128-CBC allows the 128-bit Advanced Encryption Standard.

    WARNING: these ciphers are considered security vulnerabilities and should only be allowed in a secure network environment.": "允许更多密码 sshd(8) 作为默认的补充 sshd_config(5). 允许未经加密的 SSH 连接和 AES128-CBC 允许 128 位 高级加密标准.

    警告: 这些密码被认为有安全隐患且仅应当在安全的网络环境中使用。", "Allow non-root mount": "允许非 root 挂载", + "Allow non-unique serialed disks (not recommended)": "允许非唯一序列号的磁盘(不推荐)", "Allow this replication to send large data blocks. The destination system must also support large blocks. This setting cannot be changed after it has been enabled and the replication task is created. For more details, see zfs(8).": "允许此副本发送大数据块。目标系统必须支持大数据块。此设置在创建副本并启用后无法更改。参阅 zfs(8).以获取更多信息", "Allow using open file handles that can withstand short disconnections. Support for POSIX byte-range locks in Samba is also disabled. This option is not recommended when configuring multi-protocol or local access to files.": "允许使用可以承受短时间断开连接的打开文件句柄。Samba 中对 POSIX 字节范围锁的支持也被禁用。配置文件的多协议或本地访问时,建议不要使用此选项。", "Allow {activities}": "允许 {activities}", + "Allowed Address": "允许的地址", + "Allowed IP Addressed": "允许的 IP 地址", "Allowed IP Addresses": "允许的 IP 地址", + "Allowed IP Addresses Settings": "允许的IP地址设置", "Allowed IP address or hostname. One entry per field. Leave empty to allow everybody.": "允许的 IP 地址或主机名。每个字段一个条目。留空以允许所有。", + "Allowed Initiators": "允许的发起者", "Allowed Services": "允许的服务", "Allowed Sudo Commands": "允许使用 sudo 命令", "Allowed Sudo Commands (No Password)": "允许使用 sudo 命令 (无密码鉴权)", @@ -1757,10 +388,13 @@ "Allows multiple NTFS data streams. Disabling this option causes MacOS to write streams to files on the filesystem.": "允许多个 NTFS 数据流。禁用此选项会使 MacOS 将流写入文件系统上的文件。", "Allows sudo commands": "允许使用 sudo 命令", "Alphanumeric Backblaze B2 Application Key ID. To generate a new application key, log in to the Backblaze account, go to the App Keys page, and add a new application key. Copy the application keyID string to this field.": "字母数字的 Backblaze B2 应用程序密钥 ID。要生成新的应用程序密钥,请登录 Backblaze 帐户,进入 App Keys 页面,然后创建一个新的应用程序密钥。将应用程序 keyID 字符串复制到此字段。", + "Also Include Naming Schema": "还包括命名方案", "Also include snapshots with the name": "还包括带有名称的快照", "Also unlock any encrypted dataset stored within this dataset.": "同时解锁该数据集中存储的所有加密数据集。", "Alternative names that SMB clients can use when connecting to this NAS. Can be no greater than 15 characters.": "SMB 客户端连接到此 NAS 时可以使用的备用名称。不得超过 15 个字符。", + "Alternatively, you can start by configuring VDEVs in the wizard first and then opening Manual selection to make adjustments.": "或者,您可以先在向导中配置 VDEVs,然后打开手动选择进行调整。", "Always": "总是", + "Always Chroot": "始终 Chroot", "Always On": "永远在线", "Amazon S3": "Amazon S3", "Amazon Web Services Key ID. This is found on Amazon AWS by going through My account -> Security Credentials -> Access Keys (Access Key ID and Secret Access Key). Must be alphanumeric and between 5 and 20 characters.": "Amazon Web Services 密钥 ID。在Amazon AWS中通过我的帐户 -> 安全凭证 -> 访问密钥(访问密钥 ID 私密访问密钥)上找到。必须为字母数字,且介于 5 到 20 个字符之间。", @@ -1768,27 +402,49 @@ "Amount of disk space that can be used by the selected groups. Entering 0 (zero) allows all disk space.": "所选组可以使用的磁盘空间量。输入 0 (零)将允许所有磁盘空间。", "Amount of disk space that can be used by the selected users. Entering 0 (zero) allows all disk space to be used.": "所选用户可以使用的磁盘空间量。输入 0 (零)将允许使用所有磁盘空间。", "An ACL is detected on the selected path but Enable ACL is not selected for this share. ACLs must be stripped from the dataset prior to creating an SMB share.": "在所选路径上检测到 ACL,但未为此共享选择启用 ACL。在创建 SMB 共享之前,必须从数据集中删除 ACL。", + "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 restart the system.": "更新已应用。请重新启动系统。", + "Anonymous User Download Bandwidth": "匿名用户下载带宽", + "Anonymous User Upload Bandwidth": "匿名用户上传带宽", "Any notes about initiators.": "关于启动器的任何注释。", "Any system service can communicate externally.": "任何系统服务都可以与外部通信。", + "App": "应用程序", + "App Info": "应用信息", "App Name": "应用程序名称", + "App Network": "网络", "App Version": "应用程序版本", + "App is restarted": "应用程序已重新启动", + "App is restarting": "应用程序正在重启", "Appdefaults Auxiliary Parameters": "应用默认值辅助参数", "Append @realm to cn in LDAP queries for both groups and users when User CN is set).": "在设置用户 CN 时,在 LDAP 查询中为组和用户追加@realmcn。", "Append Data": "追加数据", "Appends a suffix to the share connection path. This is used to provide unique shares on a per-user, per-computer, or per-IP address basis. Suffixes can contain a macro. See the smb.conf manual page for a list of supported macros. The connectpath **must** be preset before a client connects.": "向共享连接路径添加一个前缀。 此操作用于提供基于每个用户,每台计算机,或者每个 IP 地址的个性化共享。前缀可以包含宏。参阅 smb.conf 以获取可用宏的清单。连接路径 **必须** 在被客户端连接前设置。", "Application": "应用程序", + "Application CPU Usage": "CPU使用率", "Application Info": "应用程序信息", + "Application Information": "应用程序信息", "Application Key": "应用程序密钥", + "Application Memory": "内存", "Application Metadata": "应用程序元数据", "Application Name": "应用名称", + "Application Network": "网络", + "Application name must have the following: 1) Lowercase alphanumeric characters can be specified 2) Name must start with an alphabetic character and can end with alphanumeric character 3) Hyphen '-' is allowed but not as the first or last character e.g abc123, abc, abcd-1232": "应用程序名称必须满足以下要求: 1) 可以使用小写字母和数字字符 2) 名称必须以字母字符开头,可以以字母或数字字符结尾 3) 允许使用连字符 '-',但不能作为第一个或最后一个字符,例如 abc123、abc、abcd-1232", "Applications": "应用", "Applications are not running": "应用未运行", "Applications not configured": "未配置应用", "Applications you install will automatically appear here. Click below and browse available apps to get started.": "您安装的应用程序将自动出现在此处。单击下面并浏览可用的应用程序即可开始。", "Applications you install will automatically appear here. Click below and browse the TrueNAS catalog to get started.": "您安装的应用程序将自动出现在此处。单击下方并浏览 TrueNAS 目录以开始使用。", + "Applied Dataset Quota": "配置的数据集配额", "Apply Group": "应用于组", + "Apply Owner": "设置所有者", "Apply Pending Updates": "应用更新", + "Apply Pending update": "应用待处理更新", + "Apply Quotas to Selected Groups": "应用配额到选定组", + "Apply Quotas to Selected Users": "应用配额到选定用户", + "Apply To Groups": "应用到组", + "Apply To Users": "应用到用户", "Apply Update": "应用更新", "Apply User": "应用于用户", "Apply permissions recursively": "递归应用权限", @@ -1798,6 +454,8 @@ "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 restart system after downloading.": "下载后应用更新并重启系统。", + "Applying important system or security updates.": "应用重要的系统或安全更新。", "Apps": "应用", "Apps Read": "应用程序读取", "Apps Service Not Configured": "应用程序服务未配置", @@ -1806,6 +464,8 @@ "Apps Service Stopped": "应用程序服务已停止", "Apps Write": "应用程序写入", "Apr": "四月", + "Arbitrary Text": "任意文本", + "Arch": "架构", "Archive": "存档", "Are you sure you want to abort the {task} task?": "您确定要中止 {task} 任务吗?", "Are you sure you want to delete \"{name}\"?": "您确定要删除 \"{name}\" 吗?", @@ -1832,6 +492,7 @@ "Are you sure you want to delete this task?": "您确定要删除此任务吗?", "Are you sure you want to delete user \"{user}\"?": "您确定要删除用户 \"{user}\" 吗?", "Are you sure you want to deregister TrueCommand Cloud Service?": "您确定要注销 TrueCommand 云服务吗?", + "Are you sure you want to restore the default set of widgets?": "您确定要恢复默认的小工具设置吗?", "Are you sure you want to start over?": "您确定要重新开始吗?", "Are you sure you want to stop connecting to the TrueCommand Cloud Service?": "您确定要停止连接到 TrueCommand 云服务吗?", "Are you sure you want to sync from peer?": "是否确定要从对等节点同步?", @@ -1841,6 +502,7 @@ "Are you sure?": "您确定吗?", "Arguments": "参数", "Associated Targets": "相关目标", + "Asymmetric Logical Unit Access (ALUA)": "非对称逻辑单元访问 (ALUA)", "At least 1 GPU is required by the host for its functions.": "主机至少需要 1 个 GPU 才能实现其功能。", "At least 1 data VDEV is required.": "至少需要 1 个数据 VDEV。", "At least 1 vdev is required to make an update to the pool.": "至少需要 1 个 vdev 才能更新池。", @@ -1853,12 +515,17 @@ "Attach NIC": "附加网卡", "Attach additional images": "附加额外图片", "Attach debug": "附加调试", + "Attach images (optional)": "附加镜像(可选)", "Attaches privileges to the group. Only needed if you need users in this group access to TrueNAS API or WebUI.": "将权限附加到组。仅当您需要此组中的用户访问 TrueNAS API 或 WebUI 时才需要。", + "Attaching Disk to Boot Pool": "将磁盘附加到启动池", "Attachments not uploaded": "附件未上传", "Attention": "注意", "Audit": "审计", + "Audit Entry": "审计条目", "Audit ID": "审计 ID", + "Audit Logging": "审计日志记录", "Audit Logs": "审计日志", + "Audit Settings": "审核设置", "Aug": "八月", "Auth Sessions Read": "身份验证会话读取", "Auth Sessions Write": "身份验证会话写入", @@ -1870,24 +537,30 @@ "Authentication Group Number": "身份验证组号", "Authentication Method": "身份验证方法", "Authentication Method and Group": "身份验证方法和组", + "Authentication Protocol": "认证协议", + "Authentication Type": "认证类型", "Authentication URL": "认证 URL", "Authentication URL for the server. This is the OS_AUTH_URL from an OpenStack credentials file.": "服务器的认证 URL。这是来自 OS_AUTH_URL 的 OpenStack 凭证文件。", "Authenticator": "身份验证器", "Authenticator to validate the Domain. Choose a previously configured ACME DNS authenticator.": "身份验证域。选择一个先前配置的 ACME DNS 身份验证器。", "Authority Cert Issuer": "权威证书签发", + "Authority Key Config": "权限密钥配置", "Authority Key Identifier": "授权密钥标识符", "Authorized Access": "授权访问", "Authorized Hosts and IP addresses": "授权的主机和 IP 地址", "Authorized Keys": "授权密钥", "Authorized Networks": "授权网络", "Auto": "自动", + "Auto Refresh": "自动刷新", "Auto TRIM": "自动 TRIM (SSD)", "Autoconfigure IPv6": "自动配置 IPv6 ", "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 restart 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.": "在指定的秒数后自动停止脚本或命令。", + "Autostart": "自动启动", "Auxiliary Arguments": "附加参数", "Auxiliary Groups": "附加组", "Auxiliary Parameters": "附加参数", @@ -1895,6 +568,7 @@ "Auxiliary Parameters (upsd.conf)": "附加参数(upsd.conf)", "Available": "可用的", "Available Apps": "可用应用", + "Available Memory": "可用内存", "Available Resources": "可用资源", "Available Space": "可用空间", "Available Space Threshold (%)": "可用空间阈值(%)", @@ -1902,35 +576,54 @@ "Average Disk Temperature": "平均磁盘温度", "Avg Usage": "平均使用量", "Back": "返回", + "Back to Discover Page": "返回发现页面", + "Back to Support": "返回支持页面", "Back up the encryption key now! If the key is lost, the data on the disks will also be lost with no hope of recovery. Click Download Encryption Key to begin the download. This type of encryption is for users storing sensitive data. iXsystems, Inc. cannot be held responsible for any lost or unrecoverable data as a consequence of using this feature.": "请立刻备份加密密钥!如果密钥丢失,磁盘上的数据将一并丢失且不可恢复。点击 下载密钥 以开始下载。此类加密用于用户存储敏感数据。iXsystems, Inc. 不对使用此功能造成的任何数据丢失负责。", "Backblaze B2": "Backblaze B2", "Backend": "后端", "Backend used to map Windows security identifiers (SIDs) to UNIX UIDs and GIDs. To configure the selected backend, click EDIT IDMAP.": "后端用于将 Windows 安全标识符(SID)映射到 UNIX UID 和 GID 。要配置选定的后端,请单击 编辑 IDMAP 。", "Background (lowest)": "背景(最低)", + "Backup": "备份", + "Backup Config": "备份配置", + "Backup Credential": "备份凭据", "Backup Credentials": "备份凭据", "Backup Tasks": "备份任务", + "Backup to Cloud or another TrueNAS via links below": "通过以下链接备份到云或其他TrueNAS。", + "Bandwidth": "带宽", "Bandwidth Limit": "带宽限制", + "Base": "基础", "Base DN": "基本 DN", + "Base Image": "基础镜像", "Base Name": "基本名称", "Base64 encoded key for the Azure account.": "Azure 帐户的 Base64 编码密钥。", "Basic": "基本", "Basic Constraints": "基本约束", + "Basic Constraints Config": "基本约束配置", "Basic Info": "基本信息", "Basic Mode": "基本模式", "Basic Options": "基本选项", "Basic Settings": "基本设置", + "Batch Operations": "批量操作", + "Before updating, please read the release notes.": "在更新之前,请阅读发布说明。", "Begin": "开始", "Best effort (default)": "尽可能(默认)", + "Bind": "绑定", "Bind DN": "绑定 DN", "Bind IP Addresses": "绑定 IP 地址", + "Bind Interfaces": "绑定接口", "Bind Password": "绑定密码", "Block (iSCSI) Shares Targets": "块 (iSCSI) 共享 Target", + "Block I/O": "块I/O", + "Block I/O read and writes": "块 I/O 读写", "Block Size": "块大小", "Block size": "块大小", "Boot": "启动", + "Boot Environment": "启动环境", "Boot Environments": "引导环境", "Boot Loader Type": "引导加载程序类型", "Boot Method": "启动方法", + "Boot Pool Condition": "启动池状态", + "Boot Pool Disk Replaced": "引导池磁盘已更换", "Boot Pool Status": "启动池状态", "Boot environment name. Alphanumeric characters, dashes (-), underscores (_), and periods (.) are allowed.": "引导环境名称。允许使用字母数字字符,破折号(-),下划线(_)和句点(.)。", "Boot environment to be cloned.": "要克隆的引导环境。", @@ -1938,10 +631,14 @@ "Box": "Box", "Brainpool curves can be more secure, while secp curves can be faster. See Elliptic Curve performance: NIST vs Brainpool for more information.": "Brainpool 曲线可以更安全,而 secp 曲线可以更快。参见椭圆曲线性能:NIST 与 Brainpool 了解更多信息。", "Bridge": "桥接", + "Bridge Members": "桥接成员", + "Bridge Settings": "桥接设置", "Bridge interface": "桥接接口", "Browsable to Network Clients": "允许网络客户端浏览", + "Browse": "浏览", "Browse to a CD-ROM file present on the system storage.": "浏览系统存储中存在的 CD-ROM 文件。", "Browse to a storage location and add the name of the new raw file on the end of the path.": "浏览存储位置,并在路径末尾添加新原始文件的名称。", + "Browse to an existing file. Create a new file by browsing to a dataset and appending /(filename.ext) to the path.": "浏览到现有文件。通过浏览数据集并在路径后追加 /(文件名.扩展名) 来创建新文件。", "Browse to an existing pool or dataset to store the new zvol.": "浏览现有池或数据集以存储新的 zvol。", "Browse to the desired zvol on the disk.": "浏览磁盘上所需的 zvol。", "Browse to the existing path on the remote host to sync with. Maximum path length is 255 characters": "浏览远程主机上的现有路径以进行同步。最大路径长度为 255 个字符", @@ -1950,36 +647,53 @@ "Browse to the keytab file to upload.": "浏览要上传的密钥表文件。", "Browse to the operating system installer image file.": "浏览操作系统安装镜像文件。", "Browse to the path to be copied. Linux file path limits apply. Other operating systems can have different limits which might affect how they can be used as sources or destinations.": "浏览需要复制的路径。Linux 文件路径限制应用。其他操作系统也可能包含限制其作为源或终点的限制。", + "Browser time: {time}": "浏览器时间:{time}", "Bucket": "存储桶", "Bucket Name": "存储桶名称", "Bucket Policy Only": "仅存储桶策略", + "Bug": "错误", "Builtin": "内置", + "Bulk Actions": "批量操作", "Bulk Edit Disks": "批量编辑磁盘", "Bulk actions": "批量操作", "Burst": "突发", "By clicking the share creation checkbox below, a new share will be created on form submission with the default share settings Additionally, local TrueNAS users will have access to the resulting share and some more configuration options will be available.": "通过单击下面的共享创建复选框,将在提交表单时使用默认共享设置创建一个新共享。此外,本地 TrueNAS 用户将有权访问生成的共享,并且将提供更多配置选项。", "By default, Samba uses a hashing algorithm for NTFS illegal characters. Enabling this option translates NTFS illegal characters to the Unicode private range.": "默认情况下,Samba 对 NTFS 非法字符使用哈希算法。启用此选项会将 NTFS 非法字符转换为 Unicode 私有范围。", "By default, the VM receives an auto-generated random MAC address. Enter a custom address into the field to override the default. Click Generate MAC Address to add a new randomized address into this field.": "在默认情况下,虚拟机将会获得一个自动生成的随机 MAC 地址。输入一个自定义的地址来覆盖默认地址。点击生成 MAC 地址新增一个随机 MAC 地址。", + "By snapshot creation time": "按快照创建时间", "CA": "认证机构", "CC": "CC", "CD-ROM": "光盘", + "CD-ROM Path": "光盘路径", + "CLI": "命令行界面 (CLI)", "CN": "国家", + "CN Realm": "CN 领域", "CONVEYANCE": "运输", "COPY": "复制", "CPU": "处理器", + "CPU & Memory": "CPU与内存", "CPU And Memory": "CPU 和内存", "CPU Configuration": "CPU 配置", "CPU Mode": "CPU 模式", "CPU Model": "CPU 型号", + "CPU Overview": "CPU 概述", + "CPU Recent Usage": "CPU 最近使用情况", "CPU Reports": "CPU 报告", + "CPU Stats": "CPU 统计信息", + "CPU Temperature Per Core": "每个核心的CPU温度", "CPU Usage": "处理器使用率", + "CPU Usage Per Core": "每核CPU使用率", + "CPU Utilization": "CPU 利用率", "CPUs and Memory": "处理器和内存", "CRITICAL": "危急", "CRL Sign": "CRL 签名", + "CSR": "证书签名请求 CSR", + "CSR deleted": "CSR 已删除", "CSR exists on this system": "这个 CSR 已存在此系统上", "CSRs": "CSR", "Cache": "缓存", "Cache VDEVs": "缓存 VDEV", + "Caches": "缓存", "Calculate number of threads dynamically": "动态计算线程数", "Callback Address": "回调地址", "Callback State": "回调状态", @@ -1990,7 +704,9 @@ "Canceled Resilver on {date}": "{date}取消了一致性重建", "Canceled Scrub on {date}": "{date}取消了数据巡检", "Cannot Edit while HA is Enabled": "启用 HA 时无法编辑", + "Cannot be enabled for built-in users.": "无法为内置用户启用。", "Cannot edit while HA is enabled.": "启用 HA 时无法编辑", + "Capabilities": "能力", "Capacity": "容量", "Capacity Settings": "容量设置", "Capture and attach screenshot to the review": "捕获屏幕截图并将其附加到评论中", @@ -1999,16 +715,20 @@ "Catalog Read": "目录读取", "Catalog Write": "目录写入", "Catalogs": "目录", + "Categories": "类别", "Category": "类别", + "Caution: Allocating too much memory can slow the system or prevent VMs from running.": "注意:分配过多的内存可能会导致系统变慢或阻止虚拟机运行。", "Certificate": "证书", "Certificate Authorities": "证书颁发机构", "Certificate Authority": "证书颁发机构", "Certificate Authority (CA) to use for connecting to the key server. A valid CA public certificate is required to authenticate the connection. WARNING: for security reasons, please protect the Certificate Authority used for key server authentication.": "证书颁发机构(CA)用于连接到密钥服务器。需要有效的 CA 公共证书来验证连接。警告:出于安全原因,请保护用于密钥服务器身份验证的证书颁发机构。", "Certificate Authority Read": "证书颁发机构读取", "Certificate Authority Write": "证书颁发机构写入", + "Certificate Options": "证书选项", "Certificate Read": "证书读取", "Certificate Signing Request": "证书签名请求", "Certificate Signing Requests": "证书签名请求", + "Certificate Subject": "证书名称", "Certificate Write": "证书写入", "Certificate authority created": "证书颁发机构 (CA) 已创建", "Certificate has been created.": "证书已创建。", @@ -2022,6 +742,7 @@ "Change Server": "更改服务器", "Change Session Timeout in": "更改令牌生命周期", "Change from public to increase system security. Can only contain alphanumeric characters, underscores, dashes, periods, and spaces. This can be left empty for SNMPv3 networks.": "从public更改以提高系统安全性。只能包含字母数字字符、下划线、破折号、句点和空格。对于SNMPv3网络,可以留空。", + "Change log": "变更日志", "Change the default password to improve system security. The new password cannot contain a space or #.": "修改默认密码以提高系统安全性。新的密码不能包含空格或\\#。", "Changelog": "变更日志", "Changes Saved": "更改已保存", @@ -2033,26 +754,37 @@ "Changing to a nightly train is one-way. Changing back to a stable train is not supported! ": "更改为 nightly 分支是单向的。不支持更改回稳定的分支!", "Channel": "向导", "Channel {n}": "频道 {n}", + "Check": "检查", + "Check Alerts for more details.": "查看警报以获取更多详细信息。", + "Check App Details": "检查应用程序详情", "Check Available Apps": "检查可用的应用程序", "Check Interval": "检查间隔", "Check Release Notes": "检查发行说明", + "Check for Software Updates": "检查软件更新", "Check for Updates": "检查更新", "Check for Updates Daily and Download if Available": "每天检查更新并在可用时下载", + "Check for docker image updates": "检查 Docker 镜像更新", "Check the box for full upgrade. Leave unchecked to download only.": "选中复选框以进行完整升级。取消选中仅下载。", + "Check the update server daily for any updates on the chosen train. Automatically download an update if one is available. Click APPLY PENDING UPDATE to install the downloaded update.": "每天检查更新服务器以获取所选版本的任何更新。如果有可用更新,自动下载该更新。点击应用待定更新以安装下载的更新。", "Check this box if importing a certificate for which a CSR exists on this system": "如果导入此系统上存在的 CSR 证书,请选中此框", "Check to enable Audit Logs": "检查以启用审核日志", + "Check {name} and {n, plural, one {# other disk} other {# other disks}}.": "检查{name}和 {n} 个其他磁盘。", + "Check {name}.": "检查 {name}。", "Checking HA status": "正在检查高可用(HA)状态", "Checking this option will lead to /usr/sbin/zfs being allowed to be executed using sudo without password. If not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "勾选该选项,将允许 /usr/sbin/zfs 使用 sudo 执行命令且不需要密码鉴权,若未勾选则必须使用 zfs allow 命令授权非用户权限以执行 ZFS 相关任务。由于 Linux 系统限制,非 root 或无相关权限的用户不能挂载 ZFS 文件系统。", "Checksum": "校验和", "Checksum Errors": "校验错误", + "Child Shares": "子数据集共享", "Children": "子集", "Choices are None, Auto, CHAP, or Mutual CHAP.": "可以从无,自动,CHAP,Mutual CHAP中选择。", "Choose": "选择", "Choose AES-256 or None.": "选择AES-256。", + "Choose Master if the UPS is plugged directly into the system serial port. The UPS will remain the last item to shut down. Choose Slave to have this system shut down before Master. See the Network UPS Tools Overview.": "如果UPS直接插入系统串口,请选择主设备。UPS将是最后关闭的项目。选择从设备可以使该系统在主设备之前关闭。请参阅网络UPS工具概述。", "Choose ON to update the access time for files when they are read. Choose Off to prevent producing log traffic when reading files. This can result in significant performance gains.": "选择ON来更新读取文件时的访问时间。选择Off可以防止在读取文件时产生日志流量。这可以带来明显性能提升。", "Choose File": "选择文件", "Choose File for {label}": "为 {label} 选择文件", "Choose Pool": "选择池", + "Choose Shell Details": "选择 Shell 详情", "Choose a DNS provider and configure any required authenticator attributes.": "选择 DNS 提供程序并配置任何必需的身份验证器属性。", "Choose a Tag": "选择标签", "Choose a connection that has been saved in Credentials > Backup Credentials > SSH Connections.": "选择已保存在 用户凭证 > 备份凭证 > SSH 连接 的连接。", @@ -2099,13 +831,18 @@ "Choosing an entry loads a preset ACL that is configured to match general permissions situations.": "选择条目将加载配置为与常规权限情况匹配的预设 ACL。", "City": "城市", "Classification for each S3 object. Choose a class based on the specific use case or performance requirements. See Amazon S3 Storage Classes for more information.": "每个 S3 对象的分类。根据特定的用例或性能要求选择一个类。请参见Amazon S3 存储类了解更多信息。", + "Clear": "清除", "Clear SED Password": "清除 SED 密码", "Clear Sync Keys": "清除同步秘钥", "Clear the Idmap Cache": "清除 Idmap 缓存", "Clear the SED password for this disk.": "清除该磁盘的 SED 密码。", "Clearing Cache...": "正在清除缓存...", + "Click \"Add\" to specify NFS client hosts for this share. If both networks and hosts are empty the share will be exported to everyone.": "点击“新增”以指定此共享的NFS客户端主机。如果网络和主机都为空,则该共享将对所有人开放。", + "Click \"Add\" to specify NFS client network ranges for this share. If both networks and hosts are empty the share will be exported to everyone.": "点击“新增”以指定该共享的NFS客户端网络范围。如果网络和主机都为空,则该共享将对所有人开放。", + "Click Add to add first VDEV.": "点击“新增”以创建第一个VDEV。", "Click an item to view NFSv4 permissions": "单击项目以查看 NFSv4 权限", "Click for information on TrueNAS SCALE Migration, Nightly trains and other upgrade options.": "点击 以获取关于 TrueNAS SCALE 迁移,每夜更新通道以及更多升级选项。", + "Click to give {index} star rating.": "点击给{index}星评级。", "Clicking Continue allows TrueNAS to finish the update in the background while Abort stops the process and reverts the dataset ACL to the previously active ACL.": "单击继续允许 TrueNAS 在后台完成更新,而中止停止该过程并将数据集 ACL 恢复到以前活动的 ACL。", "Client ID": "客户端 ID", "Client Name": "客户端名称", @@ -2115,23 +852,43 @@ "Clone To New Dataset": "克隆到新数据集", "Clone to New Dataset": "克隆到新数据集", "Close": "关闭", + "Close Feedback Dialog": "关闭反馈对话框", + "Close Inspect VDEVs Dialog": "关闭检查 VDEVs 对话框", + "Close Instance Form": "关闭实例表单", "Close panel": "关闭面板", + "Close scheduler": "关闭调度器", "Close the form": "关闭表单", + "Close {formType} Form": "关闭 {formType} 表单", + "Cloud Backup": "云备份", + "Cloud Backup Read": "读取云备份", + "Cloud Backup Restored Successfully": "云备份恢复成功", + "Cloud Backup Snapshot": "云备份快照", + "Cloud Backup Write": "编辑云备份", + "Cloud Backup «{name}» has started.": "云备份 «{name}» 已启动。", + "Cloud Credential": "云凭据", "Cloud Credentials": "云凭据", "Cloud Sync": "云同步", "Cloud Sync Read": "云端同步读取", + "Cloud Sync Task": "云同步任务", + "Cloud Sync Task Wizard": "云同步任务向导", "Cloud Sync Tasks": "云同步任务", "Cloud Sync Write": "云端同步写入", + "Cloud Sync to Storj or similar provider": "云同步到Storj或类似的服务提供商", + "Cloud Sync «{name}» has been deleted.": "云同步 «{name}» 已被删除。", + "Cloud Sync «{name}» has been restored.": "云同步 «{name}» 已被恢复。", "Cloud Sync «{name}» has started.": "云同步 «{name}» 已开始。", "Cloud Sync «{name}» stopped.": "云同步 «{name}» 已停止。", "Cloud credential added.": "添加了云凭证。", "Cloud credential updated.": "云凭证已更新。", + "Collapse": "折叠", "Collapse Row": "解散行", "Columns": "列", "Combine multiple, critical-for-failover interfaces into a group. Groups apply to single systems. A failover occurs when every interface in the group fails. Groups with a single interface trigger a failover when that interface fails. Configuring the system to failover when any interface fails requires marking each interface as critical and placing them in separate groups.": "将多个故障转移关键接口组合在一起。组适用于单个系统。组中的每个接口均发生故障时,将发生故障转移。具有单个接口的组会在该接口发生故障时触发故障转移。将系统配置为在任何接口出现故障时进行故障转移都需要将每个接口标记为关键接口,并将它们放在单独的组中。", "Command": "命令", "Command / Script": "命令/脚本", + "Command Line Interface": "命令行界面", "Command/Script": "命令/脚本", + "Command: {command}": "命令:{command}", "Commands": "命令", "Comments": "注释", "Comments about this script.": "关于此脚本的注释。", @@ -2140,23 +897,47 @@ "Community": "社区", "Compatibility": "兼容性", "Complete the Upgrade": "完成升级", + "Completed Jobs": "已完成的任务", "Completed S.M.A.R.T. Tests": "完成 S.M.A.R.T. 测试", "Completely replicate the selected dataset. The target dataset will have all of the source dataset's properties, child datasets, clones and snapshots that match the specified naming schema. Set Snapshot Name Regular Expression to .* to replicate all snapshots.": "完全复制所选数据集。目标数据集将具有与指定命名模式匹配的所有源数据集的属性、子数据集、克隆和快照。将快照名称正则表达式设置为 .* 以复制所有快照。", "Compress": "压缩", + "Compress Connections": "压缩连接", "Compression Level": "压缩级别", "Compression level": "压缩级别", + "Computer Account OU": "计算机账户组织单位", + "Config Email": "配置邮箱", "Config Service": "配置服务", "Config-Reset": "重新配置", + "Configuration": "配置", "Configuration Preview": "配置预览", "Configure": "配置", "Configure 2FA Secret": "配置双因素认证密钥", "Configure ACL": "配置 ACL", + "Configure Access": "配置访问权限", "Configure Active Directory": "配置活动目录", + "Configure Alerts": "配置警报", + "Configure Allowed IP Addresses": "配置允许的 IP 地址", + "Configure Audit": "配置审计", + "Configure Console": "配置控制台", "Configure Dashboard": "配置仪表板", + "Configure Email": "配置电子邮件", + "Configure Global Two Factor Authentication": "配置全局双因素身份验证", + "Configure Isolated GPU Devices": "配置隔离的 GPU 设备", + "Configure Kernel": "配置内核", "Configure LDAP": "配置 LDAP", + "Configure Notifications": "配置通知", + "Configure Replication": "配置复制", + "Configure Self-Encrypting Drive": "配置自加密驱动器(SED)", + "Configure Sessions": "配置会话", + "Configure Storage": "配置存储", + "Configure Syslog": "配置 Syslog", + "Configure dashboard to edit this widget.": "配置仪表板以编辑此小部件。", + "Configure iSCSI": "配置 iSCSI", "Configure now": "立即配置", "Configure permissions for this share's dataset now?": "现在配置此共享的数据集的权限?", "Configured for simultaneous use with SMB and NFS on the same dataset.": "配置为在同一数据集上同时使用 SMB 和 NFS。", + "Configuring NFS exports of root-level datasets may lead to storage reconfiguration issues. Consider creating a dataset instead.": "配置根级数据集的 NFS 共享可能会导致存储重配置问题。建议改为创建一个数据集。", + "Configuring SMB exports of root-level datasets may lead to storage reconfiguration issues. Consider creating a dataset instead.": "配置根级数据集的 SMB 共享可能会导致存储重配置问题。建议考虑创建一个数据集。", "Configuring...": "配置中...", "Confirm": "确认", "Confirm Export/Disconnect": "确认导出/断开", @@ -2175,32 +956,47 @@ "Connect": "连接", "Connect Timeout": "连接超时", "Connect to TrueCommand Cloud": "连接到 TrueCommand Cloud", + "Connect using:": "使用以下连接:", "Connected Initiators": "连接启动器", "Connected at": "连接到", "Connecting to TrueCommand": "连接到 TrueCommand", + "Connecting to TrueNAS": "连接到 TrueNAS", "Connection Error": "连接错误", "Connection port number on the central key server.": "中央密钥服务器上的连接端口号。", "Connections": "连接", "Console": "控制台", "Console Keyboard Map": "控制台键盘映射", + "Console Menu": "控制台菜单", + "Console Settings": "控制台设置", "Contact": "联系", "Container": "容器", + "Container ID": "容器ID", "Container Images": "容器镜像", + "Container Logs": "容器日志", "Container Read": "容器读取", + "Container Shell": "容器 Shell", "Container Write": "容器写入", "Containers": "容器", + "Containers (WIP)": "容器(进行中)", "Content Commitment": "内容承诺", "Contents of the uploaded Service Account JSON file.": "已上传的服务帐户 JSON 文件的内容。", "Context menu copy and paste operations are disabled in the Shell. Copy and paste shortcuts for Mac are Command+c and Command+v. For most operating systems, use Ctrl+Insert to copy and Shift+Insert to paste.": "命令行管理程序中禁用了上下文菜单复制和粘贴操作。Mac 的复制和粘贴快捷键是Command+cCommand+v。对于大多数操作系统,请使用Ctrl+Insert复制和Shift+Insert粘贴。", "Continue": "继续", + "Continue in background": "在后台继续执行", "Continue with download?": "继续下载吗?", "Continue with the upgrade": "继续升级", + "Contract Type": "合同类型", "Control": "控制", + "Controller": "控制器", + "Controller Type": "控制器类型", + "Controls": "控件", "Controls whether SMART monitoring and scheduled SMART tests are enabled.": "控制是否启用 SMART 监控和计划的 SMART 测试。", "Controls whether audit messages will be generated for the share.

    Note: Auditing may not be enabled if SMB1 support is enabled for the server.": "控制是否为共享生成审计消息。

    注意:如果服务器启用了 SMB1 支持,则可能无法启用审计。", "Controls whether the user used for SSH/SSH+NETCAT replication will have passwordless sudo enabled to execute zfs commands on the remote host. If not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "勾选该选项,将允许通过 SSH/SSH+NETCAT 远程连接的用户使用 sudo 命令执行 zfs 相关命令且不需要密码鉴权,若未勾选则必须使用 zfs allow 命令授权非用户权限以执行 ZFS 相关任务。由于 Linux 系统限制,非 root 或无相关权限的用户不能挂载 ZFS 文件系统。", "Controls whether the volume snapshot devices under /dev/zvol/⟨pool⟩ are hidden or visible. The default value is hidden.": "控制 /dev/zvol/⟨pool⟩ 下的卷快照设备是隐藏还是可见。默认是隐藏的。", + "Cooling": "冷却", "Copied to clipboard": "已复制到剪贴板", + "Copies": "副本", "Copy Json": "复制 Json", "Copy Text": "复制文本", "Copy URL": "复制 URL", @@ -2208,63 +1004,132 @@ "Copy to Clipboard": "复制到剪贴板", "Cores": "核心数", "Country": "国家", + "Crashed": "崩溃", "Create": "创建", "Create ACME Certificate": "创建 ACME 证书", + "Create ACME DNS-Authenticator": "创建 ACME DNS 验证器", + "Create Alert": "创建警报", + "Create Backup Credential": "创建备份凭据", "Create Boot Environment": "创建启动环境", + "Create CSR": "创建 CSR", + "Create Certificate": "创建证书", + "Create Certificate Authority": "创建证书授权机构", + "Create Certificate Signing Requests": "创建证书签名请求", + "Create Cloud Backup": "创建云备份", + "Create Cloud Credential": "创建云凭证", + "Create Cloud Sync Task": "创建云同步任务", + "Create Credential": "创建凭证", + "Create Cron Job": "创建定时任务", + "Create DNS Authenticator": "创建 DNS 验证器", "Create Dataset": "创建数据集", + "Create Disk Test": "创建磁盘测试", + "Create Exporter": "创建导出器", + "Create Group": "创建组", "Create Home Directory": "创建用户主目录", + "Create Idmap": "创建 Idmap", + "Create Init/Shutdown Script": "创建初始化/关闭脚本", + "Create Instance": "创建实例", + "Create Interface": "创建接口", + "Create Kerberos Keytab": "创建 Kerberos 密钥表", + "Create Kerberos Realm": "创建 Kerberos 领域", + "Create Kernel Parameters": "创建内核参数", + "Create Key": "创建密钥", "Create NFS Share": "创建 NFS 共享", + "Create NTP Server": "创建NTP服务器", "Create New": "新建", + "Create New Instance": "创建新实例", "Create New Primary Group": "创建新的主要组", + "Create Periodic S.M.A.R.T. Test": "创建定期 S.M.A.R.T. 测试", + "Create Periodic Snapshot Task": "创建定期快照任务", "Create Pool": "创建池", + "Create Privilege": "创建权限", + "Create Replication Task": "创建复制任务", + "Create Reporting Exporter": "创建报告导出器", + "Create Rsync Task": "创建 Rsync 任务", "Create SMB Share": "创建 SMB 共享", + "Create SSH Connection": "创建 SSH 连接", + "Create SSH Keypair": "创建 SSH 密钥对", + "Create Scrub Task": "创建数据巡检任务", + "Create Share": "创建共享", + "Create Smart Test": "创建 S.M.A.R.T. 测试", "Create Snapshot": "创建快照", + "Create Snapshot Task": "创建快照任务", + "Create Static Route": "创建静态路由", + "Create Sysctl": "创建 Sysctl", + "Create TrueCloud Backup Task": "创建 TrueCloud 备份任务", + "Create Tunable": "创建可调参数", + "Create User": "创建用户", + "Create VM": "创建虚拟机", "Create Virtual Machine": "创建虚拟机", + "Create Zvol": "创建 Zvol", "Create a custom ACL": "创建自定义 ACL", "Create a new Target or choose an existing target for this share.": "为此共享创建一个新目标或选择一个现有目标。", "Create a new home directory for user within the selected path.": "在所选路径内为用户创建新的主目录。", "Create a recommended formation of VDEVs in a pool.": "在池中创建推荐的 VDEVs 编队。", "Create an ACL": "创建 ACL", + "Create boot environment": "新建启动环境", "Create empty source dirs on destination after sync": "同步后在目标上创建空源目录", + "Create iSCSI": "创建 iSCSI", "Create more data VDEVs like the first.": "像第一个一样创建更多数据 VDEVs。", "Create new disk image": "创建新磁盘镜像", "Create or Choose Block Device": "创建或选择块设备", "Create pool": "创建池", + "Created": "创建", + "Created by: {creationSource} ({creationType})": "创建者: {creationSource} ({creationType})", + "Created date": "创建日期", "Creates dataset snapshots even when there have been no changes to the dataset from the last snapshot. Recommended for creating long-term restore points, multiple snapshot tasks pointed at the same datasets, or to be compatible with snapshot schedules or replications created in TrueNAS 11.2 and earlier.

    For example, allowing empty snapshots for a monthly snapshot schedule allows that monthly snapshot to be taken, even when a daily snapshot task has already taken a snapshot of any changes to the dataset.": "即使最后一个快照的数据集没有更改,也可以创建数据集快照。建议用于创建长期还原点,将多个快照任务指向相同的数据集,或者与在 TrueNAS 11.2 和更早版本中创建的快照计划或复制兼容。

    例如,允许每月快照计划使用空快照,即使每月快照任务已经为数据集的任何更改创建了快照,也可以进行每月创建快照。", "Creating ACME Certificate": "创建 ACME 证书", + "Creating custom app": "创建自定义应用程序", "Creating or editing a sysctl immediately updates the Variable to the configured Value. A restart is required to apply loader or rc.conf tunables. Configured tunables remain in effect until deleted or Enabled is unset.": "创建或编辑 sysctl 会立即将变量更新为已配置的值。必须重新启动才能应用 loader rc.conf 可调参数。配置的可调参数将保持有效,直到删除或未设置「启用」为止。", "Creation Time": "创建时间", "Credential": "凭据", "Credentials": "用户凭证", + "Credentials have been successfully added.": "凭据已成功添加。", "Credentials: {credentials}": "凭据:{credentials}", "Critical": "危急", "Critical Extension": "关键扩展", "Critical applications": "关键应用", "Criticality": "关键性", + "Cron Job": "计划任务", "Cron Jobs": "定时任务", "Cron job created": "计划任务已创建", "Cron job updated": "计划任务已更新", + "Cronjob": "计划任务", "Cronjob deleted": "定时计划任务已删除", "Cryptographic protocols for securing client/server connections. Select which Transport Layer Security (TLS) versions TrueNAS can use for connection security.": "用于保护客户端/服务器连接的加密协议。选择 TrueNAS 可用于连接安全性的传输层安全(TLS)版本。", "Current Configuration": "当前配置", "Current Default Gateway": "当前默认网关", "Current Password": "当前密码", + "Current Sensor": "当前传感器", "Current State": "当前状态", + "Current Train:": "当前通道:", "Current Version": "当前版本", "Custom": "自定义", + "Custom ({customTransfers})": "自定义 ({customTransfers})", "Custom ACME Server Directory URI": "自定义 ACME 服务器目录 URI", "Custom App": "自定义应用程序", + "Custom App via YAML": "通过YAML自定义应用程序", + "Custom Config": "自定义配置", + "Custom Name": "自定义名称", + "Custom Reason": "自定义原因", + "Custom Transfers": "自定义传输", "Custom Value": "自定义值", + "Custom app config in YAML format.": "自定义应用程序配置采用YAML格式。", + "Custom schedule": "自定义计划", + "Customer Name": "客户名称", "Customizes the importance of the alert. Each level of importance has a different icon and color to express the level of importance.": "自定义警报的重要性。每个重要性级别都有不同的图标和颜色来表示。", "DEBUG": "调试", "DEFAULT": "默认", "DHCP": "DHCP", "DNS Domain Name": "DNS 域名", "DNS Servers": "DNS 服务器", + "DNS Timeout": "DNS 超时", "DNS name of the domain": "域的 DNS 名称", "DNS timeout in seconds. Increase this value if DNS queries timeout.": "DNS 超时(以秒为单位)。如果 DNS 查询超时,请增加此值。", "DQ % Used": "已使用数据配额 %", "DQ Used": "已使用的数据配额", + "DS Groups": "DS 组", + "DS Groups Name": "DS 组名称", "Daily time range for the specific periodic snapshots to replicate, in 15 minute increments. Periodic snapshots created before the Begin time will not be included in the replication.": "要复制的特定定期快照的每日时间范围,以 15 分钟为增量。在开始时间之前创建的定期快照将不包括在复制中。", "Daily time range for the specific periodic snapshots to replicate, in 15 minute increments. Snapshots created after the End time will not be included in the replication.": "要复制的特定定期快照的每日时间范围,以 15 分钟为增量。在结束时间之后创建的快照将不包括在复制中。", "Dashboard": "仪表板", @@ -2274,25 +1139,43 @@ "Data Encipherment": "数据加密", "Data Protection": "数据保护", "Data Quota": "数据配额", + "Data Topology": "数据拓扑", "Data VDEVs": "数据 VDEV", + "Data Written": "已写入数据", "Data is identical in each disk. A mirror requires at least two disks, provides the most redundancy, and has the least capacity.": "每个磁盘中的数据都是相同的。镜像至少需要两个磁盘。提供最大的冗余,但是容量最小。", "Data transfer security. The connection is authenticated with SSH. Data can be encrypted during transfer for security or left unencrypted to maximize transfer speed. Encryption is recommended, but can be disabled for increased speed on secure networks.": "数据传输安全性。连接已通过 SSH 验证。为了安全起见,可以在传输过程中对数据进行加密,也可以不加密以最大化传输速度。建议使用加密,不过在安全网络的情况下可以禁用加密以提高传输速度。", "Database": "数据库", "Dataset": "数据集", + "Dataset Capacity Management": "数据集容量管理", + "Dataset Data Protection": "数据集数据保护", "Dataset Delete": "数据集删除", "Dataset Details": "数据集详细信息", + "Dataset Information": "数据集信息", "Dataset Key": "数据集密钥", + "Dataset Name": "数据集名称", "Dataset Passphrase": "数据集密码", + "Dataset Permissions": "数据集权限", + "Dataset Preset": "数据集预设", + "Dataset Quota": "数据集配额", "Dataset Read": "数据集读取", + "Dataset Roles": "数据集角色", "Dataset Rollback From Snapshot": "从快照回滚数据集", "Dataset Space Management": "数据集空间管理", "Dataset Write": "数据集写入", + "Dataset ZFS Encryption": "数据集 ZFS 加密", "Dataset for use by an application. If you plan to deploy container applications, the system automatically creates the ix-apps dataset but this is not used for application data storage.": "供应用程序使用的数据集。如果您计划部署容器应用程序,系统会自动创建 ix-apps 数据集,但这不用于应用程序数据存储。", "Dataset has no mountpoint": "数据集没有挂载点", + "Dataset is locked": "数据集已锁定", + "Dataset is shared via NFS": "数据集通过 NFS 共享。", + "Dataset is shared via SMB": "数据集通过 SMB 共享。", + "Dataset is shared via SMB as {shares}": "数据集通过 SMB 共享为 {shares}。", + "Dataset is shared via iSCSI": "数据集通过 iSCSI 共享。", "Dataset locked": "数据集已锁定", "Dataset name is set by appending the parent path with the name entered by you. The max allowed length for the dataset name is 200. The parent path for this dataset already exceeds that limit. It is not possible to create anymore nested datasets under this path.": "数据集名称是通过在父路径后面加上您输入的名称来设置的。数据集名称的最大允许长度为 200。此数据集的父路径已超过该限制。无法再在此路径下创建嵌套数据集。", "Dataset promoted successfully.": "数据集已提升成功", + "Dataset rolled back to snapshot {name}.": "数据集已回滚到快照 {name}。", "Dataset settings updated.": "数据集设置已更新。", + "Dataset {name} was created.": "数据集 {name} 已创建。", "Dataset «{name}» updated.": "数据集 «{name}» 已更新", "Datasets": "数据集", "Datastore": "数据存储", @@ -2315,12 +1198,17 @@ "Decipher Only": "仅解密", "Dedup": "去重", "Dedup VDEVs": "去重 VDEV", + "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "去重在 24.10 中是实验性的,并且不完全支持。启用后,数据将以这种内存密集型的方法永久存储,无法撤消。请极为谨慎,确保在启用此功能之前有足够的数据备份。", "Default": "默认", "Default ACL Options": "默认 ACL 选项", "Default Checksum Warning": "默认校验和警告", "Default Gateway": "默认网关", + "Default Route": "默认路由", "Default TrueNAS controller": "默认 TrueNAS 控制器", "Default is UTF-8 which supports all characters in all languages.": "默认值为 UTF-8,它支持所有语言的字符。", + "Default widgets restored": "默认小部件已恢复", + "Default – follow upstream / TrueNAS default": "默认 - 跟随上游 / TrueNAS 默认设置", + "Defect": "缺陷", "Define a length of time to retain the snapshot on this system. After the time expires, the snapshot is removed. Snapshots which have been replicated to other systems are not affected.": "定义快照在此系统上保留的时间长度。时间到期后,快照将被删除。已复制到其他系统的快照不受影响。", "Define a maximum size for both the dataset and any child datasets. Enter 0 to remove the quota.": "为数据集和子数据集定义最大大小。输入 0 删除配额。", "Define a number of minutes for smartd to wake up and check if any tests are configured to run.": "设定 smartd 分钟数以唤醒并检查是否有预定的需要运行的测试。", @@ -2339,14 +1227,18 @@ "Define whether the control channel, data channel, both channels, or neither channel of an FTP session must occur over SSL/TLS. The policies are described here": "定义 FTP 会话的控制通道、数据通道、双通道或双通道是否必须通过 SSL/TLS。此策略在此有说明。", "Degraded": "降级", "Delay Updates": "延迟更新", + "Delay VM Boot Until SPICE Connects": "延迟虚拟机启动直到 SPICE 连接。", "Delete": "删除", "Delete {deviceType} {device}": "删除 {deviceType} {device}", "Delete API Key": "删除 API 密钥", + "Delete Alert Service \"{name}\"?": "删除警报服务 \"{name}\"?", + "Delete All Selected": "删除所有选定项", "Delete Allowed Address": "删除允许的地址", "Delete Catalog": "删除目录", "Delete Certificate": "删除证书", "Delete Certificate Authority": "删除证书颁发机构", "Delete Children": "删除子项", + "Delete Cloud Backup \"{name}\"?": "删除云备份 \"{name}\"?", "Delete Cloud Credential": "删除云凭据", "Delete Cloud Sync Task \"{name}\"?": "删除云端同步任务 \"{name}\" 吗?", "Delete DNS Authenticator": "删除 DNS 验证器", @@ -2366,6 +1258,7 @@ "Delete SSH Keypair": "删除 SSH 密钥对", "Delete Script": "删除脚本", "Delete Scrub Task \"{name}\"?": "删除数据巡检任务 \"{name}\" 吗?", + "Delete Snapshot": "删除快照", "Delete Static Route": "删除静态路由", "Delete Sysctl": "删除 Sysctl", "Delete Sysctl Variable {variable}?": "删除 Sysctl 变量 {variable} 吗?", @@ -2376,12 +1269,21 @@ "Delete User Quota": "删除用户配额", "Delete Virtual Machine": "删除虚拟机", "Delete Virtual Machine Data?": "删除虚拟机数据?", + "Delete all TrueNAS configurations that depend on the exported pool. Impacted configurations may include services (listed above if applicable), applications, shares, and scheduled data protection tasks.": "删除所有依赖于已导出存储池的 TrueNAS 配置。受影响的配置可能包括服务(如适用,见上文)、应用程序、共享和计划的数据保护任务。", + "Delete dataset {name}": "删除数据集 {name}", "Delete files in the destination directory that do not exist in the source directory.": "删除目标目录中源目录不存在的文件。", + "Delete group": "删除组", "Delete iSCSI extent {name}?": "删除 iSCSI Extent {name}?", + "Delete raw file": "删除原始文件", "Delete saved configurations from TrueNAS?": "删除使用这个池的共享配置吗?", + "Delete selections": "删除选择项", "Delete snapshot {name}?": "删除快照 {name}?", + "Delete user primary group `{name}`": "删除用户主组 `{name}`", + "Delete zvol device": "删除 zvol 设备", + "Delete zvol {name}": "删除 zvol {name}", "Delete {n, plural, one {# user} other {# users}} with this primary group?": "删除具有此主要组的{n, plural, other{#个用户}}?", "Delete {name}?": "删除 {name}?", + "Deleted {n, plural, one {# snapshot} other {# snapshots}}": "删除了 {n} 个快照", "Deleting exporter": "删除导出器", "Deleting interfaces while HA is enabled is not allowed.": "不允许在启用 HA 的情况下删除接口。", "Deleting...": "删除中...", @@ -2400,6 +1302,8 @@ "Descriptive identifier for this certificate authority.": "此证书颁发机构的描述性标识符。", "Descriptive identifier for this certificate.": "此证书的描述性标识符。", "Descriptive name for the replication.": "复制的描述性名称。", + "Descriptor": "描述符", + "Desired – encrypt transport if supported by client during session negotiation": "期望 - 在会话协商期间,如果客户端支持,则加密传输。", "Destination": "目标", "Destination Dataset Read-only Policy": "目标数据集只读策略", "Destination Location": "目标位置", @@ -2407,6 +1311,7 @@ "Destination Snapshots Are Not Related to Replicated Snapshots": "目标快照与复制快照无关", "Destination dataset does not contain any snapshots that can be used as a basis for the incremental changes in the snapshots being sent. The snapshots in the destination dataset will be deleted and the replication will begin with a complete initial copy.": "目标数据集不包含任何快照,这些快照可用作发送的快照中增量更改的基础。目标数据集中的快照将被删除,复制将以完整的初始副本开始。", "Destroy data on this pool?": "销毁这个池里的数据?", + "Destroy the ZFS filesystem for pool data. This is a permanent operation. You will be unable to re-mount data from the exported pool.": "销毁池数据的 ZFS 文件系统。这是一个永久性操作。您将无法重新挂载来自已导出池的数据。", "Detach": "分离", "Detach Disk": "分离磁盘", "Detach disk {name}?": "分离磁盘 {name}?", @@ -2423,7 +1328,10 @@ "Device Order": "设备顺序", "Device added": "设备已添加", "Device names of each disk being edited.": "正在编辑的每个磁盘的设备名称。", + "Device removed": "设备已移除", "Device updated": "设备已更新", + "Device «{disk}» has been detached.": "设备 «{disk}» 已被卸载。", + "Device «{name}» was successfully attached.": "设备 «{name}» 已成功连接。", "Device/File": "设备/文件", "Devices": "设备", "Difference": "差异", @@ -2433,33 +1341,46 @@ "Direction": "方向", "Directories and Permissions": "目录和权限", "Directory Inherit": "目录继承", + "Directory Mask": "目录掩码", + "Directory Permissions": "目录权限", "Directory Service Read": "目录服务读取", "Directory Service Write": "目录服务写入", "Directory Services": "目录服务", "Directory Services Groups": "目录服务群组", "Directory Services Monitor": "目录服务监视器", "Directory/Files": "目录/文件", + "Disable": "禁用", + "Disable AD User / Group Cache": "禁用 AD 用户 / 组缓存", "Disable Endpoint Region": "禁用端点区域", "Disable Failover": "禁用故障转移", + "Disable LDAP User/Group Cache": "禁用 LDAP 用户/组缓存", "Disable Password": "禁用密码", "Disable Physical Block Size Reporting": "禁用物理块大小报告", "Disable automatic failover.": "禁用自动故障转移。", "Disable caching LDAP users and groups in large LDAP environments. When caching is disabled, LDAP users and groups do not appear in dropdown menus, but are still accepted when manually entered.": "禁用大型 LDAP 环境中的缓存 LDAP 用户和组。禁用缓存后,LDAP 用户和组不会显示在下拉菜单中,但在手动输入时仍被接受。", "Disabled": "禁用", + "Disabled in Disk Settings": "在磁盘设置中禁用", "Discard": "丢弃", "Disconnect": "断开连接", "Discover": "探索", "Discover Apps": "探索应用程序", + "Discover Remote Host Key": "发现远程主机密钥", "Discovery Auth Group": "发现身份验证组", "Discovery Auth Method": "发现身份验证方法", "Discovery Authentication Group": "发现身份验证组", "Discovery Authentication Method": "发现身份验证方法", "Disk": "磁盘", "Disk Description": "磁盘描述", + "Disk Details for {disk}": "{disk} 的磁盘详情", + "Disk Details for {disk} ({descriptor})": "{disk} ({descriptor}) 的磁盘详细信息", "Disk Health": "磁盘运行状况", + "Disk I/O": "磁盘I/O", + "Disk IO": "磁盘IO", "Disk Info": "磁盘信息", "Disk Reports": "磁盘报告", + "Disk Sector Size": "扇区大小", "Disk Size": "磁盘大小", + "Disk Tests": "磁盘测试", "Disk Type": "磁盘类型", "Disk Wiped successfully": "磁盘擦除成功", "Disk device name.": "磁盘设备名称。", @@ -2468,29 +1389,49 @@ "Disk settings successfully saved.": "磁盘设置已成功保存。", "Disks": "磁盘", "Disks Overview": "磁盘概览", + "Disks on {enclosure}": "{enclosure}上的磁盘", "Disks temperature related alerts": "磁盘温度相关警报", "Disks to be edited:": "要编辑的磁盘:", + "Disks w/ZFS Errors": "带有ZFS错误的磁盘", "Disks with Errors": "有错误的磁盘", + "Disks with exported pools": "含有导出池的磁盘", + "Dismiss": "忽略", + "Dismiss All Alerts": "忽略所有警报", "Dismissed": "已忽略", + "Dispersal Strategy": "分散策略", "Display": "展示", + "Display Login": "显示登录", "Display Port": "显示端口", "Display console messages in real time at the bottom of the browser.": "在浏览器底部实时显示控制台消息。", "Distinguished Name": "专有名称", + "Distributed Hot Spares": "分布式热备份", "Do NOT change this setting when using Windows as the initiator. Only needs to be changed in large environments where the number of systems using a specific RPM is needed for accurate reporting statistics.": "使用 Windows 作为启动器时,请不要更改此设置。仅在大型环境中需要更改,在大型系统集群环境中需要使用特定 RPM 的才能获得准确的报告统计信息。", + "Do any of them look similar?": "它们中有没有看起来相似的?", "Do not enable ALUA on TrueNAS unless it is also supported by and enabled on the client computers. ALUA only works when enabled on both the client and server.": "请勿在 TrueNAS 上启用 ALUA,除非客户端计算机也支持并启用 ALUA。ALUA 仅在客户端和服务器上都启用时才有效。", "Do not save": "不保存", "Do not set this if the Serial Port is disabled.": "若已禁用了串行端口,请不要设置此项。", "Do you want to configure the ACL?": "你想配置 ACL 吗?", "Docker Host": "Docker 主机", + "Docker Hub Rate Limit Warning": "Docker Hub 速率限制警告", + "Docker Image": "Docker 镜像", "Docker Registry Authentication": "Docker 注册表身份验证", + "Docker Write": "修改 Docker", + "Docs": "文档", "Does your business need Enterprise level support and services? Contact iXsystems for more information.": "您的企业是否需要 Enterprise level 支持服务? 联系 iXsystems 以获取信息.", "Domain": "域", "Domain Account Name": "域账户名", + "Domain Account Password": "域账户密码", "Domain Name": "域名", + "Domain Name System": "域名系统 DNS", + "Domain:": "域:", "Domains": "域", "Don't Allow": "不允许", "Done": "完成", + "Door Lock": "门锁", "Download": "下载", + "Download Authorized Keys": "下载授权密钥", + "Download Config": "下载配置", + "Download Configuration": "下载配置", "Download Encryption Key": "下载加密密钥", "Download File": "下载文件", "Download Key": "下载密钥", @@ -2502,19 +1443,27 @@ "Download Updates": "下载更新", "Download actions": "下载动作", "Download encryption keys": "下载加密密钥", + "Drag & drop disks to add or remove them": "拖放磁盘以添加或移除它们", + "Drive Bay {n}": "驱动器托架 {n}", + "Drive Details": "驱动器详细信息", + "Drive Details {disk}": "驱动器详细信息 {disk}", "Drive Temperatures": "驱动器温度", "Drive reserved for inserting into DATA pool VDEVs when an active drive has failed.": "保留的驱动器用于在活动驱动器发生故障时插入数据池的 VDEVs。", "Driver": "驱动", "Drives and IDs registered to the Microsoft account. Selecting a drive also fills the Drive ID field.": "已注册到 Microsoft 帐户的驱动器和 ID。选择一个驱动器还会填充 驱动器 ID 字段。", + "Drop session": "结束会话", "Dropbox": "Dropbox", "Dry Run": "空运行", "Dry Run Cloud Sync Task": "空运行云同步任务", + "Dry run completed.": "模拟运行完成。", "E-mail address that will receive SNMP service messages.": "接收 SNMP 服务消息的电子邮件地址。", "EC Curve": "EC 曲线", "EMERGENCY": "紧急情况", "ERROR": "错误", "ERROR: Not Enough Memory": "错误:内存不足", "EULA": "最终用户许可协议", + "EXPIRED": "过期", + "EXPIRES TODAY": "今天到期", "Each disk stores data. A stripe requires at least one disk and has no data redundancy.": "每个磁盘都存储数据,一个条带至少需要一个磁盘,没有数据冗余。", "Edit": "编辑", "Edit ACL": "编辑 ACL", @@ -2530,11 +1479,14 @@ "Edit Certificate Authority": "编辑证书颁发机构", "Edit Cloud Sync Task": "编辑云同步任务", "Edit Cron Job": "编辑定时任务", + "Edit Custom App": "编辑自定义应用程序", "Edit DNS Authenticator": "编辑 DNS 身份验证器", "Edit Dataset": "编辑数据集", "Edit Device": "编辑设备", "Edit Disk": "编辑磁盘", + "Edit Disk(s)": "编辑磁盘", "Edit Encryption Options for {dataset}": "编辑 {dataset} 的加密选项", + "Edit Expansion Shelf": "编辑扩展机架", "Edit Extent": "编辑范围", "Edit Filesystem ACL": "编辑文件系统 ACL(访问控制列表)", "Edit Global Configuration": "编辑全局配置", @@ -2546,6 +1498,7 @@ "Edit Interface": "编辑接口", "Edit Kerberos Keytab": "编辑 Kerberos 密钥表", "Edit Kerberos Realm": "编辑 Kerberos 领域", + "Edit Label": "编辑标签", "Edit Manual Disk Selection": "编辑手动磁盘选择", "Edit NFS Share": "编辑 NFS 共享", "Edit NTP Server": "编辑 NTP 服务器", @@ -2563,15 +1516,20 @@ "Edit Share ACL": "编辑共享 ACL", "Edit Static Route": "编辑静态路由", "Edit Sysctl": "编辑 Sysctl", + "Edit Trim": "编辑 TRIM", + "Edit TrueCloud Backup Task": "编辑 TrueCloud 备份任务", "Edit User": "编辑用户", "Edit User Quota": "编辑用户配额", "Edit VM": "编辑虚拟机", "Edit VM Snapshot": "编辑虚拟机快照", "Edit Zvol": "编辑 Zvol", + "Edit group": "编辑组", "Editing interface will result in default gateway being removed, which may result in TrueNAS being inaccessible. You can provide new default gateway now:": "编辑接口将导致默认网关被删除,这可能会导致 TrueNAS 无法访问。您现在可以提供新的默认网关:", "Editing interfaces while HA is enabled is not allowed.": "启用 HA 时,不允许编辑接口。", "Editing top-level datasets can prevent users from accessing data in child datasets.": "编辑顶级数据集可能会阻止用户访问子数据集中的数据。", "Electing {controller}.": "选择 {controller}。", + "Element": "元素", + "Elements": "元素", "Email": "电子邮件", "Email Options": "邮箱选项", "Email Subject": "电子邮件主题", @@ -2580,6 +1538,7 @@ "Email settings updated.": "邮箱设置已更新。", "Emergency": "紧急情况", "Empty": "空", + "Empty drive cage": "空驱动托架", "Emulating an Intel e82545 (e1000) Ethernet card provides compatibility with most operating systems. Change to VirtIO to provide better performance on systems with VirtIO paravirtualized network driver support.": "模拟 Intel e82545(e1000)以太网卡可与大多数操作系统兼容。更改为VirtIO,以在具有 VirtIO 半虚拟化网络驱动程序支持的系统上提供更好的性能。", "Enable": "启用", "Enable SMTP AUTH using PLAIN SASL. Requires a valid Username and Password.": "使用 PLAIN SASL 启用SMTP 认证。需要有效的用户名和密码。", @@ -2589,13 +1548,19 @@ "Enable ACL support for the SMB share.": "为 SMB 共享启用 ACL 支持。", "Enable Active Directory": "启用活动目录", "Enable Alternate Data Streams": "启用备用数据流", + "Enable Apple SMB2/3 Protocol Extensions": "启用 Apple SMB2/3 协议扩展", + "Enable Atime": "启用访问时间(Atime)", "Enable Debug Kernel": "启用内核调试", "Enable Display": "启用显示", "Enable FIPS": "启用 FIPS", "Enable FSRVP": "启用 FSRVP", + "Enable FXP": "启用 FXP", "Enable GMail OAuth authentication.": "启用 GMail OAuth 身份验证。", "Enable HTTPS Redirect": "启用 HTTPS 重定向", "Enable Hyper-V Enlightenments": "启用 Hyper-V Enlightenments", + "Enable Kernel Debug": "启用内核调试", + "Enable Learning": "启用学习", + "Enable NFS over RDMA": "启用基于 RDMA 的 NFS", "Enable S.M.A.R.T.": "启用 S.M.A.R.T.", "Enable SMB1 support": "启用 SMB1 支持", "Enable SMB2/3 Durable Handles": "启用 SMB2/3 Durable Handles", @@ -2603,6 +1568,7 @@ "Enable Serial Console": "启用串行控制台", "Enable Service": "启用服务", "Enable Shadow Copies": "启用卷影副本", + "Enable TLS": "启用 TLS", "Enable TPC": "启用 TPC", "Enable Time Machine backups on this share.": "在这个共享上启用 Time Machine 备份。", "Enable Two Factor Authentication Globally": "启用全局双因素身份验证", @@ -2610,7 +1576,10 @@ "Enable a Display (Virtual Network Computing) remote connection. Requires UEFI booting.": "启用显示(虚拟网络计算)远程连接。需要UEFI启动。", "Enable for TrueNAS to periodically review data blocks and identify empty blocks, or obsolete blocks that can be deleted. Unset to use dirty block overwrites (default).": "启用 TrueNAS 定期检查数据块并识别空块或可以删除的过时块。取消设置以使用脏块覆盖(默认)。", "Enable iXsystems Proactive Support": "启用 iXsystems 主动支持", + "Enable passwordless sudo for zfs commands": "为 zfs 命令启用无密码 sudo 权限", "Enable sending anonymous usage statistics to iXsystems.": "启用向 iXsystems 发送匿名使用情况统计信息。", + "Enable server support for NFSv3 or NFSv4 or both NFSv3 and NFSv4 clients.": "启用服务器支持 NFSv3 或 NFSv4,或同时支持 NFSv3 和 NFSv4 客户端。", + "Enable server-side management of group memberships. This option allows the server to determine group IDs based on server-side lookups rather than relying solely on the information provided by the NFS client. This can support more than 16 groups and provide more accurate group memberships.": "启用服务器端的组成员管理。该选项允许服务器根据服务器端查找来确定组 ID,而不仅仅依赖于 NFS 客户端提供的信息。这可以支持超过 16 个组,并提供更准确的组成员资格。", "Enable service": "启用服务", "Enable support for the File Server Remote VSS Protocol (FSVRP). This protocol allows RPC clients to manage snapshots for a specific SMB share. The share path must be a dataset mountpoint. Snapshots have the prefix fss- followed by a snapshot creation timestamp. A snapshot must have this prefix for an RPC user to delete it.": "启用对文件服务器远程 VSS 协议(FSVRP)的支持。该协议允许 RPC 客户端管理特定 SMB 共享的快照。共享路径必须是数据集挂载点。快照的前缀为 fss-,后跟快照创建时间戳。快照必须具有此前缀,RPC 用户才能删除快照。", "Enable the Active Directory service. The first time this option is set, the Domain Account Password must be entered.": "启用活动目录服务。首次设置此选项时,必须输入域帐户密码。", @@ -2618,6 +1587,7 @@ "Enable this Cloud Sync Task. Unset to disable this Cloud Sync Task without deleting it.": "启用这个云同步任务。取消设置以禁用此云同步任务而不删除它。", "Enable this NFS share. Unset to disable this NFS share without deleting it.": "启用此 NFS 共享。取消设置以禁用此 NFS 共享而不删除它。", "Enable this SMB share. Unset to disable this SMB share without deleting it.": "启用此 SMB 共享。取消设置可禁用此 SMB 共享而不删除它。", + "Enable this TrueCloud Backup Task. Unset to disable this TrueCloud Backup Task without deleting it.": "启用此 TrueCloud 备份任务。取消设置以禁用此 TrueCloud 备份任务而不删除它。", "Enable this cron job. When unset, disable the cron job without deleting it.": "启用这个计划任务。取消设置后,禁用此计划任务而不将其删除。", "Enable this rsync task. Unset to disable this rsync task without deleting it.": "启用这个 rsync 任务。取消设置以禁用此 rsync 任务而不删除它。", "Enable this service to start automatically.": "启用此服务以自动启动。", @@ -2636,6 +1606,11 @@ "Enabling this option is not recommended as it bypasses a security mechanism.": "建议不要启用此选项,因为它会绕过安全机制。", "Encipher Only": "仅加密", "Enclosure": "机柜", + "Enclosure Options": "机箱选项", + "Enclosure Read": "只读机箱", + "Enclosure Services Controller Electronics": "机柜服务控制器电子设备", + "Enclosure Unavailable": "机箱不可用", + "Enclosure Write": "修改机箱", "Encode information in less space than the original data occupies. It is recommended to choose a compression algorithm that balances disk performance with the amount of saved space.
    LZ4 is generally recommended as it maximizes performance and dynamically identifies the best files to compress.
    GZIP options range from 1 for least compression, best performance, through 9 for maximum compression with greatest performance impact.
    ZLE is a fast algorithm that only eliminates runs of zeroes.": "在比原始数据占用更少的空间中编码信息。建议选择一种压缩算法,以平衡磁盘性能和节省的空间量通常建议使用
    LZ4 ,因为它可以最大化性能并动态识别要最佳压缩的文件。
    GZIP 选项的范围从 1(最小压缩),最佳性能到 9(最大压缩),不影响性能。
    ZLE 是一种快速算法,仅消除零的游程。", "Encrypt (PUSH) or decrypt (PULL) file names with the rclone \"Standard\" file name encryption mode. The original directory structure is preserved. A filename with the same name always has the same encrypted filename.

    PULL tasks that have Filename Encryption enabled and an incorrect Encryption Password or Encryption Salt will not transfer any files but still report that the task was successful. To verify that files were transferred successfully, click the finished task status to see a list of transferred files.": "使用 rclone \"Standard\"文件名加密模式加密( 推送 )或解密( 拉取 )文件名。原始目录结构得以保留。具有相同名称的文件名始终具有相同的加密文件名。

    启用了文件名加密加密密码加密盐不正确的拉取任务将不会传输任何文件,但仍然会报告该任务已成功。要验证文件是否已成功传输,请单击完成的任务状态以查看已传输文件的列表。", "Encrypted Datasets": "加密的数据集", @@ -2644,15 +1619,20 @@ "Encryption Key": "加密密钥", "Encryption Key Format": "加密密钥格式", "Encryption Key Location in Target System": "目标系统中的加密密钥位置", + "Encryption Mode": "加密模式", "Encryption Options": "加密选项", "Encryption Options Saved": "加密选项已保存", "Encryption Password": "加密密码", + "Encryption Protocol": "加密协议", + "Encryption Root": "加密根", "Encryption Salt": "加密盐", + "Encryption Standard": "加密标准", "Encryption Type": "加密方式", "Encryption is for users storing sensitive data. Pool-level encryption does not apply to the storage pool or disks in the pool. It applies to the root dataset that shares the pool name and any child datasets created unless you change the encryption at the time you create the child dataset. For more information on encryption please refer to the TrueNAS Documentation hub.": "加密用于存储敏感数据的用户。池级加密不适用于存储池或池中的磁盘。它适用于共享池名称的根数据集和创建的任何子数据集,除非您在创建子数据集时更改加密。有关加密的更多信息,请参阅 TrueNAS 文档中心。", "Encryption key that can unlock the dataset.": "可以解锁数据集的加密密钥。", "End": "结束", "End User License Agreement - TrueNAS": "最终用户许可协议 - TrueNAS", + "End session": "结束会话", "End time for the replication task. A replication that is already in progress can continue to run past this time.": "复制任务的结束时间。已经进行的复制可以继续运行到此时间为止。", "Endpoint": "端点", "Endpoint Type": "端点类型", @@ -2660,10 +1640,12 @@ "Endpoint type to choose from the service catalogue. Public is recommended, see the rclone documentation.": "要从服务目录中选择的端点类型。建议使用公开,请参见 rclone 文档。", "Enforce the use of FIPS 140-2 compliant algorithms": "强制使用符合 FIPS 140-2 的算法", "Ensure Display Device": "确保显示设备", + "Ensure that ACL permissions are validated for all users and groups. Disabling this may allow configurations that do not provide the intended access. It is recommended to keep this option enabled.": "确保对所有用户和组验证ACL权限。禁用此设置可能会允许不提供预期访问权限的配置。建议保持此选项启用。", "Ensure valid entries exist in Directory Services > Kerberos Realms and Directory Services > Kerberos Keytabs and the system can communicate with the Kerberos Domain Controller before enabling this option.": "确保在目录服务 > Kerberos 领域目录服务 > Kerberos 密钥表中存在有效的条目,并且在启用此选项之前,系统可以与 Kerberos 域控制器进行通信。", "Enter {pool} below to confirm": "在下方输入 {pool} 进行确认", "Enter {zvolName} below to confirm.": "输入存储池名 {zvolName} 以确认。", "Enter a Name (optional)": "输入名称(可选)", + "Enter a SPICE password to automatically pass to the SPICE session.": "输入 SPICE 密码以自动传递给 SPICE 会话。", "Enter a description of the Cloud Sync Task.": "输入云同步任务的描述。", "Enter a description of the cron job.": "输入计划任务的描述。", "Enter a description of the interface.": "输入接口的描述。", @@ -2672,21 +1654,25 @@ "Enter a description of the tunable.": "输入可调参数的描述。", "Enter a descriptive title for the new issue.": "输入描述这个问题的标题。", "Enter a list of allowed hostnames or IP addresses. Separate entries by pressing Enter. A more detailed description with examples can be found here.

    If neither *Hosts Allow* or *Hosts Deny* contains an entry, then SMB share access is allowed for any host.

    If there is a *Hosts Allow* list but no *Hosts Deny* list, then only allow hosts on the *Hosts Allow* list.

    If there is a *Hosts Deny* list but no *Hosts Allow* list, then allow all hosts that are not on the *Hosts Deny* list.

    If there is both a *Hosts Allow* and *Hosts Deny* list, then allow all hosts that are on the *Hosts Allow* list.

    If there is a host not on the *Hosts Allow* and not on the *Hosts Deny* list, then allow it.": "输入允许的主机名或 IP 地址的列表。 按 Enter 分隔条目。 更详细的说明和示例可以在此处找到。

    如果 *Hosts Allow* 或 *Hosts Deny* 均不包含条目,则允许任何主机进行 SMB 共享访问。

    如果存在 *Hosts Allow* 列表,但没有 *Hosts Deny* 列表,则仅允许 *Hosts Allow* 列表中的主机。

    如果存在 *Hosts Deny* 列表,但没有 *Hosts Allow* 列表,则允许不在 *Hosts Deny* 列表中的所有主机。

    如果同时存在 *Hosts Allow* 和 *Hosts Deny* 列表,则允许 *Hosts Allow* 列表中的所有主机。

    如果某个主机不在 *Hosts Allow* 和 *Hosts Deny* 列表中,则允许它。", + "Enter a list of chat IDs separated by space, comma or semicolon. To find your chat ID send a message to the bot, group or channel and visit https://api.telegram.org/bot(BOT_TOKEN)/getUpdates.": "输入一个由空格、逗号或分号分隔的聊天ID列表。要找到你的聊天ID,可以向机器人、群组或频道发送消息,并访问 https://api.telegram.org/bot(BOT_TOKEN)/getUpdates。", "Enter a list of denied hostnames or IP addresses. Separate entries by pressing Enter. If neither *Hosts Allow* or *Hosts Deny* contains an entry, then SMB share access is allowed for any host.

    If there is a *Hosts Allow* list but no *Hosts Deny* list, then only allow hosts on the *Hosts Allow* list.

    If there is a *Hosts Deny* list but no *Hosts Allow* list, then allow all hosts that are not on the *Hosts Deny* list.

    If there is both a *Hosts Allow* and *Hosts Deny* list, then allow all hosts that are on the *Hosts Allow* list.

    If there is a host not on the *Hosts Allow* and not on the *Hosts Deny* list, then allow it.": "输入被拒绝的主机名或 IP 地址的列表。按 Enter 分隔条目。如果*允许主机*或*拒绝主机*都不包含条目,则允许任何主机访问 SMB 共享。

    如果有*允许主机*列表但没有*拒绝主机*列表,则只允许*允许主机*列表中的主机。

    如果有*拒绝主机*列表但没有*允许主机*列表,则允许所有不在*拒绝主机*列表中的主机。

    如果同时存在*允许主机*和*拒绝主机* 列表,则允许*允许主机*列表中的所有主机。

    如果主机不在*允许主机*和*拒绝主机*列表中,则允许它", "Enter a long string of random characters for use as salt for the encryption password. Warning: Always securely back up the encryption salt value! Losing the salt value will result in data loss.": "输入一长串随机字符,用作作为加密密码。警告:一定要安全备份加密盐值!丢失盐值将导致数据丢失。", "Enter a name for the interface. Use the format bondX, vlanX, or brX where X is a number representing a non-parent interface. Read-only when editing an interface.": "输入接口的名称。使用格式bondXvlanXbrX 其中X 是代表非父接口的数字。编辑界面时只读。", "Enter a name for the new credential.": "输入新凭证的名称。", "Enter a name for the share.": "输入共享的名称。", "Enter a name for this Keytab.": "输入此 Keytab 的名称。", + "Enter a name of the TrueCloud Backup Task.": "输入 TrueCloud 备份任务的名称。", "Enter a number of degrees in Celsius. S.M.A.R.T. reports if the temperature of a drive has changed by N degrees Celsius since the last report.": "输入一个摄氏度阈值,如果自上次报告超过这个值的变动,将会发出消息", "Enter a number of seconds to wait before alerting that the service cannot reach any UPS. Warnings continue until the situation is fixed.": "输入秒数以等待警告服务无法到达任何 UPS 之前等待。警告持续直到问题被解决。", "Enter a one to three paragraph summary of the issue. Describe the problem and provide any steps to replicate the issue.": "输入一到三段的问题描述。描述问题并提供复现问题的任何步骤。", "Enter a password for the rancher user. This is used to log in to the VM from the serial shell.": "输入用于 rancher 用户的密码。这将会用于从串行 shell 登录虚拟机。", + "Enter a password for the SPICE display.": "请输入 SPICE 显示的密码。", "Enter a password of at least eight characters.": "输入至少 8 位字符的密码。", "Enter a port to bind rpc.lockd(8).": "输入一个端口以绑定 rpc.lockd(8).", "Enter a port to bind mountd(8).": "输入一个端口以绑定 mountd(8).", "Enter a port to bind rpc.statd(8).": "输入一个端口以绑定 rpc.statd(8).", "Enter a separate privacy passphrase. Password is used when this is left empty.": "输入单独的隐私密码。在留空时则使用密码。", + "Enter a shell glob pattern to match files and directories to exclude from the backup.": "输入一个 shell 通配符模式,以匹配要从备份中排除的文件和目录。", "Enter a threshold temperature in Celsius. S.M.A.R.T. will message with a log level of LOG_CRIT and send an email if the temperature is higher than the threshold.": "输入摄氏度阈值。如果温度高于阈值,S.M.A.R.T 将以日志级别 LOG_CRIT 发出消息并发送电子邮件。", "Enter a threshold temperature in Celsius. S.M.A.R.T. will message with a log level of LOG_INFO if the temperature is higher than the threshold.": "输入摄氏温阈值。如果温度高于阈值,S.M.A.R.T 将以日志级别 LOG_CRIT 发出消息", "Enter a unique name for the dataset. The dataset name length is calculated by adding the length of this field's value and the length of the parent path field value. The length of 'Parent Path' and 'Name' added together cannot exceed 200 characters. Because of this length validation on this field accounts for the parent path as well. Furthermore, the maximum nested directory levels allowed is 50. You can't create a dataset that's at the 51st level in the directory hierarchy after you account for the nested levels in the parent path.": "为数据集输入一个唯一的名称。数据集名称长度是通过将该字段值的长度与父路径字段值的长度相加计算得出的。「父路径」和「此数据集的名称」加在一起的长度不能超过 200 个字符,因为此字段的长度验证也考虑了父路径。此外,允许的最大嵌套目录级别为 50。考虑到父路径中的嵌套级别后,您将无法创建位于目录层次结构中第 51 级别的数据集。", @@ -2702,6 +1688,7 @@ "Enter an alphanumeric encryption key. Only available when Passphrase is the chosen key format.": "输入字母数字加密密钥。仅当密码是所选的密钥格式时才可用。", "Enter an alphanumeric name for the certificate. Underscore (_), and dash (-) characters are allowed.": "输入证书的字母数字名称。允许使用下划线(_)和破折号(-)。", "Enter an alphanumeric name for the virtual machine.": "输入虚拟机的字母数字名称。", + "Enter an email address to override the admin account’s default email. If left blank, the admin account’s email address will be used": "输入一个电子邮件地址以覆盖管理员帐户的默认电子邮件。如果留空,将使用管理员帐户的电子邮件地址。", "Enter an optimal number of threads used by the kernel NFS server.": "输入内核 NFS 服务器使用的线程数", "Enter any additional snmpd.conf(5) options. Add one option for each line.": "输入任何snmpd.conf(5) 附加选项。为每行添加一个选项。", "Enter any aliases, separated by spaces. Each alias can be up to 15 characters long.": "输入别名,以空格分隔。每个别名最多可以包含 15 个字符。", @@ -2748,8 +1735,10 @@ "Enter the name of the Key Distribution Center.": "输入密钥分发中心的名称。", "Enter the name of the company or organization.": "输入公司或组织名。", "Enter the name of the contact person.": "输入联系人的姓名。", + "Enter the name of the new bucket. Only lowercase letters, numbers, and hyphens are allowed.": "输入新桶的名称。只允许使用小写字母、数字和短横线。", "Enter the name of the realm.": "输入 Realm 的名称。", "Enter the name of the sysctl variable to configure. sysctl tunables are used to configure kernel parameters while the system is running and generally take effect immediately.": "输入要配置的 sysctl 变量的名称。sysctl 可调参数用于在系统运行时配置内核参数,通常会立即生效。", + "Enter the number of last kept backups.": "输入最后保留备份的数量。", "Enter the numeric tag configured in the switched network.": "输入在交换网络中配置的数字标签。", "Enter the passphrase for the Private Key.": "输入私钥的密码。", "Enter the password associated with Username.": "输入与用户名关联的密码。", @@ -2770,6 +1759,7 @@ "Entering 0 uses the actual file size and requires that the file already exists. Otherwise, specify the file size for the new file.": "输入0使用实际文件大小,并要求该文件已存在。否则,请指定新文件的文件大小。", "Environment": "环境", "Error": "错误", + "Error ({code})": "错误 ({code})", "Error In Apps Service": "应用程序服务错误", "Error Updating Production Status": "更新生产状态时出错", "Error checking for updates.": "检查更新时出错。", @@ -2791,30 +1781,46 @@ "Error updating disks": "更新磁盘时出错", "Error validating pool name": "验证池名称时出错", "Error validating target name": "验证目标名称时出错", + "Error when loading similar apps.": "加载类似应用时出错。", + "Error:": "错误:", "Error: ": "错误: ", "Errors": "错误", "Est. Usable Raw Capacity": "估计可用原始容量", "Establishing a connection requires that one of the connection systems has open TCP ports. Choose which system (LOCAL or REMOTE) will open ports. Consult your IT department to determine which systems are allowed to open ports.": "建立连接要求其中一个连接系统具有开放的 TCP 端口。选择要打开端口的系统(本地远程)。请咨询您的 IT 部门,以确定允许哪些系统打开端口。", "Estimated data capacity available after extension.": "扩展后可用的估计数据容量。", "Estimated total raw data capacity": "估计总原始数据容量", + "Eula": "最终用户许可协议", "Event": "事件", "Event Data": "事件数据", "Everything is fine": "一切都很好", "Example: blob.core.usgovcloudapi.net": "示例:blob.core.usgovcloudapi.net", "Excellent effort": "出色的工作", "Exclude": "排除", + "Exclude Child Datasets": "排除子数据集", + "Exclude by pattern": "按模式排除", "Exclude specific child dataset snapshots from the replication. Use with Recursive snapshots. List child dataset names to exclude. Separate entries by pressing Enter. Example: pool1/dataset1/child1. A recursive replication of pool1/dataset1 snapshots includes all child dataset snapshots except child1.": "从复制中排除特定的子数据集快照。与递归快照一起使用。列出要排除的子数据集名称。通过按Enter分隔条目。示例:pool1/dataset1/child1pool1/dataset1快照的递归复制包括除child1之外的所有子数据集快照。", "Exclude specific child datasets from the snapshot. Use with recursive snapshots. List paths to any child datasets to exclude. Example: pool1/dataset1/child1. A recursive snapshot of pool1/dataset1 will include all child datasets except child1. Separate entries by pressing Enter.": "从快照中排除特定的子数据集。与递归快照一起使用。列出要排除的任何子数据集的路径。示例:pool1/dataset1/child1pool1/dataset1的递归快照将包括除child1之外的所有子数据集。通过按Enter分隔条目。", + "Excluded Paths": "排除路径", + "Exec": "执行", "Execute": "执行", "Existing Pool": "现有池", "Existing presets": "已存在的预设", + "Exit": "退出", + "Exited": "已退出", "Expand": "扩展", "Expand Row": "扩展行", "Expand pool ": "扩展池", "Expand pool to fit all available disk space.": "扩展池以适合所有可用的磁盘空间。", "Expander Status": "扩展器状态", + "Expiration Date": "到期日期", + "Expires date": "到期日期", "Export": "导出", + "Export All Keys": "导出所有密钥", "Export As {fileType}": "导出为 {fileType}", + "Export Config": "导出配置", + "Export Configuration": "导出配置", + "Export File": "导出文件", + "Export Key": "导出密钥", "Export Password Secret Seed": "导出密码密钥种子", "Export Read Only": "启用只读", "Export Recycle Bin": "启用回收站", @@ -2823,6 +1829,8 @@ "Export/Disconnect Pool": "导出/断开连接池", "Export/disconnect pool: {pool}": "导出/断开连接池:{pool}", "Exported": "导出", + "Exporter": "导出器", + "Exporters": "导出器", "Exporting Pool": "正在导出池", "Exporting/disconnecting will continue after services have been managed.": "管理完服务后,导出/断开连接将继续。", "Expose zilstat via SNMP": "通过 SNMP 公开 zilstat", @@ -2830,33 +1838,50 @@ "Extend Vdev": "扩展 Vdev", "Extend session": "延长会话", "Extended Key Usage": "扩展密钥用法", + "Extending VDEV": "扩展 VDEV", + "Extends the validity of OTP by that many windows of intervals before and after the current interval": "通过在当前时间区间之前和之后扩展有效性,使 OTP 的有效期延长了那么多窗口区间。", "Extent": "区块", "Extent Name": "区块名称", "Extent Type": "区块类型", "Extents": "范围", + "Extra Constraints": "额外限制条件", "Extra Users": "附加用户", + "FIPS Settings": "FIPS 设置", "FTP": "FTP", "FTP Host to connect to. Example: ftp.example.com.": "要连接的 FTP 主机。例如:ftp.example.com。", "FTP Port number. Leave blank to use the default port 21.": "FTP 端口号。保留空白以使用默认端口 21。", "Failed": "失败", "Failed Authentication: {credentials}": "身份验证失败:{credentials}", + "Failed Disks:": "故障磁盘:", + "Failed Jobs": "失败的任务", "Failed S.M.A.R.T. Tests": "失败的 S.M.A.R.T. 测试", "Failed sending test alert!": "发送测试警报失败!", + "Failed to load datasets": "无法加载数据集", "Failover": "故障转移", "Failover Configuration": "故障转移配置", + "Failover Group": "故障切换组", + "Failover Now": "立即故障切换", "Failover Read": "故障转移读取", "Failover Write": "故障转移写入", "Failover is administratively disabled.": "故障转移在管理上被禁用。", "Failover is in an error state.": "故障转移处于错误状态。", + "Failover is recommended for new FIPS setting to take effect. Would you like to failover now?": "建议进行故障转移以使新的 FIPS 设置生效。您想现在进行故障转移吗?", + "Fatal error! Check logs.": "致命错误!请检查日志。", "Faulted": "有故障", + "Feature Request": "功能请求", + "Features": "特点", "Feb": "二月", + "Feedback Type": "反馈类型", "Fenced is not running.": "Fenced 未运行", "Fetch DataStores": "获取数据存储", "Fetching Encryption Summary": "获取加密摘要", + "Fetching Encryption Summary for {dataset}": "获取 {dataset} 的加密摘要", "Field is required": "字段为必填项", "File": "文件", "File ID": "文件 ID", "File Inherit": "文件继承", + "File Mask": "文件掩码", + "File Permissions": "文件权限", "File Ticket": "反馈(File Ticket)", "File size is limited to {n} MiB.": "文件大小限制为 {n} MiB。", "File: {filename}": "文件:{filename}", @@ -2881,14 +1906,19 @@ "Finished": "已完成", "Finished Resilver on {date}": "{date}完成一致性重建", "Finished Scrub on {date}": "{date}完成数据巡检", + "First Page": "第一页", "Fix Credential": "修复凭证", "Flags": "标记", + "Flags Advanced": "高级标志", + "Flags Basic": "基本标志", "Flags Type": "标记类型", + "Flash Identify Light": "点亮定位灯", "Folder": "文件夹", "Follow Symlinks": "遵循符号链接", "Follow symlinks and copy the items to which they link.": "遵循符号链接并复制它们链接的项目。", "Following container images are available to update:\n": "以下容器映像可更新:\n", "For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "例如,如果您将此值设置为 5,系统将续订 5 天或更短时间内过期的证书。", + "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "出于性能考虑,对于启用去重的数据集,建议使用SHA512而不是SHA256。", "Force": "强制", "Force Clear": "强制清除", "Force Delete": "强制删除", @@ -2899,16 +1929,24 @@ "Force size": "强制大小", "Force the VM to stop if it has not already stopped within the specified shutdown timeout. Without this option selected, the VM will receive the shutdown signal, but may or may not complete the shutdown process.": "如果尚未在指定的关闭超时时间内停止虚拟机,则强制其停止。如果未选择此选项,则虚拟机将收到关闭信号,但可能不会完成关闭过程。", "Force unmount": "强制卸载", + "Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "强制使用 签名版本 2 来签署 API 请求。仅在您的 AWS 提供商不支持默认的版本 4 签名时设置此项。", "Forces the addition of the NTP server, even if it is currently unreachable.": "强制添加 NTP 服务器,即使它当前无法访问。", "Forcing the other TrueNAS controller to become active requires a failover. This will temporarily interrupt system services. After confirmation, SAVE AND FAILOVER must be clicked on the previous screen.": "强制另一个 TrueNAS 控制器变为活动状态需要故障转移。这将暂时中断系统服务。确认后,必须在前一个屏幕上点击 SAVE AND FAILOVER。", + "Forums": "论坛", + "Four quarter widgets in two by two grid": "两个两列两行的四个四分之一部件", "Free": "空闲", + "Free RAM": "可用内存", + "Free Space": "可用空间", "FreeBSD": "FreeBSD", "Frequency": "频率", "Fri": "周五", "Friday": "星期五", "From": "从", + "From Email": "来自电子邮件", + "From Name": "从名称", "From a key file": "从密钥文件", "From {task_begin} to {task_end}": "从 {task_begin} 到 {task_end}", + "Front": "字体", "Full": "完全", "Full Admin": "完全管理员", "Full Control": "完全控制", @@ -2927,41 +1965,63 @@ "General": "常规", "General Info": "基本信息", "General Options": "常规选项", + "General Settings": "常规设置", + "Generate": "生成", + "Generate CSR": "生成CSR", + "Generate Certificate": "生成证书", + "Generate Certificate Signing Requests": "生成证书签名请求", "Generate Debug File": "生成调试文件", "Generate Encryption Key": "生成加密密钥", "Generate Key": "生成密钥", "Generate Keypair": "生成密钥对", "Generate New": "新建", + "Generate New Password": "生成新密码", "Generate a name for the snapshot using the naming schema from a previously created Periodic Snapshot Task. This allows the snapshot to be replicated. Cannot be used with a Name.": "使用来自先前创建的定期快照任务的命名惯例为快照生成名称。这样可以复制快照。不能与名称一起使用。", "Generate an alert when the pool has this percent space remaining. This is typically configured at the pool level when using zvols or at the extent level for both file and device based extents.": "当池剩余此百分比空间时生成警报。这是使用 zvols 或使用基于文件和设备的区块时的池级别配置。", "Generate idmap low range based on same algorithm that SSSD uses by default.": "根据 SSSD 默认使用的相同算法生成 idmap 低范围。", "Generic": "通用", "Generic dataset suitable for any share type.": "适用于任何共享类型的通用数据集。", + "Get Support": "获取支持", "Give your exporter configuration a name": "为您的导出器配置命名", "Gives control of how much of the new device is made available to ZFS. Set to use the entire capacity of the new device.": "控制可以向 ZFS 提供多少新设备。设置为使用新设备的全部容量。", "Global 2FA": "全局双因素认证", + "Global 2FA Enable": "全局两因素认证启用", + "Global Config": "全局配置", "Global Configuration": "全局配置", + "Global Configuration Settings": "全局配置设置", "Global SED Password": "全局 SED 密码", + "Global Settings": "全局设置", "Global Two Factor Authentication": "全局双因素认证", "Global Two Factor Authentication Settings": "全局双因素认证设置", "Global password to unlock SEDs.": "用于解锁 SED 的全局密码。", + "Gmail": "Gmail", + "Gmail credentials have been applied.": "Gmail 凭据已应用。", "Go Back": "返回", + "Go To Dataset": "转到数据集", + "Go To Encryption Root": "转到加密根目录", "Go To Network Settings": "前往网络设置", "Go back to the previous form": "回到上一个表单", "Go to ACL Manager": "转到 ACL 管理器", "Go to Active Directory Form": "转到活动目录表单", + "Go to Datasets": "转到数据集", + "Go to Documentation": "前往文档", "Go to HA settings": "转到 HA 设置", + "Go to Jobs Page": "前往任务页面", + "Go to Storage": "前往存储管理", "Google Cloud Storage": "Google Cloud Storage", "Google Drive": "Google Drive", "Google Photos": "Google Photos", "Group": "群组", + "Group Bind Path": "组绑定路径", "Group Configuration": "组配置", "Group Data Quota ": "组数据配额 ", "Group Execute": "群组执行", "Group ID": "群组 ID", "Group ID created in Authorized Access. Required when the Discovery Authentication Method is set to CHAP or Mutual CHAP.": "在授权访问中创建的组 ID。将「发现身份验证方法」设置为 CHAP 或「相互 CHAP」时需要。", + "Group Members": "组成员", "Group Obj": "组对象", "Group Object Quota": "组对象配额", + "Group Quota Manager": "组配额管理器", "Group Quotas": "组配额", "Group Read": "群组读取", "Group Write": "群组写入", @@ -2975,11 +2035,13 @@ "Groups": "群组", "Groups could not be loaded": "无法加载群组", "Groups that can log in using password": "可使用密码登录的群组", + "Guest Account": "访客帐户", "Guest Operating System": "客机操作系统", "Guide": "向导", "HA Disabled": "HA 已禁用", "HA Enabled": "HA 已启用", "HA Status": "HA 状态", + "HA is Disabled": "高可用性已禁用", "HA is administratively disabled.": "HA 在管理上被禁用。", "HA is disabled": "HA 已禁用", "HA is enabled": "HA 已启用", @@ -2990,17 +2052,25 @@ "HDD Standby": "HDD 休眠", "HEX": "HEX", "HTTP": "HTTP", + "HTTP Port": "HTTP 端口", "HTTP Proxy": "HTTP 代理", + "HTTP Proxy:": "HTTP 代理:", "HTTP host URL.": "HTTP 主机地址。", + "HTTPS Port": "HTTPS 端口", "HTTPS Protocols": "HTTPS 协议", + "HTTPS Redirect": "HTTPS 重定向", "Hardware": "硬件", + "Hardware Change": "硬件更改", "Hardware Disk Encryption": "硬件磁盘加密", "Has Allow List": "拥有允许列表", + "Healthy": "健康", "Help": "帮助", "Hidden": "隐藏", "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "隐藏的栏目不可用于排序或筛选。隐藏栏目可以提高性能。", "Hide": "隐藏", "Hide Extra Columns": "隐藏多余的列", + "Hide Job": "隐藏任务", + "Hide Password": "隐藏密码", "Hide Standard Error": "隐藏标准错误", "Hide Standard Output": "隐藏标准输出", "Hide Stderr": "隐藏标准错误", @@ -3009,16 +2079,20 @@ "Hide from MSR": "从 MSR 隐藏", "Hide standard output (stdout) from the command. When unset, any standard output is mailed to the user account cron used to run the command.": "隐藏命令中的标准输出(stdout)。取消设置后,所有标准输出都会邮寄到用于运行命令的用户帐户 cron。", "High Bandwidth (16)": "高带宽(16)", + "High usage necessitating a system reset.": "系统过载需要重启系统。", "Highest Temperature": "最高温度", "Highest Usage": "最高使用率", "Highest port number of the active side listen address that is open to connections. The first available port between the minimum and maximum is used.": "对连接开放的活动侧侦听地址的最高端口号。使用最小和最大之间的第一个可用端口。", + "Highlighted path is {node}. Press 'Space' to {expand}. Press 'Enter' to {select}.": "高亮路径是 {node}。按 '空格键' 来 {expand}。按 '回车键' 来 {select}。", "History": "历史", "Hold": "保持", "Home Directory": "主目录", "Home Directory Permissions": "主目录权限", + "Home Widgets": "主页小工具", "Homepage": "主页", "Host": "主机", "Host Model": "主机模型", + "Host Mounts": "主机挂载", "Host Name Database": "主机名数据库", "Host Passthrough": "主机透传", "Host Sync": "同步主机", @@ -3028,12 +2102,18 @@ "Hostname": "主机名", "Hostname (TrueNAS Controller 2)": "主机名(TrueNAS 控制器 2)", "Hostname (Virtual)": "主机名(虚拟)", + "Hostname Database": "主机名数据库", + "Hostname Database:": "主机名数据库:", "Hostname and Domain": "主机名和域名", "Hostname or IP address used to connect to the active side system. When the active side is LOCAL, this defaults to the SSH_CLIENT environment variable. When the active side is REMOTE, this defaults to the SSH connection hostname.": "用于连接到活动侧系统的主机名或 IP 地址。当活动端为本地时,默认为 SSH_CLIENT 环境变量。当活动端为远程时,默认为 SSH 连接主机名。", "Hostname or IP address of SMTP server to use for sending this email.": "用于发送此电子邮件的 SMTP 服务器的主机名或 IP 地址。", "Hostname or IP address of the remote system.": "远程系统的主机名或 IP 地址。", "Hostname or IP address of the remote system. A valid URL scheme is required. Example: https://10.231.3.76": "远程系统的主机名或 IP 地址。必须使用有效的 URL 格式。例如:https://10.231.3.76", "Hostname or IP address of the system to receive SNMP trap notifications.": "接收 SNMP 陷阱通知的系统的主机名或 IP 地址。", + "Hostname – Active": "活动主机名", + "Hostname – Passive": "被动主机名", + "Hostname:": "主机名:", + "Hostname: {hostname}": "主机名: {hostname}", "Hostnames or IP addresses of the ISNS servers to be registered with the iSCSI targets and portals of the system. Separate entries by pressing Enter.": "要向系统的 iSCSI Target 和门户注册的 ISNS 服务器的主机名或 IP 地址。通过按 Enter 分隔条目。", "Hosts": "主机", "Hosts Allow": "允许主机", @@ -3058,6 +2138,7 @@ "I Agree": "我同意", "I Understand": "我了解", "I understand": "我了解", + "I would like to": "我想要", "IBurst": "突发", "ID": "ID", "IGNORE": "忽视", @@ -3069,16 +2150,24 @@ "IP address of the remote system with UPS Mode set as Master. Enter a valid IP address in the format 192.168.0.1.": "将 UPS 模式设置为的远程系统的 IP 地址。输入 192.168.0.1 格式的有效 IP 地址。", "IP address on which the connection Active Side listens. Defaults to 0.0.0.0.": "Active Side 侦听连接的 IP 地址。默认为0.0.0.0。", "IP addresses and networks that are allowed to use API and UI. If this list is empty, then all IP addresses are allowed to use API and UI.": "允许使用 API 和 UI 的 IP 地址和网络。如果此列表为空,则允许所有 IP 地址使用 API 和 UI。", + "IP of 1st Redfish management interface.": "第一个 Redfish 管理接口的 IP 。", "IPMI": "IPMI", "IPMI Configuration": "IPMI 配置", "IPMI Events": "IPMI 事件", "IPMI Password Reset": "IPMI 密码重置", "IPMI Read": "IPMI 读取", "IPMI Write": "IPMI 写入", + "IPs": "IP 地址", + "IPv4": "IPv4", "IPv4 Address": "IPv4 地址", "IPv4 Default Gateway": "IPv4 默认网关", "IPv4 Netmask": "IPv4 子网掩码", + "IPv4 Network": "IPv4 网络", + "IPv6": "IPv6", + "IPv6 Address": "IPv6 地址", "IPv6 Default Gateway": "IPv6 默认网关", + "IPv6 Network": "IPv6 网络", + "ISCSI Associated Target": "iSCSI 关联目标", "ISNS Servers": "ISNS 服务器", "ISO save location": "ISO 保存位置", "Icon URL": "图标 URL", @@ -3086,47 +2175,75 @@ "Identification": "识别", "Identifier": "标识符", "Identifier and Type": "标识符和类型", + "Identify": "定位", + "Identify Light": "定位灯", "Identify light is now flashing.": "识别灯正在闪烁。", "Identify light is now off.": "识别灯已关闭。", + "Identify light is off.": "定位灯已关闭。", + "Identify light is on.": "定位等已点亮。", "Identify the purpose for this public key. Typically used for end entity certificates. Multiple usages can be selected. Do not mark this extension critical when the Usage is ANY_EXTENDED_KEY_USAGE.

    Using both Extended Key Usage and Key Usage extensions requires that the purpose of the certificate is consistent with both extensions. See RFC 3280, section 4.2.1.13 for more details.": "确定此公钥的目的。通常用于最终实体证书。可以选择多种用法。当用法 ANY_EXTENDED_KEY_USAGE 时,请勿将此扩展标记为关键。

    同时使用扩展密钥用法密钥用法 的扩展时要求证书的用途与两个扩展都一致。有关更多详细信息,请参见RFC 3280 第 4.2.1.13 节。", "Identify this certificate as a Certificate Authority (CA).": "将此证书标识为证书颁发机构(CA)。", "Identify this extension as critical for the certificate. Critical extensions must be recognized by the certificate-using system or this certificate will be rejected. Extensions identified as not critical can be ignored by the certificate-using system and the certificate still approved.": "将此扩展标识为证书的关键扩展。关键扩展必须由使用证书的系统识别,否则此证书将被拒绝。使用证书的系统可以忽略标识为关键的扩展,并且仍批准该证书的使用。", "Idle": "空闲", "Idmap": "Idmap", + "Idmap Backend": "Idmap 后端", + "If URL above fails to open, it may be due to the unavailability of Basic HTTP authentication in your browser.": "如果上述 URL 无法打开,可能是由于您的浏览器不支持 HTTP 简单身份验证。", + "If automatic login has failed, please try the following credentials manually.": "如果自动登录失败,请手动尝试以下凭据。", "If checked, disks of the selected size or larger will be used. If unchecked, only disks of the selected size will be used.": "如果选中,则将使用所选大小或更大的磁盘。如果未选中,则仅使用所选大小的磁盘。", + "If downloading a file returns the error \"This file has been identified as malware or spam and cannot be downloaded\" with the error code \"cannotDownloadAbusiveFile\" then enable this flag to indicate you acknowledge the risks of downloading the file and TrueNAS will download it anyway.": "如果下载文件时出现错误“此文件已被识别为恶意软件或垃圾邮件,无法下载”,错误代码为“cannotDownloadAbusiveFile”,则启用此标志以表示您已承认下载该文件的风险,TrueNAS 将仍然下载该文件。", "If selected, sets several environment variables.": "如果选中,则设置多个环境变量。", "If set when troubleshooting a connection, logs more verbosely.": "如果在对连接进行故障排除时设置,会更详细的记录日志。", "If set, the DNS name of the client must resolve to its IP address and the cert must contain the same DNS name.": "如果设置,则客户端的 DNS 名称必须解析为其 IP 地址,并且证书必须包含相同的 DNS 名称。", "If set, the client certificate must contain the IP address that matches the IP address of the client.": "如果设置,则客户端证书必须包含与客户端的 IP 地址匹配的 IP 地址。", "If set, the password of the user can be sent unencrypted.": "如果设置,则可以未加密的方式发送用户的密码。", "If set, the user home directory is checked for a .tlslogin file which contains one or more PEM-encoded certificates. If not found, the user is prompted for password authentication.": "如果设置,将检查用户主目录中的 .tlslogin 文件,该文件包含一个或多个 PEM 编码的证书。如果未找到,则提示用户进行密码身份验证。", + "If set, the value will be used to override the default DNS domain name for NFSv4. Specifies the \"Domain\" idmapd.conf setting.": "如果设置,则该值将用于覆盖 NFSv4 的默认 DNS 域名。指定 \"Domain\" idmapd.conf 设置。", "If the Hex key type is chosen, an encryption key will be auto-generated.": "如果选择Hex key类型,将自动生成加密密钥。", "If the IPMI out-of-band management interface is on a different VLAN from the management network, enter the IPMI VLAN.": "如果 IPMI 带外管理接口与管理网络位于不同的 VLAN,请输入 IPMI VLAN。", "If the destination system has snapshots but they do not have any data in common with the source snapshots, destroy all destination snapshots and do a full replication. Warning: enabling this option can cause data loss or excessive data transfer if the replication is misconfigured.": "如果目标系统具有快照,但是它们与源快照没有任何共同的数据,请销毁所有目标快照并进行完全复制。警告:如果复制配置错误,启用此选项可能会导致数据丢失或过多的数据传输。", + "If you can't use QR code, use this text code instead": "如果您无法使用二维码,请使用此文本代码。", "If {vmName} is still running, the Guest OS did not respond as expected. It is possible to use Power Off or the Force Stop After Timeout option to stop the VM.": "如果 {vmName} 仍在运行,客机操作系统未按预期响应。可以使用关闭电源超时后强制停止选项来停止虚拟机。", + "Ignore Builtin": "忽略内置功能", + "Ignore List": "忽略列表", + "Image": "图像", "Image ID": "镜像 ID", "Image Name": "镜像名称", "Image Size": "镜像大小", "Image Tag": "镜像标签", "Immediately connect to TrueCommand.": "立即连接到 TrueCommand。", + "Implementation Domain": "实现域", + "Implementation Name": "实现名称", "Import": "导入", "Import CA": "导入证书颁发机构 (CA)", "Import Certificate": "导入证书", "Import Certificate Signing Request": "导入证书签名请求", + "Import Config": "导入配置", + "Import Configuration": "导入配置", + "Import File": "导入文件", "Import Pool": "导入池", "Import the private key from an existing SSH keypair or select Generate New to create a new SSH key for this credential.": "从现有的 SSH 密钥对导入私钥,或选择 新建 为该凭证创建新的 SSH 密钥。", "Importing Pool": "导入存储池", "Importing pools.": "正在导入池。", + "Improvement": "改进", "In": "接收", "In KiBs or greater. A default of 0 KiB means unlimited. ": "在 KiBs 或更高。默认值为 0 KiB 表示无限制。", "In order for dRAID to overweight its benefits over RaidZ the minimum recommended number of disks per dRAID vdev is 10.": "为了让 dRAID 的优势超越 RaidZ,建议每个 dRAID vdev 的最小磁盘数量为 10。", "In some cases it's possible that the provided key/passphrase is valid but the path where the dataset is supposed to be mounted after being unlocked already exists and is not empty. In this case, unlock operation would fail. This can be overridden by Force flag. When it is set, system will rename the existing directory/file path where the dataset should be mounted resulting in successful unlock of the dataset.": "在某些情况下,可能提供的密钥/密码短语是有效的,但在解锁后应该挂载数据集的路径已经存在,而且不是空的。此时解锁操作将会失败。这可以被 Force flag 覆写。设置后,系统将重命名应该挂载数据集的现有目录/文件路径,从而成功解锁数据集。", "Include Audit Logs": "包括审计日志", + "Include Dataset Properties": "包含数据集属性", "Include dataset properties with the replicated snapshots.": "在复制的快照中包括数据集属性。", + "Include everything": "包括所有内容", + "Include from subfolder": "包含子文件夹", + "Include or exclude files and directories from the backup.": "从备份中包含或排除文件和目录。", "Include snapshots with the name": "包括带有名称的快照", + "Include/Exclude": "包含/排除", + "Included Paths": "包含的路径", + "Incoming / Outgoing network traffic": "进出网络流量", + "Incoming [{networkInterfaceName}]": "入站 [{networkInterfaceName}]", "Incorrect Password": "密码错误", "Incorrect crontab value.": "错误的 crontab 值。", "Incorrect or expired OTP. Please try again.": "OTP 不正确或已过期。请重试。", + "Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "在 /var/log/middlewared.log 中增加与活动目录服务相关的日志详细程度。", "InfluxDB time series name for collected points.": "InfluxDB 收集点的时间序列名称。", "Info": "信息", "Informational": "信息", @@ -3137,14 +2254,20 @@ "Inherit Encryption": "继承加密", "Inherit Only": "仅继承", "Inherit domain from DHCP": "从 DHCP 继承域", + "Inherit encryption properties from parent": "从父级继承加密属性", + "Inherit from DHCP": "使用 DHCP", "Inherited": "继承", + "Inherited Quotas": "继承配额", + "Init/Shutdown Script": "开机/关机脚本", "Init/Shutdown Script created": "初始化/关闭脚本已创建", "Init/Shutdown Script updated": "初始化/关闭脚本已更新", "Init/Shutdown Scripts": "开机/关机脚本", "Initial Deployment/Setup": "初始部署/设置", "Initial secret authentication key. When an authentication key is not set, no Authentication Protocol is used. If an authentication key is set and an Authentication Protocol is not specified, MD5 is used as the default.
    Must be at least 8 and at most 32 octets long.": "初始私密验证密钥。未设置验证密钥时,不使用身份验证协议。如果设置了验证密钥,但未指定验证协议,则默认使用 MD5
    至少 8 个字节,最多 32 个字节。", "Initial secret encryption key. If an encryption key is not set, no Encryption Protocol is used. If an encryption key is set and an Encryption Protocol is not specified, DES is used as the default.
    Must be at least 8 and at most 32 octets long.": "初始私密加密密钥。如果未设置加密密钥,则不使用加密协议。如果设置了加密密钥,但未指定加密协议,则默认使用 DES
    至少为 8 个字节,最多为 32 个字节。", + "Initialized": "已初始化", "Initializing Apps Service": "正在初始化应用服务", + "Initializing...": "初始化中...", "Initiate Failover": "启动故障转移", "Initiator": "启动器", "Initiator Group ID": "启动器组 ID", @@ -3157,25 +2280,34 @@ "Insensitive": "不敏感", "Inspect VDEVs": "检查 VDEVs", "Install": "安装", + "Install Another Instance": "安装另一个实例", "Install Application": "安装应用", "Install Manual Update File": "安装手动更新文件", + "Install NVIDIA Drivers": "安装 NVIDIA 驱动程序", + "Install via YAML": "通过YAML进行安装", "Installation Media": "安装介质", "Installed": "已安装", "Installed Apps": "已安装的应用程序", "Installer image file": "安装程序映像文件", "Installing": "安装中", + "Instance Configuration": "实例配置", + "Instance saved": "实例已保存", + "Integrate Snapshots with VMware": "VMware 集成快照", "Interface": "网口", "Interface Settings": "网口设置", "Interface changes reverted.": "界面更改已恢复。", "Interfaces": "网口", "Interfaces marked critical are considered necessary for normal operation. When the last critical interface in a failover group is preempted by the other storage controller through the VRRP or CARP protocols, a failover is triggered.": "标记为关键的接口被认为是正常操作所必需的。当故障转移组中的最后一个关键接口被另一个存储控制器通过 VRRP 或 CARP 协议抢占时,将触发故障转移。", "Intermediate CA": "中间证书颁发机构", + "Internal": "内部", "Internal CA": "内部证书颁发机构", "Internal Certificate": "内部证书", "Internal identifier for the authenticator.": "身份验证器的内部标识符。", "Internal identifier of the certificate. Only alphanumeric characters, dash (-), and underline (_) are allowed.": "证书的内部标识符。仅允许使用字母数字字符,破折号(-)和下划线(_)。", "Internal identifier of the certificate. Only alphanumeric, \"_\" and \"-\" are allowed.": "证书的内部标识符。仅允许使用字母数字,\"_\" 和 \"-\"。", "Internetwork control": "互联网控制", + "Invalid CPU configuration.": "无效 CPU 配置", + "Invalid Date": "无效日期", "Invalid IP address": "IP 地址无效", "Invalid Pod name": "Pod 名无效", "Invalid cron expression": "无效的 cron 表达式", @@ -3185,25 +2317,36 @@ "Invalid image": "不可用的镜像", "Invalid network address list. Check for typos or missing CIDR netmasks and separate addresses by pressing Enter.": "无效的网络地址列表。通过按 Enter 检查拼写错误或缺少 CIDR 网络掩码以及单独的地址。", "Invalid pool name": "无效的池名称", + "Invalid pool name (please refer to the documentation for valid rules for pool name)": "无效的池名称(请参阅文档以获取有效的池名称规则)", "Invalid value. Missing numerical value or invalid numerical value/unit.": "无效值。缺少数值或无效的数值/单位。", "Invalid value. Must be greater than or equal to ": "无效值。必须大于或等于 ", "Invalid value. Must be less than or equal to ": "无效值。必须小于或等于 ", "Invalid value. Valid values are numbers followed by optional unit letters, like 256k or 1 G or 2 MiB.": "无效值。有效值是数字,后跟可选的单位字母,例如256k1 G2 MiB。", "Invisible": "不可见", + "Ipmi": "IPMI(智能平台管理接口)", "Is planned to be automatically destroyed at {datetime}": "计划在 {datetime} 自动销毁", "Isolated GPU Device(s)": "隔离 GPU 设备", + "Isolated GPU Devices Settings": "隔离 GPU 设备设置", "Isolated GPU PCI Ids": "隔离的 GPU PCI Id", + "Issue": "问题", "Issuer": "颁发者", "It is not recommended to create a pool with VDEVs containing different numbers of disks. Continue?": "不建议创建包含不同数量磁盘的 VDEV 的池。是否继续?", "It is not recommended to extend a pool with one or more VDEVs containing different numbers of disks. Continue?": "不建议使用包含不同数量磁盘的一个或多个 VDEV 来扩展池。是否继续?", "It seems you haven't configured pools yet.": "您似乎还没有配置池。", "Item": "项目", "Items per page": "每页项目数", + "JBOF": "JBOF", "JBOF Read": "JBOF 读取", "JBOF Write": "JBOF 写入", "Jan": "一月", + "Jira": "Jira", + "Job": "任务", + "Job aborted": "任务已中止", "Job {job} Completed Successfully": "任务 {job} 已成功完成", "Jobs": "任务", + "Jobs History": "任务历史", + "Jobs in progress": "进行中的任务", + "Joining": "加入", "Jul": "七月", "Jun": "六月", "KDC": "KDC", @@ -3214,16 +2357,21 @@ "KMIP Write": "KMIP 写入", "KVM implements Hyper-V Enlightenments for Windows guests. These features make Windows think they're running on top of a Hyper-V compatible hypervisor and use Hyper-V specific features. In some cases enabling these Enlightenments might improve usability and performance on the guest.": "KVM 为 Windows 来宾实施 Hyper-V 启蒙。这些功能使 Windows 认为它们运行在与 Hyper-V 兼容的虚拟机管理程序之上,并使用 Hyper-V 特定功能。在某些情况下,启用这些启蒙可能会提高来宾的可用性和性能。", "Keep": "保持", + "Keep Last": "保留最后一次", "Keep for": "保持为", "Keep snapshot for": "保留快照", "Keep the name short and only lowercase. Using a name longer than 63 characters can prevent accessing the block device. Allowed characters: letters, numbers, period (.), dash (-), and colon (:).": "请保持名称尽可能短且仅使用小写字母。超过 63 个字符的的名称可能导致块设备无法访问。可使用的字符包括:小写字母,数字,句点号 (.),短横线 (-) 和冒号 (:)。", "Keep the zvol name short. Using a zvol name longer than 63 characters can prevent accessing the zvol as a device.": "保持 zvol 名称简短。使用一个长于 63 个字符的 zvol 名称会使 zvol 不能作为一个设备进行访问。", "Keep this Boot Environment?": "保留此引导环境吗?", "Kerberos Keytab": "Kerberos 密钥表", + "Kerberos Keytabs": "Kerberos 密钥表", + "Kerberos Principal": "Kerberos 主体", "Kerberos Realm": "Kerberos 领域", "Kerberos Realms": "Kerberos 领域", "Kerberos Settings": "Kerberos 设置", "Kernel": "内核", + "Kernel Parameters": "内核参数", + "Kernel Settings": "内核设置", "Key": "项目", "Key Agreement": "密钥协议", "Key Cert Sign": "密钥证书签名", @@ -3232,44 +2380,77 @@ "Key Length": "密钥长度", "Key Type": "密钥类型", "Key Usage": "密钥用法", + "Key Usage Config": "密钥使用配置", "Key for {id}": "{id} 的密钥", + "Key not set": "密钥未设置", + "Key set": "键集", "Keychain Credential Read": "钥匙串凭证读取", "Keychain Credential Write": "钥匙串凭证写入", + "Keyhash": "密钥哈希", + "Keypairs": "密钥对", "Keys Synced": "同步秘钥", "Keys for {id} datasets": "{id} 数据集的秘钥", "Keys pending to be synced between KMIP server and TN database were cleared.": "KMIP 服务器和 TN 数据库之间待同步的密钥已清除。", "Keywords": "关键词", + "LACPDU Rate": "LACPDU 速率", + "LBA of First Error": "首个错误的逻辑块地址 (LBA)", "LDAP": "LDAP", "LDAP - Primary Domain": "LDAP - 主域", + "LDAP Domain": "LDAP 域", + "LDAP Realm": "LDAP 领域", + "LDAP Server": "LDAP 服务器", + "LDAP Timeout": "LDAP 超时", + "LDAP User DN": "LDAP 用户 DN", + "LDAP User DN Password": "LDAP 用户 DN 密码", + "LDAP configuration updated": "LDAP 配置已更新", + "LDAP is disabled.": "LDAP 已禁用。", "LDAP server hostnames or IP addresses. Separate entries with an empty space. Multiple hostnames or IP addresses can be entered to create an LDAP failover priority list. If a host does not respond, the next host in the list is tried until a new connection is established.": "LDAP 服务器主机名或 IP 地址。用空格分隔条目。可以输入多个主机名或 IP 地址来创建 LDAP 故障转移优先级列表。如果主机没有响应,则尝试列表中的下一个主机,直到建立新连接。", "LDAP server to use for SID/uid/gid map entries. When undefined, idmap_ldap uses *ldap://localhost/*. Example: ldap://ldap.netscape.com/o=Airius.com.": "用于 SID/uid/gid 映射条目的 LDAP 服务器。未定义时,idmap_ldap 使用 *ldap://localhost/*。例如:ldap//ldap.netscape.com/o=Airius.com 。", "LDAP timeout in seconds. Increase this value if a Kerberos ticket timeout occurs.": "DNS 超时(秒)。如果 DNS 查询超时,请增加此值。", + "LINK STATE DOWN": "链路离线", + "LINK STATE UNKNOWN": "链接状态未知", + "LINK STATE UP": "链路在线", "LOCAL": "本地", "LONG": "长", "LUN ID": "LUN ID", "LUN RPM": "LUN RPM", + "Label": "标签", + "Lan": "局域网", "Language": "语言", + "Languages other than English are provided by the community and may be incomplete. Learn how to contribute.": "除了英语以外的语言由社区提供,可能不完整。了解如何贡献。", "Last 24 hours": "最近 24 小时", "Last 3 days": "最近 3 天", + "Last Page": "最后一页", + "Last Resilver": "最后一致性重建", "Last Run": "最后一次运行", + "Last Scan": "最后扫描", "Last Scan Duration": "上次扫描耗时", "Last Scan Errors": "上次扫描错误", "Last Scrub": "最后一次巡检", + "Last Scrub Date": "上次巡检时间", + "Last Scrub Run": "上次巡检", "Last Snapshot": "最后一个快照", "Last month": "最近一个月", + "Last successful": "上次成功", "Last week": "最近一周", + "Last {result} Test": "最后 {result} 测试", + "Latest version": "最新版本", "Launch Docker Image": "启动 Docker 镜像", + "Layout": "布局", "Leave Domain": "离开域", "Leave Feedback": "留下反馈", "Leave at the default of 512 unless the initiator requires a different block size.": "除非启动器要求不同的块大小,否则请保留默认值 512。", "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "保留空白以允许全部输入或输入启动程序主机名列表。通过按 Enter 分隔条目。", "Leave empty for default (OpsGenie API)": "默认为空( OpsGenie API )", "Leave empty or select number of existing portal to use.": "保留为空,或选择要使用的现有门户的编号。", + "Leaving": "离开", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "离开域需要足够的权限。在下面输入您的凭据。", "Legacy": "传统", "Legacy AFP Compatibility": "旧版 AFP 兼容性", "Legacy NetBIOS name server. Advertises the SMB service NetBIOS Name. Can be required for legacy SMB1 clients to discover the server. When advertised, the server appears in Network Neighborhood).": "传统 NetBIOS 名称服务器。通告 SMB 服务的 NetBIOS 名称。传统 SMB1 客户端可以发现服务器。播发时,服务器将显示在网上邻居)。", + "Legacy OS: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "传统操作系统:数据区块大小 512 字节,启用 TPC,无 Xen 兼容模式,SSD 速度", "Legacy feature.

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

    允许共享托管用户主目录。每个用户在连接到其他用户无法访问的共享时都会获得一个个人主目录。这允许个人动态共享。只能将一份共享用作家庭共享。", + "Legacy feature.

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

    MacOS clients: Attempting to connect as a user that does not exist in TrueNAS does not automatically connect as the guest account. The Connect As: Guest option must be specifically chosen in MacOS to log in as the guest account. See the Apple documentation for more details.": "传统功能。

    权限与访客帐户相同。Windows 10 版本 1709 和 Windows Server 版本 1903 默认禁用访客访问。需要额外的客户端配置才能为这些客户端提供访客访问。

    MacOS 客户端:尝试以在 TrueNAS 中不存在的用户身份连接并不会自动以访客帐户连接。必须在 MacOS 中明确选择作为连接:访客选项以以访客帐户登录。有关更多详细信息,请参见苹果文档。", "Level": "级别", "Level 1 - Minimum power usage with Standby (spindown)": "级别 1 - 待机时的最低功耗(降低转速)", "Level 127 - Maximum power usage with Standby": "级别 127 - 待机时的最大功耗", @@ -3279,10 +2460,19 @@ "Level 64 - Intermediate power usage with Standby": "级别 64 - 待机时的中等功耗", "Libdefaults Auxiliary Parameters": "Libdefaults 辅助参数", "License": "许可", + "License Update": "许可证更新", + "Licensed Serials": "授权序列号", "Lifetime": "生命周期", + "Light status is unknown.": "灯光状态未知。", + "Limit": "限制", + "Limit Pool To A Single Enclosure": "将池限制到单个机箱", + "Limit To {name} Enclosure": "限制到 {name} 机箱", "Limit replication speed to this number of bytes per second.": "将复制速度限制为每秒此 bytes 数。", "Link Aggregation": "链路聚合", + "Link Aggregation Interfaces": "链路聚合接口", + "Link Aggregation Protocol": "链路聚合协议", "Link aggregation interface": "链路聚合接口", + "Linked Service": "链接服务", "Linux": "Linux", "List any existing dataset properties to remove from the replicated files.": "列出要从复制文件中删除的任何现有数据集属性。", "List of chat IDs": "会话 ID 列表", @@ -3299,6 +2489,9 @@ "Local Account": "本地账号", "Local Administrator": "本地管理员", "Local Groups": "本地组", + "Local Groups Name": "本地组名称", + "Local Master": "本地主控器", + "Local User Download Bandwidth": "本地用户下载带宽", "Local User Upload Bandwidth: ": "本地用户上传带宽:", "Local Users": "本地用户", "Local heartbeat interface does not exist.": "本地活动接口不存在。", @@ -3318,39 +2511,57 @@ "Log": "日志", "Log Details": "日志详情", "Log Excerpt": "日志摘录", + "Log In": "登录", "Log In To Gmail": "登录到 Gmail", "Log In To Provider": "登录到提供商", "Log Level": "日志级别", "Log Out": "登出", "Log Path": "日志路径", "Log VDEVs": "记录 VDEV", + "Log in to Gmail to set up Oauth credentials.": "设置 Oauth 凭据来登录 Gmail。", "Logged In To Gmail": "已登录 Gmail", "Logged In To Jira": "已经登陆 Jira", "Logged In To Provider": "登录至提供商", "Logging Level": "日志级别", + "Logging in...": "登录中...", "Logical Block Size": "逻辑块大小", "Login Attempts": "登录尝试", + "Login Banner": "登录横幅", "Login To Jira To Submit": "登录 Jira 以提交", "Login error. Please try again.": "登录错误,请重试。", + "Login was canceled. Please try again if you want to connect your account.": "登录已取消。如果您想连接您的账户,请重试。", + "Logoff": "注销", "Logout": "登出", "Logs": "日志", + "Logs Details": "日志详情", "Long": "长期", "Long time ago": "很久之前", "Looking for help?": "需要帮助吗?", "Losing the ability to unlock the pool can result in losing all data on the disks with no chance of recovery. Always back up the encryption key file or passphrase for an encrypted pool! The key file for an encrypted pool is secured in the system database and can be exported at any time from the pool options": "失去解锁池的能力可能会导致磁盘上的所有数据丢失而无法恢复。始终备份加密池的加密密钥文件或密码!加密池的密钥文件在系统数据库中受到保护,可以随时从池选项中导出", "Loss of Functionality": "功能丧失", "Low Bandwidth (4)": "低带宽(4)", + "Low Capacity": "低容量", "Lowercase alphanumeric characters plus dot (.), dash (-), and colon (:) are allowed. See the Constructing iSCSI names using the iqn.format section of RFC3721.": "允许使用小写字母数字字符以及点号(.),破折号(-)和冒号(:)。请参阅使用 iqn.format 构造 iSCSI 名称RFC3721的部分。", "Lowest Temperature": "最低温度", "Lowest port number of the active side listen address that is open to connections.": "对连接开放的活动侧侦听地址的最低端口号。", + "MAC Address": "MAC地址", + "MOTD": "MOTD", "MOTD Banner": "MOTD 横幅", "MOVE": "迁移", "MTU": "MTU", "Mac Address": "MAC 地址", + "Machine": "机器", + "Machine Time: {machineTime} \n Browser Time: {browserTime}": "机器时间: {machineTime} \n 浏览器时间: {browserTime}", + "Mail Server Port": "邮件服务器端口", + "Main menu": "主菜单", + "Maintenance Window": "维护窗口", "Major": "主要", "Make Destination Dataset Read-only?": "将目标数据集设为只读?", "Make the currently active TrueNAS controller the default when both TrueNAS controllers are online and HA is enabled. To change the default TrueNAS controller, unset this option on the default TrueNAS controller and allow the system to fail over. This briefly interrupts system services.": "当两个 TrueNAS 控制器都在线并启用 HA 时,将当前活动的 TrueNAS 控制器设为默认值。要更改默认 TrueNAS 控制器,请在默认 TrueNAS 控制器上取消设置此选项并允许系统进行故障转移。这会短暂中断系统服务。", + "Makes the group available for permissions editors over SMB protocol (and the share ACL editor). It is not used for SMB authentication or determining the user session token or internal permissions checks.": "使该组在SMB协议(及共享ACL编辑器)上可供权限编辑器使用。它不用于SMB身份验证或确定用户会话令牌或内部权限检查。", "Manage": "管理", + "Manage Advanced Settings": "管理高级设置", + "Manage Apps Settings": "管理应用设置", "Manage Certificates": "管理证书", "Manage Cloud Sync Tasks": "管理云同步任务", "Manage Configuration": "管理配置", @@ -3361,27 +2572,43 @@ "Manage Disks": "管理磁盘", "Manage Global SED Password": "管理全局 SED 密码", "Manage Group Quotas": "管理组配额", + "Manage Groups Server-side": "管理服务器的组", "Manage Installed Apps": "管理已安装的应用程序", + "Manage NFS Shares": "管理 NFS 共享", "Manage Replication Tasks": "管理复制任务", "Manage Rsync Tasks": "管理 Rsync 任务", + "Manage S.M.A.R.T. Tasks": "管理 S.M.A.R.T. 任务", "Manage SED Password": "管理 SED 密码", "Manage SED Passwords": "管理 SED 密码", + "Manage SMB Shares": "管理 SMB 共享", "Manage Services and Continue": "管理服务并继续", "Manage Snapshot Tasks": "管理快照任务", "Manage Snapshots": "管理快照", + "Manage Snapshots Tasks": "管理快照任务", "Manage User Quotas": "管理用户配额", + "Manage VM Settings": "管理虚拟机设置", "Manage ZFS Keys": "管理 ZFS 密钥", + "Manage iSCSI Shares": "管理 iSCSI 共享", + "Manage members of {name} group": "管理 {name} 组的成员", + "Managed by TrueCommand": "由 TrueCommand 管理", "Management": "管理", "Manual": "手动", "Manual Disk Selection": "手动选择磁盘", "Manual S.M.A.R.T. Test": "手动 S.M.A.R.T. 测试", "Manual Selection": "手动选择", + "Manual Test": "手动测试", "Manual Update": "手动更新", + "Manual Upgrade": "手动升级", "Manual disk selection allows you to create VDEVs and add disks to those VDEVs individually.": "手动磁盘选择允许您创建 VDEVs 并将磁盘单独添加到这些 VDEVs。", "Manual layout": "手动布局", "Manually Configured VDEVs": "手动配置 VDEVs", + "Mapall Group": "映射组", + "Mapall User": "映射用户", + "Maproot Group": "映射 root 组", + "Maproot User": "映射 root 用户", "Mar": "三月", "Mask": "掩码", + "Masquerade Address": "伪装地址", "Matching naming schema": "匹配命名模式", "Matching regular expression": "匹配正则表达式", "Matching the fixed size of data, as in a database, may result in better performance.": "在数据库中匹配固定大小的数据可能会有更好的性能。", @@ -3389,6 +2616,9 @@ "Mattermost username.": "Mattermost 用户名。", "Max Poll": "最大轮询", "Max dataset nesting in ZFS is limited to 50. We are already at that limit in the parent dataset path. It is not possible to create anymore nested datasets under this path.": "ZFS 中的最大数据集嵌套限制为 50。我们在父数据集路径中已经处于该限制。无法再在此路径下创建嵌套数据集。", + "Maximize Dispersal": "最大分散", + "Maximize Enclosure Dispersal": "最大机箱分散", + "Maximum Passive Port": "被动端口(高位)", "Maximum Transmission Unit, the largest protocol data unit that can be communicated. The largest workable MTU size varies with network interfaces and equipment. 1500 and 9000 are standard Ethernet MTU sizes. Leaving blank restores the field to the default value of 1500.": "最大传输单位,可以通信的最大协议数据单位。最大可用 MTU 大小随网络接口和设备的不同而不同。15009000是标准的以太网 MTU 大小。保留为空白将字段恢复为默认值 1500。", "Maximum Upload Parts": "最大上传部分", "Maximum number of replication tasks being executed simultaneously.": "并发执行复制的任务最大数量。", @@ -3407,15 +2637,20 @@ "Memory": "内存", "Memory Reports": "内存报告", "Memory Size": "内存大小", + "Memory Stats": "内存状态", "Memory Usage": "内存使用", + "Memory Utilization": "内存利用率", "Memory device": "存储设备", + "Memory usage of app": "App 的内存使用情况", "Message": "信息", "Message verbosity level in the replication task log.": "复制任务日志中的消息详细级别。", "Metadata": "元数据", + "Metadata (Special) Small Block Size": "元数据(特殊)小块大小", "Metadata VDEVs": "元数据 VDEV", "Method": "方法", "Method Call": "方法调用", "Method of snapshot transfer:
    • SSH is supported by most systems. It requires a previously created connection in System > SSH Connections.
    • SSH+NETCAT uses SSH to establish a connection to the destination system, then uses py-libzfs to send an unencrypted data stream for higher transfer speeds. This only works when replicating to a TrueNAS, or other system with py-libzfs installed.
    • LOCAL efficiently replicates snapshots to another dataset on the same system without using the network.
    • LEGACY uses the legacy replication engine from FreeNAS 11.2 and earlier.
    ": "快照传输方法:
    • SSH 被大多数系统支持。它需要之前在 System > SSH Connections 中创建的连接。
    • SSH+NETCAT 使用 SSH 建立到目标系统的连接,然后使用 < a href=\"https://github.com/truenas/py-libzfs\" target=\"_blank\">py-libzfs 发送未加密的数据流以获得更高的传输速度。这仅在复制到 TrueNAS 或安装了 py-libzfs 的其他系统时有效。
    • LOCAL 有效地将快照复制到同一系统上的另一个数据集无需使用网络。
    • LEGACY 使用 FreeNAS 11.2 及更早版本的旧版复制引擎。
    ", + "Metrics": "指标", "MiB. Units smaller than MiB are not allowed.": "MiB。不允许使用小于 MiB 的单位。", "Microsoft Azure": "Microsoft Azure", "Microsoft Onedrive Access Token. Log in to the Microsoft account to add an access token.": "Microsoft Onedrive 访问令牌。登录到 Microsoft 帐户以添加访问令牌。", @@ -3426,6 +2661,7 @@ "Minimum": "最小", "Minimum Memory": "最少内存", "Minimum Memory Size": "最小内存大小", + "Minimum Passive Port": "被动端口(低位)", "Minimum value is {min}": "最小值为 {min}", "Minor": "次要", "Minor Version": "次要版本", @@ -3437,8 +2673,11 @@ "Mirror": "镜像", "Missing group - {gid}": "缺失群组 - {gid}", "Missing permissions for this action": "缺少此操作的权限", + "Mixed Capacity": "多种容量", + "Mixing disks of different sizes in a vdev is not recommended.": "在 vdev 中混合不同大小的磁盘是不建议的。", "Mode": "模式", "Model": "型号", + "Modern OS: Extent block size 4k, TPC enabled, no Xen compat mode, SSD speed": "现代操作系统:扩展块大小 4k,启用 TPC,无 Xen 兼容模式,SSD 速度", "Modify": "调整", "Module": "模块", "Mon": "周一", @@ -3449,10 +2688,20 @@ "Month(s)": "月", "Months": "月数", "More Options": "更多选项", + "More info...": "更多信息...", + "Move all items to the left side list": "移动所有项目到左侧列表", + "Move all items to the right side list": "移动所有项目到右侧列表", "Move existing keys from the current key server to a new key server. To switch to a different key server, key synchronization must be Enabled, then enable this setting, update the key server connection configuration, and click SAVE.": "将现有密钥从当前密钥服务器移至新的密钥服务器。要切换到其他密钥服务器,必须先启用密钥同步,然后启用此设置,更新密钥服务器连接配置,然后单击保存。", + "Move selected items to the left side list": "将选定的项目移动到左侧列表", + "Move selected items to the right side list": "将选定的项目移动到右侧列表", + "Move widget down": "向下移动小部件", + "Move widget up": "向上移动小部件", "Multi-domain support. Enter additional domains to secure. Separate domains by pressing Enter For example, if the primary domain is example.com, entering www.example.com secures both addresses.": "多域支持。输入其他域以确保安全。通过按 Enter 分隔域。例如,如果主域是 example.com,则输入 www.example.com 可以保护两个地址。", "Multicast DNS. Uses the system Hostname to advertise enabled and running services. For example, this controls if the server appears under Network on MacOS clients.": "组播 DNS。使用系统主机名通告已启用且正在运行的服务。例如,它控制服务器是否出现在 MacOS 客户端的网络下。", + "Multichannel": "多通道", + "Multiple Errors": "多个错误", "Multiprotocol": "多协议", + "Must be part of the pool to check errors.": "必须是池的一部分才能检查错误。", "Must match Windows workgroup name. When this is unconfigured and Active Directory or LDAP are active, TrueNAS will detect and set the correct workgroup from these services.": "必须匹配 Windows 工作组名称。当未配置且 Active Directory 或 LDAP 处于活动状态时,TrueNAS 将从这些服务中检测并设置正确的工作组。", "Mutual secret password. Required when Peer User is set. Must be different than the Secret.": "相互的密码。设置对等用户时必需。必须不同于密钥。", "N/A": "不可用", @@ -3460,21 +2709,30 @@ "NEW": "新", "NFS": "NFS", "NFS Sessions": "NFS 会话", + "NFS Share": "NFS 共享", "NFS share created": "NFS 共享已创建", "NFS share updated": "NFS 共享已更新", + "NFS3 Session": "NFS3 会话", + "NFS4 Session": "NFS4 会话", "NFSv4": "NFSv4", "NFSv4 DNS Domain": "NFSv4 DNS 域名", "NIC": "网卡", + "NIC To Attach": "要附加的网卡(NIC)", "NOTICE": "注意", + "NS": "NS", "NTLMv1 Auth": "NTLMv1 认证", + "NTP Server": "时间同步服务器(NTP)", "NTP Server Settings": "NTP 服务器设置", "NTP Servers": "网络授时服务器(NTP)", + "NVMe-oF Expansion Shelves": "NVMe-oF 扩展机架", "Name": "名称", "Name And Method": "名称和方法", + "Name ^ \"Local\" AND \"Web Shell Access\" = true": "名称 ^ \"本地\" AND \"网络shell访问\" = true", "Name and Naming Schema cannot be provided at the same time.": "不能同时提供名称和命名惯例。", "Name and Options": "名称和选项", "Name and Provider": "名称和提供者", "Name and Type": "名称和类型", + "Name must start and end with a lowercase alphanumeric character. Hyphen is allowed in the middle e.g abc123, abc, abcd-1232": "名称必须以小写字母和数字字符开头和结束。中间允许有短横线,例如 abc123、abc、abcd-1232。", "Name not added": "名称未添加", "Name not found": "未找到名称", "Name of the channel to receive notifications. This overrides the default channel in the incoming webhook settings.": "要接收通知的频道的名称", @@ -3491,23 +2749,43 @@ "Name of this SSH connection. SSH connection names must be unique.": "此 SSH 连接的名称。SSH 连接名称必须唯一。", "Name of this replication configuration.": "此复制配置的名称。", "Name or Naming Schema must be provided.": "必须提供名称或命名惯例。", + "Name ~ \"admin\"": "名称 ~ \"admin\"", + "Nameserver": "域名服务器", "Nameserver (DHCP)": "域名服务器 (DHCP)", "Nameserver 1": "域名服务器 1", "Nameserver 2": "域名服务器 2", "Nameserver 3": "域名服务器 3", "Nameserver {n}": "域名服务器 {n}", + "Nameservers": "域名服务器", "Naming Schema": "命名惯例", + "Negotiate – only encrypt transport if explicitly requested by the SMB client": "协商 - 仅在SMB客户端明确请求时加密传输", "NetBIOS": "NetBIOS", "NetBIOS Alias": "NetBIOS 别名", "NetBIOS Name": "NetBIOS 名称", "NetBIOS Name of this NAS. This name must differ from the Workgroup name and be no greater than 15 characters.": "此 NAS 的 NetBIOS 名称。此名称必须与Workgroup名称不同,且不超过 15 个字符。", + "Netcat Active Side": "Netcat 活动侧", + "Netcat Active Side Connect Address": "Netcat 主动侧连接地址", + "Netcat Active Side Listen Address": "Netcat 主动侧监听地址", + "Netcat Active Side Max Port": "Netcat 活动端最大端口", + "Netcat Active Side Min Port": "Netcat 活动端最小端口", + "Netdata": "Netdata", "Network": "网络", + "Network Configuration": "网络配置", "Network General Read": "一般网络读取", + "Network I/O": "网络 I/O", "Network Interface": "网络接口", + "Network Interface Card": "网卡", "Network Interface Read": "网络接口读取", "Network Interface Write": "网络接口写入", + "Network Reconnection Issue": "网络重连问题", "Network Reports": "网络报告", + "Network Reset": "网络重置", + "Network Settings": "网络设置", + "Network Stats": "网络统计", "Network Timeout Before Initiating Failover": "启动故障转移之前的网络超时", + "Network Traffic": "网络流量", + "Network Usage": "网络使用情况", + "Network Utilization": "网络利用率", "Network addresses allowed to use this initiator. Leave blank to allow all networks or list network addresses with a CIDR mask. Separate entries by pressing Enter.": "允许使用此启动器的网络地址。保留空白以允许所有网络或使用 CIDR 掩码列出网络地址。通过按 Enter 分隔条目。", "Network addresses allowed use this initiator. Each address can include an optional CIDR netmask. Click + to add the network address to the list. Example: 192.168.2.0/24.": "允许的网络地址使用此启动器。每个地址都可以包含一个可选的 CIDR 网络掩码。单击 + 将网络地址添加到列表中。例如: 192.168.2.0/24 。", "Network changes applied successfully.": "网络更改已成功应用。", @@ -3517,31 +2795,88 @@ "Network interface changes have been temporarily applied for testing. Keep changes permanently? Changes are automatically reverted after the testing delay if they are not permanently applied.": "网络接口更改已暂时应用于测试。永久保留更改? 如果更改未永久应用,则会在测试延迟后自动恢复。", "Network interface settings have been temporarily changed for testing. The settings will revert to the previous configuration after {x} seconds unless SAVE CHANGES is chosen to make them permanent.": "网络接口设置已临时更改以进行测试。设置将在 {x} 秒后恢复为之前的配置,除非选择「保存更改」以使其永久化。", "Network interface updated": "网络接口已更新", + "Network interface {interface} not found.": "未找到网络接口 {interface}。", + "Network interfaces do not match between storage controllers.": "存储控制器之间的网络接口不匹配。", "Network interfaces to include in the bridge.": "包含在网桥中的网络接口。", + "Network size of each docker network which will be cut off from base subnet.": "每个 Docker 网络的网络大小,将从基础子网中分配。", "Networking": "网络", "Networks": "网络", "Never": "从不", "Never Delete": "永不删除", "New & Updated Apps": "新的应用与更新的应用", + "New ACME DNS-Authenticator": "新的 ACME DNS 验证器", + "New Alert": "新警报", + "New Backup Credential": "新的备份凭据", + "New Bucket Name": "新存储桶名称", + "New CSR": "新的CSR", + "New Certificate": "新证书", + "New Certificate Authority": "新的证书授权机构", + "New Certificate Signing Requests": "新的证书签名请求", + "New Cloud Backup": "新的云备份", + "New Cloud Sync Task": "新的云同步任务", + "New Could Credential": "新可以凭证", + "New Credential": "新凭据", + "New Cron Job": "新的定时任务", + "New DNS Authenticator": "新的DNS身份验证器", + "New Dataset": "新数据集", "New Devices": "新设备", "New Disk": "新磁盘", + "New Disk Test": "新磁盘测试", + "New Exporter": "新导出器", + "New Group": "新建组", "New IPv4 Default Gateway": "新的 IPv4 默认网关", + "New Idmap": "新 Idmap", + "New Init/Shutdown Script": "新的开机/关机脚本", + "New Interface": "新接口", + "New Kerberos Keytab": "新的 Kerberos 密钥表", + "New Kerberos Realm": "新 Kerberos 域", + "New Kernel Parameters": "新内核参数", + "New Key": "新密钥", + "New NFS Share": "新的 NFS 共享", + "New NTP Server": "新 NTP 服务器", "New Password": "新密码", + "New Periodic S.M.A.R.T. Test": "新的定期 S.M.A.R.T. 测试", + "New Periodic Snapshot Task": "新的周期性快照任务", "New Pool": "新池", "New Privilege": "新特权", + "New Replication Task": "新复制任务", + "New Reporting Exporter": "新的报告导出器", + "New Rsync Task": "新建 Rsync 任务", + "New SMB Share": "新的 SMB 共享", "New SSH Connection": "新的 SSH 连接", + "New SSH Keypair": "新的 SSH 密钥对", + "New Scrub Task": "新数据巡检任务", + "New Share": "新共享", + "New Smart Test": "新 S.M.A.R.T. 测试", + "New Snapshot Task": "新快照任务", + "New Static Route": "新静态路由", + "New Sysctl": "新 Sysctl", + "New TrueCloud Backup Task": "新的 TrueCloud 备份任务", + "New Tunable": "新的可调参数", + "New User": "新用户", + "New VM": "新虚拟机", + "New Virtual Machine": "新虚拟机", + "New Widget": "新小部件", + "New Zvol": "新建 Zvol", + "New iSCSI": "新的 iSCSI", + "New password": "新密码", "New password and confirmation should match.": "新密码和确认密码必须匹配。", "New users are not given su permissions if wheel is their primary group.": "如果wheel是其主要组,则不向新用户授予su权限。", + "New widgets and layouts.": "新的小部件和布局。", "Newer Clone": "较新的克隆", "Newer Intermediate, Child, and Clone": "较新的中级,子级和克隆", + "Newsletter": "通讯简报", "Next": "下一步", + "Next Page": "下一页", "Next Run": "下次运行", "No": "No", "No Applications Installed": "没有已安装的应用", "No Applications are Available": "没有可用的应用", + "No Changelog": "无更新日志", "No Communication Warning Time": "没有通讯警告时间", "No Data": "没有数据", "No Datasets": "没有数据集", + "No Enclosure Dispersal Strategy": "无机箱分散策略", "No Encryption (less secure, but faster)": "没有加密(安全性较低,但速度更快)", "No Inherit": "无继承", "No Isolated GPU Device(s) configured": "未配置隔离 GPU 设备", @@ -3552,31 +2887,53 @@ "No Propagate Inherit": "无传播继承", "No Safety Check (CAUTION)": "没有安全检查(注意)", "No Search Results.": "没有搜索结果。", + "No VDEVs added.": "未新增任何 VDEV。", "No arguments are passed": "不传递任何参数", + "No available licensed Expansion Shelves ": "没有已授权的扩展机箱", + "No containers are available.": "没有可用的容器。", "No descriptor provided": "未提供描述符", + "No disks available.": "没有可用的磁盘。", "No e-mail address is set for root user or any other local administrator. Please, configure such an email address first.": "root 或其它本地管理员账号未设置电子邮箱地址,请先为其账户设置电子邮箱地址。", + "No enclosure": "无机箱", "No errors": "没有错误", "No events to display.": "没有可显示的事件。", + "No images found": "未找到图片", "No interfaces configured with Virtual IP.": "未使用虚拟 IP 配置接口。", + "No items have been added yet.": "尚未新增任何项目。", + "No jobs running.": "没有正在运行的任务。", "No logs are available": "没有可用的日志", "No logs are available for this task.": "没有日志可用于此任务。", + "No logs available": "没有可用的日志", + "No logs yet": "尚无日志", "No longer keep this Boot Environment?": "不再保留此引导环境?", "No matching results found": "未找到匹配的结果", "No network interfaces are marked critical for failover.": "没有网络接口被标记为故障转移的关键接口。", + "No options": "没有选项", + "No options are passed": "没有传递任何选项", "No pools are configured.": "没有配置池。", "No ports are being used.": "没有使用任何端口。", "No records": "没有记录", "No records have been added yet": "记录尚未添加", + "No results found in {section}": "在 {section} 中未找到结果。", + "No similar apps found.": "未找到类似的应用程序。", "No snapshots sent yet": "尚未发送快照", + "No temperature data was reported by the system. There can be a number of reasons why this might occur.": "系统未报告任何温度数据。出现这种情况可能有多种原因。", + "No unused disks": "没有未使用的磁盘", + "No update found.": "未找到更新。", "No updates available.": "没有可用更新。", + "No vdev info for this disk": "没有这块磁盘的 vdev 信息。", + "No volume mounts": "没有卷挂载", "No warnings": "没有警告", "Node set allows setting NUMA nodes for multi NUMA processors when CPU set was defined. Better memory locality can be achieved by setting node set based on assigned CPU set. E.g. if cpus 0,1 belong to NUMA node 0 then setting nodeset to 0 will improve memory locality": "节点集允许在定义 CPU 集时为多个 NUMA 处理器设置 NUMA 节点。通过根据分配的 CPU 集设置节点集可以实现更好的内存局部性。例如。如果 cpus 0,1 属于 NUMA 节点 0,则将 nodeset 设置为 0 将提高内存局部性", "Nodes Virtual IP states do not agree.": "节点的虚拟 IP 状态不一致。", "None": "无", + "None requested": "没有请求。", "Normal": "正常", "Normal VDEV type, used for primary storage operations. ZFS pools always have at least one DATA VDEV.": "普通 VDEV 类型,用于主要存储操作。ZFS 池始终至少有一个数据 VDEV。", "Not Set": "没有设置", + "Not Shared": "未共享", "Not enough free space. Maximum available: {space}": "可用空间不足。最大可用空间:{space}", + "Notes": "注释", "Notes about this disk.": "关于此磁盘的注释。", "Notes about this extent.": "有关此区块的说明。", "Notice": "通知", @@ -3584,6 +2941,7 @@ "Notransfer Timeout": "无传输超时", "Nov": "十一月", "Now": "现在", + "Now/Restart": "当前/下次启动", "Num Pending Deletes": "待删除数量", "Number of VDEVs": "VDEVs 数量", "Number of bytes": "字节数", @@ -3607,6 +2965,7 @@ "OK": "是", "OQ % Used": "已使用对象配额 %", "OQ Used": "使用过的 OQ", + "OS": "操作系统", "OS Version": "操作系统版本", "OTHER": "其他", "Object Quota": "对象配额", @@ -3619,20 +2978,29 @@ "Offline disk {name}?": "离线磁盘 {name}?", "Offload Read": "卸载读取", "Offload Write": "卸载写入", + "Ok": "好的", "Okay": "好", "On": "开启", "On a Different System": "在不同的系统上", "On this System": "在这个系统上", + "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.": "一旦选择了机箱,所有其他 VDEV 创建步骤将限制磁盘选择选项为所选机箱中的磁盘。如果更改了机箱选择,所有磁盘选择将被重置。", "Once enabled, users will be required to set up two factor authentication next time they login.": "启用后,用户下次登录时将需要设置双因素身份验证。", + "One half widget and two quarter widgets below": "一个半小部件和两个四分之一小部件在下面", + "One large widget": "一个大型小组件", "One or more data VDEVs has disks of different sizes.": "一个或多个数据 VDEV 具有不同大小的磁盘。", + "One-Time Password (if necessary)": "一次性密码(如果有必要)", "One-Time Password if two factor authentication is enabled.": "如果启用了双因素身份验证,则为一次性密码。", "Online": "在线", "Online Disk": "在线磁盘", "Online disk {name}?": "在线磁盘 {name}?", "Only Readonly Admin, Sharing Admin or Full Admin roles are supported in WebUI.": "WebUI 中仅支持只读管理员、共享管理员或完全管理员角色。", + "Only Replicate Snapshots Matching Schedule": "仅复制与计划匹配的快照", "Only appears if Device is selected. Select the unused zvol or zvol snapshot.": "仅在选择设备时出现。选择未使用的 zvol 或 zvol 快照。", "Only appears if a File or zvol is selected. When the specified percentage of free space is reached, the system issues an alert.": "仅在选择文件或 zvol 时显示。当达到指定的可用空间百分比时,系统将发出警报。", + "Only disks that are at least {size} are shown.": "只有大小至少为 {size} 的磁盘会被显示。", "Only entered when configuring mutual CHAP. Usually the same value as User.": "仅在配置相互 CHAP 时输入。通常与 User 相同。", + "Only first {number} examples are shown.": "仅显示前 {number} 个示例。", + "Only image(s) will be updated": "仅会更新镜像。", "Only lowercase alphanumeric characters plus dot (.), dash (-), and colon (:) are allowed.": "仅允许使用小写字母数字字符加上点(.),破折号(-)和冒号(:)。", "Only needed when connecting to a Team Drive. The ID of the top level folder of the Team Drive.": "仅在连接到团队驱动器时需要。Team Drive 的顶级文件夹的 ID。", "Only numeric ids are allowed.": "只允许使用数字 ID。", @@ -3643,9 +3011,15 @@ "Open Files": "打开文件", "Open TrueCommand User Interface": "打开 TrueCommand 用户界面", "Open ticket": "打开工单", + "OpenStack Swift": "OpenStack Swift", + "Opened at": "打开于", "Openstack API key or password. This is the OS_PASSWORD from an OpenStack credentials file.": "Openstack API 密钥或密码。这是来自 OS_PASSWORD 的 OpenStack 凭证文件。", "Openstack user name for login. This is the OS_USERNAME from an OpenStack credentials file.": "Openstack 登录用户名。这是来自 OS_USERNAME 的 OpenStack 凭证文件。", "Operating System": "操作系统", + "Operation": "操作", + "Operation will change permissions on path: {path}": "操作将更改路径上的权限:{path}", + "Optional IP": "可选 IP", + "Optional IP of 2nd Redfish management interface.": "第二个 Redfish 管理接口的可选 IP。", "Optional description. Portals are automatically assigned a numeric group.": "可选描述。门户会自动分配一个数字组。", "Optional user-friendly name.": "可选的用户友好名称。", "Optional. Enter a server description.": "可选。输入服务器描述。", @@ -3654,26 +3028,37 @@ "Optional: Choose installation media image": "可选:选择安装媒体镜像", "Optional: NUMA nodeset (Example: 0-1)": "可选:NUMA 节点集(示例:0-1)", "Options": "选项", + "Options cannot be loaded": "无法加载选项", "Options for encrypting the LDAP connection:
    • OFF: do not encrypt the LDAP connection.
    • ON: encrypt the LDAP connection with SSL on port 636.
    • START_TLS: encrypt the LDAP connection with STARTTLS on the default LDAP port 389.
    ": "用于加密 LDAP 连接的选项:
    • 关闭:不加密 LDAP 连接。
    • 打开:使用 636 端口上的 SSL 加密 LDAP 连接。
    • START_TLS:使用默认 LDAP 端口 389 上的 STARTTLS 加密 LDAP 连接。
    ", "Order": "命令", "Organization": "组织", "Organizational Unit": "组织单位", "Organizational unit of the entity.": "实体组织单位。", "Other": "其他", + "Other Devices": "其他设备", + "Other Execute": "其他执行", "Other Options": "其他选项", + "Other Read": "其他读取", "Other Settings": "其他设定", "Other TrueNAS controller cannot be reached.": "无法访问其他 TrueNAS 控制器。", "Other TrueNAS controller has no license.": "其他 TrueNAS 控制器没有许可证。", "Other TrueNAS controller has not finished booting.": "其他 TrueNAS 控制器尚未完成启动。", + "Other Write": "其他写入", + "Other node is currently configuring the system dataset.": "另一个节点正在配置系统数据集。", "Other node is currently processing a failover event.": "其他节点当前正在处理故障转移事件。", "Others": "其他", "Out": "发送", "Outbound Activity": "出站活动", "Outbound Network": "出站网络", + "Outbound Network:": "出站网络:", + "Outgoing Mail Server": "外发邮件服务器", + "Outgoing [{networkInterfaceName}]": "出站 [{networkInterfaceName}]", + "Override Admin Email": "覆盖管理员邮箱", "Overrides default directory creation mask of 0777 which grants directory read, write and execute access for everybody.": "覆盖0777的默认目录创建掩码,该掩码授予每个人对目录的读取,写入和执行访问权限。", "Overrides default file creation mask of 0666 which creates files with read and write access for everybody.": "覆盖0666的默认文件创建掩码,该掩码创建对所有人具有读写访问权限的文件。", "Overview": "概述", "Owner": "所有者", + "Owner Group": "所有者组", "Owner:": "所有者:", "PASSPHRASE": "密码", "PCI Passthrough Device": "PCI 直通设备", @@ -3684,6 +3069,9 @@ "PUSH": "推送", "PagerDuty client name.": "PagerDuty 客户端名称。", "Pair this certificate's public key with the Certificate Authority private key used to sign this certificate.": "将此证书的公钥与用于签署此证书的证书颁发机构私钥配对。", + "Parent": "父级", + "Parent Interface": "父接口", + "Parent Path": "父路径", "Parent dataset path (read-only).": "父数据集路径(只读)", "Partition": "分区", "Passphrase": "密码", @@ -3718,29 +3106,46 @@ "Path Length": "路径长度", "Path Suffix": "路径后缀", "Path to the Extent": "区块的路径", + "Pattern": "模式", "Pattern of naming custom snapshots to include in the replication with the periodic snapshot schedule. Enter the strftime(3) strings that match the snapshots to include in the replication.

    When a periodic snapshot is not linked to the replication, enter the naming schema for manually created snapshots. Has the same %Y, %m, %d, %H, and %M string requirements as the Naming Schema in a Periodic Snapshot Task. Separate entries by pressing Enter.": "命名自定义快照以包含在具有定期快照计划的复制中的模式。输入匹配的 strftime(3) 字符串要包含在复制中的快照。

    如果定期快照未链接到复制,请输入手动创建的快照的命名架构。具有相同的 %Y%m%d%H%M 字符串要求作为定期快照任务中的命名架构。按 Enter 分隔条目。", "Pattern of naming custom snapshots to be replicated. Enter the name and strftime(3) %Y, %m, %d, %H, and %M strings that match the snapshots to include in the replication. Separate entries by pressing Enter. The number of snapshots matching the patterns are shown.": "命名要复制的自定义快照的模式。输入名称和strftime(3) < i>%Y
    %m%d%H%M 与要包含在复制中的快照匹配的字符串。按 Enter 分隔条目。显示匹配模式的快照数量。", + "Pause Scrub": "暂停数据巡检", "Peer Secret": "对等密钥", "Peer Secret (Confirm)": "对等密钥(确认)", "Peer User": "对等用户", "Pending": "待办", "Pending Network Changes": "待处理的网络更改", + "Pending Sync": "待同步", "Pending Sync Keys Cleared": "已清除待处理的同步键", "Pending Upgrade": "待升级", + "Percentage of total core utilization": "总核心利用率的百分比", + "Percentage used of dataset quota at which to generate a critical alert.": "生成报错的数据集配额使用百分比。", + "Percentage used of dataset quota at which to generate a warning alert.": "生成警告的数据集配额使用百分比。", + "Perform Reverse DNS Lookups": "执行 rDNS 查找", "Performance": "性能", + "Performance Optimization": "性能优化", "Performs authentication from an LDAP server.": "从 LDAP 服务器执行身份验证。", "Periodic S.M.A.R.T. Tests": "定期 S.M.A.R.T. 测试", "Periodic Snapshot Tasks": "定期快照任务", "Permission": "允许", "Permissions": "权限", + "Permissions Advanced": "高级权限", + "Permissions Basic": "基础权限", + "Permissions Editor": "权限编辑器", "Permissions Type": "权限类型", + "Permissions cannot be modified on a locked dataset.": "在锁定的数据集中无法修改权限。", + "Permissions cannot be modified on a read-only dataset.": "在只读数据集上无法修改权限。", + "Permissions cannot be modified on a root dataset.": "根数据集上的权限无法修改。", + "Permissions saved.": "权限已保存。", "Phone": "电话", "Phone Number": "电话号码", + "Photo Library API client secret generated from the Google API Console": "从 Google API 控制台 生成的照片库 API 客户端 secret", "Pin vcpus": "Pin vcpus", "Plain (No Encryption)": "普通(无加密)", "Platform": "平台", "Please accept the terms of service for the given ACME Server.": "请接受给定 ACME 服务器的服务条款。", "Please click the button below to create a pool.": "请单击下面的按钮创建一个池。", + "Please describe:\n1. Steps to reproduce\n2. Expected Result\n3. Actual Result\n\nPlease use English for your report.": "请描述:\n1. 重现步骤\n2. 预期结果\n3. 实际结果\n\n请使用英语撰写您的报告。", "Please input password.": "请输入密码。", "Please input user name.": "请输入用户名。", "Please select a tag": "请选择一个标签", @@ -3750,6 +3155,7 @@ "Please specify name to be used to lookup catalog.": "请指定用于查找目录的名称。", "Please specify the name of the image to pull. Format for the name is \"registry/repo/image\"": "请指定要拉取的镜像的名称。名称格式为 \"registry/repo/image\"", "Please specify trains from which UI should retrieve available applications for the catalog.": "请指定 UI 应从中检索目录可用应用程序的分支。", + "Please specify whether to install NVIDIA driver or not.": "请选择是否安装 NVIDIA 驱动程序。", "Please wait": "请稍候", "Pods": "Pods", "Pool": "池", @@ -3761,17 +3167,25 @@ "Pool Scrub Read": "池数据巡检读取", "Pool Scrub Write": "池数据巡检写入", "Pool Status": "池状态", + "Pool Usage": "池使用情况", + "Pool Wizard": "池向导", "Pool contains {status} Data VDEVs": "池中含有 {status} 个 VDEV 数据", "Pool created successfully": "池已成功的创建", + "Pool does not exist": "池不存在", "Pool has been unset.": "池已取消设置。", + "Pool imported successfully.": "池导入成功。", "Pool is not healthy": "池处于不健康的状态(可能有硬盘损坏!)", + "Pool is not selected": "未选择池", "Pool is using more than {maxPct}% of available space": "池已使用的空间已超过了 {maxPct}%", "Pool options for {poolName} successfully saved.": "{poolName} 的池选项已成功保存。", "Pool status is {status}": "池当前状态为 {status}", "Pool updated successfully": "池已成功的更新", + "Pool {name} is {status}.": "池 {name} 的状态是 {status}。", "Pool {name} successfully upgraded.": "池 {name} 已成功升级。", + "Pool «{pool}» has been exported/disconnected successfully.": "池 «{pool}» 已成功导出/断开连接。", "Pool/Dataset": "池/数据集", "Pools": "池", + "Pools:": "池:", "Port": "端口", "Port number on the remote system to use for the SSH connection.": "远程系统上用于 SSH 连接的端口号。", "Port or Hostname": "端口或主机名", @@ -3780,13 +3194,19 @@ "Portals": "门户", "Ports": "端口", "Post Init": "初始化后期", + "Post Script": "运行后脚本", "Post-script": "后脚本", "Power": "电源", "Power Management": "电源管理", + "Power Menu": "电源菜单", "Power Mode": "电源模式", "Power Off": "关闭电源", "Power Off UPS": "关闭 UPS 电源", + "Power On Hours Ago": "累计上电时间", + "Power Outage": "停电", + "Power Supply": "电源供应", "Pre Init": "初始化前期", + "Pre Script": "运行前脚本", "Pre-script": "预脚本", "Predefined certificate extensions. Choose a profile that best matches your certificate usage scenario.": "预定义的证书扩展。选择最适合您证书使用情况的配置文件。", "Predefined permission combinations:
    Read: Read access and Execute permission on the object (RX).
    Change: Read access, Execute permission, Write access, and Delete object (RXWD).
    Full: Read access, Execute permission, Write access, Delete object, change Permissions, and take Ownership (RXWDPO).

    For more details, see smbacls(1).": "预定义的权限组合:
    读取:对对象(RX)的读取访问权限和执行权限。
    更改:读取权限,执行权限,写入权限和删除对象(RXWD)。
    完整:读取访问权限,执行权限,写入权限,删除对象,更改权限并获得所有权(RXWDPO)。

    有关更多详细信息,请参见 smbacls(1)。", @@ -3794,30 +3214,45 @@ "Preferred Trains": "首选分支", "Preserve Extended Attributes": "保留扩展属性", "Preserve Permissions": "保留权限", + "Preset": "预设", "Preset Name": "预设名称", "Presets": "预设", "Prevent source system snapshots that have failed replication from being automatically removed by the Snapshot Retention Policy.": "防止复制失败的源系统快照被快照保留策略自动删除。", "Prevent the user from logging in or using password-based services until this option is unset. Locking an account is only possible when Disable Password is No and a Password has been created for the account.": "在未设置此选项之前,请阻止用户登录或使用基于密码的服务。仅当禁用密码并且已为该帐户创建密码时,才可以锁定帐户。", "Preview JSON Service Account Key": "预览 JSON 服务帐户密钥", + "Previous Page": "前一页", "Primary Contact": "主要联系人", "Primary DNS server.": "主 DNS 服务器。", "Primary Group": "主用户组", + "Priority Code Point": "优先级代码点", + "Privacy Passphrase": "隐私密码短语", + "Privacy Protocol": "隐私协议", "Private Key": "私钥", + "Privilege": "特权", "Privileges": "特权", "Proactive Support": "主动支持", "Proactive support settings is not available.": "主动支持设置不可用。", "Proceed": "继续", "Proceed with upgrading the pool? WARNING: Upgrading a pool is a one-way operation that might make some features of the pool incompatible with older versions of TrueNAS: ": "继续升级池?警告:升级池是一种单向操作,它可能会使池的某些功能与较旧的 TrueNAS 版本不兼容:", + "Processor": "处理器", + "Product": "产品", + "Product ID": "产品编号", "Production": "作业", "Production status successfully updated": "生产状态已成功更新", "Profile": "配置文件", "Prohibits writes to this share.": "禁止写入此共享。", + "Promote": "推广", + "Prompt": "提示", + "Properties Exclude": "排除属性", + "Properties Override": "覆盖属性", "Prototyping": "原型制作", "Provide helpful notations related to the share, e.g. ‘Shared to everybody’. Maximum length is 120 characters.": "提供与共享相关的有用注释,例如「共享给所有人」。最大长度为 120 个字符。", "Provide keys/passphrases manually": "手动提供密码", "Provider": "提供者", "Provides a plugin interface for Winbind to use varying backends to store SID/uid/gid mapping tables. The correct setting depends on the environment in which the NAS is deployed.": "为 Winbind 提供一个插件接口,以使用各种后端来存储 SID/uid/gid 映射表。正确的设置取决于 NAS 部署的环境。", + "Provisioning Type": "配置类型", "Provisioning URI (includes Secret - Read only):": "设置 URI(包括密钥 - 只读):", + "Proxy": "代理", "Public IP address or hostname. Set if FTP clients cannot connect through a NAT device.": "公网 IP 地址或域名。设置 FTP 客户端是否无法通过 NAT 设备连接。", "Public Key": "公钥", "Pull": "拉取", @@ -3839,6 +3274,8 @@ "Quota size is too small, enter a value of 1 GiB or larger.": "配额大小太小,请输入 1 GiB 或更大的值。", "Quota warning alert at, %": "配额警告提醒,%", "Quotas added": "配额已添加", + "Quotas set for {n, plural, one {# group} other {# groups}}": "为 {n} 个组设置的配额", + "Quotas set for {n, plural, one {# user} other {# users}}": "为 {n} 个用户设置配额", "Quotas updated": "配额已更新", "RAIDZ1": "RAIDZ1", "RAIDZ2": "RAIDZ2", @@ -3850,30 +3287,45 @@ "Range High": "范围高", "Range Low": "范围低", "Range Low and Range High set the range of UID/GID numbers which this IDMap backend translates. If an external credential like a Windows SID maps to a UID or GID number outside this range, the external credential is ignored.": "范围下限和范围上限设置此 IDMap 后端转换的 UID/GID 号的范围。如果外部凭据(例如 Windows SID)映射到此范围之外的 UID 或 GID 号,则将忽略该外部凭据。", + "Range Size": "大小范围", "Rate this page": "评价此页面", "Raw File": "原始文件", + "Raw Filesize": "原始文件大小", + "Re-Open": "重新打开", + "Re-Open All Alerts": "重新打开所有警报", "Read": "只读", "Read ACL": "读取 ACL", "Read Attributes": "读取属性", "Read Data": "读取数据", "Read Errors": "读取错误", "Read Named Attributes": "读取命名属性", + "Read Only": "只读", "Read-only": "只读", "Readonly Admin": "只读管理员", "Realm": "领域", + "Rear": "后面", + "Reason": "原因", "Reboot": "重启", + "Reboot of the other node is required for FIPS changes.": "需要重新启动另一个节点以应用FIPS更改。", + "Reboot of this node is required for FIPS changes.": "此节点需要重启以应用FIPS更改。", "Rebuild Directory Service Cache": "重建目录服务缓存", + "Received: {received}/s Sent: {sent}/s": "接收: {received}/s 发送: {sent}/s", + "Recent Searches": "最近搜索记录", "Recommended Apps": "推荐的应用程序", "Recommended block size based on pool topology:": "基于池拓扑的推荐块大小:", "Recommended number of data disks for optimal space allocation should be power of 2 (2, 4, 8, 16...).": "为了实现最佳空间分配,建议的数据磁盘数量应为 2 的幂(2、4、8、16…)", "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 服务器时启用。", "Reconnect": "重新连接", "Record SMB service messages up to the specified log level. By default, error and warning level messages are logged.": "将 SMB 服务消息记录到指定的日志级别。默认情况下,会记录错误和警告级别的消息。", + "Record Size": "记录大小", "Recursive": "递归", + "Redfish administrative password.": "Redfish 管理密码。", + "Redfish administrative username.": "Redfish 管理用户名。", "Redirect HTTP connections to HTTPS. A GUI SSL Certificate is required for HTTPS. Activating this also sets the HTTP Strict Transport Security (HSTS) maximum age to 31536000 seconds (one year). This means that after a browser connects to the web interface for the first time, the browser continues to use HTTPS and renews this setting every year.": "将 HTTP 连接重定向到 HTTPS HTTPS 需要 GUI SSL 证书。激活它还会将 HTTP 严格传输安全性(HSTS)的最大年龄设置为 31536000 秒(一年)。这意味着在浏览器首次连接到 Web 界面后,浏览器将继续使用 HTTPS 并每年更新此设置。", "Reenter Password": "重新输入密码", "Referenced": "被引用", "Refresh": "刷新", + "Refresh Catalog": "刷新目录", "Refresh Events": "刷新事件", "Refreshing": "刷新中", "Region": "区域", @@ -3881,6 +3333,10 @@ "Region name - optional (rclone documentation).": "区域名称-可选的(rclone 文档)。", "Register": "注册", "Register Default Gateway": "注册默认网关", + "Regularly scheduled system checks and updates.": "定期进行系统检查和更新。", + "Reject": "拒绝", + "Release": "发布", + "Release Notes": "发布说明", "Reload now": "重新加载", "Reload the page": "重新加载页面", "Reload the page for the license to take effect.": "重新加载页面以使许可证生效。", @@ -3889,6 +3345,7 @@ "Remote Controller": "遥控器", "Remote Encryption": "远程加密", "Remote Host": "远程主机", + "Remote Host Key": "远程主机密钥", "Remote Module Name": "远程模块名", "Remote Monitor": "远程监控", "Remote Path": "远程路径", @@ -3902,8 +3359,15 @@ "Remove Keep Flag": "删除保留标志", "Remove device": "删除设备", "Remove device {name}?": "移除设备 {name} 吗?", + "Remove file": "删除文件", + "Remove file?": "删除文件吗?", + "Remove iXVolumes": "删除 iXVolumes", + "Remove preset": "移除预设", "Remove the ACL and permissions from child datasets of the current dataset": "从当前数据集的子数据集中删除 ACL 和权限", "Remove the existing API key and generate a new random key. A dialog shows the new key and has an option to copy the key. Back up and secure the API key! The key string is displayed only one time, at creation.": "删除现有的 API 密钥并生成一个新的随机密钥。对话框会显示新密钥,并具有复制密钥的选项。请备份并保护好 API 密钥!关键字字符串在创建时仅显示一次。", + "Remove this error to try again": "消除此错误以重试", + "Remove {label} item": "删除 {label} 项目", + "Remove {value} from recent searches": "从最近的搜索中移除 {value}", "Removed": "已移除", "Removes the ACL and permissions recursively from all child datasets of the current dataset, including all directories and files contained within those child datasets. This can make data inaccessible until new permissions are created.": "从当前数据集的所有子数据集中递归删除 ACL 和权限,包括这些子数据集中包含的所有目录和文件。这可能会使数据无法访问,直到创建新权限。", "Rename": "重命名", @@ -3911,6 +3375,7 @@ "Renew": "更新", "Renew 2FA Secret": "更新双因素认证密钥", "Renew Certificate Days": "续签证书天数", + "Renew Certificate Days Before Expiry": "在到期前续订证书的天数", "Renew Secret": "更新密钥", "Renewing the secret will cause a new URI and a new QR code to be generated, making it necessary to update your two-factor device or app.": "更新密钥将导致生成新的 URI 和新的 QR 代码,因此有必要更新您的双重设备或应用。", "Replace": "更换", @@ -3929,8 +3394,11 @@ "Replication {name} has started.": "复制 {name} 已开始。", "Replication Admin": "复制管理员", "Replication Schedule": "复制计划", + "Replication Settings": "复制设置", + "Replication Task": "复制任务", "Replication Task Config Read": "复制任务配置写入", "Replication Task Config Write": "复制任务配置读取", + "Replication Task Manager": "复制任务管理器", "Replication Task Read": "复制任务读取", "Replication Task Wizard": "复制任务向导", "Replication Task Write": "复制任务写入", @@ -3941,27 +3409,39 @@ "Replication task created.": "复制任务已创建。", "Replication task saved.": "复制任务已保存。", "Replication «{name}» has started.": "复制 «{name}» 已开始。", + "Report Bug": "报告错误", "Report a bug": "报告一个 bug", "Report if drive temperature is at or above this temperature in Celsius. 0 disables the report.": "报告驱动器温度是否达到或高于此温度(摄氏度)。0 禁用这个报告。", "Report if the temperature of a drive has changed by this many degrees Celsius since the last report. 0 disables the report.": "报告自上次报告以来驱动器的温度是否已改变了这么多摄氏度。0 禁用报告。", "Reporting": "报告", + "Reporting Exporter": "报告导出器", "Reporting Exporters": "报告导出", "Reporting Read": "报告读取", "Reporting Write": "报告写入", "Reports": "报告", "Requested action performed for selected Applications": "为选定的应用程序执行的请求操作", + "Require IDENT Authentication": "需要 IDENT 认证", "Require Kerberos for NFSv4": "NFSv4 需要 Kerberos", + "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)": "要求 - 始终加密传输(如果客户端不支持加密,则拒绝访问 - 与 SMB1 服务器不兼容)", "Reservation": "预留", "Reservation (in GiB)": "预留(单位为 GiB)", + "Reserved for Dataset": "保留用于数据集", + "Reserved for Dataset & Children": "保留给数据集及其子项", "Reserved space for this dataset": "此数据集的保留空间", "Reserved space for this dataset and all children": "此数据集及其子数据集的保留空间", "Reset": "重置", "Reset Config": "重置配置", "Reset Configuration": "重置配置", + "Reset Default Config": "重置默认配置", + "Reset Defaults": "重置为默认设置", "Reset Search": "重置搜索", "Reset Step": "重设此步", + "Reset Zoom": "重置缩放", "Reset configuration": "重设配置", + "Reset password": "重置密码", "Reset system configuration to default settings. The system will restart to complete this operation. You will be required to reset your password.": "将系统配置重置为默认设置。系统将重新启动以完成此操作。您将需要重设密码。", "Reset to Defaults": "重置为默认值", "Reset to default": "重置为默认", @@ -3969,25 +3449,54 @@ "Resetting system configuration to default settings. The system will restart.": "将系统配置重置为默认设置。系统将重新启动。", "Resetting. Please wait...": "重置中。请稍等...", "Resilver Priority": "一致性重建优先级", + "Resilver configuration saved": "一致性重建配置已保存", "Resilvering": "一致性重建", "Resilvering Status": "一致性重建状态", "Resilvering pool: ": "一致性重建池", + "Resilvering:": "一致性重建进行中:", + "Resolution": "解决方案", "Restart": "重启", + "Restart After Update": "更新后重启", + "Restart App": "重启应用程序", + "Restart Now": "立即重启", "Restart SMB Service": "重启 SMB 服务", "Restart SMB Service?": "重启 SMB 服务吗?", "Restart Service": "重启服务", + "Restart Standby": "重启待机模式", "Restart Web Service": "重启网络服务", + "Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "建议重启以使新的 FIPS 设置生效。您现在想要重启吗?", + "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?": "需要重新启动远程系统以使新的 FIPS 设置生效。您是否想立即重启备用系统?", + "Restart standby TrueNAS controller": "重启备用的 TrueNAS 控制器", + "Restart to improve system performance speed.": "重新启动以提高系统性能速度。", + "Restart to re-establish network connections.": "重启以重新建立网络连接。", + "Restarting Standby": "重启备用机", "Restore": "恢复", "Restore Cloud Sync Task": "恢复云同步任务", + "Restore Config": "恢复配置", + "Restore Config Defaults": "恢复配置默认值", + "Restore Default": "恢复默认设置", + "Restore Default Config": "恢复默认配置", + "Restore Default Configuration": "恢复默认配置", + "Restore Defaults": "恢复默认设置", "Restore Replication Task": "恢复复制任务", + "Restore default set of widgets": "恢复默认的小部件设置", + "Restore default widgets": "恢复默认小部件", + "Restore from Snapshot": "从快照恢复", + "Restores files to the selected directory.": "将文件恢复到选定目录。", + "Restoring backup": "恢复备份", + "Restrict PAM": "限制 PAM", "Restrict share visibility to users with read or write access to the share. See the smb.conf manual page.": "将共享可见性限制为对共享具有读取或写入访问权限的用户。请参阅 smb.conf 手册页 .", "Restricted": "受限制的", + "Resume Scrub": "恢复数据巡检", "Retention": "保留", "Retention (in days)": "保留(以天为单位)", + "Retry": "重试", "Return to pool list": "返回池列表", "Revert Changes": "还原更改", "Revert Network Interface Changes": "还原网络接口更改", "Revert interface changes? All changes that are being tested will be lost.": "还原界面更改?正在测试的所有更改都将丢失。", + "Review": "评审", "Revoke": "撤销", "Revoke Certificate": "撤销证书", "Revoke Certificate Authority": "撤销证书颁发机构", @@ -4000,15 +3509,21 @@ "Roll back snapshots of ix_volumes": "回滚 ix_volumes 的快照", "Rollback": "回滚", "Rolling back...": "回滚中...", + "Root TCP Socket": "根 TCP 套接字", "Root dataset ACL cannot be edited.": "根数据集 ACL 无法编辑。", "Rotation Rate": "转速", "Rotation Rate (RPM)": "转速(RPM)", + "Routing": "路由", "Routing Key": "路由键", "Rsync": "Rsync", "Rsync Mode": "Rsync 模式", + "Rsync Task": "Rsync 任务", + "Rsync Task Manager": "Rsync 任务管理器", "Rsync Tasks": "同步任务", "Rsync task has started.": "Rsync 任务已开始", "Rsync task «{name}» has started.": "Rsync 任务 «{name}» 已启动。", + "Rsync to another server": "将数据同步到另一台服务器", + "Run As Context": "以上下文身份运行", "Run As User": "以哪个用户身份运行", "Run Automatically": "自动运行", "Run Manual Test": "进行手动测试", @@ -4017,23 +3532,33 @@ "Run Once": "运行一次", "Run job": "运行任务", "Run this job now?": "立即执行这个任务?", + "Run «{name}» Cloud Backup now?": "现在运行 «{name}» 云备份吗?", "Run «{name}» Cloud Sync now?": "现在运行此云同步?", "Run «{name}» Rsync now?": "现在运行此 «{name}» Rsync 任务?", "Running": "运行中", + "Running Jobs": "运行任务", "S.M.A.R.T.": "S.M.A.R.T.", "S.M.A.R.T. Extra Options": "S.M.A.R.T. 额外选项", "S.M.A.R.T. Info for {disk}": "S.M.A.R.T. 信息 {disk}", + "S.M.A.R.T. Options": "S.M.A.R.T. 选项", + "S.M.A.R.T. Tasks": "S.M.A.R.T. 任务", "S.M.A.R.T. Test Results": "S.M.A.R.T. 测试结果", "S.M.A.R.T. Test Results of {pk}": "{pk} S.M.A.R.T. 测试结果", "S.M.A.R.T. extra options": "S.M.A.R.T. 附加选项", "SAN": "SAN", + "SAS Connector": "SAS 连接器", + "SAS Expander": "SAS 扩展器", "SED": "SED", "SED Password": "SED 密码", + "SED User": "SED 用户", "SED password and confirmation should match.": "SED 密码和确认密码应该匹配。", "SED password updated.": "SED 密码已更新。", "SET": "SET", "SFTP": "SFTP", + "SFTP Log Facility": "SFTP 日志设施", + "SFTP Log Level": "SFTP 日志级别", "SHORT": "短", + "SID": "SID ", "SMB": "SMB", "SMB - Client Account": "SMB - 客户端账号", "SMB - Destination File Path": "SMB - 目标文件路径", @@ -4055,11 +3580,25 @@ "SMB - UNIX Token UID": "SMB - UNIX 令牌 UID", "SMB - Vers Major": "SMB - 大版本", "SMB - Vers Minor": "SMB - 小版本", + "SMB Group": "SMB 组", + "SMB Lock": "SMB 锁", + "SMB Locks": "SMB 锁", + "SMB Name": "SMB 名称", + "SMB Notification": "SMB 通知", + "SMB Notifications": "SMB 通知", + "SMB Open File": "SMB 打开文件", "SMB Service": "SMB 服务", + "SMB Session": "SMB 会话", + "SMB Sessions": "SMB 会话", + "SMB Share": "SMB 共享", + "SMB Shares": "SMB 共享", "SMB Status": "SMB 状态", + "SMB User": "SMB 用户", "SMB multichannel allows servers to use multiple network connections simultaneously by combining the bandwidth of several network interface cards (NICs) for better performance. SMB multichannel does not function if you combine NICs into a LAGG. Read more in docs": "SMB 多通道允许服务器通过组合多个网卡(NIC)的带宽来同时使用多个网络连接,以获得更好的性能。如果将 NIC 组合到 LAGG 中,SMB 多通道将不起作用。在文档里阅读更多", "SMB preset sets most optimal settings for SMB sharing.": "SMB 预设设置了最优的 SMB 共享设置。", "SMB/NFSv4": "SMB/NFSv4", + "SMTP": "SMTP", + "SMTP Authentication": "SMTP 身份验证", "SMTP port number. Typically 25,465 (secure SMTP), or 587 (submission).": "SMTP 端口号。通常为 25465(安全 SMTP)或 587(提交)。", "SNMP": "SNMP", "SNMP Community": "SNMP 社区", @@ -4071,10 +3610,13 @@ "SSH Connection saved": "SSH 连接已保存", "SSH Connections": "SSH 连接", "SSH Host to connect to.": "要连接的 SSH 主机。", + "SSH Key": "SSH 密钥", + "SSH Key Pair": "SSH 密钥对", "SSH Keypair": "SSH 密钥对", "SSH Keypair created": "SSH 密钥对已创建", "SSH Keypair updated": "SSH 密钥对已更新", "SSH Keypairs": "SSH 密钥对", + "SSH Keyscan": "SSH 密钥扫描", "SSH Transfer Security": "SSH 传输安全性", "SSH Username.": "SSH 用户名.", "SSH connection from the keychain": "来自钥匙串的 SSH 连接", @@ -4082,19 +3624,27 @@ "SSH port number. Leave empty to use the default port 22.": "SSH 端口号。保留为空以使用默认端口 22。", "SSH private key stored in user's home directory": "SSH 私钥存储在用户的主目录中", "SSL (Implicit TLS)": "SSL(隐式 TLS)", + "SSL Certificate": "SSL 证书", + "SSL Protocols": "SSL 协议", + "SSL Web Interface Port": "SSL Web 接口端口", + "SSSD Compat": "SSSD 兼容性", "SYNC": "同步", + "Samba": "Samba", "Samba Authentication": "Samba 认证", "Same as Source": "与来源相同", "Sat": "周六", "Saturday": "周六", "Save": "保存", "Save ACL as preset": "作为预设保存 ACL (访问权限管理)", + "Save Access Control List": "保存 ACL", "Save And Failover": "保存与故障转移", "Save And Go To Review": "保存并查看", "Save As Preset": "作为预设保存", "Save Changes": "保存更改", + "Save Config": "保存配置", "Save Configuration": "保存配置", "Save Debug": "保存调试", + "Save Instance": "保存实例", "Save Pending Snapshots": "保存待处理的快照", "Save Selection": "保存选择", "Save Without Restarting": "保存而不重启", @@ -4102,28 +3652,42 @@ "Save configuration settings from this machine before updating?": "更新之前保存本机的配置设置吗?", "Save current ACL entries as a preset for future use.": "作为预设保存当前 ACL 实例以供日后使用", "Save network interface changes?": "保存更改的网络接口吗?", + "Save the 'Require Kerberos for NFSv4' value before adding SMP": "在新增 SMP 之前,请保存 '需要 Kerberos 用于 NFSv4' 的值。", "Saving Debug": "正在保存调试", + "Saving Instance": "保存实例", "Saving KMIP Config": "正在保存 KMIP 配置", "Saving Permissions": "正在保存权限", + "Saving settings": "保存设置", "Scan remote host key.": "扫描远程主机密钥。", "Scan this QR Code with your authenticator app of choice. The next time you try to login, you will be asked to enter an One Time Password (OTP) from your authenticator app. This step is extremely important. Without the OTP you will be locked out of this system.": "使用您选择的身份验证器应用程序扫描此二维码。下次您尝试登录时,系统会要求您从身份验证器应用程序输入一次性密码 (OTP)。此步骤非常重要。如果没有一次性密码,您将被被锁定在该系统之外。", "Schedule": "计划", "Schedule Preview": "计划预览", "Scheduled Scrub Task": "计划的数据巡检任务", + "Schema": "模式", + "Schema Mode": "模式模式", + "Screenshots": "屏幕截图", "Script": "脚本", "Script deleted.": "脚本已删除", "Script to execute after running sync.": "在运行 rsync 后运行的脚本。", "Script to execute before running sync.": "在运行 rsync 前运行的脚本。", + "Scroll to top": "返回顶部", "Scrub": "数据巡检", "Scrub Boot Pool": "在启动池上运行数据巡检", "Scrub In Progress:": "数据巡检正在进行中", "Scrub Paused": "数据巡检暂停", "Scrub Pool": "对存储池运行数据巡检", "Scrub Started": "开始数据巡检", + "Scrub Task": "数据巡检任务", "Scrub Tasks": "数据巡检任务", + "Scrub interval (in days)": "数据巡检间隔(天数)", "Scrub interval set to {scrubIntervalValue} days": "数据巡检间隔设置为 {scrubIntervalValue} 天", "Search": "搜索", "Search Alert Categories": "搜索警报类别", + "Search Documentation for «{value}»": "搜索有关«{value}»的文档", + "Search Images": "搜索图片", + "Search Input Fields": "搜索输入字段", + "Search Results for «{query}»": "搜索结果 «{query}»", + "Search UI": "搜索用户界面", "Search or enter value": "搜索或输入值", "Secondary Contact": "次要联系人", "Secondary DNS server.": "备用 DNS 服务器。", @@ -4137,24 +3701,35 @@ "Secret (Read only)": "密钥(只读)", "Secret Access Key": "私密访问密钥", "Secret Access Key for the linked AWS account.": "链接的 AWS 账户的私密访问密钥。", + "Secret Authentication Key": "秘密认证密钥", "Secret Confirm must match Secret": "确认密钥必须与密钥匹配", + "Secret Encryption Key": "秘密加密密钥", "Secret Key": "私密密钥", "Secret and Peer Secret can not be the same.": "密钥和对等密钥不能相同。", "Secret and confirmation should match.": "密码和确认密码应该匹配。", + "Section Help": "章节帮助", "Secure data within this dataset. Data is unusable until unlocked with an encryption key or passphrase. If parent dataset has encryption enabled, it is not possible to disable this option.": "保护此数据集中的数据。在使用加密密钥或密码解锁之前,数据不可用。如果父数据集启用了加密,则无法禁用此选项。", "Secure data within this dataset. Data is unusable until unlocked with an encryption key or passphrase. If parent dataset has encryption enabled, it is not possible to disable this option.": "保护此数据集中的数据。在使用加密密钥或密码解锁之前,数据不可用。如果父数据集启用了加密,则无法禁用此选项。", + "Security": "安全性", "See Why is elliptic curve cryptography not widely used, compared to RSA? for more information about key types.": "参见为什么与 RSA 相比,椭圆曲线密码术没有得到广泛使用?有关密钥类型的更多信息。", "See Public key authentication in SSH/Authentication.": "请参阅 SSH/身份验证 中的 公钥认证。", "See the Network UPS Tools compatibility list for a list of supported UPS devices.": "有关支持的 UPS 设备列表,请参阅网络 UPS 工具兼容性列表 。", + "Select": "选择", "Select Bug when reporting an issue or Suggestion when requesting new functionality.": "报告问题时选择 Bug 或请求新功能时选择 Suggestion。", "Select Command for an executable or Script for an executable script.": "为可执行文件选择 Command 或为可执行脚本选择 Script 。", "Select Create new disk image to create a new zvol on an existing dataset. This is used as a virtual hard drive for the VM. Select Use existing disk image to use an existing zvol or file for the VM.": "选择创建新磁盘映像,以在现有数据集上创建新的 zvol。这用作虚拟机的虚拟硬盘驱动器。选择使用现有磁盘映像为虚拟机使用现有的 zvol 或文件。", "Select None or an integer. This value represents the number of existing authorized accesses.": "选择或一个整数。该值表示现有授权访问的数量。", "Select UEFI for newer operating systems or UEFI-CSM (Compatibility Support Mode) for older operating systems that only support BIOS booting. Grub is not recommended but can be used when the other options do not work.": "选择 UEFI 用于较新的操作系统,UEFI-CSM(兼容支持模式)用于只支持 BIOS 引导的操作系统。", + "Select All": "选择所有", "Select Configuration File": "选择配置文件", "Select Disk Type": "选择磁盘类型", + "Select Existing Zvol": "选择现有的 Zvol", "Select IP addresses to listen to for NFS requests. Leave empty for NFS to listen to all available addresses. Static IPs need to be configured on the interface to appear on the list.": "选择要侦听 NFS 请求的 IP 地址。为 NFS 留空以侦听所有可用地址。需要在接口上配置静态 IP 才能出现在列表中。", + "Select Image": "选择图像", "Select Pool": "选择池", + "Select Rating": "选择评级", + "Select Reporting": "选择报告", + "Select VDEV layout. This is the first step in setting up your VDEVs.": "选择 VDEV 布局。这是设置您的 VDEV 的第一步。", "Select a compression algorithm to reduce the size of the data being replicated. Only appears when SSH is chosen for Transport type.": "选择一种压缩算法以减小要复制的数据的大小。仅在传输类型选择为 SSH 时显示。", "Select a dataset for the new zvol.": "为新的 zvol 选择数据集。", "Select a dataset or zvol.": "选择数据集或 zvol。", @@ -4173,9 +3748,16 @@ "Select a schedule preset or choose Custom to open the advanced scheduler.": "选择计划预设或选择自定义以打开高级计划程序。", "Select a schedule preset or choose Custom to open the advanced scheduler. Note that an in-progress cron task postpones any later scheduled instance of the same task until the running task is complete.": "选择一个计划预设或选择自定义以打开高级计划程序。请注意,正在进行的定时任务会推迟同一任务的任何后续计划实例,直到正在运行的任务完成。", "Select a schedule preset or choose Custom to open the advanced scheduler.": "选择计划预设或选择「自定义」以打开高级计划程序。", + "Select a schedule preset or choose Custom to setup custom schedule.": "选择一个预设的计划或选择自定义来设置自定义计划。", + "Select a schema when LDAP NSS schema is set.": "在设置 LDAP NSS 模式时选择一个模式。", + "Select a screen resolution to use for SPICE sessions.": "选择用于 SPICE 会话的屏幕分辨率。", "Select a sector size in bytes. Default leaves the sector size unset and uses the ZFS volume values. Setting a sector size changes both the logical and physical sector size.": "选择以字节为单位的扇区大小。默认未设置扇区大小,并使用 ZFS 卷值。设置扇区大小会同时更改逻辑和物理扇区大小。", + "Select a subfolder from which to restore content.": "选择一个子文件夹以恢复内容。", "Select a time zone.": "选择时区。", "Select a user account to run the command. The user must have permissions allowing them to run the command or script.": "选择一个用户帐户以运行命令。用户必须具有允许他们运行命令或脚本的权限。", + "Select action": "选择操作", + "Select an IP address to use for SPICE sessions.": "选择一个 IP 地址用于 SPICE 会话。", + "Select an IP address to use for remote SPICE sessions. Note: this setting only applies if you are using a SPICE client other than the TrueNAS WebUI.": "选择一个 IP 地址用于远程 SPICE 会话。注意:此设置仅在您使用非 TrueNAS WebUI 的 SPICE 客户端时适用。", "Select an existing CSR.": "选择一个现有的 CSR.", "Select an existing SSH connection to a remote system or choose Create New to create a new SSH connection.": "选择与远程系统的现有 SSH 连接,或选择新建创建新的 SSH 连接。", "Select an existing SSH connection to a remote system or choose Create New to create a new SSH connection.": "选择与远程系统的现有 SSH 连接,或选择新建以创建新的 SSH 连接。", @@ -4185,8 +3767,13 @@ "Select an existing target.": "选择现有目标。", "Select an unused disk to add to this vdev.
    WARNING: any data stored on the unused disk will be erased!": "选择一个未使用的磁盘以添加到该 vdev。
    警告:未使用的磁盘上存储的所有数据都将被清除!", "Select desired disk type.": "选择所需的磁盘类型。", + "Select disks you want to use": "选择您想要使用的磁盘", + "Select files and directories to exclude from the backup.": "选择要从备份中排除的文件和目录。", + "Select files and directories to include from the backup. Leave empty to include everything.": "选择要从备份中包含的文件和目录。留空以包含所有内容。", + "Select images you want attach to review": "选择您想要附加到审查的图像。", "Select interfaces for SSH to listen on. Leave all options unselected for SSH to listen on all interfaces.": "选择要侦听的 SSH 接口。取消选中所有选项,SSH 即可在所有接口上侦听。", "Select one or more screenshots that illustrate the problem.": "选择一个或多个说明问题的屏幕截图。", + "Select paths to exclude": "选择要排除的路径", "Select permissions to apply to the chosen Who. Choices change depending on the Permissions Type.": "选择权限以应用于所选的。选项根据权限类型而变化。", "Select pool to import": "选择要导入的池", "Select pool, dataset, or directory to share.": "选择要共享的池,数据集或目录。", @@ -4198,16 +3785,20 @@ "Select the VLAN Parent Interface. Usually an Ethernet card connected to a switch port configured for the VLAN. New link aggregations are not available until the system is restarted.": "选择 VLAN 父接口。通常,以太网卡连接到为 VLAN 配置的交换机端口。在重新启动系统之前,新的链路聚合不可用。", "Select the appropriate environment.": "选择适当的环境。", "Select the appropriate level of criticality.": "选择适当的关键程度。", + "Select the bucket to store the backup data.": "选择存储备份数据的桶。", "Select the certificate of the Active Directory server if SSL connections are used. When no certificates are available, move to the Active Directory server and create a Certificate Authority and Certificate. Import the certificate to this system using the System/Certificates menu.": "如果使用 SSL 连接,则选择活动目录服务器的证书。如果没有可用的证书,请移至活动目录服务器并创建证书颁发机构和证书。使用「系统/证书」菜单将证书导入到该系统。", "Select the cloud storage provider credentials from the list of available Cloud Credentials.": "从可用的云凭据列表中选择云存储提供商凭据。", "Select the country of the organization.": "选择组织的国家。", "Select the days to run resilver tasks.": "选择运行一致性重建任务的日期。", "Select the device to attach.": "选择要连接的设备。", "Select the directories or files to be sent to the cloud for Push syncs, or the destination to be written for Pull syncs. Be cautious about the destination of Pull jobs to avoid overwriting existing files.": "选择要发送到云以进行 Push 同步的目录或文件,或选择要写给 Pull 同步的目录或文件。注意 Pull 作业的目的地,以避免覆盖现有文件。", + "Select the directories or files to be sent to the cloud for backup.": "选择要发送到云端进行备份的目录或文件。", "Select the disks to monitor.": "选择要监视的磁盘。", + "Select the folder to store the backup data.": "选择存储备份数据的文件夹。", "Select the group to control the dataset. Groups created manually or imported from a directory service appear in the drop-down menu.": "选择组以控制数据集。手动创建或从目录服务导入的组显示在下拉菜单中。", "Select the interfaces to use in the aggregation.
    Warning: Link Aggregation creation fails if any of the selected interfaces have been manually configured.
    The order is important because the FAILOVER lagg protocol will mark the first interface as the \"primary\" interface.": "选择要在聚合中使用的接口。
    警告:如果已手动配置任何选定的接口,则链路聚合创建将失败。
    顺序很重要,因为 FAILOVER lagg 协议会将第一个接口标记为 \"主要\" 接口。", "Select the interfaces to use in the aggregation.
    Warning: Link Aggregation creation fails if any of the selected interfaces have been manually configured.": "选择要在聚合中使用的接口。
    警告:如果已手动配置任何选定的接口,则链路聚合创建将失败。", + "Select the level of severity. Alert notifications send for all warnings matching and above the selected level. For example, a warning level set to Critical triggers notifications for Critical, Alert, and Emergency level warnings.": "选择严重性级别。对于所有与所选级别匹配及以上的警告,将发送警报通知。例如,设置为“严重”级别的警告将触发“严重”、“警报”和“紧急”级别警告的通知。", "Select the location of the principal in the keytab created in Directory Services > Kerberos Keytabs.": "在目录服务 > Kerberos 密钥表中创建的密钥表中选择主体的位置。", "Select the minimum priority level to send to the remote syslog server. The system only sends logs matching this level or higher.": "选择发送到远程系统日志服务器的最低优先级。系统仅发送匹配此级别或更高级别的日志。", "Select the physical interface to associate with the VM.": "选择要与虚拟机关联的物理接口。", @@ -4223,16 +3814,22 @@ "Select the user to control the dataset. Users created manually or imported from a directory service appear in the drop-down menu.": "选择用户来控制数据集。手动创建或从目录服务导入的用户将显示在下拉菜单中。", "Select the user to run the rsync task. The user selected must have permissions to write to the specified directory on the remote host.": "选择要运行 rsync 任务的用户。所选用户必须具有写入远程主机上指定目录的权限。", "Select the value or enter a value between 0 and 1023. Some initiators expect a value below 256. Leave this field blank to automatically assign the next available ID.": "选择该值或输入一个介于 01023 之间的值。一些启动器更希望其值小于 256。将此字段留空以自动分配下一个可用的 ID。", + "Select to enable. Deleted files from the same dataset move to a Recycle Bin in that dataset and do not take any additional space. Recycle bin is for access over SMB protocol only. The files are renamed to a per-user subdirectory within .recycle directory at either (1) root of SMB share (if path is same dataset as SMB share) or (2) at root of current dataset if we have nested datasets. Because of (2) there is no automatic deletion based on file size.": "选择以启用。从同一数据集中删除的文件会移动到该数据集中的回收站,并且不会占用额外空间。回收站仅用于通过SMB协议访问。文件会被重命名到.recycle目录中的每个用户子目录,位于(1)SMB共享的根目录(如果路径与SMB共享是同一数据集)或(2)当前数据集的根目录(如果我们有嵌套的数据集)。由于(2),不会根据文件大小自动删除。", "Select when the command or script runs:
    Pre Init is early in the boot process, after mounting filesystems and starting networking.
    Post Init is at the end of the boot process, before TrueNAS services start.
    Shutdown is during the system power off process.": "选择命令或脚本运行的时间:
    Pre Init 处于引导过程的早期,在挂载文件系统和启动网络之后。
    Post Init 处于最后,在 TrueNAS 服务启动之前启动过程。
    Shutdown 是在系统关机过程中。", "Select which existing initiator group has access to the target.": "选择哪个现有启动程序组可以访问目标。", + "Selected": "已选择", "Selected SSH connection uses non-root user. Would you like to use sudo with /usr/sbin/zfs commands? Passwordless sudo must be enabled on the remote system.\nIf not checked, zfs allow must be used to grant non-user permissions to perform ZFS tasks. Mounting ZFS filesystems by non-root still would not be possible due to Linux restrictions.": "选定的 SSH 连接使用非 root 用户。您想将 sudo 与 /usr/sbin/zfs 命令一起使用吗?必须在远程系统上启用无密码 sudo。\n如果未选中,则必须使用 zfs allowed 授予非用户执行 ZFS 任务的权限。 由于 Linux 限制,非 root 仍然无法挂载 ZFS 文件系统。", + "Selected train does not have production releases, and should only be used for testing.": "所选的分支没有生产发布,应该仅用于测试。", "Self-Encrypting Drive": "自加密驱动器", "Self-Encrypting Drive (SED) passwords can be managed with KMIP. Enabling this option allows the key server to manage creating or updating the global SED password, creating or updating individual SED passwords, and retrieving SED passwords when SEDs are unlocked. Disabling this option leaves SED password management with the local system.": "可以使用 KMIP 管理自加密驱动器(SED)密码。启用此选项后,密钥服务器可以在未锁定 SED 的情况下管理创建或更新全局 SED 密码,创建或更新单个 SED 密码以及检索 SED 密码。禁用此选项将使 SED 密码管理留在本地系统上。", + "Self-Encrypting Drive Settings": "自加密驱动器设置", "Semi-automatic (TrueNAS only)": "半自动(仅限 TrueNAS)", "Send Email Status Updates": "状态更新时发送邮件", "Send Feedback": "发送反馈", "Send Mail Method": "发送邮件方法", + "Send Method": "发送方法", "Send Test Alert": "发送测试警报", + "Send Test Email": "发送测试邮件", "Send Test Mail": "发送测试邮件", "Send initial debug": "发送初始调试", "Sensitive": "敏感", @@ -4241,42 +3838,58 @@ "Separate values with commas, and without spaces.": "用逗号分隔值,且不包含空格。", "Serial": "序列号", "Serial Port": "串行端口", + "Serial Shell": "串行 Shell", "Serial Speed": "串行速度", "Serial number for this disk.": "该磁盘的序列号。", "Serial numbers of each disk being edited.": "正在编辑的每个磁盘的序列号。", "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.": "串行或 USB 端口连接到 UPS。要自动检测和管理 USB 端口设置,请选择自动

    选择 SNMP 驱动程序后,输入 SNMP UPS 设备的 IP 地址或主机名。", + "Serial – Active": "活动序列号", + "Serial – Passive": "备用序列号", "Series": "系列", "Server": "服务器", "Server Side Encryption": "服务器端加密", + "Server error: {error}": "服务器错误:{error}", "Service": "服务", + "Service = \"SMB\" AND Event = \"CLOSE\"": "服务 = \"SMB\" AND 事件 = \"关闭\"", "Service Account Key": "服务账号密钥", "Service Announcement": "服务公告", "Service Key": "服务密钥", + "Service Name": "服务名称", "Service Read": "服务读取", "Service Write": "服务写入", "Service configuration saved": "服务配置已保存", "Service failed to start": "服务启动失败", "Service failed to stop": "服务停止失败", + "Service started": "服务已启动", + "Service status": "服务状态", + "Service stopped": "服务已停止", "Services": "服务", "Session": "会期", "Session ID": "会话 ID", "Session Timeout": "Token 生存时间", + "Session Token Lifetime": "会话令牌生命周期", + "Session dialect": "会话方言", "Sessions": "会话", "Set": "已设置", "Set ACL": "设置 ACL", "Set ACL for this dataset": "为此数据集设置 ACL", "Set Attribute": "设置属性", + "Set Frequency": "设置频率", "Set Keep Flag": "设置保留标志", "Set Quota": "设置配额", "Set Quotas": "设置配额", + "Set Warning Level": "设置警告级别", + "Set email": "设置电子邮件", "Set enable sending messages to the address defined in the Email field.": "启用发送信息到在电子邮件栏中指定的地址。", "Set font size": "设置字体大小", "Set for the LDAP server to disable authentication and allow read and write access to any client.": "设置 LDAP 服务器以禁用身份验证,并允许对任何客户端进行读写访问。", "Set for the UPS to power off after shutting down the system.": "设置为关闭系统后,UPS 关闭电源。", "Set for the default configuration to listen on all interfaces using the known values of user: upsmon and password: fixmepass.": "设置为默认配置,以使用用户 upsmon 和密码:fixmepass 的已知值在所有接口上进行侦听。", "Set if the initiator does not support physical block size values over 4K (MS SQL).": "如果启动器不支持超过 4K 的物理块大小值(MS SQL),则设置。", + "Set new password": "设置新密码", "Set only if required by the NFS client. Set to allow serving non-root mount requests.": "仅在 NFS 客户端要求时设置。设置为允许服务非 root 安装请求。", "Set or change the password of this SED. This password is used instead of the global SED password.": "设置或更改此 SED 的密码。使用此密码代替全局 SED 密码。", + "Set password for TrueNAS administrative user:": "为 TrueNAS 管理用户设置密码:", "Set production status as active": "将生产状态设置为活动", "Set specific times to snapshot the Source Datasets and replicate the snapshots to the Destination Dataset. Select a preset schedule or choose Custom to use the advanced scheduler.": "设置特定时间以对源数据集进行快照,并将快照复制到目标数据集。选择一个预设计划,或选择自定义以使用高级计划程序。", "Set the maximum number of connections per IP address. 0 means unlimited.": "设置每个 IP 地址最大并发连接数。0 表示无限制。", @@ -4294,11 +3907,14 @@ "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 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.": "设置以确定系统是否参与浏览器选举。当网络包含 AD 或 LDAP 服务器,或者存在 Vista 或 Windows 7 计算机时,请保持未设置状态。", "Set to display image upload options.": "设置为显示镜像上传选项。", "Set to either start this replication task immediately after the linked periodic snapshot task completes or continue to create a separate Schedule for this replication.": "设置为在链接的定期快照任务完成后立即启动此复制任务,或者继续为此复制创建单独的计划。", "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。", + "Set to enable Samba to do DNS updates when joining a domain.": "设置以启用 Samba 在加入域时进行 DNS 更新。", + "Set to enable connecting to the SPICE web interface.": "设置以启用连接到 SPICE web 界面。", "Set to enable the File eXchange Protocol. This option makes the server vulnerable to FTP bounce attacks so it is not recommended.": "设置为启用文件更改协议。此选项使服务器容易受到 FTP 反弹攻击,因此不建议这样做。", "Set to enable the iSCSI extent.": "设置为启用 iSCSI Extent。", "Set to export the certificate environment variables.": "设置为导出证书环境变量。", @@ -4307,6 +3923,7 @@ "Set to ignore mapping requests for the BUILTIN domain.": "设置为忽略 BUILTIN 域的映射请求。", "Set to ignore the Virtual Machine status during the delete operation. Unset to prevent deleting the Virtual Machine when it is still active or has an undefined state.": "设置为在删除操作期间忽略虚拟机状态。取消设置以防止在虚拟机仍处于活动状态或状态未定义时删除该虚拟机。", "Set to include all subdirectories of the specified directory. When unset, only the specified directory is included.": "设置为包括指定目录的所有子目录。取消设置时,仅包括指定的目录。", + "Set to include child datasets and zvols of the chosen dataset.": "设置为包含所选数据集的子数据集和 zvol。", "Set to include the Fully-Qualified Domain Name (FQDN) in logs to precisely identify systems with similar hostnames.": "设置为在日志中包含全称域名(FQDN),以精确识别具有相似主机名的系统。", "Set to inhibit some syslog diagnostics to avoid error messages. See exports(5) for examples.": "设置为禁止某些系统日志诊断以避免错误消息。有关示例,请参见 exports(5)。", "Set to log mountd(8) syslog requests.": "设置为记录 mountd(8) 系统日志请求 .", @@ -4325,6 +3942,7 @@ "Set to reduce the size of data to transmit. Recommended for slow connections.": "设置以减小要传输的数据大小。建议用于慢速连接。", "Set to remove all ACLs from the current dataset. ACLs are also recursively stripped from directories and child datasets when those options are set.": "设置为从当前数据集中删除所有 ACL。设置了这些选项后,ACL 也会从目录和子数据集中递归剥离。", "Set to remove the data associated with this Virtual Machine (which will result in data loss if the data is not backed up). Unset to leave the data intact.": "设置为删除与此虚拟机关联的数据(如果不备份数据,将导致数据丢失)。未设置保留数据不变。", + "Set to restrict SSH access in certain circumstances to only members of BUILTIN\\Administrators": "在某些情况下,将SSH访问限制为仅限BUILTIN\\Administrators组的成员。", "Set to run resilver tasks between the configured times.": "设置为在配置的时间之间运行一致性重建任务。", "Set to save the temporary file from each updated file to a holding directory until the end of the transfer when all transferred files are renamed into place.": "设置为将所有传输文件重命名到位时,将每个更新文件中的临时文件保存到保留目录,直到传输结束。", "Set to start this VM when the system boots.": "设置为在系统启动时启动此虚拟机。", @@ -4349,15 +3967,21 @@ "Setting this option reduces the security of the connection, so only use it if the client does not understand reused SSL sessions.": "设置此选项会降低连接的安全性,因此仅在客户端不了解重用的 SSL 会话时才使用它。", "Setting this option will result in timeouts if identd is not running on the client.": "如果identd未在客户端上运行,则设置此选项将导致超时。", "Settings": "设置", + "Settings Menu": "设置菜单", "Settings saved": "设置已保存", "Settings saved.": "设置已保存。", + "Setup Cron Job": "设置定时任务", + "Setup Method": "设置方法", "Setup Pool To Create Custom App": "设置池以创建自定义应用程序", + "Setup Pool To Install": "设置池以进行安装", "Severity Level": "安全等级", "Share ACL for {share}": "为 {share} 共享 ACL", + "Share Attached": "共享附件", "Share Path updated": "共享路径已更新", "Share with this name already exists": "此名称的共享已存在", "Share your thoughts on our product's features, usability, or any suggestions for improvement.": "分享您对我们产品的功能、可用性的想法或任何改进建议。", "Shares": "共享", + "Sharing": "共享", "Sharing Admin": "共享管理员", "Sharing NFS Read": "共享 NFS 读取", "Sharing NFS Write": "共享 NFS 写入", @@ -4385,20 +4009,29 @@ "Sharing iSCSI Target Write": "共享 iSCSI Target 写入", "Sharing iSCSI Write": "共享 iSCSI 写入", "Shell": "命令行", + "Shell Commands": "Shell 命令", "Short": "简短", "Short Description": "简述", "Should only be used for highly accurate NTP servers such as those with time monitoring hardware.": "仅应用于高度准确的 NTP 服务器,例如具有时间监控硬件的服务器。", "Show": "显示", + "Show All": "显示全部", "Show All Groups": "显示所有组", "Show All Users": "显示所有用户", "Show Built-in Groups": "显示内建群组", "Show Built-in Users": "显示内置用户", "Show Console Messages": "显示控制台消息", "Show Events": "显示事件", + "Show Expander Status": "显示扩展器状态", "Show Extra Columns": "显示多余的列", + "Show Ipmi Events": "显示 IPMI 事件", + "Show Logs": "显示日志", + "Show Password": "显示密码", + "Show Pools": "显示存储池", + "Show Status": "显示状态", "Show Text Console without Password Prompt": "显示没有密码提示的文本控制台", "Show all available groups, including those that do not have quotas set.": "显示所有可用组,包括未设置配额的组。", "Show all available users, including those that do not have quotas set.": "显示所有可用用户,包括未设置配额的用户。", + "Show extra columns": "显示额外列", "Show only those users who have quotas. This is the default view.": "仅显示具有配额的用户。这是默认视图。", "Showing extra columns in the table is useful for data filtering, but can cause performance issues.": "在表中显示额外的列对于数据过滤很有用,但可能会导致性能问题。", "Shows only the groups that have quotas. This is the default view.": "仅显示具有配额的组。这是默认视图。", @@ -4413,7 +4046,10 @@ "Sign": "注册", "Sign CSR": "签发 CSR", "Sign In": "登录", + "Sign Out": "注销", "Sign up for account": "注册帐户", + "Signed By": "签名者", + "Signed Certificates": "签名证书", "Signin": "登录", "Signing": "登录中", "Signing Certificate Authority": "签名证书颁发机构", @@ -4421,23 +4057,37 @@ "Signup": "注册", "Silver / Gold Coverage Customers can enable iXsystems Proactive Support. This automatically emails iXsystems when certain conditions occur on this TrueNAS system. The iX Support Team will promptly communicate with the Contacts saved below to quickly resolve any issue that may have occurred on the system.": "银牌/金牌客户可以启用 iXsystems 主动支持。当此 TrueNAS 系统上发生某些情况时,它将自动通过电子邮件发送给 iXsystem。iX 支持团队将立即与下面保存的联系人联系,以快速解决系统上可能发生的任何问题。", "Similar Apps": "相似的应用程序", + "Site Name": "站点名称", "Size": "大小", "Size for this zvol": "此 zvol 的大小", + "Size in GiB of refreservation to set on ZFS dataset where the audit databases are stored. The refreservation specifies the minimum amount of space guaranteed to the dataset, and counts against the space available for other datasets in the zpool where the audit dataset is located.": "在存储审计数据库的 ZFS 数据集上设置的 refreservation 大小(以 GiB 为单位)。refreservation 指定了保证给该数据集的最小空间量,并计入存储审计数据集所在的 zpool 中其他数据集可用空间的计算。", "Size in GiB of the maximum amount of space that may be consumed by the dataset where the audit dabases are stored.": "存储审计数据库的数据集可能消耗的最大空间大小(以 GiB 为单位)。", "Skip": "跳过", "Skip automatic detection of the Endpoint URL region. Set this only if AWS provider does not support regions.": "跳过端点 URL 区域的自动检测。仅当 AWS 提供商不支持区域时才设置此选项。", "Sleep": "睡眠", "Slot": "插槽", + "Slot {number} is empty.": "插槽 {number} 是空的。", + "Slot {n}": "插槽 {n}", + "Smart": "S.M.A.R.T.", + "Smart Task": "S.M.A.R.T. 任务", + "Smart Test Result": "S.M.A.R.T. 测试结果", + "Smart Tests": "S.M.A.R.T. 测试", "Snapdev": "快照设备", "Snapshot": "快照", "Snapshot Delete": "删除快照", + "Snapshot Directory": "快照目录", "Snapshot Lifetime": "快照保留周期", + "Snapshot Manager": "快照管理器", "Snapshot Name Regular Expression": "快照名称正则表达式", "Snapshot Read": "读取快照", "Snapshot Retention Policy": "快照保留策略", + "Snapshot Task": "快照任务", + "Snapshot Task Manager": "快照任务管理器", "Snapshot Task Read": "快照任务读取", "Snapshot Task Write": "快照任务写入", "Snapshot Tasks": "快照任务", + "Snapshot Time": "快照时间", + "Snapshot Time {time}": "快照时间 {time}", "Snapshot Write": "快照写入", "Snapshot added successfully.": "快照添加成功。", "Snapshot deleted.": "快照删除", @@ -4447,18 +4097,28 @@ "Snapshots could not be loaded": "无法加载快照", "Snapshots must not have dependent clones": "快照不得有依赖的克隆", "Snapshots will be created automatically.": "将自动创建快照。", + "Software Installation": "软件安装", + "Some of the disks are attached to the exported pools\n mentioned in this list. Checking a pool name means you want to\n allow reallocation of the disks attached to that pool.": "某些磁盘连接到此列表中提到的导出池。检查池名称意味着您希望允许重新分配连接到该池的磁盘。", "Some of the selected disks have exported pools on them. Using those disks will make existing pools on them unable to be imported. You will lose any and all data in selected disks.": "某些选定的磁盘上已导出池。使用这些磁盘将导致其上的现有池无法导入。您将丢失选定磁盘中的所有数据。", + "Sort": "排序", "Source": "源", "Source Dataset": "源数据集", "Source Location": "源位置", + "Source Path": "源路径", "Space": "空间", + "Space Available to Dataset": "数据集可用空间", + "Space Available to Zvol": "Zvol 可用空间", "Spaces are allowed.": "允许使用空格。", "Spare": "备用", "Spare VDEVs": "备用 VDEV", + "Spares": "备件", "Sparse": "备用", "Special Allocation class, used to create Fusion pools. Optional VDEV type which is used to speed up metadata and small block IO.": "特殊分配类,用于创建融合池。可选的 VDEV 类型,用于加速元数据和小块 IO。", + "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.": "指定身份验证和加密保护的级别。如果没有 KDC 可用,应使用 SYS 或 none。如果有 KDC 可用,例如 Active Directory,建议使用 KRB5。如果需要,可以在 KRB5 中包括 KRB5I(完整性保护)和/或 KRB5P(隐私保护)。", "Specifies the auxiliary directory service ID provider.": "指定辅助目录服务 ID 提供程序。", "Specify a size and value such as 10 GiB.": "指定大小和值,例如 10 GiB。", + "Specify custom": "指定自定义", + "Specify number of threads manually": "手动指定线程数", "Specify the PCI device to pass thru (bus#/slot#/fcn#).": "Specify the PCI device to pass thru (bus\\#/slot\\#/fcn\\#).", "Specify the logical cores that VM is allowed to use. Better cache locality can be achieved by setting CPU set base on CPU topology. E.g. to assign cores: 0,1,2,5,9,10,11 you can write: 1-2,5,9-11": "指定允许 VM 使用的逻辑内核。通过基于 CPU 拓扑设置 CPU 集可以实现更好的缓存局部性。例如,分配核心:0,1,2,5,9,10,11 你可以写:1-2,5,9-11", "Specify the message displayed to local login users after authentication. Not displayed to anonymous login users.": "指定身份验证后显示给本地登录用户的消息。对匿名登录用户不显示。", @@ -4469,17 +4129,22 @@ "Specify whether the issued certificate should include Authority Key Identifier information, and whether the extension is critical. Critical extensions must be recognized by the client or be rejected.": "指定颁发的证书是否应包含授权密钥标识符信息,以及扩展是否至关重要。关键扩展必须得到客户的认可或被拒绝。", "Specify whether to use the certificate for a Certificate Authority and whether this extension is critical. Clients must recognize critical extensions to prevent rejection. Web certificates typically require you to disable CA and enable Critical Extension.": "指定是否将证书用于证书颁发机构以及此扩展是否至关重要。客户必须识别关键扩展以防止拒绝。Web 证书通常要求您禁用 CA 并启用关键扩展。", "Speeds up the initial synchronization (seconds instead of minutes).": "加速初始同步(秒而不是分钟)。", + "Split": "划分", "Staging": "分期", "Standard": "标准", "Standby": "待机", "Standby {controller}.": "待机 {controller}。", + "Standby: TrueNAS Controller {id}": "待机:TrueNAS 控制器 {id}", "Start": "启动", + "Start All Selected": "启动所有选定项", "Start Automatically": "自启", "Start Over": "从头开始", "Start Scrub": "开始数据巡检", "Start a dry run test of this cloud sync task? The system will connect to the cloud service provider and simulate transferring a file. No data will be sent or received.": "开始对此云同步任务进行试运行? 系统将连接到云服务提供商,并模拟传输文件。没有数据将被发送或接收。", + "Start adding widgets to personalize it. Click on the \"Configure\" button to enter edit mode.": "开始新增小部件以个性化它。点击“配置”按钮以进入编辑模式。", "Start on Boot": "开机启动", "Start scrub on pool {poolName}?": "开始对存储池 {poolName} 进行数据巡检?", + "Start service": "启动服务", "Start session time": "会话启动时间", "Start the scrub now?": "立即开始数据巡检吗?", "Start time for the replication task.": "复制任务的开始时间。", @@ -4490,7 +4155,9 @@ "State": "状态", "Static IP addresses which SMB listens on for connections. Leaving all unselected defaults to listening on all active interfaces.": "SMB 侦听连接的静态 IP 地址。将所有未选中的默认值保留为侦听所有活动接口。", "Static IPv4 address of the IPMI web interface.": "IPMI Web 界面的静态 IPv4 地址。", + "Static Route": "静态路由", "Static Routes": "静态路由", + "Static Routing": "静态路由", "Static route added": "静态路由已添加", "Static route deleted": "静态路由已删除", "Static route updated": "静态路由已更新", @@ -4499,10 +4166,15 @@ "Status": "状态", "Status of TrueCommand": "TrueCommand 的状态", "Status: ": "状态: ", + "Step Back": "步骤回退", + "Step Forward": "向前迈进", "Stop": "停止", + "Stop All Selected": "停止所有选定的项", + "Stop Flashing": "停止闪烁", "Stop Rollback if Snapshots Exist:": "如果存在快照,则停止回滚:", "Stop Scrub": "停止数据巡检", "Stop TrueCommand Cloud Connection": "停止 TrueCommand 云连接", + "Stop service": "停止服务", "Stop the scrub on {poolName}?": "停止对存储池 {poolName} 进行数据巡检?", "Stop the {serviceName} service and close these connections?": "停止 {serviceName} 服务并关闭这些连接?", "Stop this Cloud Sync?": "停止此云同步吗?", @@ -4525,12 +4197,18 @@ "Store Encryption key in Sending TrueNAS database": "在发送 TrueNAS 数据库中存储加密密钥", "Store system logs on the system dataset. Unset to store system logs in /var/ on the operating system device.": "将系统日志存储在系统数据集上。取消设置将系统日志存储在操作系统设备上的/var/中。", "Storj": "Storj", + "Storj iX": "Storj iX", "Storj is a decentralized, open-source cloud storage platform. It uses blockchain technology and cryptography to secure files. Instead of storing files in a centralized server, Storj splits up files, encrypts them, and distributes them across a network of computers around the world.": "Storj 是一个去中心化的开源云存储平台。它使用区块链技术和密码学来保护文件。Storj 不是将文件存储在集中式服务器中,而是分割文件,对其进行加密,然后将它们分发到世界各地的计算机网络中。", + "Stream Compression": "流压缩", + "String of additional smb4.conf parameters not covered by the system's API.": "与系统 API 不涵盖的额外 smb4.conf 参数的字符串。", + "Strip ACL": "剥离 ACL", "Strip ACLs": "条带 ACLs", "Stripe": "条带", "Stripping ACLs": "正在剥离 ACL", "Subdir Filter": "子目录过滤器", + "Subfolder": "子文件夹", "Subject": "主题", + "Subject Alternative Name": "主题备用名称", "Submit": "提交", "Subnet mask of the IPv4 address.": "IPv4 地址的子网掩码。", "Success": "成功", @@ -4540,6 +4218,7 @@ "Successfully saved IPMI settings.": "已成功保存 IPMI 设置。", "Successfully saved proactive support settings.": "成功保存了主动支持设置。", "Successfully saved {n, plural, one {Disk} other {Disks}} settings.": "成功保存 {n, plural, 1 {Disk} other {Disks}} 设置。", + "Sudo": "Sudo", "Sudo Enabled": "启用 sudo", "Suggest an improvement": "提出改进建议", "Suggestion": "建议", @@ -4547,9 +4226,12 @@ "Sun": "周日", "Sunday": "周日", "Support": "支持", + "Support License": "支持许可证", "Support Read": "支持读取", "Support Write": "支持写入", + "Switch To Advanced": "切换到高级模式", "Switch To Basic": "切换到基础模式", + "Switch To Wizard": "切换到向导", "Switch Train": "切换分支", "Switch to Advanced Options": "切换到高级选项", "Switch update trains?": "切换更新分支?", @@ -4564,22 +4246,41 @@ "Sync from peer succeeded.": "从相同的一方同步成功。", "Sync to Peer": "同步到相同的一方", "Sync to peer succeeded.": "与相同的一方同步成功。", + "Synced": "同步完成", "Synchronize": "同步", "Sysctl": "Sysctl", "Sysctl \"{name}\" deleted": "Sysctl \"{name}\" 已删除", "Syslog": "系统日志", "Syslog Level": "系统日志级别", "Syslog Server": "系统日志服务器", + "Syslog Settings": "系统日志设置", + "Syslog TLS Certificate": "Syslog TLS 证书", + "Syslog TLS Certificate Authority": "Syslog TLS 证书颁发机构", "Syslog Transport": "系统日志传输", "System": "系统", "System Audit Read": "系统审计读取", "System Audit Write": "系统审计写入", "System Clock": "系统时钟", + "System Data Pool": "系统数据池", + "System Dataset": "系统数据集", "System Dataset Pool": "系统数据集池", + "System Freeze": "系统冻结", + "System Image": "系统映像", "System Information": "系统信息", + "System Information – Active": "系统信息 – 活动", + "System Information – Standby": "系统信息 - 待机", + "System Overload": "系统过载", + "System Reports": "系统报告", "System Security": "系统安全", + "System Security Settings": "系统安全设置", "System Security Settings Updated.": "已更新系统安全设置", + "System Serial": "系统序列号", + "System Stats": "系统统计", "System Time Zone:": "系统时区:", + "System Update": "系统更新", + "System Uptime": "系统运行时间", + "System Utilization": "系统利用率", + "System Version": "系统版本", "System dataset updated.": "系统数据集已更新", "System domain name, like example.com": "系统域名,例如example.com", "System hostname.": "系统主机名。", @@ -4589,6 +4290,19 @@ "TCP Port": "TCP 端口", "TCP port used to access the iSCSI target. Default is 3260.": "用于访问 iSCSI Target 的 TCP 端口。默认设置是 3260.", "TLS (STARTTLS)": "TLS (STARTTLS)", + "TLS Allow Client Renegotiations": "允许客户端重新协商 TLS", + "TLS Allow Dot Login": "TLS 允许点登录", + "TLS Allow Per User": "TLS 允许每个用户单独设置", + "TLS Common Name Required": "TLS 公共名称必需", + "TLS DNS Name Required": "TLS DNS 名称必需", + "TLS Enable Diagnostics": "TLS 启用诊断", + "TLS Export Certificate Data": "TLS 导出证书数据", + "TLS Export Standard Vars": "TLS 导出标准变量", + "TLS IP Address Required": "需要 TLS IP 地址", + "TLS No Empty Fragments": "TLS 不允许空片段", + "TLS No Session Reuse Required": "TLS 不需要会话重用", + "TLS Policy": "TLS 策略", + "Table Actions of Expandable Table": "可扩展表的表操作", "Tag": "标签", "Tags": "标签", "Tail Lines": "Tail 行", @@ -4599,26 +4313,38 @@ "Target Dataset": "目标数据集", "Target Global Configuration": "目标全局配置", "Target Name": "目标名称", + "Target Stats": "目标统计信息", + "Target Utilization": "目标利用率", "Target dataset encryption will be inherited from its parent dataset.": "目标数据集的加密设置将从父数据集继承。", "Target with this name already exists": "同名目标已存在", "Targets": "目标", + "Task": "任务", + "Task Details for {task}": "{task} 的任务详情", "Task Name": "任务名称", + "Task Settings": "任务设置", "Task created": "任务已创建", "Task is on hold": "任务暂停", "Task is running": "任务正在运行", "Task started": "开始任务", "Task updated": "任务已更新", + "Tasks": "任务", "Tasks could not be loaded": "无法加载任务", "Team Drive ID": "团队驱动器 ID", "Telegram Bot API Token (How to create a Telegram Bot)": "Telegram Bot API Token (How to create a Telegram Bot)", "Temperature Alerts": "温度警报", + "Temperature Sensors": "温度传感器", + "Temperature data missing.": "温度数据缺失。", + "Tenant Domain": "租户域", "Tenant ID": "租户 ID", "Tenant ID - optional for v1 auth, this or tenant required otherwise (rclone documentation).": "租户 ID - 可选 v1 身份验证,否则需要此租户(rclone 文档)。", "Tenant Name": "租户名称", "Tenant domain - optional (rclone documentation).": "租户域 - 可选的(rclone 文档)。", + "Terminal": "终端", "Terminate Other Sessions": "终止其它会话", + "Terminate Other User Sessions": "终止其他用户会话", "Terminate session": "终止会话", "Terms of Service": "服务条款", + "Test": "测试", "Test Changes": "测试更改", "Test Cloud Sync": "测试云同步", "Test alert sent": "已发送测试警报", @@ -4658,25 +4384,34 @@ "The directory base suffix to use for SID/uid/gid mapping entries. Example: dc=test,dc=org. When undefined, idmap_ldap defaults to using the ldap idmap suffix option from smb.conf.": "用于 SID/uid/gid 映射条目的目录基本后缀。示例:dc=test,dc=org。未定义时,idmap_ldap 默认使用 smb.conf。", "The domain for local users is the NetBIOS name of the TrueNAS server.": "本地用户的域是 TrueNAS 服务器的 NetBIOS 名称。", "The domain to access the Active Directory server when using the LDAP server inside the Active Directory server.": "使用活动目录服务器内部的 LDAP 服务器时要访问活动目录服务器的域。", + "The expanded vdev uses the pre-expanded parity ratio, which reduces the total vdev capacity. To reset the vdev parity ratio and fully use the new capacity, manually rewrite all data in the vdev. This process takes time and is irreversible.": "扩展的 vdev 使用扩展前的奇偶校验比率,这会减少总的虚拟设备容量。要重置虚拟设备的奇偶校验比率并完全利用新容量,请手动重写虚拟设备中的所有数据。此过程需要时间,并且不可逆。", "The file used to manually update the system. Browse to the update file stored on the system logged into the web interface to upload and apply. Update file names end with -manual-update-unsigned.tar": "用于手动更新系统的文件。浏览到登录到 Web 界面的系统上存储的更新文件以进行上载和应用。更新文件名以 -manual-update-unsigned.tar 结尾", "The filesystem {filesystemName} is {filesystemDescription}, but datastore {datastoreName} is {datastoreDescription}. Is this correct?": "文件系统 {filesystemName} 是 {filesystemDescription},但数据存储区 {datastoreName} 是 {datastoreDescription}。这个对吗?", "The following changes to this SMB Share require the SMB Service to be restarted before they can take effect.": "此 SMB 共享的以下更改需要重新启动 SMB 服务才能生效。", "The following datasets cannot be unlocked.": "以下数据集无法解锁。", "The following disks have exported pools on them.\n Using those disks will make existing pools on them unable to be imported.\n You will lose any and all data in selected disks.": "以下磁盘上已导出池。\n使用这些磁盘将导致其上的现有池无法导入。\n您将丢失所选磁盘中的所有数据。", + "The following issues were already reported.": "以下问题已被报告。", "The following { n, plural, one {application} other {# applications} } will be upgraded. Are you sure you want to proceed?": "这{ n, plural, 1 {# 个应用} other {# 个应用} } 将被升级,您确定吗?", + "The following { n, plural, one {boot environment} other {# boot environments} } will be deleted. Are you sure you want to proceed?": "以下 {n} 个启动环境将被删除。您确定要继续吗?", + "The following { n, plural, one {docker image} other {# docker images} } will be deleted. Are you sure you want to proceed?": "以下 {n} 个docker 镜像将被删除。您确定要继续吗?", + "The following { n, plural, one {snapshot} other {# snapshots} } will be deleted. Are you sure you want to proceed?": "以下将被删除 {n} 个快照。您确定要继续吗?", "The friendly name to show in front of the sending email address. Example: Storage System 01<it@example.com>": "显示在发送电子邮件地址前面的友好名称。示例:存储系统 01 <it@example.com>", "The group which controls the dataset. This group has the same permissions as granted to the group@ Who. Groups created manually or imported from a directory service appear in the drop-down menu.": "控制数据集的组。该组具有与授予 group @ Who 相同的权限。手动创建或从目录服务导入的组显示在下拉菜单中。", "The hostname or IP address of the LDAP server. Separate entries by pressing Enter.": "LDAP 服务器的主机名或 IP 地址。通过按Enter分隔条目。", "The imported pool contains encrypted datasets, unlock them now?": "导入的池包含加密的数据集,现在将其解锁吗?", + "The length of the field should be at least {minLength}": "该字段的长度应至少为 {minLength}", + "The length of the field should be no more than {maxLength}": "该字段的长度应不超过 {maxLength}。", "The length of {field} should be at least {minLength}": "{field} 的长度应至少为 {minLength}", "The length of {field} should be no more than {maxLength}": "{field} 的长度不应超过 {maxLength}", "The lifetime of the CA specified in days.": "CA 的寿命,以天为单位。", + "The list is empty.": "列表是空的。", "The maximum number of simultaneous clients.": "并发客户端的最大数量。", "The maximum polling interval, in seconds, as a power of 2. For example, 10 means 2^10, or 1,024 seconds. The default is 10, maximum value is 17.": "最大轮询间隔(以秒为单位)为 2 的幂。例如, 10 表示 2^10 或 1024 秒。默认值为 10,最大值为 17。", "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^6 或 64 秒。默认值为 6,最小值为 4。", "The name \"{value}\" is already in use.": "名称 \"{value}\" 已被使用。", "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 number of children must at the minimum accomodate the total number of disks required for the previous configuration options including parity drives.": "子项的数量必须至少满足之前配置选项所需的磁盘总数,包括校验盘。", "The operation timed out. The requested resource might be offline. Check the network connection.": "操作超时。请求的资源可能处于脱机状态。检查网络连接。", "The parent of this dataset has an Access Control List (ACL). Do you want to set an ACL for this dataset using the ACL Manager? ": "此数据集的父级具有访问控制列表(ACL)。是否要使用 ACL 管理器为此数据集设置 ACL?", "The pasted string ends with a space": "粘贴的字符串以空格结尾", @@ -4697,6 +4432,7 @@ "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 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.": "工单已成功创建(请参见下面的链接),但调试文件未能附加。请手动下载调试(系统 → 高级 → 保存调试),上传到第三方存储服务并在 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 每隔一天运行一次。", @@ -4709,8 +4445,10 @@ "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 restart.": "{服务} 正在运行,并将在系统重启后自动启动。", "The {service} service is running.": "{service} 服务正在运行。", "Theme": "主题", + "There are no alerts.": "没有警报。", "There are no records to show.": "没有可显示的记录。", "There are pending network interface changes. Review them now?": "有待处理的网络接口更改。现在审查它们?", "There are unapplied network interface changes that must be tested before being permanently saved. Test changes now?": "在永久保存之前必须测试未应用的网络接口更改。现在测试更改?", @@ -4722,14 +4460,23 @@ "These datasets were not unlocked because the parent datasets could not be unlocked.": "这些数据集未解锁,因为父数据集无法解锁。", "These datasets were successfully unlocked.": "这些数据集已成功解锁。", "These datasets will be unlocked with the provided credentials.": "这些数据集将使用提供的凭据解锁。", + "These disks do not support S.M.A.R.T. tests:": "这些磁盘不支持 S.M.A.R.T. 测试:", + "These running processes are using {datasetName}:": "这些正在运行的进程正在使用 {datasetName}:", + "These running processes are using {name}:": "这些正在运行的进程正在使用 {name}:", + "These services depend on dataset {name} and will be destroyed if the dataset is deleted:": "这些服务依赖于数据集 {name},如果数据集被删除,这些服务将被销毁:", + "These services depend on pool {name} and will be disrupted if the pool is detached:": "这些服务依赖于池 {name},如果池被分离将会受到影响:", "These services must be restarted to export the pool:": "必须重新启动这些服务才能导出池:", "These services must be stopped to export the pool:": "必须停止这些服务才能导出池:", + "These unknown processes are using the pool:": "这些未知的进程正在使用池:", + "Thick": "厚制备", "Third DNS server.": "第三个 DNS 服务器。", "Third-party Cloud service providers. Choose a provider to configure connection credentials.": "第三方云服务提供商。选择一个提供商来配置连接凭据。", "This Certificate Authority is being used to sign one or more certificates. It can be deleted only after deleting these certificates.": "此证书颁发机构用于签署一个或多个证书。只有在删除这些证书后才能删除。", "This Dataset": "此数据集", "This Dataset and Child Datasets": "此数据集和子数据集", "This action removes all ACLs from the current dataset and any directories or files contained within this dataset. Stripping the ACL resets dataset permissions. This can make data inaccessible until new permissions are created.": "此操作将从当前数据集以及此数据集中包含的任何目录或文件中删除所有 ACL。剥离 ACL 会重置数据集权限。这可能会使数据无法访问,直到创建新权限。", + "This action will set all dataset quotas for the removed or invalid groups to 0, virtually removing any dataset quota entires for such groups. Are you sure you want to proceed?": "此操作将把已移除或无效组的所有数据集配额设置为0,从而实际上移除这些组的任何数据集配额条目。您确定要继续吗?", + "This action will set all dataset quotas for the removed or invalid users to 0, virtually removing any dataset quota entires for such users. Are you sure you want to proceed?": "此操作将把已移除或无效用户的所有数据集配额设置为0,实际上会移除该用户的任何数据集配额条目。您确定要继续吗?", "This allows your TrueNAS system to be monitored and administrated by TrueCommand. Click SIGNUP to create a new TrueCommand Cloud instance or CONNECT to join an existing instance.": "这使您的 TrueNAS 系统可以由 TrueCommand 进行监视和管理。单击注册创建新的 TrueCommand Cloud 实例,或单击连接加入现有实例。", "This certificate's public key is used for key management.": "该证书的公钥用于密钥管理。", "This certificate's public key is used to decipher user data only during key agreement operations. Requires that Key Agreement is also set.": "该证书的公共密钥仅在密钥协商操作期间才用于解密用户数据。要求还设置密钥协议。", @@ -4741,8 +4488,14 @@ "This certificate's public key verifies digital signatures used for a non-repudiation service.": "该证书的公钥验证用于不可抵赖服务的数字签名。", "This change can interrupt connectivity and must be tested before making permanent. ": "此更改可能会中断连接,并且必须在永久更改之前进行测试。", "This controls how the SMB share reads and writes data. Leave unset for the share to behave like a normal SMB share and set for the share to behave like the deprecated Apple Filing Protocol (AFP). This should only be set when this share originated as an AFP sharing configuration. This is not required for pure SMB shares or MacOS SMB clients.": "这控制了 SMB 共享读取和写入数据的方式。保留未设置以使共享的行为类似于普通 SMB 共享,并将共享设置为类似于已弃用的 Apple 归档协议(AFP)。仅当此共享作为 AFP 共享配置发起时才应设置。对于纯 SMB 共享或 MacOS SMB 客户端,这不是必需的。", + "This dataset has children with shares": "该数据集包含具有共享的子项。", + "This dataset is used by the system": "该数据集由系统使用。", + "This dataset is used by: {apps}": "此数据集由以下应用程序使用:{apps}", + "This dataset is used by: {vms}": "此数据集由以下虚拟机使用:{vms}", + "This dataset is used to store apps config and other container related data": "该数据集用于存储应用配置和其他与容器相关的数据。", "This disk is part of the exported pool {pool}. Adding this disk to a new or other existing pools will make {pool} unable to import. You will lose any and all data in {pool}. Please make sure you have backed up any sensitive data in {pool} before reusing/repurposing this disk.": "此磁盘是导出池 {pool} 的一部分。将此磁盘添加到新池或其他现有池将使 {pool} 无法导入。您将丢失 {pool} 中的所有数据。在重新使用/重新利用此磁盘之前,请确保您已备份 {pool} 中的所有敏感数据。", "This disk is part of the exported pool {pool}. Reusing this disk will make {pool} unable to import. You will lose any and all data in {pool}. Please make sure any sensitive data in {pool} is backed up before reusing/repurposing this disk.": "此磁盘是导出池 {pool} 的一部分。重复使用此磁盘将使 {pool} 无法导入。您将丢失 {pool} 中的所有数据。请确保在重用/重新利用此磁盘之前备份 {pool} 中的所有敏感数据。", + "This disk is part of the exported pool {pool}. Wiping this disk will make {pool} unable\n to import. You will lose any and all data in {pool}. Please make sure that any sensitive data in {pool} is backed up before wiping this disk.": "此磁盘是导出池 {pool} 的一部分。擦除此磁盘将使 {pool} 无法导入。您将丢失 {pool} 中的所有数据。在擦除此磁盘之前,请确保 {pool} 中的任何敏感数据已备份。", "This feature is memory-intensive and permanently affects how the data is stored. It is recommended to be very familiar with the benefits and drawbacks of deduplication before activating this feature.": "此功能会占用大量内存,并且永久影响数据的存储方式。建议在激活此功能之前非常熟悉重复数据删除的优缺点。", "This field accepts human-readable input (Ex. 50 GiB, 500M, 2 TB).": "此字段接受用户可读的空间(例如 50 GiB、500M、2 TB)。", "This field accepts human-readable input (Ex. 50 GiB, 500M, 2 TB). If units are not specified, the value defaults to": "接受用户可使用容量数值(例如 50 GiB,500 M,2 TB)。如果未指定单位,则默认值为所有容量", @@ -4750,19 +4503,24 @@ "This information is provided by the catalog maintainer.": "此信息由目录维护者提供。", "This is a ONE-SHOT {alertLevel} alert, it won't be dismissed automatically": "这是一次性 {alertLevel} 警报,不会被自动关闭", "This is a one way action and cannot be reversed. Are you sure you want to revoke this Certificate?": "这是一种单向操作,无法逆转。您确定要撤销此证书吗?", + "This is a production system": "这是一个生产系统。", "This is the OS_TENANT_NAME from an OpenStack credentials file.": "这是来自 OS_TENANT_NAME 的OpenStack 凭据文件。", "This is the only time the key is shown.": "这是唯一一次显示密钥。", "This job is scheduled to run again {nextRun}.": "此工作计划将再次运行 {nextRun}。", "This job will not run again until it is enabled.": "启用该任务后,它将无法再次运行。", + "This node is currently configuring the system dataset.": "该节点正在配置系统数据集。", "This node is currently processing a failover event.": "此节点正在处理一个故障转移事件。", "This option controls how metadata and alternate data streams read write to disks. Only enable this when the share configuration was migrated from the deprecated Apple Filing Protocol (AFP). Do not attempt to force a previous AFP share to behave like a pure SMB share or file corruption can occur.": "此选项控制元数据和备用数据流如何读写磁盘。仅当共享配置从已弃用的 Apple 归档协议(AFP)迁移时才启用此功能。不要试图强制以前的 AFP 共享表现得像纯 SMB 共享,否则可能会发生文件损坏。", + "This option ensures data consistency by creating a snapshot at the start of the backup or synchronization task. The process involves the following steps:

    1. Snapshot Creation: A snapshot of the current state is taken at the moment the task is initiated.

    2. Backup/Sync Operation: The task utilizes the snapshot contents to perform the backup or synchronization, ensuring that the data remains consistent and unchanged during the operation.

    3. Snapshot Removal: Once the task is completed, the snapshot is automatically removed to save storage space.

    This mechanism guarantees that the backup or synchronization task captures an exact state of your data at the start, even if changes occur during the process.": "此选项通过在备份或同步任务开始时创建快照来确保数据一致性。该过程涉及以下步骤:

    1. 快照创建:任务启动时对当前状态进行快照。

    2. 备份/同步操作:任务利用快照内容进行备份或同步,确保在操作过程中数据保持一致且不变。

    3. 快照移除:任务完成后,快照会自动移除以节省存储空间。

    该机制确保备份或同步任务在开始时捕获数据的确切状态,即使在过程中发生更改。", "This pool contains the system dataset that stores critical data like debugging core files, encryption keys for pools, and Samba 4 metadata such as the user/group cache and share level permissions. Exporting this pool will transfer the system dataset to another available pool. If the only available pool is encrypted, that pool will no longer be able to be locked. When no other pools exist, the system dataset transfers back to the TrueNAS operating system device.": "该池包含存储关键数据的系统数据集,例如调试核心文件、池的加密密钥以及 Samba 4 元数据(例如用户/组缓存和共享级别权限)。导出此池会将系统数据集传输到另一个可用池。如果唯一可用的池被加密,则该池将不再能够被锁定。当不存在其他池时,系统数据集传输回 TrueNAS 操作系统设备。", "This pool has an encrypted root dataset which is locked. Do you want to unlock it?": "此池有一个已锁定的加密根数据集。您要解锁它吗?", "This process continues in the background after closing this dialog.": "关闭此对话框后,此过程将在后台继续。", "This session is current and cannot be terminated": "此会话是当前会话,无法终止", "This system cannot communicate externally.": "该系统无法与外部通信。", + "This system is not licensed for HA.": "该系统没有获得高可用性 HA 的许可。", "This system will restart when the update completes.": "更新完成后,该系统将重新启动。", "This value represents the threshold block size for including small file blocks into the special allocation class. Blocks smaller than or equal to this value will be assigned to the special allocation class while greater blocks will be assigned to the regular class. Valid values are zero or a power of two from 512B up to 1M. The default size is 0 which means no small file blocks will be allocated in the special class. Before setting this property, a special class vdev must be added to the pool. See zpool(8) for more details on the special allocation": "此值表示将小文件块包含到特殊分配类中的阈值块大小。小于或等于此值的块将分配给特殊分配类,而较大的块将分配给常规类。有效值为 0 或 2 的幂,从 512B 到 1M。默认大小为 0,这意味着不会在特殊类中分配小文件块。在设置此属性之前,必须将一个特殊的类 vdev 添加到池中。有关更多详细信息,请参阅 zpool(8)特别分配", + "This view is not available for this enclosure.": "该视图对该外 enclosure 不可用。", "Thread responsible for syncing db transactions not running on other node.": "负责同步未在其他节点上运行的数据库事务的线程。", "Thread responsible for syncing db transactions not running on this node.": "负责同步未在此节点上运行的数据库事务的线程。", "Threads": "线程", @@ -4770,11 +4528,14 @@ "Threshold temperature in Celsius. If the drive temperature is higher than this value, a LOG_CRIT level log entry is created and an email is sent. 0 disables this check.": "阈值温度(摄氏度)。如果驱动器温度高于此温度,则会创建 LOG_CRIT 级别的日志条目并发送电子邮件。0 禁用此检查。", "Thu": "周四", "Thursday": "周四", + "Ticket": "票据", "Ticket was created, but we were unable to upload one or more attachments.": "工单已创建,但我们无法上传一个或多个附件。", + "Time": "时间", "Time (in seconds) before the system stops attempting to establish a connection with the remote system.": "系统停止尝试与远程系统建立连接之前的时间(以秒为单位)。", "Time Format": "时间格式", "Time Machine": "时间机器", "Time Machine Quota": "时间机器配额", + "Time Server": "时间服务器", "Time in seconds after which current user session will be disconnected. Interacting with UI extends the session.": "所示秒数后当前用户会话将断开连接。与 UI 交互以延长会话时间。", "Timeout": "超时", "Times": "时间", @@ -4783,32 +4544,50 @@ "Title": "标题", "To activate this periodic snapshot schedule, set this option. To disable this task without deleting it, unset this option.": "要激活此定期快照计划,请设置此选项。要禁用此任务而不删除它,请取消设置此选项。", "To configure Isolated GPU Device(s), click the \"Configure\" button.": "要配置独立 GPU 设备,请单击「配置」按钮。", + "To enable disable Active Directory first.": "首先启用或禁用 Active Directory。", + "To enable disable LDAP first.": "首先禁用 LDAP。", "Today": "今天", "Toggle Collapse": "切换折叠", + "Toggle Sidenav": "切换侧边栏", + "Toggle off to defer interface learning until runtime, preventing premature state transitions and potential issues during system startup.": "关闭此选项以推迟接口学习,直到运行时,从而防止过早的状态转换和在系统启动期间可能出现的问题。", "Toggle {row}": "切换 {row}", "Token": "令牌(Token)", "Token created with Google Drive.": "使用谷歌云端硬盘创建的令牌。", "Token created with Google Drive. Access Tokens expire periodically and must be refreshed.": "使用Google 云端硬盘创建的令牌。访问令牌会定期过期,必须刷新。", "Token expired": "Token 已过期", + "Tolerance Window": "容忍窗口", + "Toolbar": "工具栏", + "Top": "顶部", + "Top bar": "顶部栏", "Top level of the LDAP directory tree to be used when searching for resources. Example: dc=test,dc=org.": "搜索资源时要使用的 LDAP 目录树的顶层。示例:dc=test,dc=org。", "Topic Amazon Resource Name (ARN) for publishing. Example: arn:aws:sns:us-west-2:111122223333:MyTopic.": "主题 Amazon 资源名称(ARN)用于发布。例如:arn:aws:sns:us-west-2:111122223333:MyTopic。", "Topology": "拓扑结构", "Topology Summary": "拓扑总览", + "Total": "总计", "Total Allocation": "总分配", "Total Capacity": "总容量", + "Total Disks": "总磁盘数量", + "Total Disks:": "总磁盘数:", "Total Down": "总下降", "Total Raw Capacity": "总原始容量", "Total Snapshots": "总快照", "Total ZFS Errors": "ZFS 错误总数", + "Total failed": "总失败", + "Traffic": "流量", "Train": "分支", "Transfer": "传输", "Transfer Mode": "传输模式", "Transfers": "传输", + "Translate App": "翻译应用", + "Transmit Hash Policy": "传输哈希策略", "Transparently reuse a single copy of duplicated data to save space. Deduplication can improve storage capacity, but is RAM intensive. Compressing data is generally recommended before using deduplication. Deduplicating data is a one-way process. Deduplicated data cannot be undeduplicated!.": "使用重复数据的单个副本以节省空间。重复数据删除功能可以提高存储容量,但需要占用大量 RAM。通常建议在使用重复数据删除功能之前压缩数据。重复数据删除是一个单向过程。已去重的数据不能再重复删除!", "Transport": "传输", + "Transport Encryption Behavior": "传输加密行为", "Transport Options": "传输选项", "Traverse": "阻止", "Treat Disk Size as Minimum": "将磁盘大小视为最小", + "Troubleshooting Issues": "故障排除问题", + "TrueCloud Backup Tasks": "TrueCloud 备份任务", "TrueCommand": "TrueCommand", "TrueCommand Cloud Service": "TrueCommand 云服务", "TrueCommand Cloud Service deregistered": "TrueCommand 云服务已注销", @@ -4817,18 +4596,27 @@ "TrueCommand Write": "TrueCommand 写入", "TrueNAS Controller": "TrueNAS 控制器", "TrueNAS Help": "TrueNAS 帮助", + "TrueNAS URL": "TrueNAS URL", + "TrueNAS maintains a cache of users and groups for API consumers (including the WebUI). This is a convenience feature that may be disabled if the domain contains large numbers of users and groups or if the caching generates excessive load on the domain controller.": "TrueNAS 为 API 消费者(包括 WebUI)维护用户和组的缓存。这是一个便利的功能,但如果域中包含大量用户和组,或者缓存对域控制器产生过大负载,可以禁用该功能。", + "TrueNAS recommends that the sync setting always be left to the default of \"Standard\" or increased to \"Always\". The \"Disabled\" setting should not be used in production and only where data roll back by few seconds in case of crash or power loss is not a concern.": "TrueNAS 建议将同步设置始终保持为默认的\"标准\"或增加到\"始终\"。在生产环境中不应使用\"禁用\"设置,仅在发生崩溃或断电时数据回滚几秒钟不是问题的情况下使用。", "TrueNAS server must be joined to Active Directory or have at least one local SMB user before creating an SMB share": "在创建 SMB 共享之前,TrueNAS 服务器必须加入 Active Directory 或至少拥有一个本地 SMB 用户", "TrueNAS software versions do not match between storage controllers.": "TrueNAS 软件版本在存储控制器之间不匹配。", "TrueNAS was unable to reach update servers.": "TrueNAS 无法访问更新服务器。", "TrueNAS {product} is Free and Open Source software, which is provided as-is with no warranty.": "TrueNAS {product} 是免费且开源的软件,按原样提供,不提供任何担保。", + "Trust Guest Filters": "信任来宾过滤器", "Tue": "周二", "Tuesday": "周二", + "Tunable": "可调节的", "Tunables": "微调", + "Turn Off": "关闭", "Turn Off Service": "关闭服务", "Turn On Service": "开启服务", "Two Factor Auth": "双因素验证", "Two Factor Authentication for SSH": "SSH 的双因素身份验证", + "Two half widgets, one below another": "两个半部件,一个在另一个下面", + "Two quarter widgets and one half widget below": "下面有两个四分之一的小部件和一个二分之一的小部件。", "Two-Factor Authentication": "双因素身份验证", + "Two-Factor Authentication Code": "双重身份验证代码", "Two-Factor Authentication Setup Warning!": "双因素身份验证设置警告!", "Two-Factor Authentication has been enabled on this system. You are required to setup your 2FA authentication on the next page. You will not be able to proceed without setting up 2FA for your account. Make sure to scan the QR code with your authenticator app in the end before logging out of the system or navigating away. Otherwise, you will be locked out of the system and will be unable to login after logging out.": "此系统已启用双因素身份验证。您需要在下一页上设置双因素身份验证。如果不为您的帐户设置双因素身份验证,您将无法继续。请务必在退出系统或离开之前使用身份验证器应用程序扫描二维码。否则,您将被锁定在系统之外,注销后将无法登录。", "Two-Factor authentication has been configured.": "双因素身份验证已配置。", @@ -4837,12 +4625,18 @@ "Type": "类型", "Type of Microsoft acount. Logging in to a Microsoft account automatically chooses the correct account type.": "Microsoft 帐户的类型。登录到 Microsoft 帐户会自动选择正确的帐户类型。", "UDP port number on the system receiving SNMP trap notifications. The default is 162.": "接收 SNMP 陷阱通知的系统上的 UDP 端口号。默认值为 162 。", + "UI": "用户界面", + "UI Search Result: {result}": "用户界面搜索结果:{result}", "UID": "UID", "UNIX (NFS) Shares": "UNIX(NFS)共享", + "UNIX Charset": "UNIX 字符集", "UPS": "UPS", "UPS Mode": "UPS 模式", + "UPS Stats": "UPS 状态", + "UPS Utilization": "UPS 负载", "URI of the ACME Server Directory. Choose a pre configured URI": "ACME 服务器目录的 URI。选择预先配置的 URI", "URI of the ACME Server Directory. Enter a custom URI.": "ACME 服务器目录的 URI。输入一个自定义 URI。", + "URL": "网址", "URL of the HTTP host to connect to.": "要连接的 HTTP 主机的 URL。", "USB Passthrough Device": "USB 直通设备", "UTC": "世界标准时间", @@ -4851,19 +4645,24 @@ "Unassigned": "未分配", "Unassigned Disks": "未分配的磁盘", "Unavailable": "不可用", + "Uncheck": "取消勾选", "Unencrypted": "未加密", + "Unexpected power loss necessitating a restart.": "意外断电导致需要重启。", "Unhealthy": "不健康", "Unique LUN ID. The default is generated from the MAC address of the system.": "唯一的逻辑单元 ID。默认值是从系统的 MAC 地址生成的。", "Unique Virtual Host ID on the broadcast segment of the network. Configuring multiple Virtual IP addresses requires a separate VHID for each address.": "网络广播段上的唯一虚拟主机 ID。配置多个虚拟 IP 地址需要为每个地址使用单独的 VHID。", "Unique drive identifier. Log in to a Microsoft account and choose a drive from the Drives List drop-down to add a valid ID.": "唯一的驱动器标识符。登录到 Microsoft 帐户,然后从驱动器列表下拉列表中选择一个驱动器以添加有效的 ID。", "Unique snapshot name. Cannot be used with a Naming Schema.": "唯一的快照名称。不能与命名惯例一起使用。", "Unit": "单位", + "Unix NSS Info": "Unix NSS 信息", "Unix Permissions": "Unix 权限", "Unix Permissions Editor": "Unix 权限编辑器", + "Unix Primary Group": "Unix 主组", "Unix Socket": "Unix 套接字", "Unkeep": "取消保留", "Unknown": "未知", "Unknown CPU": "未知 CPU", + "Unknown PID": "未知的进程ID", "Unlink": "取消链接", "Unlock": "解锁", "Unlock Child Encrypted Roots": "解锁子加密根", @@ -4872,6 +4671,9 @@ "Unlock with Key file": "用密钥文件解锁", "Unlocked": "解锁", "Unlocking Datasets": "正在解锁数据集", + "Unresponsive system necessitating a forced restart.": "无响应的系统需要强制重启。", + "Unsaved Changes": "未保存的更改", + "Unselect All": "取消全选", "Unset": "取消设置", "Unset Generate Encryption Key to instead import a custom Hex key.": "取消设置生成加密密钥以导入自定义十六进制密钥。", "Unset Pool": "取消设置池", @@ -4880,30 +4682,46 @@ "Unset to disable this service without deleting it.": "取消设置以禁用此服务而不删除它。", "Unshare": "取消共享", "Unshare {name}": "取消分享 {name}", + "Unsupported Hardware": "不支持的硬件", "Until": "直到", + "Unused Disks": "未使用的磁盘", "Up to date": "最新", "Update": "更新", "Update 'Time Machine'": "更新「时间机器」", + "Update All": "更新全部", "Update Available": "更新可用", + "Update Dashboard": "更新仪表板", "Update File": "更新文件", "Update File Temporary Storage Location": "更新文件临时存储位置", "Update Image": "更新镜像", + "Update Interval": "更新间隔", "Update License": "更新许可证", + "Update Members": "更新成员", + "Update Password": "更新密码", "Update Pool": "更新池", "Update Production Status": "更新生产状态", + "Update Release Notes": "更新发布说明", + "Update Software": "更新软件", + "Update System": "更新系统", "Update TrueCommand Settings": "更新 TrueCommand 设置", "Update available": "更新可用", "Update in Progress": "正在进行更新", + "Update successful. Please restart for the update to take effect. Restart now?": "更新成功。请重启以使更新生效。现在重启吗?", "Updated 'Use as Home Share'": "更新了「用作家庭共享」", "Updated Date": "更新日期", "Updates": "更新", "Updates Available": "有可用的更新", + "Updates available": "可用更新", "Updates successfully downloaded": "更新下载成功", "Updating": "更新中", "Updating ACL": "更新 ACL(访问权限管理)中", + "Updating custom app": "更新自定义应用程序", "Updating key type": "更新密钥类型", + "Updating settings": "更新设置", "Upgrade": "升级", + "Upgrade All Selected": "升级所有选择项", "Upgrade Pool": "升级池", + "Upgrade Release Notes": "升级发行说明", "Upgrade Waiting to Finish": "等待升级完成", "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?": "升级两个控制器。文件被下载到活动控制器,然后传输到备用控制器。升级过程同时在两个 TrueNAS 控制器上开始。继续下载吗?", "Upgrading Apps. Please check on the progress in Task Manager.": "升级应用程序。请在任务管理器中检查进度。", @@ -4911,9 +4729,11 @@ "Upload": "上传", "Upload Chunk Size (MiB)": "上传块大小(MiB)", "Upload Config": "上传配置", + "Upload Configuration": "上传配置", "Upload File": "上传文件", "Upload Image File": "上传镜像文件", "Upload Key file": "上传密钥文件", + "Upload Manual Update File": "上传手动更新文件", "Upload New Image File": "上传新镜像文件", "Upload SSH Key": "上传 SSH 秘钥", "Upload a Google Service Account credential file. The file is created with the Google Cloud Platform Console.": "上传 Google 服务帐户凭据文件", @@ -4923,21 +4743,28 @@ "Uptime": "运行时间", "Usable Capacity": "可用容量", "Usage": "使用率", + "Usage Collection": "使用收集", "Usage collection": "使用情况收集", + "Usages": "用法", "Use rclone crypt to manage data encryption during PUSH or PULL transfers:

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

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

    Additional details about the encryption algorithm and key derivation are available in the rclone crypt File formats documentation.": "在推送拉取期间使用rclone crypt管理数据加密传输:

    推送:在传输前先加密文件,然后将加密的文件存储在远程系统上。使用加密密码加密盐值对文件进行加密。

    拉取:在传输之前,解密存储在远程系统上的文件。传输加密文件需要输入用于加密文件的相同加密密码加密盐值

    有关加密算法和密钥的其他详细信息,请参见rclone crypt 文件格式文档。", "Use --fast-list": "使用 --fast-list", "Use Apple-style Character Encoding": "使用 Apple-style 的字符编码", "Use Custom ACME Server Directory URI": "使用自定义 ACME 服务器目录 URI", "Use DHCP. Unset to manually configure a static IPv4 connection.": "使用 DHCP。未设置为手动配置静态 IPv4 连接。", + "Use Default Domain": "使用默认域", "Use FQDN for Logging": "使用全称域名进行日志记录", + "Use Preset": "使用预设", "Use Signature Version 2": "使用签名版本 2", + "Use Snapshot": "使用快照", "Use Sudo For ZFS Commands": "使用 Sudo 来运行 ZFS 命令", + "Use Syslog Only": "仅使用 Syslog", "Use all disk space": "使用所有的磁盘空间", "Use an exported encryption key file to unlock datasets.": "使用导出的加密密钥文件来解锁数据集。", "Use as Home Share": "用作家庭共享", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "使用压缩的 WRITE 记录使流更有效率。目标系统还必须支持压缩的 WRITE 记录。请参阅 zfs(8)。", "Use existing disk image": "使用已有磁盘镜像", "Use settings from a saved replication.": "使用已保存复制中的设置。", + "Use snapshot {snapshot} to roll {dataset} back to {datetime}?": "使用 {snapshot} 快照将 {dataset} 回滚到 {datetime}?", "Use the Log In to GMail button to obtain the credentials for this form.": "使用登录 GMail按钮获取此表单的凭据。", "Use the KMIP server to manage ZFS encrypted dataset keys. The key server stores, applies, and destroys encryption keys whenever an encrypted dataset is created, when an existing key is modified, an encrypted dataset is unlocked, or an encrypted dataset is removed. Unsetting this option leaves all encryption key management with the local system.": "使用 KMIP 服务器来管理 ZFS 加密的数据集密钥。每当创建加密数据集,修改现有密钥,解锁加密数据集或删除加密数据集时,密钥服务器都会存储,应用和销毁加密密钥。取消设置此选项会将所有加密密钥管理留在本地系统上。", "Use the encryption properties of the root dataset.": "使用根数据集的加密属性。", @@ -4948,15 +4775,23 @@ "Used by clients in PASV mode. A default of 0 means any port above 1023.": "由客户端在 PASV 模式下使用。默认值 0 表示 1023 以上的任何端口。", "Used to add additional proftpd(8) parameters.": "用于添加其他proftpd(8)参数。", "User": "用户", + "User API Keys": "用户 API 密钥", + "User Bind Path": "用户绑定路径", + "User CN": "用户 CN", "User Data Quota ": "用户数据配额", "User Distinguished Name (DN) to use for authentication.": "用于身份验证的用户可分辨名称(DN)。", + "User Domain": "用户域", "User Execute": "用户执行", "User Guide": "用户指南", + "User ID": "用户 ID", "User ID and Groups": "用户 ID 和组", "User ID to log in - optional - most swift systems use user and leave this blank (rclone documentation).": "登录的用户 ID - 可选 - 大多数 Swift System 使用用户并将此空白保留为(rclone 文档)。", + "User List": "用户列表", + "User Management": "用户管理", "User Name": "用户名", "User Obj": "用户对象", "User Object Quota": "用户对象配额", + "User Quota Manager": "用户配额管理器", "User Quotas": "用户配额", "User Read": "用户读取", "User Two-Factor Authentication Actions": "用户双因素身份验证操作", @@ -4969,12 +4804,16 @@ "User deleted": "用户已删除", "User domain - optional (rclone documentation).": "用户域-可选的(rclone 文档)。", "User is lacking permissions to access WebUI.": "用户缺少访问 WebUI 的权限。", + "User limit to Docker Hub has almost been reached or has already been reached. The installation process may stall as images cannot be pulled. The current limit will be renewed in {seconds}. The application can still be staged for installation.": "对 Docker Hub 的用户限制几乎已达到或已经达到。安装过程可能会停滞,因为无法拉取镜像。当前的限制将在 {seconds} 秒后更新。应用程序仍然可以准备安装。", + "User linked API Keys": "用户链接的API密钥", "User passed to camcontrol security -u to unlock SEDs": "用户传递给 camcontrol security -u 以解锁 SED", + "User password": "用户密码", "User password. Must be at least 12 and no more than 16 characters long.": "用户密码。必须至少有 12 个字符,最长不超过 16 个字符。", "User updated": "用户已更新", "User who controls the dataset. This user always has permissions to read or write the ACL and read or write attributes. Users created manually or imported from a directory service appear in the drop-down menu.": "控制数据集的用户。该用户始终有权读取或写入 ACL 以及读取或写入属性。手动创建或从目录服务导入的用户将显示在下拉菜单中。", "User-defined string used to decrypt the dataset. Can be used instead of an encryption key.
    WARNING: the passphrase is the only means to decrypt the information stored in this dataset. Be sure to create a memorable passphrase or physically secure the passphrase.": "用户定义的字符串,用于解密数据集。可以代替加密密钥使用。
    警告:密码短语是解密存储在此数据集中的信息的唯一方法。确保创建一个难忘的密码短语或在物理上安全的密码短语。", "Username": "用户名", + "Username associated with this API key.": "与此API密钥相关的用户名。", "Username for this service.": "此服务的用户名。", "Username of the SNMP User-based Security Model (USM) user.": "SNMP 的用户名基于用户的安全模型(USM)用户。", "Username on the remote system to log in via Web UI to setup connection.": "通过网页面板 登录远程系统所需要的用户名。", @@ -4986,6 +4825,7 @@ "Uses the SMB Service NetBIOS Name to advertise the server to WS-Discovery clients. This causes the computer appear in the Network Neighborhood of modern Windows OSes.": "使用 SMB 服务 NetBIOS 名称将服务器通告给 WS-Discovery 客户端。这会导致计算机出现在 Windows 操作系统的网上邻居中。", "Uses three disks for parity while all other disks store data. RAIDZ3 requires at least five disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "使用三个磁盘进行奇偶校验,而所有其他磁盘存储数据。RAIDZ3 需要至少五个磁盘。RAIDZ 是传统的 ZFS 数据保护方案。\n在管理较小的一组驱动器集时,选择 RAIDZ 而不是 dRAID,因为设置简单且磁盘使用情况可预测,是首选方案。", "Uses two disks for parity while all other disks store data. RAIDZ2 requires at least four disks. RAIDZ is a traditional ZFS data protection scheme. \nChoose RAIDZ over dRAID when managing a smaller set of drives, where simplicity of setup and predictable disk usage are primary considerations.": "使用两个磁盘进行奇偶校验,而所有其他磁盘存储数据。RAIDZ2 需要至少四个磁盘。RAIDZ 是传统的 ZFS 数据保护方案。\n在管理较小的一组驱动器集时,选择 RAIDZ 而不是 dRAID,因为设置简单且磁盘使用情况可预测,是首选方案。", + "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.": "使用第三方应用程序与 TrueNAS 结合,可以扩展其功能,超出标准 NAS 的使用范围,但这可能会引入数据丢失或系统中断等风险。

    \niXsystems 不保证应用程序的安全性或可靠性,这些应用程序可能不在支持合同的范围内。如果这些应用程序访问相同的数据或文件系统,核心 NAS 功能的问题可能会在不进行进一步调查的情况下关闭。", "Using CSR": "使用 CSR", "Using pool {name}": "使用池 {name}", "Using this option will replicate all snapshots which names match specified regular expression. The performance on the systems with large number of snapshots will be lower, as snapshots metadata needs to be read in order to determine snapshots creation order.": "使用此选项将复制名称与指定正则表达式匹配的所有快照。具有大量快照的系统的性能会降低,因为需要读取快照元数据以确定快照创建顺序。", @@ -4995,6 +4835,8 @@ "VDEVs have been created through manual disk selection. To view or edit your selections, press the \"Edit Manual Disk Selection\" button below. To start again with the automated disk selection, hit the \"Reset\" button.": "VDEVs 是通过手动磁盘选择创建的。要查看或编辑所选,点击下面的 \"编辑手动磁盘选择\" 按钮。若要重新开始自动磁盘选择,请点击 \"重设\" 按钮。", "VDEVs not assigned": "VDEVs 未分配", "VLAN ID": "虚拟局域网 ID", + "VLAN Settings": "VLAN 设置", + "VLAN Tag": "VLAN 标签", "VLAN interface": "VLAN 接口", "VM": "VM", "VM Device Read": "VM 设备读取", @@ -5004,19 +4846,31 @@ "VM Write": "VM 写入", "VM system time. Default is Local.": "虚拟机系统时间。默认为本地。", "VM updated successfully.": "VM 虚拟机更新成功", + "VMWare Sync": "VMware 同步", + "VMware Snapshot": "VMware 快照", "VMware Snapshot Integration": "VMware 快照集成", "VMware Snapshots": "VMware 快照", "VMware Sync": "虚拟机同步", + "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "VMware:扩展块大小 512 字节,启用 TPC,未启用 Xen 兼容模式,SSD 速度", + "Validate Certificates": "验证证书", "Validate Connection": "验证连接", + "Validate Remote Path": "验证远程路径", + "Validate effective ACL": "验证有效的 ACL", "Value": "值", "Value must be a number": "填写的值必须是一个数字", "Value must be a valid email address": "值必须是有效的电子邮件地址", "Value must be a {type}": "填写的值必须是一个 {type}", + "Value must be greater than Range Low": "值必须大于范围下限。", + "Value must be greater than {label}": "值必须大于 {label}", "Var": "Var", "Variable": "变量", "Variable deleted.": "变量已删除。", + "Variant": "变量", "Vdev": "Vdev", "Vdev successfully extended.": "Vdev 成功扩展。", + "Vdevs spans enclosure": "Vdevs 跨越机箱", + "Vendor ID": "供应商 ID", + "Verbose Logging": "详细日志记录", "Verify": "核实", "Verify Credential": "验证凭据", "Verify Email Address": "确认电子邮件地址", @@ -5025,17 +4879,39 @@ "Version to be upgraded to": "要升级到的版本", "Video, < 100ms latency": "视频,延迟小于 100 毫秒", "Video, < 10ms latency": "视频,延迟小于 10 毫秒", + "View All": "查看全部", "View All S.M.A.R.T. Tests": "查看所有 S.M.A.R.T. 测试", "View All Scrub Tasks": "查看所有数据巡检任务", + "View All Test Results": "查看所有测试结果", + "View Changelog": "查看变更日志", + "View Details": "查看详情", "View Disk Space Reports": "查看磁盘空间报告", "View Enclosure": "查看机柜", + "View Less": "查看较少", + "View Logs": "查看日志", + "View More": "查看更多", + "View Netdata": "查看 Netdata", + "View Release Notes": "查看发行说明", "View Reports": "查看报告", + "View logs": "查看日志", + "View/Download CSR": "查看/下载 CSR", + "View/Download Certificate": "查看/下载证书", + "View/Download Key": "查看/下载密钥", "Virtual CPUs": "虚拟处理器", + "Virtual IP Address (Failover Address)": "虚拟IP地址(故障转移地址)", + "Virtual Machine": "虚拟机", "Virtual Machines": "虚拟机", "Virtual machine created": "虚拟机已创建。", "Virtualization": "虚拟化", + "Virtualization Global Read": "虚拟化全局读取", + "Virtualization Global Write": "虚拟化全局写入", + "Virtualization Instance Write": "虚拟化实例写入", "Virtualization is not supported": "不支持虚拟化", + "Virtualization settings updated": "虚拟化设置已更新", "Visible": "可见", + "Voltage": "电压", + "Volume Mounts": "卷挂载", + "Volume Size": "卷大小", "Volume size cannot be zero.": "卷大小不能为零。", "WARNING": "警告", "WARNING: A failover will temporarily interrupt system services.": "警告:故障转移将暂时中断系统服务。", @@ -5044,16 +4920,32 @@ "WARNING: Exporting/disconnecting pool {pool}. Data on the pool will not be available after export. Data on the pool disks can be destroyed by setting the Destroy data option. Back up critical data before exporting/disconnecting the pool.": "警告:正在导出/断开池 {pool}。导出后将无法使用池中的数据。可以通过设置 Destroy data 选项来销毁池磁盘上的数据。导出/断开连接池之前备份关键数据。", "WARNING: Keys for all nested datasets with encryption applied will be downloaded.": "警告:将下载应用加密的所有嵌套数据集的密钥。", "WARNING: Only the key for the dataset in question will be downloaded.": "警告:只会下载相关数据集的密钥。", + "WARNING: These unknown processes will be terminated while exporting the pool.": "警告:在导出池时,这些未知进程将被终止。", + "Wait to start VM until SPICE client connects.": "等待 SPICE 客户端连接后再启动虚拟机。", "Waiting": "等待中", + "Waiting for Active TrueNAS controller to come up...": "等待活动的 TrueNAS 控制器启动…", + "Waiting for standby controller": "等待备用控制器", "Warning": "警告", "Warning!": "警告!", "Warning: Debugs may contain log files with personal information such as usernames or other identifying information about your system. Please review debugs and redact any sensitive information before sharing with external entities.": "警告:调试可能包含带有个人信息的日志文件,例如用户名或有关您的系统的其他识别信息。请在与其他人分享日志之前编辑任何敏感信息。", "Warning: iSCSI Target is already in use.
    ": "警告:iSCSI Target 已在使用中。
    ", + "Warning: {n} of {total} boot environments could not be deleted.": "警告: {n} 个启动环境无法被删除,共处理 {total} 个启动环境。", + "Warning: {n} of {total} docker images could not be deleted.": "警告:{n} 个 docker 镜像无法被删除,共处理 {total} 个 docker 镜像。", + "Warning: {n} of {total} snapshots could not be deleted.": "警告:{n} 个快照无法被删除,共处理 {total} 个快照。", + "Warnings": "警告", + "Watch List": "观察列表", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "在应用新的网络更改时,我们遇到了一个问题。很遗憾,在实施更改后,我们无法重新连接到系统。因此,我们恢复了之前的网络配置以确保继续连接。", + "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "我们已生成一个 Netdata 密码,并尝试在新标签页中自动登录您。", + "Weak Ciphers": "弱密码算法", + "Web Interface": "网页界面", + "Web Interface Address": "网页接口地址", "Web Interface HTTP -> HTTPS Redirect": "Web 界面 HTTP -> HTTPS 重定向", "Web Interface HTTP Port": "Web 界面 HTTP 端口", "Web Interface HTTPS Port": "Web 界面 HTTPS 端口", "Web Interface IPv4 Address": "Web 界面 IPv4 地址", "Web Interface IPv6 Address": "Web 界面 IPv6 地址", + "Web Interface Port": "Web 界面端口", + "Web Portal": "网页门户", "Web Shell Access": "Web Shell 访问", "WebDAV": "WebDAV", "WebDAV Service": "WebDAV 服务", @@ -5064,6 +4956,7 @@ "Wednesday": "周三", "Week(s)": "周", "Weeks": "周数", + "We’re unable to access the enclosure at the moment. Please ensure it’s connected properly and reload the page.": "我们目前无法访问机箱。请确保它连接正确,然后重新加载页面。", "What and When": "做什么和何时", "What and Where": "做什么和何地", "When": "什么时候", @@ -5081,15 +4974,26 @@ "When set, a local user is only allowed access to their home directory if they are a member of the wheel group.": "设置后,如果本地用户是wheel组的成员,则只允许访问其主目录。", "When set, rsync is run recursively, preserving symlinks, permissions, modification times, group, and special files. When run as root, owner, device files, and special files are also preserved. Equivalent to passing the flags -rlptgoD to rsync.": "设置后,rsync 递归运行,保留符号链接,权限,修改时间,组和特殊文件。当以 root 身份运行时,所有者,设备文件和特殊文件也将保留。等效于将标志 -rlptgoD 传递给 rsync。", "When set, the common name in the certificate must match the FQDN of the host.": "设置后,证书中的公用名必须与主机的全称域名匹配。", + "When set, the following text will be shown prior to showing login page to the user": "当设置时,以下文本将在向用户显示登录页面之前显示。", "When this checkbox is checked, domain is inherited from DHCP.": "选中此复选框时,域从 DHCP 继承。", "When using a proxy, enter the proxy information for the network in the format http://my.proxy.server:3128 or http://user:password@my.proxy.server:3128": "使用代理时,请以格式http://my.proxy.server:3128http://user:password@my.proxy.server:3128输入网络的代理信息。", "When using a virtual host, this is also used as the Kerberos principal name.": "使用虚拟主机时,它也用作 Kerberos 主体名称。", "Who": "谁", "Who this ACL entry applies to, shown as a Windows Security Identifier. Either a SID or a Domain and Name is required for this ACL.": "此 ACL 条目适用于谁,显示为 Windows 安全标识符。此 ACL 需要 SID名称。", "Who this ACL entry applies to, shown as a user name. Requires adding the user Domain.": "此 ACL 条目适用于谁,显示为用户名。需要添加用户。", + "Widget Category": "小部件分类", + "Widget Editor": "小部件编辑器", + "Widget Subtext": "小工具副文本", + "Widget Text": "小部件文本", + "Widget Title": "小部件标题", + "Widget Type": "小部件类型", + "Widget has errors": "小部件存在错误", + "Widget {slot} Settings": "小部件 {slot} 设置", + "Widgets": "小部件", "Width": "宽度", "Will be automatically destroyed at {datetime} by periodic snapshot task": "将在 {datetime} 被周期性快照任务自动销毁", "Will not be destroyed automatically": "不会自动销毁", + "Winbind NSS Info": "Winbind NSS 信息", "Window": "Window", "Windows": "Windows", "Windows (SMB) Shares": "Windows(SMB)共享", @@ -5114,6 +5018,7 @@ "Write Owner": "写所有者", "Wrong username or password. Please try again.": "用户名或密码错误,请重试。", "Xen initiator compat mode": "Xen Initiator 兼容模式", + "Xen: Extent block size 512b, TPC enabled, Xen compat mode enabled, SSD speed": "Xen: 扩展块大小 512 字节,启用 TPC,启用 Xen 兼容模式,SSD 速度", "Yandex": "Yandex", "Yandex Access Token.": "Yandex 访问令牌 。", "Year(s)": "年", @@ -5122,37 +5027,61 @@ "Yes I understand the risks": "是的,我了解风险", "Yesterday": "昨天", "You are trying to open:
    \n{url}

    \nBecause HTTP to HTTPS redirect is enabled in settings your browser will force HTTPS connection for this URL.
    \nThis may create issues if app does not support secure connections.
    \n
    \nYou can try opening app url in an incognito mode.
    \nAlternatively you can disable redirect in Settings, clear browser cache and try again.": "您正在尝试打开:
    \n{url}

    \n因为在设置中启用了 HTTP 到 HTTPS 重定向,您的浏览器将强制为此 URL 进行 HTTPS 连接。
    \n如果应用程序不支持安全连接,可能会出现问题。
    \n
    \n您可以尝试以隐身模式打开应用网址。
    \n您也可以在「设置」中禁用重定向,清除浏览器缓存并重试。", + "You are using an insecure connection. Switch to HTTPS for secure access.": "您正在使用不安全的连接。请切换到 HTTPS 以实现安全访问。", + "You can also vote for new features on our forum.": "您也可以在我们的论坛上为新功能投票 ", "You can join the TrueNAS Newsletter for monthly updates and latest developments.": "您可以加入 TrueNAS Newsletter 以获取每月更新和最新进展。", + "You can only lock a dataset if it was encrypted with a passphrase": "只有在数据集使用密码短语加密的情况下,您才能对其进行锁定。", + "You can search both for local groups as well as groups from Active Directory. Press ENTER to separate entries.": "您可以搜索本地组以及来自 Active Directory 的组。按 ENTER 键分隔条目。", "You can search both for local users as well as users from Active Directory.Press ENTER to separate entries.": "您既可以搜索本地用户,也可以搜索 Active Directory 中的用户。按 ENTER 键分隔条目。", "You have left the domain.": "您已离开域。", + "You have unsaved changes. Are you sure you want to close?": "您有未保存的更改。您确定要关闭吗?", "You may enter a specific IP address (e.g., 192.168.1.1) for individual access, or use an IP address with a subnet mask (e.g., 192.168.1.0/24) to define a range of addresses.": "您可以输入特定的 IP 地址(例如 192.168.1.1)进行单独访问,或使用带有子网掩码的 IP 地址(例如 192.168.1.0/24)来定义地址范围。", + "Your dashboard is currently empty!": "您的仪表盘当前是空的!", "ZFS": "ZFS", "ZFS Cache": "ZFS 缓存", "ZFS Deduplication": "ZFS 重复数据删除", "ZFS Encryption": "ZFS 加密", + "ZFS Errors": "ZFS 错误", "ZFS Filesystem": "ZFS 文件系统", "ZFS Health": "ZFS 健康", "ZFS Info": "ZFS 信息", "ZFS L2ARC read-cache that can be used with fast devices to accelerate read operations.": "ZFS L2ARC 读取缓存,可与快速设备一起使用以加速读取操作。", "ZFS LOG device that can improve speeds of synchronous writes. Optional write-cache that can be removed.": "可以提高同步写入速度的 ZFS LOG 设备。可以删除的可选写缓存。", + "ZFS Replication to another TrueNAS": "ZFS 复制任务到另一个TrueNAS", + "ZFS Reports": "ZFS 报告", + "ZFS Stats": "ZFS 统计信息", + "ZFS Utilization": "ZFS 使用情况", "ZFS pools must conform to strict naming conventions. Choose a memorable name.": "ZFS 池必须遵循严格的命名约定。选择一个能记住的名字。", "ZFS/SED keys synced between KMIP Server and TN database.": "ZFS/SED 密钥在 KMIP 服务器和 TN 数据库之间同步。", + "Zoom In": "放大", + "Zoom Out": "缩小", "Zvol": "Zvol", "Zvol Details": "Zvol 详细信息", + "Zvol Location": "Zvol 位置", + "Zvol Space Management": "Zvol 空间管理", "Zvol name": "Zvol 名称", "Zvol «{name}» updated.": "Zvol «{name}» 已更新。", "[Use fewer transactions in exchange for more RAM.](https://rclone.org/docs/#fast-list) This can also speed up or slow down the transfer.": "[使用更少的事务来换取更多的 RAM。](https://rclone.org/docs/\\#fast-list)这也可以加快或减慢传输速度。", + "by ancestor": "由上级提供", "dRAID is a ZFS feature that boosts resilver speed and load distribution. Due to fixed stripe width disk space efficiency may be substantially worse with small files. \nOpt for dRAID over RAID-Z when handling large-capacity drives and extensive disk environments for enhanced performance.": "dRAID 是一项 ZFS 功能,可提高一致性重建速度和负载分布。由于固定条带宽度,小文件的磁盘空间效率可能会大大降低。\n在处理大容量驱动器和广泛的磁盘环境时,请选择 dRAID 而不是 RAID-Z,以增强性能表现。", "dRAID1": "dRAID1", "dRAID2": "dRAID2", "dRAID3": "dRAID3", + "details": "细节", + "disk stats": "磁盘统计", + "disk writes": "磁盘写入", "everyone@": "每个人@", + "expires in {n, plural, one {# day} other {# days} }": "在 {n} 天后过期", "group@": "团队@", "gzip (default level, 6)": "gzip(默认级别,6)", "gzip-1 (fastest)": "gzip-1(最快)", "gzip-9 (maximum, slow)": "gzip-9(最大,慢)", "iSCSI": "iSCSI", + "iSCSI Extent": "iSCSI 扩展", "iSCSI Group": "iSCSI 组", + "iSCSI Initiator": "iSCSI 发起者", + "iSCSI Share": "iSCSI 共享", + "iSCSI Target": "iSCSI 目标", "iSCSI Wizard": "iSCSI 向导", "iSCSI listen port": "iSCSI 监听端口", "iSCSI supports multiple authentication methods that are used by the target to discover valid devices. None allows anonymous discovery while CHAP and Mutual CHAP require authentication.": "iSCSI 支持目标使用的多种身份验证方法来发现有效的设备。允许匿名发现,而 CHAP相互 CHAP 需要身份验证。", @@ -5163,31 +5092,103 @@ "lzjb (legacy, not recommended)": "lzjb(遗留,不推荐)", "mountd(8) bind port": "mountd(8) 绑定端口", "never ran": "从未运行", + "of": "/", + "on this enclosure.": "在这个机箱上。", + "or": "或", "owner@": "所有者@", "pCloud": "pCloud", + "pbkdf2iters": "pbkdf2iters ", "pigz (all rounder)": "pigz(全面)", "plzip (best compression)": "plzip(最佳压缩)", "readonly": "只读", "rpc.lockd(8) bind port": "rpc.lockd(8) 绑定端口", "rpc.statd(8) bind port": "rpc.statd(8) 绑定端口", + "standby": "待机", + "to another TrueNAS": "到另一个 TrueNAS", + "to cloud": "到云端", "total available": "总可用", "zle (runs of zeros)": "zle(一连串零)", "zstd (default level, 3)": "zstd(默认级别,3)", "zstd-5 (slow)": "zstd-5(慢)", "zstd-7 (very slow)": "zstd-7(很慢)", "zstd-fast (default level, 1)": "zstd-fast(默认级别,1)", + "{ n, plural, one {# snapshot} other {# snapshots} }": "{n} 个快照", + "{bits}/s": "{bits}/s", + "{checked} exporter: {name}": "{checked} 导出器: {name}", + "{comparator} (Contains)": "{comparator}(包含)", + "{comparator} (Ends With)": "{comparator}(以...结尾)", + "{comparator} (Equals)": "{comparator} (等于)", + "{comparator} (Greater Than or Equal To)": "{comparator}(大于或等于)", + "{comparator} (Greater Than)": "{comparator}(大于)", + "{comparator} (In)": "{comparator}(输入)", + "{comparator} (Less Than or Equal To)": "{comparator} (小于或等于)", + "{comparator} (Less Than)": "{comparator}(小于)", + "{comparator} (Not Ends With)": "{comparator}(不以...结尾)", + "{comparator} (Not Equals)": "{comparator}(不等于)", + "{comparator} (Not In)": "{comparator}(不在)", + "{comparator} (Not Starts With)": "{comparator}(不以...开始)", + "{comparator} (Range In)": "{comparator}(范围输入)", + "{comparator} (Range Not In)": "{comparator} (范围不在)", + "{comparator} (Starts With)": "{comparator}(以...开始)", + "{coreCount, plural, one {# core} other {# cores} }": "{coreCount} 个核心", "{count} snapshots found.": "找到 {count} 个快照。", "{cpuPercentage}% Avg. Usage": "{cpuPercentage}% 平均使用率", + "{days, plural, =1 {# day} other {# days}}": "{days} 天", "{duration} remaining": "{duration} 其它的", "{eligible} of {total} existing snapshots of dataset {targetDataset} would be replicated with this task.": "此任务将复制数据集 {targetDataset} 的 {total} 个现有快照中的 {eligible}。", + "{email} via {server}": "{email} 通过 {server}", + "{failedCount} of {allCount, plural, =1 {# task} other {# tasks}} failed": "{allCount} 中的 {failedCount} 个任务失败", "{field} is required": "{field} 是必需的", + "{hours, plural, =1 {# hour} other {# hours}}": "{hours} 小时", "{interfaceName} must start with \"{prefix}\" followed by an unique number": "{interfaceName} 必须从 \"{prefix}\" 开头,后跟一个唯一的编号", "{key} Key": "{key} 键", + "{license} contract, expires {date}": "{license} 合同,到期日期为 {date}", + "{minutes, plural, =1 {# minute} other {# minutes}}": "{minutes} 分钟", "{n, plural, =0 {No Errors} one {# Error} other {# Errors}}": "{n, plural, =0 {No Errors} 1 {# Error} other {# Errors}}", "{n, plural, =0 {No Tasks} one {# Task} other {# Tasks}} Configured": "{n, plural, =0 {No Tasks} 1 {# Task} other {# Tasks}} 配置", + "{n, plural, =0 {No errors} one {# Error} other {# Errors}}": "{n, plural, =0 {没有错误} other {# 个错误}}", + "{n, plural, =0 {No keys} =1 {# key} other {# keys}}": "{n, plural, =0 {没有密钥} other {# 个密钥}}", + "{n, plural, =0 {No open files} one {# open file} other {# open files}}": "{n, plural, =0 {没有打开的文件} other {# 个打开的文件}}", + "{n, plural, one {# CPU} other {# CPUs}}": "{n} 个 CPUs", + "{n, plural, one {# GPU} other {# GPUs}} isolated": "{n} 个隔离 GPUs", + "{n, plural, one {# boot environment} other {# boot environments}} has been deleted.": "{n} 个启动环境已被删除。", + "{n, plural, one {# core} other {# cores}}": "{n} 个核心", + "{n, plural, one {# docker image} other {# docker images}} has been deleted.": "{n} 个 docker 镜像已被删除。", + "{n, plural, one {# thread} other {# threads}}": "{n} 个线程", + "{n, plural, one {Failed Disk} other {Failed Disks}}": "{n} 块失败的磁盘", + "{n, plural, one {Pool in Enclosure} other {Pools in Enclosure}}": "{n} 个机箱中的池", + "{n, plural, one {SAS Expander} other {SAS Expanders}}": "{n} 个 SAS 扩展器", + "{n, plural, one {There is an active iSCSI connection.} other {There are # active iSCSI connections}}": "当前有 {n} 个活跃的iSCSI连接。", + "{name} Devices": "设备 {name}", + "{name} Sessions": "会话 {name}", + "{name} and {n, plural, one {# other pool} other {# other pools}} are not healthy.": "{name} 和 {n} 个池的状态不健康。", + "{nic} Address": "{nic} 地址", + "{n} (applies to descendants)": "{n}(适用于后代)", "{n} RPM": "{n} 转速", + "{n} from {dataset}": "{n} 来自 {dataset}", "{n}% Uploaded": "{n}% 已上传", + "{rate} RPM": "{rate} RPM", + "{seconds, plural, =1 {# second} other {# seconds}}": "{seconds} 秒", "{service} Service is not currently running. Start the service now?": "{service} 服务目前并未运行。现在启动它?", + "{service} Volume Mounts": "{service} 卷挂载", + "{size} {type} at {location}": "{size} {type} 挂载在 {location}", + "{tasks, plural, =1 {# receive task} other {# receive tasks}}": "{tasks} 个接收任务", + "{tasks, plural, =1 {# received task} other {# received tasks}} this week": "本周完成 {tasks} 个接收任务", + "{tasks, plural, =1 {# send task} other {# send tasks}}": "{tasks} 个发送任务", + "{tasks, plural, =1 {# sent task} other {# sent tasks}} this week": "本周完成 {tasks} 个发送任务", + "{temp}°C (All Cores)": "{temp}°C(所有核心)", + "{temp}°C (Core #{core})": "{temp}°C(核心 #{core})", + "{temp}°C ({coreCount} cores at {temp}°C)": "{temp}°C (核心 {coreCount} {temp}°C)", + "{threadCount, plural, one {# thread} other {# threads} }": "{threadCount} 个线程", + "{type} VDEVs": "{类型} VDEVs", + "{type} at {location}": "{type} 在 {location}", + "{type} widget does not support {size} size.": "{type} 小部件不支持 {size} 大小。", + "{type} widget is not supported.": "{type} 控件不受支持。", + "{type} | {vdevWidth} wide | ": "{type} | {vdevWidth} 盘 | ", + "{usage}% (All Threads)": "{usage}%(所有线程)", + "{usage}% (Thread #{thread})": "{usage}% (线程 #{thread})", + "{usage}% ({threadCount} threads at {usage}%)": "{usage}% (线程{threadCount}在 {usage}%)", "{used} of {total} ({used_pct})": "{used} 的 {total} ({used_pct})", - "{version} is available!": "{version} 可用!" + "{version} is available!": "{version} 可用!", + "{view} on {enclosure}": "在 {enclosure} 上查看 {view}" } \ No newline at end of file diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 136e203ad06..c3e4045a2e2 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1719,6 +1719,7 @@ "Host Passthrough": "", "Host name of second TrueNAS controller.": "", "Host name or IP address of the central key server.": "", + "Host ports are listed on the left and associated container ports are on the right. 0.0.0.0 on the host side represents binding to any IP address on the host.": "", "Host: {host}": "", "Hostname (TrueNAS Controller 2)": "", "Hostname Database": "",