├── .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 │ ├── ISPopupBackground.png │ ├── ISPopupBackground@2x.png │ ├── ISPopupButton.png │ ├── ISPopupButton@2x.png │ ├── ISPopupButtonPress.png │ ├── ISPopupButtonPress@2x.png │ ├── ISPopupDefaultButton.png │ ├── ISPopupDefaultButton@2x.png │ ├── Info.plist │ ├── Thumbs.db │ ├── ar.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fail.wav │ ├── failed.png │ ├── failed@2x.png │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── iSpeechLogo.png │ ├── iSpeechLogo@2x.png │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── microphone.png │ ├── microphone@2x.png │ ├── 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 │ ├── startRecord.wav │ ├── stopRecord.wav │ ├── success.png │ ├── success.wav │ ├── success@2x.png │ ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/SpeechRecognition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/android/SpeechRecognition.java -------------------------------------------------------------------------------- /src/ios/Headers/ISSpeechRecognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/ISSpeechRecognition.h -------------------------------------------------------------------------------- /src/ios/Headers/ISSpeechRecognitionLocales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/ISSpeechRecognitionLocales.h -------------------------------------------------------------------------------- /src/ios/Headers/ISSpeechRecognitionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/ISSpeechRecognitionResult.h -------------------------------------------------------------------------------- /src/ios/Headers/ISSpeechSynthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/ISSpeechSynthesis.h -------------------------------------------------------------------------------- /src/ios/Headers/ISSpeechSynthesisVoices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/ISSpeechSynthesisVoices.h -------------------------------------------------------------------------------- /src/ios/Headers/iSpeechSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/Headers/iSpeechSDK.h -------------------------------------------------------------------------------- /src/ios/SpeechRecognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/SpeechRecognition.h -------------------------------------------------------------------------------- /src/ios/SpeechRecognition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/SpeechRecognition.m -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupBackground.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupBackground@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupButton.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupButton@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupButtonPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupButtonPress.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupButtonPress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupButtonPress@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupDefaultButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupDefaultButton.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ISPopupDefaultButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ISPopupDefaultButton@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/Info.plist -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/Thumbs.db -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/fail.wav -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/failed.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/failed@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/iSpeechLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/iSpeechLogo.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/iSpeechLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/iSpeechLogo@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/microphone.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/microphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/microphone@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/startRecord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/startRecord.wav -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/stopRecord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/stopRecord.wav -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/success.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/success.wav -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/success@2x.png -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/iSpeechSDK.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/iSpeechSDK.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/libiSpeechSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/src/ios/libiSpeechSDK.a -------------------------------------------------------------------------------- /www/SpeechGrammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechGrammar.js -------------------------------------------------------------------------------- /www/SpeechGrammarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechGrammarList.js -------------------------------------------------------------------------------- /www/SpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognition.js -------------------------------------------------------------------------------- /www/SpeechRecognitionAlternative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognitionAlternative.js -------------------------------------------------------------------------------- /www/SpeechRecognitionError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognitionError.js -------------------------------------------------------------------------------- /www/SpeechRecognitionEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognitionEvent.js -------------------------------------------------------------------------------- /www/SpeechRecognitionResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognitionResult.js -------------------------------------------------------------------------------- /www/SpeechRecognitionResultList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/SpeechRecognitionResultList.js -------------------------------------------------------------------------------- /www/browser/SpeechRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdonst/SpeechRecognitionPlugin/HEAD/www/browser/SpeechRecognition.js --------------------------------------------------------------------------------