gitextract_9krsp8xx/ ├── .editorconfig ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .jshintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── src/ │ ├── android/ │ │ └── SpeechRecognition.java │ └── ios/ │ ├── Headers/ │ │ ├── ISSpeechRecognition.h │ │ ├── ISSpeechRecognitionLocales.h │ │ ├── ISSpeechRecognitionResult.h │ │ ├── ISSpeechSynthesis.h │ │ ├── ISSpeechSynthesisVoices.h │ │ └── iSpeechSDK.h │ ├── SpeechRecognition.h │ ├── SpeechRecognition.m │ ├── iSpeechSDK.bundle/ │ │ ├── Info.plist │ │ ├── ar.lproj/ │ │ │ └── Localizable.strings │ │ ├── cs.lproj/ │ │ │ └── Localizable.strings │ │ ├── da.lproj/ │ │ │ └── Localizable.strings │ │ ├── de.lproj/ │ │ │ └── Localizable.strings │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ ├── fi.lproj/ │ │ │ └── Localizable.strings │ │ ├── fr.lproj/ │ │ │ └── Localizable.strings │ │ ├── hu.lproj/ │ │ │ └── Localizable.strings │ │ ├── it.lproj/ │ │ │ └── Localizable.strings │ │ ├── ja.lproj/ │ │ │ └── Localizable.strings │ │ ├── ko.lproj/ │ │ │ └── Localizable.strings │ │ ├── nb.lproj/ │ │ │ └── Localizable.strings │ │ ├── nl.lproj/ │ │ │ └── Localizable.strings │ │ ├── pl.lproj/ │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj/ │ │ │ └── Localizable.strings │ │ ├── pt.lproj/ │ │ │ └── Localizable.strings │ │ ├── ru.lproj/ │ │ │ └── Localizable.strings │ │ ├── sv.lproj/ │ │ │ └── Localizable.strings │ │ ├── tr.lproj/ │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj/ │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj/ │ │ └── Localizable.strings │ └── libiSpeechSDK.a └── www/ ├── SpeechGrammar.js ├── SpeechGrammarList.js ├── SpeechRecognition.js ├── SpeechRecognitionAlternative.js ├── SpeechRecognitionError.js ├── SpeechRecognitionEvent.js ├── SpeechRecognitionResult.js ├── SpeechRecognitionResultList.js └── browser/ └── SpeechRecognition.js