My native language is spanish, so my laptop is set in spanish....
the problem is that Im using my local server (localhost) to learn german and Ive set up some javacript code to speak out loud some words in german
var msg = new SpeechSynthesisUtterance("der Hund");
msg.lang = 'de-DE';
msg.rate = 0.6;
window.speechSynthesis.speak(msg);
It works pretty well (when online It speak out loud in german with german accent as set in the code)...until I go offline (without internet)...once that happens...the voice speaks out loud the same word as well der Hund
but now with spanish accent...
So I would like to know...what should I do to make the API work correctly online and offline.