[bisq-network/bisq] Use localised number formats for transaction details (#3145)

cd2357 notifications at github.com
Tue Oct 13 19:01:42 UTC 2020


This could be achieved by the user choosing a specific locale.

Example from https://www.baeldung.com/java-decimalformat :

```
assertThat(new DecimalFormat("#,###.##", 
	  new DecimalFormatSymbols(Locale.ENGLISH)).format(d))
	  .isEqualTo("1,234,567.89");

assertThat(new DecimalFormat("#,###.##", 
	  new DecimalFormatSymbols(Locale.ITALIAN)).format(d))
	  .isEqualTo("1.234.567,89");
```

The locale could then affect the rendering of all numbers, by choosing the correct decimal separator when rendering.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/issues/3145#issuecomment-707945706
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20201013/9906899d/attachment.html>


More information about the bisq-github mailing list