Small corrections concerning the plural of millions, milliards, cents and vingts

This commit is contained in:
Lise Rebout
2018-09-13 09:59:16 -04:00
committed by Ernesto Rodriguez Ortiz
parent 2a99ff1061
commit c71d99cddf
2 changed files with 9 additions and 1 deletions

View File

@@ -51,7 +51,10 @@ class Num2Word_FR(Num2Word_EU):
if nnum < 1000000:
return next
else:
if (not (cnum - 80) % 100 or not cnum % 100) and ctext[-1] == "s":
if (not (cnum - 80) % 100
or (not cnum % 100 and cnum < 1000))\
and nnum < 1000000 \
and ctext[-1] == "s":
ctext = ctext[:-1]
if cnum < 1000 and nnum != 1000 and \
ntext[-1] != "s" and not nnum % 100: