@bigbinary/neeto-media-recorder 1.3.17 → 1.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants.js +1 -0
- package/constants.js.map +1 -1
- package/core.js +44 -35
- package/core.js.map +1 -1
- package/index.js +182 -46
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +10 -3
package/package.json
CHANGED
package/src/translations/en.json
CHANGED
|
@@ -10,11 +10,14 @@
|
|
|
10
10
|
"doNotLeaveThePage": "Do not close this tab.",
|
|
11
11
|
"uploadingRecording": "Recording is being uploaded",
|
|
12
12
|
"inProgress": "Recording in progress...",
|
|
13
|
-
"
|
|
13
|
+
"micPermissionDeniedTitle": "Please allow microphone access",
|
|
14
|
+
"screenSharePermissionDeniedTitle": "Please select a screen to start recording",
|
|
15
|
+
"screenSharePermissionDenied": "neetoRecord needs access to your screen to record. To continue, please click 'Select screen', and then select a screen.",
|
|
16
|
+
"micPermissionDeniedMessage": "neetoRecord needs access to your microphone to record audio. Allow access by adjusting your media settings in the URL bar. If you cant find the mic icon on the URL bar, click the 'Grant microphone permissions' button.",
|
|
14
17
|
"copyToClipboard": "Copy link",
|
|
15
18
|
"downloadWebm": "Download webm",
|
|
16
19
|
"startsIn": "Get ready, the recording will begin in...",
|
|
17
|
-
"grantPermissionMessage": "Select
|
|
20
|
+
"grantPermissionMessage": "Select a screen to continue",
|
|
18
21
|
"clickToStartRecording": "Click on the 'Record' button to start the recording.",
|
|
19
22
|
"discard": "Discard",
|
|
20
23
|
"stop": "Stop",
|
|
@@ -32,7 +35,11 @@
|
|
|
32
35
|
},
|
|
33
36
|
"discardRecording": "Discard recording",
|
|
34
37
|
"timeLimitWarning": "Please note: recordings are limited to {{duration}}. The current recording will automatically stop on reaching that limit.",
|
|
35
|
-
"copyToClipboardToastrMessage": "Recording link is copied to your clipboard. You can paste it anywhere."
|
|
38
|
+
"copyToClipboardToastrMessage": "Recording link is copied to your clipboard. You can paste it anywhere.",
|
|
39
|
+
"grantPermissions": "Grant permissions",
|
|
40
|
+
"selectScreen": "Select screen",
|
|
41
|
+
"grantMicPermission": "Grant microphone permission",
|
|
42
|
+
"iDontNeedAudio": "I don't need audio"
|
|
36
43
|
},
|
|
37
44
|
"unsupportedBrowser": "Unfortunately, this feature is unavailable because the current browser does not support screen capturing."
|
|
38
45
|
}
|