pl.go

 1package languages
 2
 3import (
 4	"github.com/floatpane/matcha/i18n"
 5	"golang.org/x/text/language"
 6)
 7
 8func init() {
 9	i18n.RegisterLanguage(&i18n.Locale{
10		Tag:        language.Polish,
11		Code:       "pl",
12		Name:       "Polish",
13		NativeName: "Polski",
14		Direction:  "ltr",
15		PluralFunc: i18n.PolishPlural,
16	})
17}