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/be/be.go
diff options
context:
space:
mode:
Diffstat (limited to 'be/be.go')
-rw-r--r--be/be.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/be/be.go b/be/be.go
index 1866718b..b51da370 100644
--- a/be/be.go
+++ b/be/be.go
@@ -53,8 +53,8 @@ func (be *be) PluralsOrdinal() []locales.PluralRule {
func (be *be) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
n := math.Abs(num)
- nMod100 := math.Mod(n, 100)
nMod10 := math.Mod(n, 10)
+ nMod100 := math.Mod(n, 100)
if nMod10 == 1 && nMod100 != 11 {
return locales.PluralRuleOne
@@ -71,8 +71,8 @@ func (be *be) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
func (be *be) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
n := math.Abs(num)
- nMod100 := math.Mod(n, 100)
nMod10 := math.Mod(n, 10)
+ nMod100 := math.Mod(n, 100)
if (nMod10 == 2 || nMod10 == 3) && (nMod100 != 12 && nMod100 != 13) {
return locales.PluralRuleFew
@@ -163,7 +163,9 @@ func (be *be) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, be.Percent[0])
+ b = append(b, " "...)
+
+ b = append(b, be.percent...)
return b
}