2017-04-30 05:34:45 -04:00
|
|
|
// Copyright 2017 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package lang
|
|
|
|
|
|
|
|
import (
|
2023-02-25 03:24:59 -05:00
|
|
|
"context"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
2021-07-28 06:28:52 -04:00
|
|
|
"github.com/gohugoio/hugo/langs"
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/tpl/internal"
|
2017-04-30 05:34:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const name = "lang"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
f := func(d *deps.Deps) *internal.TemplateFuncsNamespace {
|
2023-01-04 12:24:36 -05:00
|
|
|
ctx := New(d, langs.GetTranslator(d.Conf.Language()))
|
2017-04-30 05:34:45 -04:00
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns := &internal.TemplateFuncsNamespace{
|
2017-04-30 05:34:45 -04:00
|
|
|
Name: name,
|
2023-02-25 03:24:59 -05:00
|
|
|
Context: func(cctx context.Context, args ...any) (any, error) { return ctx, nil },
|
2017-04-30 05:34:45 -04:00
|
|
|
}
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Translate,
|
|
|
|
[]string{"i18n", "T"},
|
|
|
|
[][2]string{},
|
|
|
|
)
|
|
|
|
|
2021-07-28 06:28:52 -04:00
|
|
|
ns.AddMethodMapping(ctx.FormatNumber,
|
2016-12-28 23:09:31 -05:00
|
|
|
nil,
|
|
|
|
[][2]string{
|
2021-07-28 06:28:52 -04:00
|
|
|
{`{{ 512.5032 | lang.FormatNumber 2 }}`, `512.50`},
|
2016-12-28 23:09:31 -05:00
|
|
|
},
|
|
|
|
)
|
2021-07-28 06:28:52 -04:00
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.FormatPercent,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ 512.5032 | lang.FormatPercent 2 }}`, `512.50%`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.FormatCurrency,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ 512.5032 | lang.FormatCurrency 2 "USD" }}`, `$512.50`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.FormatAccounting,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ 512.5032 | lang.FormatAccounting 2 "NOK" }}`, `NOK512.50`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.FormatNumberCustom,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ lang.FormatNumberCustom 2 12345.6789 }}`, `12,345.68`},
|
|
|
|
{`{{ lang.FormatNumberCustom 2 12345.6789 "- , ." }}`, `12.345,68`},
|
|
|
|
{`{{ lang.FormatNumberCustom 6 -12345.6789 "- ." }}`, `-12345.678900`},
|
|
|
|
{`{{ lang.FormatNumberCustom 0 -12345.6789 "- . ," }}`, `-12,346`},
|
2023-03-20 12:39:33 -04:00
|
|
|
{`{{ lang.FormatNumberCustom 0 -12345.6789 "-|.| " "|" }}`, `-12 346`},
|
2021-07-28 06:28:52 -04:00
|
|
|
{`{{ -98765.4321 | lang.FormatNumberCustom 2 }}`, `-98,765.43`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
return ns
|
2017-04-30 05:34:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
internal.AddTemplateFuncsNamespace(f)
|
|
|
|
}
|