mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 14:52:25 +00:00
Merge pull request #27 from isnani/master
correction on lang_DE: ordnum, plural and ord form of >= 10**6
This commit is contained in:
@@ -102,7 +102,6 @@ class Num2Word_Base(object):
|
|||||||
if value >= self.MAXVAL:
|
if value >= self.MAXVAL:
|
||||||
raise OverflowError(self.errmsg_toobig % (value, self.MAXVAL))
|
raise OverflowError(self.errmsg_toobig % (value, self.MAXVAL))
|
||||||
|
|
||||||
|
|
||||||
val = self.splitnum(value)
|
val = self.splitnum(value)
|
||||||
words, num = self.clean(val)
|
words, num = self.clean(val)
|
||||||
return self.title(out + words)
|
return self.title(out + words)
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ class Num2Word_DE(Num2Word_EU):
|
|||||||
self.cards[10**n] = word + "illiarde"
|
self.cards[10**n] = word + "illiarde"
|
||||||
self.cards[10**(n-3)] = word + "illion"
|
self.cards[10**(n-3)] = word + "illion"
|
||||||
|
|
||||||
|
|
||||||
def setup(self):
|
def setup(self):
|
||||||
self.negword = "minus "
|
self.negword = "minus "
|
||||||
self.pointword = "Komma"
|
self.pointword = "Komma"
|
||||||
@@ -53,25 +52,29 @@ class Num2Word_DE(Num2Word_EU):
|
|||||||
"drei": "drit",
|
"drei": "drit",
|
||||||
"acht": "ach",
|
"acht": "ach",
|
||||||
"sieben": "sieb",
|
"sieben": "sieb",
|
||||||
"ig" : "igs" }
|
"ig": "igs",
|
||||||
self.ordflag = False
|
"ert": "erts",
|
||||||
|
"end": "ends",
|
||||||
|
"ion": "ions",
|
||||||
|
"nen": "nens",
|
||||||
|
"rde": "rdes",
|
||||||
|
"rden": "rdens"}
|
||||||
|
|
||||||
def merge(self, curr, next):
|
def merge(self, curr, next):
|
||||||
ctext, cnum, ntext, nnum = curr + next
|
ctext, cnum, ntext, nnum = curr + next
|
||||||
|
|
||||||
if cnum == 1:
|
if cnum == 1:
|
||||||
if nnum < 10**6 or self.ordflag:
|
if nnum < 10**6:
|
||||||
return next
|
return next
|
||||||
ctext = "eine"
|
ctext = "eine"
|
||||||
|
|
||||||
if nnum > cnum:
|
if nnum > cnum:
|
||||||
if nnum >= 10**6:
|
if nnum >= 10**6:
|
||||||
if cnum > 1:
|
if cnum > 1:
|
||||||
if ntext.endswith("e") or self.ordflag:
|
if ntext.endswith("e"):
|
||||||
ntext += "s"
|
ntext += "n"
|
||||||
else:
|
else:
|
||||||
ntext += "es"
|
ntext += "en"
|
||||||
ctext += " "
|
ctext += " "
|
||||||
val = cnum * nnum
|
val = cnum * nnum
|
||||||
else:
|
else:
|
||||||
@@ -86,24 +89,18 @@ class Num2Word_DE(Num2Word_EU):
|
|||||||
word = ctext + ntext
|
word = ctext + ntext
|
||||||
return (word, val)
|
return (word, val)
|
||||||
|
|
||||||
|
|
||||||
def to_ordinal(self, value):
|
def to_ordinal(self, value):
|
||||||
self.verify_ordinal(value)
|
self.verify_ordinal(value)
|
||||||
self.ordflag = True
|
|
||||||
outword = self.to_cardinal(value)
|
outword = self.to_cardinal(value)
|
||||||
self.ordflag = False
|
|
||||||
for key in self.ords:
|
for key in self.ords:
|
||||||
if outword.endswith(key):
|
if outword.endswith(key):
|
||||||
outword = outword[:len(outword) - len(key)] + self.ords[key]
|
outword = outword[:len(outword) - len(key)] + self.ords[key]
|
||||||
break
|
break
|
||||||
return outword + "te"
|
return outword + "te"
|
||||||
|
|
||||||
|
|
||||||
# Is this correct??
|
|
||||||
def to_ordinal_num(self, value):
|
def to_ordinal_num(self, value):
|
||||||
self.verify_ordinal(value)
|
self.verify_ordinal(value)
|
||||||
return str(value) + "te"
|
return str(value) + "."
|
||||||
|
|
||||||
|
|
||||||
def to_currency(self, val, longval=True, old=False):
|
def to_currency(self, val, longval=True, old=False):
|
||||||
if old:
|
if old:
|
||||||
@@ -117,8 +114,6 @@ class Num2Word_DE(Num2Word_EU):
|
|||||||
return self.to_cardinal(val)
|
return self.to_cardinal(val)
|
||||||
return self.to_splitnum(val, hightxt="hundert", longval=longval)
|
return self.to_splitnum(val, hightxt="hundert", longval=longval)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
n2w = Num2Word_DE()
|
n2w = Num2Word_DE()
|
||||||
to_card = n2w.to_cardinal
|
to_card = n2w.to_cardinal
|
||||||
to_ord = n2w.to_ordinal
|
to_ord = n2w.to_ordinal
|
||||||
@@ -126,15 +121,20 @@ to_ordnum = n2w.to_ordinal_num
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
for val in [ 1, 11, 12, 21, 31, 33, 71, 80, 81, 91, 99, 100, 101, 102, 155,
|
for val in [1, 7, 8, 12, 17, 81, 91, 99, 100, 101, 102, 155,
|
||||||
180, 300, 308, 832, 1000, 1001, 1061, 1100, 1500, 1701, 3000,
|
180, 300, 308, 832, 1000, 1001, 1061, 1100, 1500, 1701, 3000,
|
||||||
8280, 8291, 150000, 500000, 1000000, 2000000, 2000001,
|
8280, 8291, 150000, 500000, 3000000, 1000000, 2000001, 1000000000, 2000000000,
|
||||||
-21212121211221211111, -2.121212, -1.0000100]:
|
-21212121211221211111, -2.121212, -1.0000100]:
|
||||||
n2w.test(val)
|
n2w.test(val)
|
||||||
|
|
||||||
n2w.test(1325325436067876801768700107601001012212132143210473207540327057320957032975032975093275093275093270957329057320975093272950730)
|
# n2w.test(1325325436067876801768700107601001012212132143210473207540327057320957032975032975093275093275093270957329057320975093272950730)
|
||||||
|
n2w.test(3000000)
|
||||||
|
n2w.test(3000000000001)
|
||||||
|
n2w.test(3000000324566)
|
||||||
print n2w.to_currency(112121)
|
print n2w.to_currency(112121)
|
||||||
print n2w.to_year(2000)
|
print n2w.to_year(2000)
|
||||||
|
print n2w.to_year(1820)
|
||||||
|
print n2w.to_year(2001)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|||||||
51
tests/test_de.py
Normal file
51
tests/test_de.py
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
# Copyright (c) 2015, Savoir-faire Linux inc. All Rights Reserved.
|
||||||
|
|
||||||
|
# This library is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU Lesser General Public
|
||||||
|
# License as published by the Free Software Foundation; either
|
||||||
|
# version 2.1 of the License, or (at your option) any later version.
|
||||||
|
# This library is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# Lesser General Public License for more details.
|
||||||
|
# You should have received a copy of the GNU Lesser General Public
|
||||||
|
# License along with this library; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
# MA 02110-1301 USA
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from unittest import TestCase
|
||||||
|
|
||||||
|
from num2words import num2words
|
||||||
|
|
||||||
|
class Num2WordsDETest(TestCase):
|
||||||
|
def test_ordinal_less_than_twenty(self):
|
||||||
|
self.assertEqual(num2words(7, ordinal=True, lang='de'), "siebte")
|
||||||
|
self.assertEqual(num2words(8, ordinal=True, lang='de'), "achte")
|
||||||
|
self.assertEqual(num2words(12, ordinal=True, lang='de'), "zwölfte")
|
||||||
|
self.assertEqual(num2words(17, ordinal=True, lang='de'), "siebzehnte")
|
||||||
|
|
||||||
|
def test_ordinal_more_than_twenty(self):
|
||||||
|
self.assertEqual(num2words(81, ordinal=True, lang='de'), "einundachtzigste")
|
||||||
|
|
||||||
|
def test_ordinal_at_crucial_number(self):
|
||||||
|
self.assertEqual(num2words(100, ordinal=True, lang='de'), "hundertste")
|
||||||
|
self.assertEqual(num2words(1000, ordinal=True, lang='de'), "tausendste")
|
||||||
|
self.assertEqual(num2words(4000, ordinal=True, lang='de'), "viertausendste")
|
||||||
|
self.assertEqual(num2words(2000000, ordinal=True, lang='de'), "zwei millionenste")
|
||||||
|
self.assertEqual(num2words(5000000000, ordinal=True, lang='de'), "fünf milliardenste")
|
||||||
|
|
||||||
|
def test_cardinal_at_some_numbers(self):
|
||||||
|
self.assertEqual(num2words(2000000, lang='de'), "zwei millionen")
|
||||||
|
self.assertEqual(num2words(4000000000, lang='de'), "vier milliarden")
|
||||||
|
|
||||||
|
def test_cardinal_for_decimal_number(self):
|
||||||
|
self.assertEqual(num2words(3.486, lang='de'), "drei Komma vier acht")
|
||||||
|
|
||||||
|
def test_ordinal_for_negative_numbers(self):
|
||||||
|
self.assertRaises(TypeError, num2words, -12, ordinal=True, lang='de')
|
||||||
|
|
||||||
|
def test_ordinal_for_floating_numbers(self):
|
||||||
|
self.assertRaises(TypeError, num2words, 2.453, ordinal=True, lang='de')
|
||||||
Reference in New Issue
Block a user