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_SE/en_SE.go')
-rw-r--r--en_SE/en_SE.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/en_SE/en_SE.go b/en_SE/en_SE.go
index 7cd03355..de05decc 100644
--- a/en_SE/en_SE.go
+++ b/en_SE/en_SE.go
@@ -162,7 +162,9 @@ func (en *en_SE) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- b = append(b, en.Percent[0])
+ b = append(b, " "...)
+
+ b = append(b, en.percent...)
return b
}