From 9f59c35257b786761f007bb33da21de6536d6ffa Mon Sep 17 00:00:00 2001 From: Yang Borui <87511694+HelloAIXIAOJI@users.noreply.github.com> Date: Fri, 19 Jun 2026 23:55:04 +0800 Subject: [PATCH] fix(i18n): correct translation of the duplicate command in zh-CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `commands.duplicate` action was previously translated as "复制" (Copy) in `zh-CN.json`, identically to the native `menu.copy` action. This caused the context menu to display two identical "复制" options, creating confusion about which action copies to the clipboard and which one clones the object directly on the canvas. This commit updates the translation of `commands.duplicate` to "克隆" (Clone) to accurately reflect its behavior and clearly distinguish it from the native clipboard copy command. --- packages/vue/src/locales/zh-CN.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue/src/locales/zh-CN.json b/packages/vue/src/locales/zh-CN.json index 43eeff47a..9d4749c32 100644 --- a/packages/vue/src/locales/zh-CN.json +++ b/packages/vue/src/locales/zh-CN.json @@ -49,7 +49,7 @@ "undo": "撤销", "redo": "重做", "selectAll": "全选", - "duplicate": "复制", + "duplicate": "克隆", "delete": "删除", "group": "编组", "ungroup": "取消编组",