forked from asdevtc/h5p-audio-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantics.json
134 lines (134 loc) · 3.91 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
[
{
"label": "Task Description",
"importance": "high",
"name": "title",
"type": "text",
"widget": "textarea",
"description": "Optional text to display above the audio recorder",
"optional": true
},
{
"label": "Localization",
"name": "l10n",
"type": "group",
"common": true,
"fields": [
{
"name": "recordAnswer",
"label": "Record button text",
"type": "text",
"default": "Record"
},
{
"name": "pause",
"label": "Pause button text",
"type": "text",
"default": "Pause"
},
{
"name": "continue",
"label": "Continue button text",
"type": "text",
"default": "Continue"
},
{
"name": "download",
"label": "Download button text",
"type": "text",
"default": "Download"
},
{
"name": "done",
"label": "Done button text",
"type": "text",
"default": "Done"
},
{
"name": "retry",
"label": "Retry button text",
"type": "text",
"default": "Retry"
},
{
"name": "microphoneNotSupported",
"label": "Microphone not supported error message",
"type": "text",
"default": "Microphone not supported. Make sure you are using a browser that allows microphone recording."
},
{
"name": "microphoneInaccessible",
"label": "Microphone inaccessible error message",
"type": "text",
"default": "Microphone is not accessible. Make sure that the browser microphone is enabled."
},
{
"name": "insecureNotAllowed",
"type": "text",
"label": "Message displayed when insecure access is not allowed",
"description": "Some browsers do not allow using the microphone when the page is served using HTTP. This message will be displayed if that is the case",
"default": "Access to microphone is not allowed in your browser since this page is not served using HTTPS. Please contact the author, and ask him to make this available using HTTPS"
},
{
"name": "statusReadyToRecord",
"label": "Ready to record status message",
"type": "text",
"default": "Press a button below to record your answer."
},
{
"name": "statusRecording",
"label": "Recording status message",
"type": "text",
"default": "Recording..."
},
{
"name": "statusPaused",
"label": "Paused status message",
"type": "text",
"default": "Recording paused. Press a button to continue recording."
},
{
"name": "statusFinishedRecording",
"label": "Finished recording status message",
"type": "text",
"default": "You have successfully recorded your answer! Listen to the recording below."
},
{
"name": "downloadRecording",
"label": "Download recording message",
"type": "text",
"default": "Download this recording or retry."
},
{
"name": "retryDialogHeaderText",
"label": "Retry dialog header text",
"type": "text",
"default": "Retry recording?"
},
{
"name": "retryDialogBodyText",
"label": "Retry dialog body text",
"type": "text",
"default": "By pressing \"Retry\" you will lose your current recording."
},
{
"name": "retryDialogConfirmText",
"label": "Retry dialog confirm text",
"type": "text",
"default": "Retry"
},
{
"name": "retryDialogCancelText",
"label": "Retry dialog cancel text",
"type": "text",
"default": "Cancel"
},
{
"name": "statusCantCreateTheAudioFile",
"label": "Can't create audio file status message",
"type": "text",
"default": "Can't create the audio file."
}
]
}
]