diff --git a/src/app/helptext/storage/volumes/datasets/dataset-form.ts b/src/app/helptext/storage/volumes/datasets/dataset-form.ts
index a1d9c1ed63c..8cae59c759f 100644
--- a/src/app/helptext/storage/volumes/datasets/dataset-form.ts
+++ b/src/app/helptext/storage/volumes/datasets/dataset-form.ts
@@ -58,10 +58,13 @@ export const helptextDatasetForm = {
a one-way process. Deduplicated data cannot be undeduplicated!.'),
dataset_form_deduplication_warning: T('This feature is memory-intensive and permanently affects how the data is stored. It is recommended to be very familiar with the benefits and drawbacks of deduplication before activating this feature.'),
- deduplicationWarning: T(`The default "Checksum" value for datasets with deduplication used to be SHA256.
+ deduplicationWarning: T('Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.'),
+ deduplicationChecksumWarning: T(`The default "Checksum" value for datasets with deduplication used to be SHA256.
Our testing has shown that SHA512 performs better for such datasets.
We've changed the checksum value from SHA256 to SHA512. You can change it back in "Advanced Options".`),
+ deduplicationChecksumInlineWarning: T('For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.'),
+
dataset_form_readonly_tooltip: T('Set to prevent the dataset from being modified.'),
dataset_form_exec_tooltip: T('Set whether processes can be executed from within this dataset.'),
diff --git a/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.html b/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.html
index a4eba1a892f..38f832f4dac 100644
--- a/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.html
+++ b/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.html
@@ -40,13 +40,6 @@
>
}
- @if (hasDedupWarning) {
-
- }
-
+ @if (hasChecksumWarning) {
+
+ }
+
{
});
describe('ZFS Deduplication', () => {
- it('shows a warning when checksum is not SHA-512 and deduplication is enabled', async () => {
+ it('shows a warning when deduplication is enabled', async () => {
spectator.setInput({
parent: parentDataset,
});
@@ -403,8 +403,6 @@ describe('OtherOptionsSectionComponent', () => {
message: helptextDatasetForm.deduplicationWarning,
}),
);
- expect(spectator.query('.dedup-warning')).toExist();
- expect(spectator.component.form.value.checksum).toBe(DatasetChecksum.Sha512);
});
it('does not show deduplication field on Enterprise systems that do not have a dedup license', async () => {
diff --git a/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.ts b/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.ts
index 7efb9885a9a..803f160adac 100644
--- a/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.ts
+++ b/src/app/pages/datasets/components/dataset-form/sections/other-options-section/other-options-section.component.ts
@@ -73,7 +73,6 @@ export class OtherOptionsSectionComponent implements OnInit, OnChanges {
@Output() formValidityChange = new EventEmitter();
hasDeduplication = false;
- hasDedupWarning = false;
hasRecordsizeWarning = false;
wasDedupChecksumWarningShown = false;
minimumRecommendedRecordsize = '128K' as DatasetRecordSize;
@@ -150,6 +149,11 @@ export class OtherOptionsSectionComponent implements OnInit, OnChanges {
private datasetFormService: DatasetFormService,
) {}
+ get hasChecksumWarning(): boolean {
+ return this.form.value.checksum === DatasetChecksum.Sha256
+ && this.form.value.deduplication !== DeduplicationSetting.Off;
+ }
+
ngOnChanges(changes: IxSimpleChanges): void {
if (changes.datasetPreset?.currentValue) {
this.setUpDatasetPresetSelect();
@@ -159,10 +163,13 @@ export class OtherOptionsSectionComponent implements OnInit, OnChanges {
return;
}
- this.setUpDedupWarnings();
this.setUpRecordsizeWarning();
this.setSelectOptions();
+
this.setFormValues();
+
+ this.checkDedupChecksum();
+ this.setUpDedupWarning();
this.setUpAclTypeWarning();
this.updateAclMode();
this.disableCaseSensitivityOnEdit();
@@ -367,26 +374,50 @@ export class OtherOptionsSectionComponent implements OnInit, OnChanges {
}
}
- private setUpDedupWarnings(): void {
+ private setUpDedupWarning(): void {
this.form.controls.deduplication.valueChanges.pipe(untilDestroyed(this)).subscribe((dedup) => {
if (!dedup || [DeduplicationSetting.Off, inherit].includes(dedup)) {
- this.hasDedupWarning = false;
this.cdr.markForCheck();
return;
}
- this.hasDedupWarning = true;
- this.cdr.markForCheck();
+ this.dialogService.confirm({
+ title: this.translate.instant('Warning'),
+ message: this.translate.instant(helptextDatasetForm.deduplicationWarning),
+ hideCheckbox: true,
+ })
+ .pipe(untilDestroyed(this))
+ .subscribe((confirmed) => {
+ if (confirmed) {
+ this.checkDedupChecksum();
+ } else {
+ this.form.patchValue({
+ deduplication: inherit,
+ });
+ }
+ });
+ });
+ }
- const checksum = this.form.controls.checksum.value;
- if (this.wasDedupChecksumWarningShown || !checksum || checksum === DatasetChecksum.Sha512) {
- return;
- }
+ private checkDedupChecksum(): void {
+ const dedup = this.form.controls.deduplication.value;
+ if (!dedup || [DeduplicationSetting.Off, inherit].includes(dedup)) {
+ return;
+ }
- this.showDedupChecksumWarning();
- this.form.patchValue({
- checksum: DatasetChecksum.Sha512,
- });
+ const checksum = this.form.controls.checksum.value;
+ if (
+ this.wasDedupChecksumWarningShown
+ || !checksum
+ || checksum === DatasetChecksum.Sha512
+ || checksum !== DatasetChecksum.Sha256
+ ) {
+ return;
+ }
+
+ this.showDedupChecksumWarning();
+ this.form.patchValue({
+ checksum: DatasetChecksum.Sha512,
});
}
@@ -407,7 +438,7 @@ export class OtherOptionsSectionComponent implements OnInit, OnChanges {
hideCancel: true,
title: this.translate.instant('Default Checksum Warning'),
hideCheckbox: true,
- message: this.translate.instant(helptextDatasetForm.deduplicationWarning),
+ message: this.translate.instant(helptextDatasetForm.deduplicationChecksumWarning),
buttonText: this.translate.instant('OK'),
});
}
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index f0041e2c7f9..d5ca48e569d 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -1092,6 +1092,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1693,6 +1694,7 @@
"Flash Identify Light": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force Clear": "",
"Force Delete": "",
"Force Delete?": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index 5e825a01981..1d2abd0943d 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -840,6 +840,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Checksum Warning": "",
"Default Route": "",
"Default TrueNAS controller": "",
@@ -1285,6 +1286,7 @@
"Follow Symlinks": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index bc83701bd27..7bbceea009a 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -615,6 +615,7 @@
"Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Default widgets restored": "",
"Default – follow upstream / TrueNAS default": "",
@@ -932,6 +933,7 @@
"Flash Identify Light": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force deletion of dataset {datasetName}?": "",
"Force unmount": "",
"Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index d55f7b020fd..f8fa6ac6052 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -1043,6 +1043,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1709,6 +1710,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force Clear": "",
"Force Delete": "",
"Force Delete?": "",
@@ -5077,4 +5079,4 @@
"ZFS Deduplication": "Desduplicación ZFS",
"[Use fewer transactions in exchange for more RAM.](https://rclone.org/docs/#fast-list) This can also speed up or slow down the transfer.": "[Utiliza menos transacciones para conseguir más RAM.](https://rclone.org/docs/\\#fast-list) Esto tambien podría acelerar o ralentizar la transferencia.",
"total available": "total disponible"
-}
+}
\ No newline at end of file
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index f9804b1a3ec..77794d570dc 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -152,6 +152,7 @@
"Dataset Write": "",
"Dataset ZFS Encryption": "",
"Datasets": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Defect": "",
"Define the target as *iSCSI*, *Fibre Channel*, or *Both*.": "",
@@ -236,6 +237,7 @@
"Flags Advanced": "",
"Flags Basic": "",
"Flash Identify Light": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Forums": "",
"Four quarter widgets in two by two grid": "",
"FreeBSD": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index dce2b73340c..177bd7c3d39 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -21,6 +21,7 @@
"Container Shell": "",
"Creating custom app": "",
"Custom Config": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default widgets restored": "",
"Define the target as *iSCSI*, *Fibre Channel*, or *Both*.": "",
"Delete Snapshot": "",
@@ -31,6 +32,7 @@
"Ensure that ACL permissions are validated for all users and groups. Disabling this may allow configurations that do not provide the intended access. It is recommended to keep this option enabled.": "",
"Error when loading similar apps.": "",
"Exited": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"General Settings": "",
"Install NDIVIA Drivers": "",
"Languages other than English are provided by the community and may be incomplete. Learn how to contribute.": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index 4731daf5095..d3b4d7e2f1e 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -1019,6 +1019,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default Checksum Warning": "",
"Default Gateway": "",
@@ -1681,6 +1682,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 035170c0474..7fdfc335b03 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -972,6 +972,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Checksum Warning": "",
"Default Route": "",
"Default TrueNAS controller": "",
@@ -1599,6 +1600,7 @@
"Follow Symlinks": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index 1af6f1aad06..5a3b34b4a63 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -732,6 +732,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1447,6 +1448,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 15c59995906..677f64ba0f2 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -1152,6 +1152,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1867,6 +1868,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index 620fed4db5e..184e25f14fe 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -304,6 +304,7 @@
"Dataset is shared via iSCSI": "",
"Dataset rolled back to snapshot {name}.": "",
"Dataset {name} was created.": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Default widgets restored": "",
"Default – follow upstream / TrueNAS default": "",
@@ -443,6 +444,7 @@
"Flags Advanced": "",
"Flags Basic": "",
"Flash Identify Light": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Forums": "",
"Four quarter widgets in two by two grid": "",
"Free RAM": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index 1e2349a0bcd..c4ce0ffe881 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -1105,6 +1105,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1820,6 +1821,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index 8fba86af396..891252a7f7b 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -1099,6 +1099,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1814,6 +1815,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index d2df757a460..5fd18ed4822 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -496,6 +496,7 @@
"Debug": "",
"Debug could not be downloaded.": "",
"Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Default is UTF-8 which supports all characters in all languages.": "",
"Default widgets restored": "",
@@ -918,6 +919,7 @@
"Flags Basic": "",
"Flash Identify Light": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force Clear": "",
"Force Delete": "",
"Force Delete?": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index 7f9a87daf8c..49f773ef7a3 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -700,6 +700,7 @@
"De-duplication tables are stored on this special VDEV type. These VDEVs must be sized to X GiB for each X TiB of general storage.": "",
"Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "",
"Dedup": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Checksum Warning": "",
"Default Route": "",
"Default TrueNAS controller": "",
@@ -1102,6 +1103,7 @@
"Flash Identify Light": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force Delete": "",
"Force delete": "",
"Force deletion of dataset {datasetName}?": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index f5def0d3d16..0828ebe2639 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -450,6 +450,7 @@
"Dataset «{name}» updated.": "",
"De-duplication tables are stored on this special VDEV type. These VDEVs must be sized to X GiB for each X TiB of general storage.": "",
"Debugs may contain log files with personal information such as usernames or other identifying information about your system.": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Default widgets restored": "",
"Default – follow upstream / TrueNAS default": "",
@@ -662,6 +663,7 @@
"Flags Basic": "",
"Flash Identify Light": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "",
"Forums": "",
"Four quarter widgets in two by two grid": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index 92f9a866e6c..1dc35499810 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -1158,6 +1158,7 @@
"Decipher Only": "",
"Dedup": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1873,6 +1874,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force": "",
"Force Clear": "",
"Force Delete": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index d5f5d8988ef..941e6c46598 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -314,6 +314,7 @@
"Dataset is shared via iSCSI": "",
"Dataset rolled back to snapshot {name}.": "",
"Dataset {name} was created.": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default Route": "",
"Default widgets restored": "",
"Default – follow upstream / TrueNAS default": "",
@@ -457,6 +458,7 @@
"Flags Advanced": "",
"Flags Basic": "",
"Flash Identify Light": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force using Signature Version 2 to sign API requests. Set this only if your AWS provider does not support default version 4 signatures.": "",
"Forums": "",
"Four quarter widgets in two by two grid": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index a89cf05888f..7a8ec8f1db4 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -951,6 +951,7 @@
"Dec": "",
"Decipher Only": "",
"Dedup VDEVs": "",
+ "Deduplication is experimental in 24.10 and not fully supported. When enabled, data is permanently stored with this memory-intensive method and cannot be undone. Take extreme caution and ensure you have adequate data backups before enabling this feature.": "",
"Default": "",
"Default ACL Options": "",
"Default Checksum Warning": "",
@@ -1548,6 +1549,7 @@
"Follow symlinks and copy the items to which they link.": "",
"Following container images are available to update:\n": "",
"For example if you set this value to 5, system will renew certificates that expire in 5 days or less.": "",
+ "For performance reasons SHA512 is recommended over SHA256 for datasets with deduplication enabled.": "",
"Force Delete": "",
"Force Stop After Timeout": "",
"Force delete": "",