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 'ug_CN/ug_CN.go')
-rw-r--r--ug_CN/ug_CN.go23
1 files changed, 7 insertions, 16 deletions
diff --git a/ug_CN/ug_CN.go b/ug_CN/ug_CN.go
index a84d8121..a9d85b8a 100644
--- a/ug_CN/ug_CN.go
+++ b/ug_CN/ug_CN.go
@@ -87,36 +87,24 @@ func (ug *ug_CN) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
// avoid allocations; otherwise just cast as string.
func (ug *ug_CN) 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(ug.decimal) + len(ug.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(ug.decimal) - 1; j >= 0; j-- {
- b = append(b, ug.decimal[j])
- }
-
+ b = append(b, ug.decimal[0])
inWhole = true
continue
}
if inWhole {
-
if count == 3 {
-
- for j := len(ug.group) - 1; j >= 0; j-- {
- b = append(b, ug.group[j])
- }
-
+ b = append(b, ug.group[0])
count = 1
} else {
count++
@@ -126,11 +114,14 @@ func (ug *ug_CN) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ b = append(b, ug.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
-
}