I couldn't get this clear from the documentation, but do I understand correctly that the "locale" param does not work for a frm with decimals.
I'm not sure how it is in France, but in Holland we use a comma(,) to seperate decimals and we'd like to use this in TBS. My code looks like this:
[blk.total; frm=0.000,00; locale]
(or [blk.total; frm='€ 0.000.000,00; locale])
|
Where my php code has the correct setlocale(LC_NUMERIC, 'nl_NL');
if I print numeric data in php, the correct seperator is shown
returns correctly: "1252,1238"
Is this something TBS can do? Or am I stretching here;)