* Create lang_CZ.py
* Added czech language to init .
* Update __init__.py
* Update lang_CZ.py
* Added translation to czech language
* Fixed thousands translation
* Added czech language to readme
* Changed pointword in czech translation.
* Create test_cz.py
* Fixed names for very big numbers.
* Fixed currency spelling.
* Created tests for czech language.
* Fixed: Shortened length of some long lines.
* Shortened one more line of code.
* Fixed tests
* Fixed flake-8.
* Changed name of the test class
* Add tests
Starting work on #141, which points out that 2017 should come out
"twenty seventeen"; it currently comes out "two thousand seventeen".
* Handle English years properly.
Resolves#141.
* Whoops -- didn't PEP-8 my tests
* Handle years MORE properly...with suffixes!
- Rendering years between 10-99 was bugged (e.g. "zero fifty").
Fixed that by thinking outside the high/low text box I had made.
- Added suffixes: default none if positive, 'BC' if negative.
User-overrideable.
* add Thai
* change splitby3 to splitbyx
* change lang_th to use function from currency
* make Num2Word_TH inherit from Num2Word_Base
* comment out test failed in 2.7 env
* fix python2.7 error
* add USD EUR for Thai
* pep8 fix
* added Thai
`n % 1 != 0` is not a valid test for float:
In []: 1.1 % 1 == 0
Out[]: False
but:
In []: 1.0 % 1 == 0
Out[]: True
hence it's really necessary to explicitly test for type in this case.
* Activate flake8, isort and coveralls in the configuration of tox
* Update code to respect PEP8
* Fix bug in the lang_IT for python 3
* Update the README to include the new converters.
* General refactoring and bug fixes for lang_IT
* Added Python3 support for lang_IT
* Bug fixes for ordinal numerals in lang_IT
* Fixed lang_IT for negative values and added tests
* Fixes and minor adjustments for floats in lang_IT
* Decimal => float in tests for lang_IT
* Moved a comment
* 'tre's accentuated, big numbers support, ordinal bug fix, comments, tests
* 'meno' and 'virgola' and now class values
* Destroyed EU inheritance