fix(i18n): correct translation of the duplicate command in zh-CN

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.
This commit is contained in:
Yang Borui 2026-06-19 23:55:04 +08:00 committed by GitHub
parent 4bc1698e93
commit 9f59c35257
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@
"undo": "撤销",
"redo": "重做",
"selectAll": "全选",
"duplicate": "复制",
"duplicate": "克隆",
"delete": "删除",
"group": "编组",
"ungroup": "取消编组",