flopp / GpxTrackPoster

Create a visually appealing poster from your GPX tracks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

decimal separator not translated

yeKcim opened this issue · comments

numbers are always displayed in english way "1234.5"

Could be great if we can choose numbers display with --language. In french, for exemple, we write "1 234,5"

something like

import locale
locale.setlocale(locale.LC_ALL, 'fr_FR.UTF-8')
'{0:n}'.format(1234.5)

?

You're right.
I'll implement that...