anshuwap / mollify

Automatically exported from code.google.com/p/mollify
0 stars 0 forks source link

Italian localization show filesize in wrong way #379

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use client/localization/text_it.js localization instead the EN one
2.
3.

What is the expected output? What do you see instead?
Size is shown in a wrong way (336KB is shown 3.3.6 KB for example)

What version of the product are you using? On what operating system?
Tested on 1.8.7.2 and a pair of less recent

Please provide any additional information below.
I solved the problem setting the following parameters on text_it.js instead the 
default ones

decimalSeparator: ".",
groupingSeparator: ",",
fileSizeFormat: "#.#",

Original issue reported on code.google.com by n...@imboccioli.it on 20 Mar 2012 at 4:01

GoogleCodeExporter commented 9 years ago
Actually, the correct set is:

decimalSeparator: ",",
groupingSeparator: ".",
fileSizeFormat: "#.#",

You can freely choose your decimal and grouping separators, but file size 
format must use "." in the decimal place, this comes from the platform 
formatting rules. Will be updated in next version.

Original comment by samuli.j...@gmail.com on 29 Mar 2012 at 5:39

GoogleCodeExporter commented 9 years ago
Fixed in 1.8.7.4

Original comment by samuli.j...@gmail.com on 31 Mar 2012 at 7:50