-
Notifications
You must be signed in to change notification settings - Fork 0
/
en-us.ts
114 lines (113 loc) · 2.91 KB
/
en-us.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import { KeyboardLayout } from './type';
export const Layout: KeyboardLayout = {
Backspace: { value: 'backspace' },
Tab: { value: 'tab' },
NumLock: { value: 'NumLock' },
Enter: { value: 'enter' },
ShiftLeft: { value: 'shift' },
ShiftRight: { value: 'shift' },
ControlLeft: { value: 'ctrl' },
AltLeft: { value: 'alt' },
Escape: { value: 'escape' },
Space: { value: 'space' },
ArrowLeft: { value: 'left' },
ArrowUp: { value: 'up' },
ArrowRight: { value: 'right' },
ArrowDown: { value: 'down' },
Digit0: { value: '0' },
Digit1: { value: '1' },
Digit2: { value: '2' },
Digit3: { value: '3' },
Digit4: { value: '4' },
Digit5: { value: '5' },
Digit6: { value: '6' },
Digit7: { value: '7' },
Digit8: { value: '8' },
Digit9: { value: '9' },
Semicolon: { value: ';' },
Backquote: { value: '`' },
Equal: { value: '=' },
Minus: { value: '-' },
KeyA: { value: 'a' },
KeyB: { value: 'b' },
KeyC: { value: 'c' },
KeyD: { value: 'd' },
KeyE: { value: 'e' },
KeyF: { value: 'f' },
KeyG: { value: 'g' },
KeyH: { value: 'h' },
KeyI: { value: 'i' },
KeyJ: { value: 'j' },
KeyK: { value: 'k' },
KeyL: { value: 'l' },
KeyM: { value: 'm' },
KeyN: { value: 'n' },
KeyO: { value: 'o' },
KeyP: { value: 'p' },
KeyQ: { value: 'q' },
KeyR: { value: 'r' },
KeyS: { value: 's' },
KeyT: { value: 't' },
KeyU: { value: 'u' },
KeyV: { value: 'v' },
KeyW: { value: 'w' },
KeyX: { value: 'x' },
KeyY: { value: 'y' },
KeyZ: { value: 'z' },
MetaLeft: { value: 'meta' },
MetaRight: { value: 'meta' },
Numpad0: { value: '0' },
Numpad1: { value: '1' },
Numpad2: { value: '2' },
Numpad3: { value: '3' },
Numpad4: { value: '4' },
Numpad5: { value: '5' },
Numpad6: { value: '6' },
Numpad7: { value: '7' },
Numpad8: { value: '8' },
Numpad9: { value: '9' },
F1: { value: 'F1' },
F2: { value: 'F2' },
F3: { value: 'F3' },
F4: { value: 'F4' },
F5: { value: 'F5' },
F6: { value: 'F6' },
F7: { value: 'F7' },
F8: { value: 'F8' },
F9: { value: 'F9' },
F10: { value: 'F10' },
F11: { value: 'F11' },
F12: { value: 'F12' },
F13: { value: 'F13' },
F14: { value: 'F14' },
F15: { value: 'F15' },
F16: { value: 'F16' },
F17: { value: 'F17' },
F18: { value: 'F18' },
F19: { value: 'F19' },
F20: { value: 'F20' },
F21: { value: 'F21' },
F22: { value: 'F22' },
F23: { value: 'F23' },
F24: { value: 'F24' },
F25: { value: 'F25' },
F26: { value: 'F26' },
F27: { value: 'F27' },
F28: { value: 'F28' },
F29: { value: 'F29' },
F30: { value: 'F30' },
F31: { value: 'F31' },
F32: { value: 'F32' },
BracketLeft: { value: '[' },
BracketRight: { value: ']' },
Backslash: { value: '\\' },
Quote: { value: "'" },
Comma: { value: ',' },
Period: { value: '.' },
Slash: { value: '/' },
IntlRo: { value: '/' },
OSLeft: { value: 'meta' },
AltRight: { value: 'alt' },
IntlBackslash: { value: '\\' },
CapsLock: { value: 'caps' },
};