feat: 更新保留模式的国际化支持 rustfs/s3-rustfs#449

This commit is contained in:
马登山
2025-06-09 09:48:19 +08:00
parent 546e07020a
commit 458bebda88
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -123,8 +123,8 @@
class="w-[500px]">
<n-form-item :label="t('Retention Mode')" path="retentionMode" class="flex-auto">
<n-radio-group v-model:value="retentionMode">
<n-radio value="COMPLIANCE">Compliance</n-radio>
<n-radio value="GOVERNANCE">Governance</n-radio>
<n-radio value="COMPLIANCE">{{ t("COMPLIANCE") }}</n-radio>
<n-radio value="GOVERNANCE">{{ t("GOVERNANCE") }}</n-radio>
</n-radio-group>
</n-form-item>