VoiceExtension
VoiceExtension copied to clipboard
Not working
Just installed this on a fresh version of 2013 and when i try to use it it just shows
"I didn't quite get that.Please try again"
Same happening to me
Happens here: https://github.com/ligershark/VoiceExtension/blob/323071cba2452e6f4fbfa61b21145cad42384862/src/VSPackage.cs#L134
The code sets en-US as the culture of the voice recognition grammar created. If your culture is different to this then recognition fails. If I set an en-GB culture on the grammar builder then it works for me.
When I say 'sets' I mean it uses the default which seems to be en-US even when running on a non US version of Windows
var gb = new GrammarBuilder(c) {Culture = CultureInfo.InstalledUICulture};
should be a generic fix