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 'en_SX/en_SX.go')
-rw-r--r--en_SX/en_SX.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/en_SX/en_SX.go b/en_SX/en_SX.go
index b2b1c368..57cc3726 100644
--- a/en_SX/en_SX.go
+++ b/en_SX/en_SX.go
@@ -66,8 +66,8 @@ func (en *en_SX) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
func (en *en_SX) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
n := math.Abs(num)
- nMod10 := math.Mod(n, 10)
nMod100 := math.Mod(n, 100)
+ nMod10 := math.Mod(n, 10)
if nMod10 == 1 && nMod100 != 11 {
return locales.PluralRuleOne
@@ -159,7 +159,7 @@ func (en *en_SX) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, en.Percent[0])
+ b = append(b, en.percent...)
return b
}