fix subcommand cannot be translated

Signed-off-by: aiyijing <aiyijing@live.com>
pull/16852/head
aiyijing 2023-07-09 22:53:00 +08:00
parent f23e93b1c4
commit f601318df7
1 changed files with 13 additions and 2 deletions

View File

@ -140,7 +140,7 @@ func Execute() {
}
}
for _, c := range RootCmd.Commands() {
visitAllCommand(RootCmd, func(c *cobra.Command) {
c.Short = translate.T(c.Short)
c.Long = translate.T(c.Long)
c.Flags().VisitAll(func(f *pflag.Flag) {
@ -148,7 +148,8 @@ func Execute() {
})
c.SetUsageTemplate(usageTemplate())
}
})
RootCmd.Short = translate.T(RootCmd.Short)
RootCmd.Long = translate.T(RootCmd.Long)
RootCmd.Flags().VisitAll(func(f *pflag.Flag) {
@ -340,3 +341,13 @@ func addToPath(dir string) {
func validateUsername(name string) bool {
return len(name) <= 60
}
// visitAllCommand visit all command include subCommand
func visitAllCommand(cmd *cobra.Command, f func(subCmd *cobra.Command)) {
for _, c := range cmd.Commands() {
f(c)
if c.HasSubCommands() {
visitAllCommand(c, f)
}
}
}