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 'brx_IN/brx_IN.go')
-rw-r--r--brx_IN/brx_IN.go28
1 files changed, 14 insertions, 14 deletions
diff --git a/brx_IN/brx_IN.go b/brx_IN/brx_IN.go
index 4df566ed..4211541f 100644
--- a/brx_IN/brx_IN.go
+++ b/brx_IN/brx_IN.go
@@ -76,23 +76,19 @@ func (brx *brx_IN) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uin
// avoid allocations; otherwise just cast as string.
func (brx *brx_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(brx.decimal) + len(brx.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(brx.decimal) - 1; j >= 0; j-- {
- b = append(b, brx.decimal[j])
- }
-
+ b = append(b, brx.decimal[0])
inWhole = true
continue
@@ -100,13 +96,14 @@ func (brx *brx_IN) FmtNumber(num float64, v uint64) []byte {
if inWhole {
- if count == 3 {
+ if count == groupThreshold {
+ b = append(b, brx.group[0])
+ count = 1
- for j := len(brx.group) - 1; j >= 0; j-- {
- b = append(b, brx.group[j])
+ if !inSecondary {
+ inSecondary = true
+ groupThreshold = 2
}
-
- count = 1
} else {
count++
}
@@ -115,11 +112,14 @@ func (brx *brx_IN) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ b = append(b, brx.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
-
}