-
Notifications
You must be signed in to change notification settings - Fork 2
/
UIConfig.json
64 lines (64 loc) · 1.5 KB
/
UIConfig.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
{
"page": {
"label": "Text-to-speech Configuration"
},
"sections": [
{
"id": "section_tts",
"element": "section",
"label": "Text-to-speech",
"icon": "fa-list-ol",
"onSave": {"type":"controller", "endpoint":"miscellanea/text_to_speech", "method":"savePluginOptions"},
"saveButton": {
"label": "Save",
"data": [
"accessKeyId",
"secretAccessKey",
"voice",
"pauseWhenTalking",
"announcer"
]
},
"content": [
{
"id": "accessKeyId",
"type":"text",
"element": "input",
"doc": "AWS access key id",
"label": "AWS access key id",
"value": ""
},
{
"id":"secretAccessKey",
"type":"text",
"element": "input",
"doc": "AWS secret access key",
"label": "AWS secret access key",
"value": ""
},
{
"id":"voice",
"type":"text",
"element": "input",
"doc": "Voice",
"label": "Voice",
"value": ""
},
{
"id":"pauseWhenTalking",
"element": "switch",
"doc": "Pause when talking",
"label": "Pause when talking",
"value": true
},
{
"id":"announcer",
"element": "switch",
"doc": "Announcer",
"label": "Automatically announce track info",
"value": false
}
]
}
]
}