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/cs/cs.go
diff options
context:
space:
mode:
Diffstat (limited to 'cs/cs.go')
-rw-r--r--cs/cs.go15
1 files changed, 7 insertions, 8 deletions
diff --git a/cs/cs.go b/cs/cs.go
index d01751f0..6447975c 100644
--- a/cs/cs.go
+++ b/cs/cs.go
@@ -114,19 +114,15 @@ func (cs *cs) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64)
// avoid allocations; otherwise just cast as string.
func (cs *cs) 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(cs.decimal) + len(cs.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(cs.decimal) - 1; j >= 0; j-- {
b = append(b, cs.decimal[j])
}
@@ -137,9 +133,7 @@ func (cs *cs) FmtNumber(num float64, v uint64) []byte {
}
if inWhole {
-
if count == 3 {
-
for j := len(cs.group) - 1; j >= 0; j-- {
b = append(b, cs.group[j])
}
@@ -153,11 +147,16 @@ func (cs *cs) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ for j := len(cs.minus) - 1; j >= 0; j-- {
+ b = append(b, cs.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
-
}