-
Notifications
You must be signed in to change notification settings - Fork 26
/
semantics.json
140 lines (140 loc) · 3.34 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[
{
"name": "description",
"label": "Description",
"importance": "medium",
"type": "text",
"widget": "html",
"description": "Description of the goals page.",
"default": "Insert the goals that you have chosen to work with.",
"enterMode": "p",
"tags": [
"strong",
"em",
"u",
"a",
"ul",
"ol",
"h2",
"h3",
"hr",
"pre",
"code"
],
"optional": true
},
{
"name": "defineGoalText",
"label": "Define goal link text",
"importance": "low",
"type": "text",
"description": "Text that will be displayed on the button for creating a new goal.",
"default": "Create a new goal"
},
{
"name": "definedGoalLabel",
"label": "Label for a user defined goal",
"importance": "low",
"type": "text",
"description": "Text that will be displayed as label on a user created goal.",
"default": "User defined goal"
},
{
"name": "defineGoalPlaceholder",
"label": "Define goal placeholder",
"importance": "low",
"type": "text",
"description": "Text that will be displayed as a placeholder when creating a new goal.",
"default": "Write here..."
},
{
"name": "goalsAddedText",
"label": "Text indicating how many goals has been added",
"importance": "low",
"type": "text",
"default": "Goals added:",
"description": "This text will follow after the amount of goals that is currently created, example: 'Goals added: 5' where 'Goals added:' is this text."
},
{
"name": "specifyGoalText",
"label": "Text for \"Specify goal\"-button",
"importance": "low",
"type": "text",
"default": "Specification"
},
{
"name": "removeGoalText",
"label": "Text for \"Remove goal\"-button",
"importance": "low",
"type": "text",
"default": "Remove Goal"
},
{
"name": "helpTextLabel",
"label": "Label for help text",
"importance": "low",
"type": "text",
"description": "Label for showing additional helpful information to the user.",
"default": "More information"
},
{
"name": "helpText",
"label": "Fill in additional help information",
"importance": "low",
"type": "text",
"widget": "html",
"description": "Here you can fill in additional helpful information for the user.",
"enterMode": "p",
"optional": true,
"tags": [
"strong",
"em",
"u",
"a",
"ul",
"ol",
"h2",
"h3",
"hr",
"pre",
"code"
]
},
{
"name": "goalDeletionConfirmation",
"type": "group",
"common": true,
"importance": "low",
"label": "Localize goal deletion confirmation",
"fields": [
{
"name": "header",
"type": "text",
"label": "Header",
"optional": false,
"default": "Confirm deletion"
},
{
"name": "message",
"type": "text",
"label": "Message",
"optional": false,
"default": "Are you sure you want to delete this goal?"
},
{
"name": "cancelLabel",
"type": "text",
"label": "Cancel button label",
"optional": false,
"default": "Cancel"
},
{
"name": "confirmLabel",
"type": "text",
"label": "Confirm button label",
"optional": false,
"default": "Confirm"
}
]
}
]