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/fa_AF
diff options
context:
space:
mode:
authorjoeybloggs <Dean.Karn@gmail.com>2016-08-13 05:03:24 +0300
committerjoeybloggs <Dean.Karn@gmail.com>2016-08-13 05:03:24 +0300
commit99657750cc781e41c9c1e3be6b6316c18fc430bd (patch)
tree3366a7d2a645600dbe8efbadc86874f94c1cedb5 /fa_AF
parent7639a439740dfc3cdda4ae188bf3baf7cc2ff7a3 (diff)
ad variable grouping logic + cleanup generated code newlines
Diffstat (limited to 'fa_AF')
-rw-r--r--fa_AF/fa_AF.go15
1 files changed, 7 insertions, 8 deletions
diff --git a/fa_AF/fa_AF.go b/fa_AF/fa_AF.go
index bfa7bd6b..3ab4734e 100644
--- a/fa_AF/fa_AF.go
+++ b/fa_AF/fa_AF.go
@@ -77,19 +77,15 @@ func (fa *fa_AF) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint6
// avoid allocations; otherwise just cast as string.
func (fa *fa_AF) 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(fa.decimal) + len(fa.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(fa.decimal) - 1; j >= 0; j-- {
b = append(b, fa.decimal[j])
}
@@ -100,9 +96,7 @@ func (fa *fa_AF) FmtNumber(num float64, v uint64) []byte {
}
if inWhole {
-
if count == 3 {
-
for j := len(fa.group) - 1; j >= 0; j-- {
b = append(b, fa.group[j])
}
@@ -116,11 +110,16 @@ func (fa *fa_AF) FmtNumber(num float64, v uint64) []byte {
b = append(b, s[i])
}
+ if num < 0 {
+ for j := len(fa.minus) - 1; j >= 0; j-- {
+ b = append(b, fa.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
-
}