VoiceExtension icon indicating copy to clipboard operation
VoiceExtension copied to clipboard

Not working

Open ghost opened this issue 11 years ago • 3 comments

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"

ghost avatar Nov 17 '13 10:11 ghost

Same happening to me

guidozanon avatar Dec 12 '13 16:12 guidozanon

Happens here: https://github.com/ligershark/VoiceExtension/blob/323071cba2452e6f4fbfa61b21145cad42384862/src/VSPackage.cs#L134

FurkanKambay avatar Feb 09 '18 22:02 FurkanKambay

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

rwg0 avatar Nov 16 '18 12:11 rwg0