Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/lang/lang.go')
-rw-r--r--tpl/lang/lang.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl/lang/lang.go b/tpl/lang/lang.go
index 0cf448caa..49f4dc1ec 100644
--- a/tpl/lang/lang.go
+++ b/tpl/lang/lang.go
@@ -20,8 +20,8 @@ import (
"strconv"
"strings"
- translators "github.com/bep/gotranslators"
- "github.com/go-playground/locales"
+ translators "github.com/gohugoio/localescompressed"
+ "github.com/gohugoio/locales"
"github.com/pkg/errors"
"github.com/gohugoio/hugo/deps"
@@ -186,7 +186,7 @@ func (ns *Namespace) FormatNumberCustom(precision, number interface{}, options .
exp := math.Pow(10.0, float64(prec))
r := math.Round(n*exp) / exp
- // Logic from MIT Licensed github.com/go-playground/locales/
+ // Logic from MIT Licensed github.com/gohugoio/locales/
// Original Copyright (c) 2016 Go Playground
s := strconv.FormatFloat(math.Abs(r), 'f', prec, 64)