-
Notifications
You must be signed in to change notification settings - Fork 0
/
ms-United-Kingdom.ts
40 lines (39 loc) · 1.65 KB
/
ms-United-Kingdom.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
/* eslint-disable sort-keys */
import { ILayoutItem } from '../../core/interfaces/layout.interfaces';
/**
* Layout: United Kingdom
*/
export default <ILayoutItem>{
name: `ms-UnitedKingdom`,
lang: [`en-uk`],
layout: {
default: [
`\` 1 2 3 4 5 6 7 8 9 0 - = {bksp}`,
`{tab} q w e r t y u i o p [ ] #`,
`a s d f g h j k l ; ' {enter}`,
`{shift} \u005c z x c v b n m , . / {shift}`,
`{alt} {space} {alt}`,
],
shift: [
`\u00ac ! \u0022 \u00a3 $ % ^ & * ( ) _ + {bksp}`,
`{tab} Q W E R T Y U I O P { } ~`,
`A S D F G H J K L : @ {enter}`,
`{shift} | Z X C V B N M < > / {shift}`,
`{alt} {space} {alt}`,
],
alt: [
`\u00a6 {empty} {empty} {empty} \u20ac {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {bksp}`,
`{tab} {empty} {empty} \u00e9 {empty} {empty} {empty} \u00fa \u00ed \u00f3 {empty} {empty} {empty} {empty}`,
`\u00e1 {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {enter}`,
`{shift} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {shift}`,
`{alt} {space} {alt}`,
],
altShift: [
`{empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {bksp}`,
`{tab} {empty} {empty} \u00c9 {empty} {empty} {empty} \u00da \u00cd \u00d3 {empty} {empty} {empty} {empty}`,
`\u00c1 {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {enter}`,
`{shift} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {empty} {shift}`,
`{alt} {space} {alt}`,
],
},
};