Add numbers, e.g. '20', '30' to sums

This is in support of issues-1959.
pull/1977/head
Chris Rogers 2019-01-30 22:53:22 -05:00
parent 4732feab41
commit a3e94bcbc6
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@ def _generate_plurals(originals):
_NEGATIVES = {"negative", "minus"}
# sum the next number (twenty two = 20 + 2)
_SUMS = {'twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty',
'ninety'}
_SUMS = {'twenty', '20', 'thirty', '30', 'forty', '40', 'fifty', '50',
'sixty', '60', 'seventy', '70', 'eighty', '80', 'ninety', '90'}
_MULTIPLIES_LONG_SCALE_EN = set(LONG_SCALE_EN.values()) |\
_generate_plurals(LONG_SCALE_EN.values())