Opened 10 years ago
Last modified 10 years ago
#24181 closed Bug
THOUSAND_SEPARATOR strings are reversed — at Initial Version
Description ¶
Hi.
numberformat moduler returns a reversed number as a string when THOUSAND_SEPARATOR has letters with l18n.
# coding: utf-8 # mysite/formats/ko/formats.py THOUSAND_SEPARATOR = u'comma'
{% load humanize %} {{10000|intcomma}}
- current output : 10ammoc000
- correct output : 10comma000
Note:
See TracTickets
for help on using tickets.