Browse Source

Merge pull request #1148

master
Valdis Vitolins 3 years ago
parent
commit
6fd31db229
2 changed files with 7 additions and 3 deletions
  1. 4
    3
      src/libespeak-ng/numbers.c
  2. 3
    0
      tests/translate.test

+ 4
- 3
src/libespeak-ng/numbers.c View File

@@ -1719,13 +1719,14 @@ static bool CheckThousandsGroup(char *word, int group_len)
// Is this a group of 3 digits which looks like a thousands group?
int ix;

if (IsDigit09(word[group_len]) || IsDigit09(-1))
return false;

for (ix = 0; ix < group_len; ix++) {
if (!IsDigit09(word[ix]))
return false;
}

if (IsDigit09(word[group_len]) || IsDigit09(-1))
return false;

return true;
}


+ 3
- 0
tests/translate.test View File

@@ -86,3 +86,6 @@ test_phon sk "bl'ax sm'eju:tsa s'a tv'a:R" "blah ☺"

# bug: https://github.com/espeak-ng/espeak-ng/issues/853
test_phon fr "profEs'Wr" "PR"

# https://github.com/espeak-ng/espeak-ng/pull/1148
test_phon fr "dY mil v'E~" "2020"

Loading…
Cancel
Save