-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-schema.json
41 lines (39 loc) · 1.1 KB
/
settings-schema.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
{
"head0": {
"type": "header",
"description": "Settings"
},
"time-format": {
"type": "combobox",
"default": "24_hours",
"description": "Time format",
"tooltip": "Select if time should be displayed in 24 hour or 12 hour (AM/PM) format",
"options": {
"24 hours": "24_hours",
"12 hours (AM/PM)": "12_hours"
}
},
"label-info": {
"type": "label",
"description": "The time zones can be found on Wikipedia Tz database time zones. Use the value in \"TZ identifier\" column. Ex.: Africa/Abidjan"
},
"wikipedia-button": {
"type": "button",
"description": "Press here to go to Wikipedia",
"callback": "on_go_to_wikipedia_button_clicked",
"tooltip": "Pressing this button will open a wikipedia url to the list of available time zone identifiers."
},
"timezone-list": {
"type": "list",
"description": "Display these time zones:",
"tooltip": "Add the time zones you wish to see the time on it.",
"columns": [
{
"id": "name",
"title": "Time Zone ID",
"type": "string"
}
],
"default": []
}
}