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/sq_MK
diff options
context:
space:
mode:
authorjoeybloggs <Dean.Karn@gmail.com>2016-08-13 05:28:58 +0300
committerjoeybloggs <Dean.Karn@gmail.com>2016-08-13 05:28:58 +0300
commitfb2acb93602d54a9be9ff735bcabbe17a66cb876 (patch)
treed492be134bef8c8cea3187a5bd47c6159ad12740 /sq_MK
parentc934af383da7fcfcc5581f5474c094e703c86ff4 (diff)
add FmtPercent logic.
Diffstat (limited to 'sq_MK')
-rw-r--r--sq_MK/sq_MK.go37
1 files changed, 36 insertions, 1 deletions
diff --git a/sq_MK/sq_MK.go b/sq_MK/sq_MK.go
index 0ebabc1f..cb4fe918 100644
--- a/sq_MK/sq_MK.go
+++ b/sq_MK/sq_MK.go
@@ -65,8 +65,8 @@ func (sq *sq_MK) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
func (sq *sq_MK) 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 n == 1 {
return locales.PluralRuleOne
@@ -139,3 +139,38 @@ func (sq *sq_MK) FmtNumber(num float64, v uint64) []byte {
return b
}
+
+// FmtPercent returns 'num' with digits/precision of 'v' for 'sq_MK' and handles both Whole and Real numbers based on 'v'
+// returned as a []byte just in case the caller wishes to add more and can help
+// avoid allocations; otherwise just cast as string.
+// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
+func (sq *sq_MK) FmtPercent(num float64, v uint64) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ l := len(s) + len(sq.decimal)
+
+ b := make([]byte, 0, l)
+
+ for i := len(s) - 1; i >= 0; i-- {
+
+ if s[i] == '.' {
+ b = append(b, sq.decimal[0])
+ continue
+ }
+
+ b = append(b, s[i])
+ }
+
+ if num < 0 {
+ b = append(b, sq.minus[0])
+ }
+
+ // reverse
+ for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
+ b[i], b[j] = b[j], b[i]
+ }
+
+ b = append(b, sq.Percent[0])
+
+ return b
+}