From 2c072c0ed62ab336285f24c66a003fe7f5229587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=B5=B7?= <7836246@qq.com> Date: Fri, 27 Mar 2026 16:44:14 +0800 Subject: [PATCH] fix(i18n): add missing `bucket` column translation key for Sora S3 storage settings The `admin.settings.soraS3.columns.bucket` key was used in DataManagementView.vue but missing from both en.ts and zh.ts locale files, causing the raw translation key to be displayed as a column header instead of the localized text. --- frontend/src/i18n/locales/en.ts | 1 + frontend/src/i18n/locales/zh.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/i18n/locales/en.ts b/frontend/src/i18n/locales/en.ts index 07a0e634..0b863590 100644 --- a/frontend/src/i18n/locales/en.ts +++ b/frontend/src/i18n/locales/en.ts @@ -4378,6 +4378,7 @@ export default { provider: 'Type', active: 'Active', endpoint: 'Endpoint', + bucket: 'Bucket', storagePath: 'Storage Path', capacityUsage: 'Capacity / Used', capacityUnlimited: 'Unlimited', diff --git a/frontend/src/i18n/locales/zh.ts b/frontend/src/i18n/locales/zh.ts index a6b6e8b5..a824849b 100644 --- a/frontend/src/i18n/locales/zh.ts +++ b/frontend/src/i18n/locales/zh.ts @@ -4542,6 +4542,7 @@ export default { provider: '存储类型', active: '生效状态', endpoint: '端点', + bucket: '存储桶', storagePath: '存储路径', capacityUsage: '容量 / 已用', capacityUnlimited: '无限制',