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