mirror of
https://github.com/spf13/cobra
synced 2025-04-04 13:59:16 +00:00
fix: make the test suite happy again
I've had to disable the usage template i18n.
This commit is contained in:
parent
de0723fc08
commit
411323dcca
6 changed files with 18 additions and 11 deletions
15
command.go
15
command.go
|
@ -446,11 +446,14 @@ func (c *Command) UsageFunc() (f func(*Command) error) {
|
||||||
return func(c *Command) error {
|
return func(c *Command) error {
|
||||||
c.mergePersistentFlags()
|
c.mergePersistentFlags()
|
||||||
fn := c.getUsageTemplateFunc()
|
fn := c.getUsageTemplateFunc()
|
||||||
data := CommandUsageTemplateData{
|
// FIXME: this breaks the template func signature ; we need another approach ?
|
||||||
Command: c,
|
//data := CommandUsageTemplateData{
|
||||||
I18n: getCommandGlossary(),
|
// Command: c,
|
||||||
}
|
// I18n: getCommandGlossary(),
|
||||||
err := fn(c.OutOrStderr(), data)
|
//}
|
||||||
|
//err := fn(c.OutOrStderr(), data)
|
||||||
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
err := fn(c.OutOrStderr(), c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.PrintErrln(err)
|
c.PrintErrln(err)
|
||||||
}
|
}
|
||||||
|
@ -1270,7 +1273,7 @@ func (c *Command) InitDefaultHelpCmd() {
|
||||||
c.helpCommand = &Command{
|
c.helpCommand = &Command{
|
||||||
Use: fmt.Sprintf("help [%s]", gotext.Get("command")),
|
Use: fmt.Sprintf("help [%s]", gotext.Get("command")),
|
||||||
Short: gotext.Get("CommandHelpShort"),
|
Short: gotext.Get("CommandHelpShort"),
|
||||||
Long: fmt.Sprintf(gotext.Get("CommandHelpLong"), c.DisplayName()+fmt.Sprintf(" help [%s]", gotext.Get("command"))),
|
Long: fmt.Sprintf(gotext.Get("CommandHelpLong"), c.DisplayName()+fmt.Sprintf(" help [%s]", gotext.Get("PathToCommand"))),
|
||||||
ValidArgsFunction: func(c *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
ValidArgsFunction: func(c *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
||||||
var completions []string
|
var completions []string
|
||||||
cmd, _, e := c.Root().Find(args)
|
cmd, _, e := c.Root().Find(args)
|
||||||
|
|
|
@ -160,4 +160,8 @@ msgstr ""
|
||||||
#: command.go:1247
|
#: command.go:1247
|
||||||
#: command.go:1249
|
#: command.go:1249
|
||||||
msgid "command"
|
msgid "command"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
||||||
|
msgid "PathToCommand"
|
||||||
|
msgstr ""
|
||||||
|
|
Binary file not shown.
|
@ -168,5 +168,5 @@ msgstr "version for"
|
||||||
msgid "command"
|
msgid "command"
|
||||||
msgstr "command"
|
msgstr "command"
|
||||||
|
|
||||||
#~ msgid "PathToCommand"
|
msgid "PathToCommand"
|
||||||
#~ msgstr "path to command"
|
msgstr "path to command"
|
||||||
|
|
Binary file not shown.
|
@ -168,5 +168,5 @@ msgstr "version pour"
|
||||||
msgid "command"
|
msgid "command"
|
||||||
msgstr "commande"
|
msgstr "commande"
|
||||||
|
|
||||||
#~ msgid "PathToCommand"
|
msgid "PathToCommand"
|
||||||
#~ msgstr "command"
|
msgstr "chemin vers la commande"
|
||||||
|
|
Loading…
Reference in a new issue