2013-05-28 11:50:48 -04:00
|
|
|
# Copyright (c) 2003, Taro Ogawa. All Rights Reserved.
|
|
|
|
|
# Copyright (c) 2013, 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 . import lang_EN
|
|
|
|
|
from . import lang_EN_GB
|
2015-01-21 16:33:58 +05:30
|
|
|
from . import lang_EN_IN
|
2013-05-28 11:50:48 -04:00
|
|
|
from . import lang_FR
|
|
|
|
|
from . import lang_DE
|
|
|
|
|
from . import lang_ES
|
|
|
|
|
from . import lang_LT
|
2014-06-02 11:33:04 -04:00
|
|
|
from . import lang_LV
|
2013-05-28 11:50:48 -04:00
|
|
|
|
|
|
|
|
CONVERTER_CLASSES = {
|
|
|
|
|
'en': lang_EN.Num2Word_EN(),
|
|
|
|
|
'en_GB': lang_EN_GB.Num2Word_EN_GB(),
|
2015-01-21 16:33:58 +05:30
|
|
|
'en_IN': lang_EN_IN.Num2Word_EN_IN(),
|
2013-05-28 11:50:48 -04:00
|
|
|
'fr': lang_FR.Num2Word_FR(),
|
|
|
|
|
'de': lang_DE.Num2Word_DE(),
|
|
|
|
|
'es': lang_ES.Num2Word_ES(),
|
|
|
|
|
'lt': lang_LT.Num2Word_LT(),
|
2014-06-02 11:33:04 -04:00
|
|
|
'lv': lang_LV.Num2Word_LV(),
|
2015-07-05 11:52:13 +02:00
|
|
|
'pl': lang_PL.Num2Word_PL(),
|
2013-05-28 11:50:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def num2words(number, ordinal=False, lang='en'):
|
|
|
|
|
# We try the full language first
|
|
|
|
|
if lang not in CONVERTER_CLASSES:
|
|
|
|
|
# ... and then try only the first 2 letters
|
|
|
|
|
lang = lang[:2]
|
|
|
|
|
if lang not in CONVERTER_CLASSES:
|
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
converter = CONVERTER_CLASSES[lang]
|
|
|
|
|
if ordinal:
|
|
|
|
|
return converter.to_ordinal(number)
|
|
|
|
|
else:
|
|
|
|
|
return converter.to_cardinal(number)
|