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 'cs_CZ/cs_CZ.go')
-rw-r--r--cs_CZ/cs_CZ.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cs_CZ/cs_CZ.go b/cs_CZ/cs_CZ.go
index 95cee901..a78814b2 100644
--- a/cs_CZ/cs_CZ.go
+++ b/cs_CZ/cs_CZ.go
@@ -196,9 +196,9 @@ func (cs *cs_CZ) FmtPercent(num float64, v uint64) []byte {
b[i], b[j] = b[j], b[i]
}
- for j := len(cs.percent) - 1; j >= 0; j-- {
- b = append(b, cs.percent[j])
- }
+ b = append(b, " "...)
+
+ b = append(b, cs.percent...)
return b
}