We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5312f50 commit 073f4efCopy full SHA for 073f4ef
resources/locales/zh-CN.json
@@ -12,6 +12,7 @@
12
"Copy Command#!terminal.11": "复制命令",
13
"Cut#!menu.cut": "剪切",
14
"Copy#!menu.copy": "复制",
15
+ "Copy#!menu.copy.darwin": "拷贝",
16
"Paste#!menu.paste": "粘贴",
17
"Look Up \"${0}\"#!menu.lookup": "查询“${0}”",
18
"Clear#!menu.clear": "清除",
src/renderer/utils/frame.ts
@@ -37,8 +37,9 @@ export function createContextMenu() {
37
}
38
const editingItems: MenuItem[] = [
39
{
40
- label: 'Copy#!menu.copy',
41
- accelerator: 'CmdOrCtrl+C',
+ label: process.platform === 'darwin'
+ ? 'Copy#!menu.copy.darwin'
42
+ : 'Copy#!menu.copy',
43
role: 'copy',
44
},
45
0 commit comments