Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Revert changes to translation.go

Cette révision appartient à :
ElegantMonkey 2017-05-08 20:44:41 -03:00
Parent 17186a070e
révision caa3168c90

Voir le fichier

@ -2,6 +2,7 @@ package languages
import (
"github.com/nicksnyder/go-i18n/i18n"
"fmt"
"html/template"
"net/http"
)
@ -9,8 +10,8 @@ import (
func SetTranslation(tmpl *template.Template, language string, languages ...string) {
T, _ := i18n.Tfunc(language, languages...)
tmpl.Funcs(map[string]interface{}{
"T": func(str string) template.HTML {
return template.HTML(T(str))
"T": func(str string, args ...interface{}) template.HTML {
return template.HTML(fmt.Sprintf(T(str), args...))
},
})
}