static HebrewPromptWordReader() { WordLexicon = new Lexicon("hebrew-words.pls"); }
static HebrewPromptNumberReader() { HebrewLexicon = new Lexicon("hebrew-numbers.pls"); }
//public new void StartStyle (PromptStyle style) //public new void EndStyle () //public new void StartVoice (VoiceInfo voice) //public new void StartVoice (string name) //public new void StartVoice (VoiceGender gender) //public new void StartVoice (VoiceGender gender, VoiceAge age) //public new void StartVoice (VoiceGender gender, VoiceAge age, int voiceAlternate) //public new void StartVoice (CultureInfo culture) //public new void EndVoice () //public new void StartParagraph () //public new void StartParagraph (CultureInfo culture) //public new void EndParagraph () //public new void StartSentence () //public new void StartSentence (CultureInfo culture) //public new void EndSentence () //public new void AppendTextWithHint (string textToSpeak, SayAs sayAs) //public new void AppendTextWithHint (string textToSpeak, string sayAs) //public new void AppendTextWithPronunciation (string textToSpeak, string pronunciation) internal void AppendTextWithPronunciation(string grapheme, Lexicon lexicon) { string phoneme; if (!lexicon.Lexemes.TryGetValue(grapheme, out phoneme)) phoneme = "bip"; AppendTextWithPronunciation(grapheme, phoneme); }