AppleDash / SaneEconomy

Finally, a sane economy plugin for Bukkit.
https://www.spigotmc.org/resources/saneeconomy-simple-but-featureful-economy.26223/
GNU General Public License v3.0
19 stars 24 forks source link

Other Locales #78

Closed YTKacperSKY closed 5 years ago

YTKacperSKY commented 6 years ago

Can you implement a Locale variable to your formatAmount(double amount) and put it in the config, so for example a german server uses 1.000,00 and US uses 1,000.00 and with Locale.GERMANY you can change that.

Locale locale = Locale.GERMANY;
String string = NumberFormat.getNumberInstance(locale).format(-1234.56);

you can use this to save in cofig Locale locale = Locale.forLanguageTag("en-US");

AppleDash commented 6 years ago

Why not just correctly configure your operating system's locale?