Привет, поэтому язык по умолчанию - английский sh, и я хочу перейти на немецкий. В настоящее время я использую вариант 3, но он все еще не работает. Что случилось?
<script
> src="https://cdn.botframework.com/botframework-webchat/latest/CognitiveServices.js"></script>
> <script>
> const params = BotChat.queryParams(location.search);
> const user = {
> id: params['userid'] || 'userid',
> name: params['username'] || 'username'
> };
>
> const bot = {
> id: params['botid'] || 'botid',
> name: params['botname'] || 'botname'
> };
>
> window.botchatDebug = params['debug'] && params['debug'] === 'true';
>
> const speechOptions =
>
> speechRecognizer: new CognitiveServices.SpeechRecognizer({ SpeechRecognitionLanguage: 'de-de', subscriptionKey: 'xxxxx' }),
> speechSynthesizer: new CognitiveServices.SpeechSynthesizer({
> locale: 'de-de',
> gender: CognitiveServices.SynthesisGender.Female,
> subscriptionKey: 'xxxxxxx',
> voiceName: 'Microsoft Server Speech Text to Speech Voice (de-DE, KatjaNeural)'
> })
> };
> BotChat.App({
> bot: bot,
> locale: params['de-DE'],
> resize: 'detect',
>
> speechOptions: speechOptions,
> user: user,
>
> directLine: {
> domain: params['domain'],
> secret: params['s'],
> token: params['t'],
> webSocket: params['webSocket'] && params['webSocket'] === 'true' // defaults to true
> }
> }, document.getElementById('BotChatGoesHere')); </script> </body> </html>
Есть идеи или код для решения моей проблемы?