-
Notifications
You must be signed in to change notification settings - Fork 0
Setup
matthieu chevrier edited this page Oct 3, 2020
·
1 revision
function test_languages(){
lang="fr-FR";
lang = "de-German"
lang = "zh-Chinese"
if (lang==="fr-FR") {
var speech = new SpeechSynthesisUtterance('bravo');
speech.lang = lang;
window.speechSynthesis.speak(speech);
}
else if (lang == "de-German") {
var speech = new SpeechSynthesisUtterance('Stadt');
speech.lang = lang;
window.speechSynthesis.speak(speech);
}
else if (lang == "zh-Chinese") {
var speech = new SpeechSynthesisUtterance('你好');
speech.lang = lang;
window.speechSynthesis.speak(speech);
}
}