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
diff options
context:
space:
mode:
Diffstat (limited to 'kok_IN/kok_IN.go')
-rw-r--r--kok_IN/kok_IN.go23
1 files changed, 16 insertions, 7 deletions
diff --git a/kok_IN/kok_IN.go b/kok_IN/kok_IN.go
index c8f86f43..986b1736 100644
--- a/kok_IN/kok_IN.go
+++ b/kok_IN/kok_IN.go
@@ -1,6 +1,7 @@
package kok_IN
import (
+ "math"
"strconv"
"github.com/go-playground/locales"
@@ -68,19 +69,18 @@ func (kok *kok_IN) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uin
// avoid allocations; otherwise just cast as string.
func (kok *kok_IN) 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(kok.decimal) + len(kok.group)*len(s[:len(s)-int(v)-1])/3
-
count := 0
inWhole := v == 0
+ inSecondary := false
+ groupThreshold := 3
b := make([]byte, 0, l)
for i := len(s) - 1; i >= 0; i-- {
if s[i] == '.' {
-
for j := len(kok.decimal) - 1; j >= 0; j-- {
b = append(b, kok.decimal[j])
}
@@ -92,13 +92,17 @@ func (kok *kok_IN) FmtNumber(num float64, v uint64) []byte {
if inWhole {
- if count == 3 {
-
+ if count == groupThreshold {
for j := len(kok.group) - 1; j >= 0; j-- {
b = append(b, kok.group[j])
}
count = 1
+
+ if !inSecondary {
+ inSecondary = true
+ groupThreshold = 2
+ }
} else {
count++
}
@@ -107,11 +111,16 @@ func (kok *kok_IN) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ for j := len(kok.minus) - 1; j >= 0; j-- {
+ b = append(b, kok.minus[j])
+ }
+ }
+
// 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
-
}