Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/is/is.go
diff options
context:
space:
mode:
Diffstat (limited to 'is/is.go')
-rw-r--r--is/is.go23
1 files changed, 7 insertions, 16 deletions
diff --git a/is/is.go b/is/is.go
index ccb53881..4f199a98 100644
--- a/is/is.go
+++ b/is/is.go
@@ -93,36 +93,24 @@ func (is *is) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64)
// avoid allocations; otherwise just cast as string.
func (is *is) FmtNumber(num float64, v uint64) []byte {
- s := strconv.FormatFloat(num, 'f', int(v), 64)
-
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
l := len(s) + len(is.decimal) + len(is.group)*len(s[:len(s)-int(v)-1])/3
-
count := 0
inWhole := v == 0
-
b := make([]byte, 0, l)
for i := len(s) - 1; i >= 0; i-- {
if s[i] == '.' {
-
- for j := len(is.decimal) - 1; j >= 0; j-- {
- b = append(b, is.decimal[j])
- }
-
+ b = append(b, is.decimal[0])
inWhole = true
continue
}
if inWhole {
-
if count == 3 {
-
- for j := len(is.group) - 1; j >= 0; j-- {
- b = append(b, is.group[j])
- }
-
+ b = append(b, is.group[0])
count = 1
} else {
count++
@@ -132,11 +120,14 @@ func (is *is) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ b = append(b, is.minus[0])
+ }
+
// reverse
for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
b[i], b[j] = b[j], b[i]
}
return b
-
}