There was an error while loading. Please reload this page.
1 parent 87e8fcf commit 5c0a577Copy full SHA for 5c0a577
3 files changed
packages/neuron-wallet/src/locales/en.ts
@@ -26,6 +26,7 @@ export default {
26
cut: 'Cut',
27
copy: 'Copy',
28
paste: 'Paste',
29
+ selectall: 'Select All',
30
},
31
view: {
32
label: 'View',
packages/neuron-wallet/src/locales/zh.ts
cut: '剪切',
copy: '复制',
paste: '粘贴',
+ selectall: '全部选中',
label: '视图',
packages/neuron-wallet/src/utils/application-menu.ts
@@ -125,6 +125,11 @@ export const editMenuItem: MenuItemConstructorOptions = {
125
label: i18n.t('application-menu.edit.paste'),
126
role: 'paste',
127
128
+ separator,
129
+ {
130
+ label: i18n.t('application-menu.edit.selectall'),
131
+ role: 'selectall',
132
+ },
133
],
134
}
135
0 commit comments