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_GH/en_GH.go')
-rw-r--r--en_GH/en_GH.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/en_GH/en_GH.go b/en_GH/en_GH.go
index 96e68e5d..5d5f1e0f 100644
--- a/en_GH/en_GH.go
+++ b/en_GH/en_GH.go
@@ -66,8 +66,8 @@ func (en *en_GH) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
func (en *en_GH) 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 == 1 && nMod100 != 11 {
return locales.PluralRuleOne
@@ -159,7 +159,7 @@ func (en *en_GH) 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
}