diff --git a/src/app/helptext/data-protection/cloud-backup/cloud-backup.ts b/src/app/helptext/data-protection/cloud-backup/cloud-backup.ts index a41aca7ad38..501aa8ab394 100644 --- a/src/app/helptext/data-protection/cloud-backup/cloud-backup.ts +++ b/src/app/helptext/data-protection/cloud-backup/cloud-backup.ts @@ -39,6 +39,9 @@ export const helptextCloudBackup = { snapshot_placeholder: T('Take Snapshot'), snapshot_tooltip: T('Set to take a snapshot of the dataset before a PUSH.'), + absolute_paths_placeholder: T('Use Absolute Paths'), + absolute_paths_tooltip: T('Determines whether restic backup will contain absolute or relative paths'), + transfers_placeholder: T('Transfers'), transfers_tooltip: T('Number of simultaneous file transfers. Enter a\ number based on the available bandwidth and destination system\ diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.html b/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.html index b48964ea304..ba48bef6202 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.html +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.html @@ -118,6 +118,11 @@ [label]="helptext.snapshot_placeholder | translate" [tooltip]="helptext.snapshot_tooltip | translate" > + { pre_script: '', post_script: '', snapshot: false, + absolute_paths: true, include: [], exclude: [], transfer_setting: CloudsyncTransferSetting.Performance, @@ -122,6 +123,22 @@ describe('CloudBackupFormComponent', () => { loader = TestbedHarnessEnvironment.loader(spectator.fixture); }); + it('disables absolute paths when snapshot is enabled and resets to false', async () => { + const form = await loader.getHarness(IxFormHarness); + await form.fillForm({ + 'Use Absolute Paths': true, + }); + + await form.fillForm({ + 'Take Snapshot': true, + }); + + const useAbsolutePathsControl = await form.getControl('Use Absolute Paths'); + + expect(await useAbsolutePathsControl.isDisabled()).toBe(true); + expect(await useAbsolutePathsControl.getValue()).toBe(false); + }); + it('adds a new cloud backup task and creates a new bucket', async () => { const form = await loader.getHarness(IxFormHarness); await form.fillForm({ @@ -159,6 +176,7 @@ describe('CloudBackupFormComponent', () => { month: '*', }, snapshot: false, + absolute_paths: false, transfer_setting: CloudsyncTransferSetting.Default, }]); expect(chainedComponentRef.close).toHaveBeenCalledWith({ response: existingTask, error: null }); @@ -166,6 +184,7 @@ describe('CloudBackupFormComponent', () => { it('adds a new cloud backup task when new form is saved', async () => { const form = await loader.getHarness(IxFormHarness); + await form.fillForm({ 'Source Path': '/mnt/my pool 2', Name: 'New Cloud Backup Task', @@ -175,7 +194,8 @@ describe('CloudBackupFormComponent', () => { Folder: '/', Enabled: false, Bucket: 'bucket1', - 'Take Snapshot': true, + 'Take Snapshot': false, + 'Use Absolute Paths': true, Exclude: ['/test'], 'Transfer Setting': 'Fast Storage', }); @@ -203,7 +223,8 @@ describe('CloudBackupFormComponent', () => { minute: '0', month: '*', }, - snapshot: true, + snapshot: false, + absolute_paths: true, transfer_setting: CloudsyncTransferSetting.FastStorage, }]); expect(chainedComponentRef.close).toHaveBeenCalledWith({ response: existingTask, error: null }); @@ -239,6 +260,7 @@ describe('CloudBackupFormComponent', () => { Schedule: 'Weekly (0 0 * * sun)  On Sundays at 00:00 (12:00 AM)', 'Source Path': '/mnt/my pool', 'Take Snapshot': false, + 'Use Absolute Paths': true, 'Transfer Setting': 'Performance', }); }); @@ -252,6 +274,11 @@ describe('CloudBackupFormComponent', () => { 'Source Path': '/mnt/path1', }); + const useAbsolutePathsControl = await form.getControl('Use Absolute Paths'); + + expect(await useAbsolutePathsControl.isDisabled()).toBe(true); + expect(await useAbsolutePathsControl.getValue()).toBe(true); + const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' })); await saveButton.click(); diff --git a/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.ts b/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.ts index 59f0a8767df..aadbebd7235 100644 --- a/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.ts +++ b/src/app/pages/data-protection/cloud-backup/cloud-backup-form/cloud-backup-form.component.ts @@ -103,6 +103,7 @@ export class CloudBackupFormComponent implements OnInit { post_script: [''], description: ['', [Validators.required]], snapshot: [false], + absolute_paths: [false], transfer_setting: [CloudsyncTransferSetting.Default], args: [''], enabled: [true], @@ -152,49 +153,15 @@ export class CloudBackupFormComponent implements OnInit { this.setFileNodeProvider(); this.setBucketNodeProvider(); - this.form.controls.credentials.valueChanges - .pipe(untilDestroyed(this)) - .subscribe((credentialId) => { - if (credentialId !== this.editingTask?.credentials?.id) { - this.form.controls.bucket.patchValue(''); - } - - this.form.controls.bucket_input.disable(); - - if (credentialId) { - this.form.controls.folder.enable(); - this.form.controls.bucket.enable(); - this.loadBucketOptions(credentialId); - } else { - this.form.controls.folder.disable(); - this.form.controls.bucket.disable(); - } - }); - - this.form.controls.bucket.valueChanges - .pipe(untilDestroyed(this)) - .subscribe((value) => { - if (value === newOption) { - this.form.controls.bucket_input.patchValue(''); - this.form.controls.bucket_input.enable(); - } else { - this.form.controls.bucket_input.disable(); - } - this.setBucketNodeProvider(); - }); - - this.form.controls.bucket_input.valueChanges - .pipe( - debounceTime(300), - distinctUntilChanged(), - untilDestroyed(this), - ) - .subscribe(() => { - this.setBucketNodeProvider(); - }); + this.listenForCredentialsChanges(); + this.listenForBucketChanges(); + this.listenForBucketInputChanges(); if (this.editingTask) { this.setTaskForEdit(); + this.form.controls.absolute_paths.disable(); + } else { + this.listenForTakeSnapshotChanges(); } } @@ -307,6 +274,66 @@ export class CloudBackupFormComponent implements OnInit { }); } + private listenForCredentialsChanges(): void { + this.form.controls.credentials.valueChanges + .pipe(untilDestroyed(this)) + .subscribe((credentialId) => { + if (credentialId !== this.editingTask?.credentials?.id) { + this.form.controls.bucket.patchValue(''); + } + + this.form.controls.bucket_input.disable(); + + if (credentialId) { + this.form.controls.folder.enable(); + this.form.controls.bucket.enable(); + this.loadBucketOptions(credentialId); + } else { + this.form.controls.folder.disable(); + this.form.controls.bucket.disable(); + } + }); + } + + private listenForBucketChanges(): void { + this.form.controls.bucket.valueChanges + .pipe(untilDestroyed(this)) + .subscribe((value) => { + if (value === newOption) { + this.form.controls.bucket_input.patchValue(''); + this.form.controls.bucket_input.enable(); + } else { + this.form.controls.bucket_input.disable(); + } + this.setBucketNodeProvider(); + }); + } + + private listenForBucketInputChanges(): void { + this.form.controls.bucket_input.valueChanges + .pipe( + debounceTime(300), + distinctUntilChanged(), + untilDestroyed(this), + ) + .subscribe(() => { + this.setBucketNodeProvider(); + }); + } + + private listenForTakeSnapshotChanges(): void { + this.form.controls.snapshot.valueChanges + .pipe(untilDestroyed(this)) + .subscribe((takeSnapshot) => { + if (takeSnapshot) { + this.form.controls.absolute_paths.setValue(false); + this.form.controls.absolute_paths.disable(); + } else { + this.form.controls.absolute_paths.enable(); + } + }); + } + private prepareData(formValue: FormValue): CloudBackupUpdate { const attributes: CloudBackupUpdate['attributes'] = { folder: formValue.folder, diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 71edc4aad79..3be7d19fb42 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -988,6 +988,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -4078,6 +4079,7 @@ "Updating Instance": "", "Updating custom app": "", "Updating settings": "", + "Use Absolute Paths": "", "Use Debug": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", "Use settings from a saved replication.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 98c56bba73d..76c7d3b088a 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -971,6 +971,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -3519,6 +3520,7 @@ "Usable Capacity": "", "Usage Collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use Debug": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 15995ba700c..6f0bec84288 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -336,6 +336,7 @@ "Detach disk {name}?": "", "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", "Device was added": "", @@ -1507,6 +1508,7 @@ "Updating settings": "", "Upgrade Release Notes": "", "Usage Collection": "", + "Use Absolute Paths": "", "Use Custom ACME Server Directory URI": "", "Use Debug": "", "Use Default Domain": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index ef50e084a06..ae3dd31b96b 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1182,6 +1182,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -4374,6 +4375,7 @@ "Upsmon will wait up to this many seconds in master mode for the slaves to disconnect during a shutdown situation.": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index f1116a15602..f026c243672 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -1,6 +1,5 @@ { "": "", - "\"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.": "Les \"heures de mise sous tension\" indiquent le nombre d'heures écoulées depuis que le disque est sous tension. Le \"nombre d'heures de mise sous tension\" est le nombre d'heures écoulées depuis chaque test.", "({n, plural, =1 {# widget} other {# widgets}})": "", "...": "", "1m Average": "", @@ -38,7 +37,6 @@ "Apps Write": "", "Arbitrary Text": "", "Archs": "", - "Are you sure you want to remove the extent association with {extent}?": "Êtes-vous sûr de vouloir supprimer l'association de l'étendue avec {extent} ?", "Associate": "", "Audit": "", "Audit Entry": "", @@ -56,7 +54,6 @@ "Available Host Memory": "", "Backblaze B2": "", "Backup": "", - "Backup Config": "Sauvegarde de la configuration", "Backup Credential": "", "Bandwidth": "", "Base": "", @@ -175,11 +172,7 @@ "Delete App": "", "Delete Item": "", "Delete raw file": "", - "Deleted {n, plural, one {# snapshot} other {# snapshots} }": "Supprimé {n, plural, one {# instantané} other {# instantanés} }", - "Descriptor": "Descripteur", - "Device deleted": "Périphérique supprimé", - "Device is readonly and cannot be removed.": "Le périphérique est en lecture seule et ne peut pas être supprimé.", - "Device was added": "Le périphérique a été ajouté", + "Determines whether restic backup will contain absolute or relative paths": "", "Directory Mask": "", "Directory Permissions": "", "Directory Service Read": "", @@ -195,7 +188,6 @@ "Disks on {enclosure}": "", "Dismiss": "", "Dispersal Strategy": "", - "Display Login": "Afficher la connexion", "Distributed Hot Spares": "", "Docker Image": "", "Docker Write": "", @@ -226,7 +218,6 @@ "Encryption Protocol": "", "Encryption Root": "", "Encryption Standard": "", - "End session": "Terminer la session", "Environment Variable": "", "Environment Variables": "", "Eula": "", @@ -274,7 +265,6 @@ "Flags Basic": "", "Flash Identify Light": "", "Forums": "", - "Four quarter widgets in two by two grid": "Quatre quarts de widgets dans une grille deux par deux", "FreeBSD": "", "Front": "", "Full Admin": "", @@ -284,8 +274,6 @@ "Global Settings": "", "Global Target Configuration": "", "Gmail": "", - "Go To Dataset": "Aller au dataset", - "Go to Jobs Page": "Aller à la page des tâches", "Google Cloud Storage": "", "Google Drive": "", "Google Photos": "", @@ -304,7 +292,6 @@ "Hardware Change": "", "Has Allow List": "", "Healthy": "", - "Hide Job": "Cacher la tâche", "Hide Password": "", "Home Widgets": "", "Host Model": "", @@ -365,7 +352,6 @@ "Instance stopped": "", "Instance updated": "", "Instances": "", - "Instances you create will automatically appear here.": "Les instances que vous créez apparaissent automatiquement ici.", "Invisible": "", "Ipmi": "", "Isolated GPU PCI Ids": "", @@ -404,9 +390,6 @@ "Label": "", "Lan": "", "Layout": "", - "Leave empty for default values": "Laisser vide pour les valeurs par défaut", - "Leave empty to allow all host CPUs to be used.": "Laisser vide pour permettre l'utilisation de tous les processeurs de l'hôte.", - "Leave empty to not limit instance memory.": "Laisser vide pour ne pas limiter la mémoire de l'instance.", "Leaving": "", "Licensed Serials": "", "Light status is unknown.": "", @@ -417,10 +400,8 @@ "Link Aggregation Protocol": "", "Linked Service": "", "Linux": "", - "List of files and directories to exclude from backup.
Separate entries by pressing Enter. See restic exclude patterns for more details about the --exclude option.": "Liste des fichiers et répertoires à exclure de la sauvegarde.
Séparez les entrées en appuyant sur Entrée. Voir modèles d'exclusion restic pour plus de détails sur l'option --exclude.", "Locks": "", "Logging in...": "", - "Login Banner": "Bannière de connexion", "MAC Address": "", "MAC VLAN": "", "MOTD": "", @@ -434,8 +415,6 @@ "Maproot Group": "", "Maproot User": "", "Masquerade Address": "", - "Max Concurrent Calls": "Limite maximale d'appels simultanés", - "Max concurrent calls limit reached.\n There are more than 20 calls queued.\n See queued calls in the browser's console logs": "Limite maximale d'appels simultanés atteinte.\n Il y a plus de 20 appels en file d'attente.\n Voir les appels en file d'attente dans les journaux de la console du navigateur", "Maximize Dispersal": "", "Maximum Passive Port": "", "Mega": "", @@ -887,6 +866,7 @@ "Unsaved Changes": "", "Usage Collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Debug": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", @@ -1011,6 +991,7 @@ " as of {dateTime}": " à compter de {dateTime}", " bytes.": " octets.", " seconds.": " secondes.", + "\"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.": "Les \"heures de mise sous tension\" indiquent le nombre d'heures écoulées depuis que le disque est sous tension. Le \"nombre d'heures de mise sous tension\" est le nombre d'heures écoulées depuis chaque test.", "% of all cores": "% de tous les cœurs", "'Hosts Allow' or 'Hosts Deny' has been set": "'Hosts Allow' ou 'Hosts Deny' a été défini.", "'Hosts Allow' or 'Hosts Deny' has been updated": "'Hosts Allow' ou 'Hosts Deny' a été mis à jour.", @@ -1469,6 +1450,7 @@ "Are you sure you want to delete user \"{user}\"?": "Voulez-vous vraiment supprimer l'utilisateur \"{user}\" ?", "Are you sure you want to delete {item}?": "Êtes-vous sûr de vouloir supprimer {item} ?", "Are you sure you want to deregister TrueCommand Cloud Service?": "Êtes-vous sûr de vouloir annuler le service TrueCommand Cloud ?", + "Are you sure you want to remove the extent association with {extent}?": "Êtes-vous sûr de vouloir supprimer l'association de l'étendue avec {extent} ?", "Are you sure you want to restore the default set of widgets?": "Êtes-vous sûr de vouloir restaurer l’ensemble de widgets par défaut ?", "Are you sure you want to start over?": "Êtes-vous sûr de vouloir recommencer ?", "Are you sure you want to stop connecting to the TrueCommand Cloud Service?": "Êtes-vous sûr d’arrêter de vous connecter au service Cloud TrueCommand ?", @@ -1545,6 +1527,7 @@ "Backend": "Backend", "Backend used to map Windows security identifiers (SIDs) to UNIX UIDs and GIDs. To configure the selected backend, click EDIT IDMAP.": "Backend utilisé pour mapper les identifiants de sécurité Windows (SID) aux UID et GID UNIX. Pour configurer le backend sélectionné, cliquez sur EDIT IDMAP.", "Background (lowest)": "Fond (plus basse)", + "Backup Config": "Sauvegarde de la configuration", "Backup Credentials": "Informations d'identification de sauvegarde", "Backup Tasks": "Tâches de sauvegarde", "Backup to Cloud or another TrueNAS via links below": "Sauvegarde vers le Cloud ou un autre TrueNAS via les liens ci-dessous", @@ -2131,6 +2114,7 @@ "Delete zvol {name}": "Supprimer zvol {name}", "Delete {n, plural, one {# user} other {# users}} with this primary group?": "Supprimer {n, plural, one {# utilisateur} other {# utilisateurs}} avec ce groupe primaire ?", "Delete {name}?": "Supprimer {name}?", + "Deleted {n, plural, one {# snapshot} other {# snapshots} }": "Supprimé {n, plural, one {# instantané} other {# instantanés} }", "Deleting exporter": "Suppression de l'exportateur", "Deleting interfaces while HA is enabled is not allowed.": "La suppression d'interfaces lorsque HA est activé n'est pas autorisée.", "Deleting...": "Suppression...", @@ -2149,6 +2133,7 @@ "Descriptive identifier for this certificate authority.": "Identifiant descriptif de cette autorité de certification.", "Descriptive identifier for this certificate.": "Identifiant descriptif de ce certificat.", "Descriptive name for the replication.": "Nom descriptif de la réplication.", + "Descriptor": "Descripteur", "Desired – encrypt transport if supported by client during session negotiation": "Souhaité – chiffrer le transport si pris en charge par le client pendant la négociation de session", "Destination": "Destination", "Destination Dataset Read-only Policy": "Politique de lecture seule du dataset de destination", @@ -2173,9 +2158,12 @@ "Device Name": "Nom de l'appareil", "Device Order": "Ordre du périphérique", "Device added": "Péripéhrique ajouté", + "Device deleted": "Périphérique supprimé", + "Device is readonly and cannot be removed.": "Le périphérique est en lecture seule et ne peut pas être supprimé.", "Device names of each disk being edited.": "Noms de périphérique de chaque disque en cours d'édition.", "Device removed": "Périphérique supprimé", "Device updated": "péripéhrique mis à jour", + "Device was added": "Le périphérique a été ajouté", "Device «{disk}» has been detached.": "Le périphérique «{disk}» a été détaché.", "Device «{name}» was successfully attached.": "L'appareil «{name}» a été connecté avec succès.", "Device/File": "Périphérique/Fichier", @@ -2232,6 +2220,7 @@ "Dismiss All Alerts": "Rejeter toutes les alertes", "Dismissed": "Rejeté", "Display": "Afficher", + "Display Login": "Afficher la connexion", "Display Port": "Port d’affichage", "Display console messages in real time at the bottom of the browser.": "Affichage des messages de la console en temps réel en bas du navigateur.", "Distinguished Name": "Nom distinctif", @@ -2435,6 +2424,7 @@ "Encryption key that can unlock the dataset.": "Clé de chiffrement qui peut déverrouiller le dataset.", "End": "Fin", "End User License Agreement - TrueNAS": "Contrat de licence d'utilisateur final - TrueNAS", + "End session": "Terminer la session", "End time for the replication task. A replication that is already in progress can continue to run past this time.": "Heure de fin de la tâche de réplication. Une réplication qui est déjà en cours peut se poursuivre au-delà de cette période.", "Endpoint": "Point de terminaison", "Endpoint Type": "Type Endpoint", @@ -2693,6 +2683,7 @@ "Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "Forcer à l'aide de Signature version 2 pour signer les requêtes API. Définissez cette option uniquement si votre fournisseur AWS ne prend pas en charge les signatures de la version 4 par défaut.", "Forces the addition of the NTP server, even if it is currently unreachable.": "Force l'ajout du serveur NTP , même s'il est actuellement inaccessible.", "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.": "Forcer l'autre contrôleur TrueNAS à devenir actif nécessite un basculement. Cela interrompra temporairement les services système. Après confirmation, Enregistrer et basculer doit être cliqué sur l'écran précédent.", + "Four quarter widgets in two by two grid": "Quatre quarts de widgets dans une grille deux par deux", "Free": "Libre", "Free RAM": "RAM disponible", "Free Space": "Espace disponible", @@ -2747,6 +2738,7 @@ "Global password to unlock SEDs.": "Mot de passe global pour déverrouiller les SED.", "Gmail credentials have been applied.": "Les informations d'identification Gmail ont été appliquées.", "Go Back": "Retour", + "Go To Dataset": "Aller au dataset", "Go To Encryption Root": "Accéder à la racine du chiffrement", "Go To Network Settings": "Accéder aux paramètres réseau", "Go back to the previous form": "Revenir au formulaire précédent", @@ -2755,6 +2747,7 @@ "Go to Datasets": "Accéder aux datasets", "Go to Documentation": "Accéder à la documentation", "Go to HA settings": "Aller aux réglages HA", + "Go to Jobs Page": "Aller à la page des tâches", "Go to Storage": "Accéder au stockage", "Group": "Groupe", "Group Configuration": "Configuration des groupes", @@ -2799,6 +2792,7 @@ "Hidden columns are not available for sorting or filtering. Hiding columns improves performance.": "Les colonnes masquées ne sont pas disponibles pour le tri ou le filtrage. Le masquage des colonnes améliore les performances.", "Hide": "Cacher", "Hide Extra Columns": "Cacher les colonnes supplémentaires", + "Hide Job": "Cacher la tâche", "Hide Standard Error": "Masquer l'erreur standard", "Hide Standard Output": "Masquer la sortie standard", "Hide Stderr": "Masquer Stderr", @@ -2974,6 +2968,7 @@ "Installed Apps": "Applications installées", "Installer image file": "Fichier image de l'installateur", "Installing": "Installation", + "Instances you create will automatically appear here.": "Les instances que vous créez apparaissent automatiquement ici.", "Integrate Snapshots with VMware": "Intégrer des snapshots avec VMware", "Interface": "Interface", "Interface Settings": "Paramètres de l'interface", @@ -3084,7 +3079,10 @@ "Leave at the default of 512 unless the initiator requires a different block size.": "Laisser la valeur par défaut de 512 à moins que l'initiateur n'ait besoin d'une taille de bloc différente.", "Leave blank to allow all or enter a list of initiator hostnames. Separate entries by pressing Enter.": "Laissez vide pour autoriser tout le monde ou entrez une liste de noms d'hôtes initiateurs. Séparez les entrées en appuyant sur la touche Entrée.", "Leave empty for default (OpsGenie API)": "Laisser vide pour défaut (API OpsGenie)", + "Leave empty for default values": "Laisser vide pour les valeurs par défaut", "Leave empty or select number of existing portal to use.": "Laissez vide ou sélectionnez le numéro du portail existant à utiliser.", + "Leave empty to allow all host CPUs to be used.": "Laisser vide pour permettre l'utilisation de tous les processeurs de l'hôte.", + "Leave empty to not limit instance memory.": "Laisser vide pour ne pas limiter la mémoire de l'instance.", "Leaving the domain requires sufficient privileges. Enter your credentials below.": "Quitter le domaine nécessite des privilèges suffisants. Entrez vos informations d'identification ci-dessous.", "Legacy": "Héritage", "Legacy AFP Compatibility": "Compatibilité AFP héritée", @@ -3108,6 +3106,7 @@ "Link aggregation interface": "Interface d'agrégation de liens", "List any existing dataset properties to remove from the replicated files.": "Répertoriez toutes les propriétés existantes du dataset à supprimer depuis les fichiers répliqués.", "List of chat IDs": "Liste des IDs du chat", + "List of files and directories to exclude from backup.
Separate entries by pressing Enter. See restic exclude patterns for more details about the --exclude option.": "Liste des fichiers et répertoires à exclure de la sauvegarde.
Séparez les entrées en appuyant sur Entrée. Voir modèles d'exclusion restic pour plus de détails sur l'option --exclude.", "List of files and directories to exclude from sync.
Separate entries by pressing Enter. See rclone filtering for more details about the --exclude option.": "Liste des fichiers et répertoires à exclure de la synchronisation.
Séparez les entrées en appuyant sur la touche Entrée. Voir le filtrage rclone pour plus de détails sur l'option --exclude.", "List of groups for which to generate audit messages. Keep this list empty to Watch All.": "Liste des groupes pour lesquels générer des messages d'audit. Gardez cette liste vide pour tout regarder.", "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.": "Liste des groupes à ignorer lors de l'audit. Si un conflit survient entre la liste de surveillance et la liste d'ignorés (en fonction de l'appartenance à un groupe d'utilisateurs), alors la liste de surveillance aura la priorité et les opérations seront auditées.", @@ -3156,6 +3155,7 @@ "Logging Level": "Niveau de journalisation", "Logical Block Size": "Taille du bloc logique", "Login Attempts": "Tentatives de connexion", + "Login Banner": "Bannière de connexion", "Login To Jira To Submit": "Connectez-vous à Jira pour soumettre", "Login error. Please try again.": "Erreur de connexion. Veuillez réessayer.", "Login was canceled. Please try again if you want to connect your account.": "La connexion a été annulée. Veuillez réessayer si vous souhaitez connecter votre compte.", @@ -3231,7 +3231,9 @@ "Matching the fixed size of data, as in a database, may result in better performance.": "Faire correspondre la taille fixe des données, comme dans une base de données, peut se traduire par une meilleure performance.", "Mathematical instruction sets that determine how plaintext is converted into ciphertext. See Advanced Encryption Standard (AES) for more details.": "Des ensembles d'instructions mathématiques qui déterminent comment le texte en clair est converti en texte chiffré. Voir la norme de cryptage avancée (AES) pour plus de détails.", "Mattermost username.": "Nom d'utilisateur Mattermost.", + "Max Concurrent Calls": "Limite maximale d'appels simultanés", "Max Poll": "Poll Max", + "Max concurrent calls limit reached.\n There are more than 20 calls queued.\n See queued calls in the browser's console logs": "Limite maximale d'appels simultanés atteinte.\n Il y a plus de 20 appels en file d'attente.\n Voir les appels en file d'attente dans les journaux de la console du navigateur", "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.": "L'imbrication maximale du dataset dans ZFS est limitée à 50. Nous sommes déjà à cette limite dans le chemin du dataset parent. Il n'est plus possible de créer de datasets imbriqués sous ce chemin.", "Maximize Enclosure Dispersal": "Maximiser la dispersion de l'enceinte", "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.": "Maximum Transmission Unit, la plus grande unité de données de protocole qui peut être communiquée. La taille de la plus grande MTU utilisable varie en fonction des interfaces et des équipements du réseau. 1500 et 9000 sont les tailles standard des MTU Ethernet. Si vous laissez le champ vide, la valeur par défaut est de 1500.", @@ -5285,4 +5287,4 @@ "{used} of {total} ({used_pct})": "{used} de {total} ({used_pct})", "{version} is available!": "{version} est disponible !", "{view} on {enclosure}": "{view} sur {enclosure}" -} +} \ No newline at end of file diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index d77aaf5f493..6c36bd61a96 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -90,6 +90,7 @@ "Delete Item": "", "Delete Snapshot": "", "Deleted {n, plural, one {# snapshot} other {# snapshots} }": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", "Device was added": "", @@ -303,6 +304,7 @@ "Updating Instance": "", "Updating custom app": "", "Updating settings": "", + "Use Absolute Paths": "", "Use Debug": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 36599655772..d76b8a491c9 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -1178,6 +1178,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -3774,6 +3775,7 @@ "Updating Instance": "", "Updating custom app": "", "Updating settings": "", + "Use Absolute Paths": "", "Use Custom ACME Server Directory URI": "", "Use Debug": "", "Use compressed WRITE records to make the stream more efficient. The destination system must also support compressed WRITE records. See zfs(8).": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index e03f0cd3c72..fc8f883c8df 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -1134,6 +1134,7 @@ "Details for {vmDevice}": "", "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -4326,6 +4327,7 @@ "Usage Collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index a3cfe6df513..c4fa484b125 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -915,6 +915,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4384,6 +4385,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index bfa6e8e35d4..9c5cf1f4171 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -1324,6 +1324,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4793,6 +4794,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 7430810f1e0..a9f20406395 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -31,6 +31,7 @@ "Delete App": "", "Delete Item": "", "Deleted {n, plural, one {# snapshot} other {# snapshots} }": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", "Device was added": "", @@ -129,6 +130,7 @@ "UPS Service": "", "USB Devices": "", "Updating Instance": "", + "Use Absolute Paths": "", "Use Debug": "", "Use this option to log more detailed information about SMB.": "", "Virtualization Image Read": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 40ae6d36575..ed712ff0df9 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -1277,6 +1277,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4722,6 +4723,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 80976ff7df7..1515145ac94 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -1272,6 +1272,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4740,6 +4741,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 840d1ecafab..8033dce3ad0 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -640,6 +640,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", "Device names of each disk being edited.": "", @@ -3051,6 +3052,7 @@ "Usage Collection": "", "Usage collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index d719c302c1e..d14631eb05b 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -837,6 +837,7 @@ "Details for": "", "Details for {vmDevice}": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device Name": "", "Device added": "", @@ -3154,6 +3155,7 @@ "Uploading and Applying Config": "", "Usage Collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use Debug": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 3691b889f31..9020ea36d13 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -562,6 +562,7 @@ "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.": "", "Details for {vmDevice}": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device added": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", @@ -1919,6 +1920,7 @@ "Uploading and Applying Config": "", "Usage Collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Custom ACME Server Directory URI": "", "Use Debug": "", "Use Default Domain": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index cfcea1be776..f7554ded4df 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -1330,6 +1330,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device": "", "Device Busy": "", "Device ID": "", @@ -4799,6 +4800,7 @@ "Usage collection": "", "Usages": "", "Use --fast-list": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 414fb8a36ff..8e6bb7c8db9 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -55,6 +55,7 @@ "Delete App": "", "Delete Item": "", "Deleted {n, plural, one {# snapshot} other {# snapshots} }": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device deleted": "", "Device is readonly and cannot be removed.": "", "Device was added": "", @@ -224,6 +225,7 @@ "Update successful. Please restart for the update to take effect. Restart now?": "", "Updating Instance": "", "Updating settings": "", + "Use Absolute Paths": "", "Use Debug": "", "Use this option to log more detailed information about SMB.": "", "User API Keys": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index b58835f51f8..66c200d164b 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -1112,6 +1112,7 @@ "Determine how chmod behaves when adjusting file ACLs. See the zfs(8) aclmode property.

Passthrough only updates ACL entries that are related to the file or directory mode.

Restricted does not allow chmod to make changes to files or directories with a non-trivial ACL. An ACL is trivial if it can be fully expressed as a file mode without losing any access rules. Setting the ACL Mode to Restricted is typically used to optimize a dataset for SMB sharing, but can require further optimizations. For example, configuring an rsync task with this dataset could require adding --no-perms in the task Auxiliary Parameters field.": "", "Determine whether this share name is included when browsing shares. Home shares are only visible to the owner regardless of this setting.": "", "Determines the outgoing and incoming traffic ports.
LACP is the recommended protocol if the network switch is capable of active LACP.
Failover is the default protocol choice and should only be used if the network switch does not support active LACP.": "", + "Determines whether restic backup will contain absolute or relative paths": "", "Device Busy": "", "Device ID": "", "Device Name": "", @@ -4070,6 +4071,7 @@ "Usable Capacity": "", "Usage Collection": "", "Usages": "", + "Use Absolute Paths": "", "Use Apple-style Character Encoding": "", "Use Custom ACME Server Directory URI": "", "Use DHCP. Unset to manually configure a static IPv4 connection.": "",