speaker-calibration 2.2.184 → 2.2.185
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/dist/example/i18n.js +1112 -1108
- package/dist/main.js +2 -1224
- package/package.json +1 -1
- package/src/peer-connection/speaker.js +1 -1
package/package.json
CHANGED
|
@@ -378,7 +378,7 @@ class Speaker extends AudioPeer {
|
|
|
378
378
|
const proceedButton = document.createElement('button');
|
|
379
379
|
proceedButton.setAttribute('id', 'calibrationProceedButton');
|
|
380
380
|
proceedButton.setAttribute('class', 'btn btn-success');
|
|
381
|
-
proceedButton.innerHTML = phrases.
|
|
381
|
+
proceedButton.innerHTML = phrases.T_proceed[this.language];
|
|
382
382
|
proceedButton.onclick = () => {
|
|
383
383
|
// open the link in a new tab
|
|
384
384
|
window.open(this.uri, '_blank');
|