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:
parent
4bc1698e93
commit
9f59c35257
|
|
@ -49,7 +49,7 @@
|
|||
"undo": "撤销",
|
||||
"redo": "重做",
|
||||
"selectAll": "全选",
|
||||
"duplicate": "复制",
|
||||
"duplicate": "克隆",
|
||||
"delete": "删除",
|
||||
"group": "编组",
|
||||
"ungroup": "取消编组",
|
||||
|
|
|
|||
Loading…
Reference in a new issue