-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall_controls.json
More file actions
93 lines (93 loc) · 2.96 KB
/
all_controls.json
File metadata and controls
93 lines (93 loc) · 2.96 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
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
{
"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"
]
},
{
"name": "my_gender",
"type": "boolean",
"default": true,
"control": "toggle",
"title": "my_gender_title",
"description": "my_gender_description",
"labels": [
"my_gender_male",
"my_gender_female"
]
},
{
"name" : "my_home_city",
"type" : "array",
"items" : "location",
"control" : "location",
"title" : "my_home_city_title",
"description" : "my_home_city_description",
"dialogTitle" : "my_home_city_picker_title",
"dialogPrompt" : "my_home_city_picker_prompt",
"buttonTitle" : "my_home_city_picker_button"
}
]
},
{
"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_gender_title" : "Gender",
"my_gender_description" : "Specify your gender",
"my_gender_male" : "Male",
"my_gender_female" : "Female",
"my_home_city_title" : "Home City",
"my_home_city_description" : "Where were you from?",
"my_home_city_picker_title" : "Where were you from?",
"my_home_city_picker_prompt" : "Start typing in the field below to search for a city ",
"my_home_city_picker_button" : "Cancel",
"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..."
}
}
}