Re: Chinese humanize number conversion

2016-05-03 Thread Simon Charette
Hi Malte, The conversion takes place in the intword template filter[1]. The Chinese translation of the intword_converters can be found in the locale directory of the humanize application[2]. These translations are handled over Transifex[3]. Cheers, Simon [1] https://github.com/django/django/b

Chinese humanize number conversion

2016-05-02 Thread Malte
Hi, The Chinese humanization of numbers is not correct for large and very large numbers. 1.400.000 converts into 1.4 百万 but should be 140万 166,200,000,000 converts into 166.2十亿 but should be 1662亿 I just looked through the Django core code but couldn't find where that conversion takes place. Wh