From b796aab4eb7691da8524c0bc814195436c0f7368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Bregar?= Date: Sat, 20 Jun 2015 20:21:37 +0200 Subject: [PATCH] =?UTF-8?q?Added=20Sloven=C5=A1=C4=8Dina=20(sl=5FSI)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- num2words/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/num2words/__init__.py b/num2words/__init__.py index 7719937..c57a2a9 100644 --- a/num2words/__init__.py +++ b/num2words/__init__.py @@ -24,6 +24,7 @@ from . import lang_DE from . import lang_ES from . import lang_LT from . import lang_LV +from . import lang_SL CONVERTER_CLASSES = { 'en': lang_EN.Num2Word_EN(), @@ -34,6 +35,7 @@ CONVERTER_CLASSES = { 'es': lang_ES.Num2Word_ES(), 'lt': lang_LT.Num2Word_LT(), 'lv': lang_LV.Num2Word_LV(), + 'sl': lang_SL.Num2Word_SL(), } def num2words(number, ordinal=False, lang='en'):