Browse Source

Support capitalized words in text-based replacements. This is important in languages like German that differentiate pronunciation on case. Even English does this (e.g. Polish/polish).

master
Reece H. Dunn 8 years ago
parent
commit
ee07eaa733
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      src/libespeak-ng/translate.c

+ 9
- 0
src/libespeak-ng/translate.c View File

int flags = TranslateWord3(tr, word_start, wtab, word_out); int flags = TranslateWord3(tr, word_start, wtab, word_out);
if (flags & FLAG_TEXTMODE && word_out) { if (flags & FLAG_TEXTMODE && word_out) {
while (*word_out && available > 1) { while (*word_out && available > 1) {
int c;
utf8_in(&c, word_out);
if (iswupper(c)) {
wtab->flags |= FLAG_FIRST_UPPER;
utf8_out(tolower(c), word_out);
} else {
wtab->flags &= ~FLAG_FIRST_UPPER;
}

TranslateWord3(tr, word_out, wtab, NULL); TranslateWord3(tr, word_out, wtab, NULL);


int n; int n;

Loading…
Cancel
Save