diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json index 504b409..302b5ed 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -49,6 +49,11 @@ "description": "Title of the option." }, + "optionValue_ibmSpeechApiLoc_seoul": { + "message": "Seoul", + "description": "Value of the option." + }, + "optionValue_ibmSpeechApiLoc_london": { "message": "London", "description": "Value of the option." diff --git a/src/options/App.vue b/src/options/App.vue index 6545285..ae833d5 100644 --- a/src/options/App.vue +++ b/src/options/App.vue @@ -273,6 +273,7 @@ export default { 'microsoftSpeechApi' ], ibmSpeechApiLoc: [ + 'seoul', 'london', 'frankfurt', 'dallas', diff --git a/src/utils/data.js b/src/utils/data.js index df9e23c..15a86d0 100755 --- a/src/utils/data.js +++ b/src/utils/data.js @@ -320,6 +320,7 @@ const captchaWitSpeechApiLangCodes = { // https://cloud.ibm.com/apidocs/speech-to-text#service-endpoint const ibmSpeechApiUrls = { + seoul: 'https://api.kr-seo.speech-to-text.watson.cloud.ibm.com/v1/recognize', london: 'https://api.eu-gb.speech-to-text.watson.cloud.ibm.com/v1/recognize', frankfurt: 'https://api.eu-de.speech-to-text.watson.cloud.ibm.com/v1/recognize',