mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
Fix ordinal_num output for Dutch (NL)
This commit is contained in:
@@ -135,7 +135,7 @@ class Num2Word_NL(Num2Word_EU):
|
|||||||
|
|
||||||
def to_ordinal_num(self, value):
|
def to_ordinal_num(self, value):
|
||||||
self.verify_ordinal(value)
|
self.verify_ordinal(value)
|
||||||
return str(value) + "."
|
return str(value) + "e"
|
||||||
|
|
||||||
def pluralize(self, n, forms):
|
def pluralize(self, n, forms):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user