-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwo_prefs_two_grps.json
More file actions
61 lines (61 loc) · 1.78 KB
/
two_prefs_two_grps.json
File metadata and controls
61 lines (61 loc) · 1.78 KB
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
{
"title" : "my_pane_title",
"groups" : [
{
"title" : "my_group_title",
"preferences" : [
{
"name" : "my_dropdown_pref",
"type" : "integer",
"enum" : [1,2,3,4,5],
"default" : 5,
"control" : "select",
"title" : "my_dropdown_title",
"description" : "my_dropdown_description",
"labels" : [
"my_dropdown_one",
"my_dropdown_two",
"my_dropdown_three",
"my_dropdown_four",
"my_dropdown_five"
]
}
]
},
{
"title" : "my_other_group_title",
"preferences" : [
{
"name" : "my_pref",
"type" : "array",
"items" : "location",
"control" : "locationList",
"title" : "my_location_title",
"description" : "my_location_description",
"dialogTitle" : "my_location_picker_title",
"dialogPrompt" : "my_location_picker_prompt",
"buttonTitle" : "my_location_picker_button"
}
]
}
],
"strings" : {
"en" : {
"my_pane_title" : "My Settings",
"my_group_title" : "Integers",
"my_dropdown_title" : "Favorite number",
"my_dropdown_description" : "Choose a number from one to five",
"my_dropdown_one" : "One",
"my_dropdown_two" : "Two",
"my_dropdown_three" : "Three",
"my_dropdown_four" : "Four",
"my_dropdown_five" : "Five",
"my_other_group_title" : "Locations",
"my_location_title" : "Favorite cities",
"my_location_description" : "Pick your favorite cities",
"my_location_picker_title" : "Find a new city",
"my_location_picker_prompt" : "Start typing a city name to search",
"my_location_picker_button" : "Add new city..."
}
}
}