-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsemantics.json
70 lines (70 loc) · 1.45 KB
/
semantics.json
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
[
{
"name": "sample",
"type": "boolean",
"label": "Sample"
},
{
"name": "behaviour",
"type": "group",
"importance": "low",
"label": "Behavioural settings",
"fields": [
{
"name": "sample",
"type": "boolean",
"label": "Sample behaviour"
},
{
"name": "dummy",
"type": "boolean",
"label": "Dummy",
"widget": "none"
}
]
},
{
"name": "l10n",
"type": "group",
"label": "User interface",
"common": true,
"fields": [
{
"name": "sample",
"type": "text",
"label": "Sample entry for visible user interface strings",
"description": "This is just a sample entry for visible user interface strings.",
"default": "Sample l10n"
},
{
"name": "dummy",
"type": "text",
"label": "Dummy",
"default": "Dummy",
"widget": "none"
}
]
},
{
"name": "a11y",
"type": "group",
"label": "Accessibility texts",
"common": true,
"fields": [
{
"name": "sample",
"type": "text",
"label": "Sample entry for accessibility strings",
"description": "This is just a sample entry for accessibility strings.",
"default": "Sample a11y"
},
{
"name": "dummy",
"type": "text",
"label": "Dummy",
"default": "Dummy",
"widget": "none"
}
]
}
]