WIP: feat: translation support
Some checks failed
continuous-integration/drone/push Build is failing

See #483
This commit is contained in:
2025-08-19 11:22:52 +02:00
parent 5cf6048ecb
commit a31ec51c24
71 changed files with 804 additions and 796 deletions

View File

@ -1,10 +1,13 @@
package server
import "github.com/spf13/cobra"
import (
"github.com/leonelquinteros/gotext"
"github.com/spf13/cobra"
)
// ServerCommand defines the `abra server` command and its subcommands
var ServerCommand = &cobra.Command{
Use: "server [cmd] [args] [flags]",
Use: gotext.Get("server [cmd] [args] [flags]"),
Aliases: []string{"s"},
Short: "Manage servers",
Short: gotext.Get("Manage servers"),
}