Ticket #93 (new defect)
Wrong currency symbols for Romanian (ro) locale
| Reported by: | jarek.zgoda@… | Owned by: | cmlenz |
|---|---|---|---|
| Priority: | major | Milestone: | 1.0 |
| Component: | CLDR Import | Version: | 0.9.2 |
| Keywords: | Cc: |
Description
Romanian locale has broken currency symbols in formatting for RON and ROL currencies:
>>> format_currency(123.56, 'RON', locale='ro_RO') >>> u'123,56 0\u2264lei noi|1\u2264leu nou|1<lei noi' >>> format_currency(123.56, 'ROL', locale='ro_RO') >>> u'123,56 0\u2264lei vechi|1\u2264leu vechi|1<lei vechi'
Compare this to Polish locale:
>>> format_currency(123.56, 'PLN', locale='pl_PL') >>> u'123,56 z\u0142'
In Polish locale, currency symbol is properly displayed using local currency name (zł).
Standard locale.localeconv() returns 'zł' for curr_symbol in Polish and 'Lei' in Romanian locale.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
