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/en_GI
diff options
context:
space:
mode:
authorjoeybloggs <Dean.Karn@gmail.com>2016-08-15 05:41:26 +0300
committerjoeybloggs <Dean.Karn@gmail.com>2016-08-15 05:41:26 +0300
commit15e8d9841c4e3269faa135537ab14e77ae1a0a81 (patch)
treebd1e150efc7f3b56df3400489d168b21b9ff7913 /en_GI
parentfb2acb93602d54a9be9ff735bcabbe17a66cb876 (diff)
sure up percent prefix logic, just need to turn prefixes into bytes...
Diffstat (limited to 'en_GI')
-rw-r--r--en_GI/en_GI.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/en_GI/en_GI.go b/en_GI/en_GI.go
index ff26d457..2ab60757 100644
--- a/en_GI/en_GI.go
+++ b/en_GI/en_GI.go
@@ -66,8 +66,8 @@ func (en *en_GI) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
func (en *en_GI) 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_GI) 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
}