Replace hardcoded strings with i18n.T() calls across all cmd/* packages: - ai, build, ci, dev, docs, doctor, go, php, pkg, sdk, setup, test, vm Adds 500+ translation keys to en.json for command descriptions, flag descriptions, labels, messages, and error strings. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
78 lines
1.9 KiB
Go
78 lines
1.9 KiB
Go
package docs
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/host-uk/core/cmd/shared"
|
|
"github.com/host-uk/core/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Flag variable for list command
|
|
var docsListRegistryPath string
|
|
|
|
var docsListCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: i18n.T("cmd.docs.list.short"),
|
|
Long: i18n.T("cmd.docs.list.long"),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runDocsList(docsListRegistryPath)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
docsListCmd.Flags().StringVar(&docsListRegistryPath, "registry", "", i18n.T("cmd.docs.list.flag.registry"))
|
|
}
|
|
|
|
func runDocsList(registryPath string) error {
|
|
reg, _, err := loadRegistry(registryPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf("\n%-20s %-8s %-8s %-10s %s\n",
|
|
headerStyle.Render(i18n.T("cmd.docs.list.header.repo")),
|
|
headerStyle.Render(i18n.T("cmd.docs.list.header.readme")),
|
|
headerStyle.Render(i18n.T("cmd.docs.list.header.claude")),
|
|
headerStyle.Render(i18n.T("cmd.docs.list.header.changelog")),
|
|
headerStyle.Render(i18n.T("cmd.docs.list.header.docs")),
|
|
)
|
|
fmt.Println(strings.Repeat("─", 70))
|
|
|
|
var withDocs, withoutDocs int
|
|
for _, repo := range reg.List() {
|
|
info := scanRepoDocs(repo)
|
|
|
|
readme := shared.CheckMark(info.Readme != "")
|
|
claude := shared.CheckMark(info.ClaudeMd != "")
|
|
changelog := shared.CheckMark(info.Changelog != "")
|
|
|
|
docsDir := shared.CheckMark(false)
|
|
if len(info.DocsFiles) > 0 {
|
|
docsDir = docsFoundStyle.Render(i18n.T("cmd.docs.list.files_count", map[string]interface{}{"Count": len(info.DocsFiles)}))
|
|
}
|
|
|
|
fmt.Printf("%-20s %-8s %-8s %-10s %s\n",
|
|
repoNameStyle.Render(info.Name),
|
|
readme,
|
|
claude,
|
|
changelog,
|
|
docsDir,
|
|
)
|
|
|
|
if info.HasDocs {
|
|
withDocs++
|
|
} else {
|
|
withoutDocs++
|
|
}
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Printf("%s %s\n",
|
|
shared.Label(i18n.T("cmd.docs.list.coverage_label")),
|
|
i18n.T("cmd.docs.list.coverage_summary", map[string]interface{}{"WithDocs": withDocs, "WithoutDocs": withoutDocs}),
|
|
)
|
|
|
|
return nil
|
|
}
|