1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 12:31:58 +00:00

i18n: add the ability to register template funcs per locale

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-09-10 06:22:53 +03:00
parent a1f7f57922
commit 59b8ddf5be
6 changed files with 59 additions and 27 deletions

View File

@@ -1,12 +1,18 @@
package main
import (
"github.com/kataras/iris/v12"
"text/template"
"github.com/kataras/iris/v12"
// go get -u github.com/gertd/go-pluralize
"github.com/gertd/go-pluralize"
)
/*
Iris I18n supports text/template inside the translation values.
Follow this tutorial to learn how to use that feature.
*/
func main() {
app := newApp()
app.Listen(":8080")
@@ -16,18 +22,23 @@ func newApp() *iris.Application {
app := iris.New()
pluralize := pluralize.NewClient()
app.I18n.Loader.FuncMap = map[string]interface{}{
"plural": func(word string, count int) string {
// Your own implementation or use a 3rd-party package
// like we do here.
//
// Note that this is only for english,
// but you can accept the language code
// and use a map with dictionaries to
// pluralize words based on the given language.
return pluralize.Pluralize(word, count, true)
},
// Set custom functions per locale!
app.I18n.Loader.Funcs = func(current iris.Locale) template.FuncMap {
return template.FuncMap{
"plural": func(word string, count int) string {
// Your own implementation or use a 3rd-party package
// like we do here.
//
// Note that this is only for english,
// but you can accept the language code
// and use a map with dictionaries to
// pluralize words based on the given language.
return pluralize.Pluralize(word, count, true)
},
}
}
app.I18n.Load("./locales/*/*.yml", "en-US", "el-GR")
app.Get("/", func(ctx iris.Context) {