spf13--cobra/go.mod
Goutte ab14efa558 feat(i18n): implement localization using gettext files
- Recipe to extract new translations from the Go code: `make i18n_extract`
- Embedded `MO` files
- Detect language from environment variables
- Some strings were pluralized
2023-12-16 10:55:52 +01:00

13 lines
292 B
Modula-2

module github.com/spf13/cobra
go 1.16
require (
github.com/cpuguy83/go-md2man/v2 v2.0.3
github.com/inconshreveable/mousetrap v1.1.0
github.com/leonelquinteros/gotext v1.5.3-0.20231003122255-12a99145a351
github.com/spf13/pflag v1.0.5
golang.org/x/text v0.4.0
gopkg.in/yaml.v3 v3.0.1
)