From 07fb96d2b292fe7afe2de93278de0dff052a734d Mon Sep 17 00:00:00 2001 From: jingrow Date: Sun, 2 Nov 2025 15:25:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0pagetype=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=A1=B5=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/jingrow/frontend/src/core/pagetype/GenericListPage.vue | 2 +- apps/jingrow/frontend/src/locales/zh-CN.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/jingrow/frontend/src/core/pagetype/GenericListPage.vue b/apps/jingrow/frontend/src/core/pagetype/GenericListPage.vue index c7366fd..9ec5a8f 100644 --- a/apps/jingrow/frontend/src/core/pagetype/GenericListPage.vue +++ b/apps/jingrow/frontend/src/core/pagetype/GenericListPage.vue @@ -996,7 +996,7 @@ async function handleDeleteSelected() { dialog.warning({ title: t('Delete Selected Records'), - content: t(`Are you sure you want to delete ${selectedKeys.value.length} selected record(s)? This action cannot be undone.`), + content: `${t('Are you sure you want to delete')} ${selectedKeys.value.length} ${t('selected record(s)? This action cannot be undone.')}`, positiveText: t('Delete'), negativeText: t('Cancel'), onPositiveClick: async () => { diff --git a/apps/jingrow/frontend/src/locales/zh-CN.json b/apps/jingrow/frontend/src/locales/zh-CN.json index d496462..a72558e 100644 --- a/apps/jingrow/frontend/src/locales/zh-CN.json +++ b/apps/jingrow/frontend/src/locales/zh-CN.json @@ -53,12 +53,16 @@ "Create Node": "创建节点", "Delete Selected": "删除选中", + "Delete Selected Records": "删除选中的记录", "Confirm Delete": "确认删除", "Are you sure you want to delete the selected nodes? This action cannot be undone.": "确定要删除选中的节点吗?此操作无法撤销。", "Are you sure you want to delete the selected agents? This action cannot be undone.": "确定要删除选中的智能体吗?此操作无法撤销。", "Delete": "删除", "Delete Record": "删除记录", "Are you sure you want to delete this record? This action cannot be undone.": "确定要删除这条记录吗?此操作无法撤销。", + "Are you sure you want to delete": "确定要删除", + "selected record(s)? This action cannot be undone.": "条选中的记录吗?此操作无法撤销。", + "Are you sure you want to delete {count} selected record(s)? This action cannot be undone.": "确定要删除 {count} 条选中的记录吗?此操作无法撤销。", "Cannot delete record without name": "无法删除没有名称的记录", "Cancel": "取消", "Clear All": "清空全部",