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/az/az.go
diff options
context:
space:
mode:
Diffstat (limited to 'az/az.go')
-rw-r--r--az/az.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/az/az.go b/az/az.go
index a50b8f27..079e7e65 100644
--- a/az/az.go
+++ b/az/az.go
@@ -66,9 +66,9 @@ func (az *az) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
n := math.Abs(num)
i := int64(n)
+ iMod1000 := i % 1000
iMod10 := i % 10
iMod100 := i % 100
- iMod1000 := i % 1000
if (iMod10 == 1 || iMod10 == 2 || iMod10 == 5 || iMod10 == 7 || iMod10 == 8) || (iMod100 == 20 || iMod100 == 50 || iMod100 == 70 || iMod100 == 80) {
return locales.PluralRuleOne
@@ -171,7 +171,7 @@ func (az *az) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, az.Percent[0])
+ b = append(b, az.percent...)
return b
}