savoirfairelinux / num2words

Modules to convert numbers to words. 42 --> forty-two
GNU Lesser General Public License v2.1
820 stars 497 forks source link

Add Bulgarian language implementation #520

Open kgizdov opened 1 year ago

kgizdov commented 1 year ago

Changes proposed in this pull request:

Add Bulgarian language implementation

Status

How to verify this change

from num2words import num2words

bg_text = num2words(12.56, lang="bg")
bg_text = num2words(12.56, to="currency", lang="bg")

Additional notes

Used daily in our codebase in a private fork. Would like to contribute upstream and clean up our deployment process.