cli/pkg/go
Snider 3dd61b5ac7 refactor(go): use i18n grammar engine instead of translation keys
Replace hardcoded i18n.T() key lookups with grammar helpers:
- i18n.Label("test") → "Test:"
- i18n.Progress("install") → "Installing..."
- i18n.ProgressSubject("run", "tests") → "Running tests..."
- i18n.T("i18n.done.pass") → "Passed"
- i18n.T("i18n.fail.install", "binary") → "Failed to install binary"
- i18n.T("i18n.count.check", n) → "5 checks"

The grammar engine computes verb forms (past tense, gerund) and
noun forms (plurals) automatically from built-in tables, eliminating
the need for hundreds of individual translation keys.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 22:43:39 +00:00
..
cmd_commands.go refactor(cli): move commands from cmd/ to pkg/ with self-registration 2026-01-30 21:55:55 +00:00
cmd_format.go refactor(go): use i18n grammar engine instead of translation keys 2026-01-30 22:43:39 +00:00
cmd_go.go feat(go): add QA command with subcommands for code quality checks 2026-01-30 22:29:20 +00:00
cmd_gotest.go refactor(go): use i18n grammar engine instead of translation keys 2026-01-30 22:43:39 +00:00
cmd_qa.go refactor(go): use i18n grammar engine instead of translation keys 2026-01-30 22:43:39 +00:00
cmd_tools.go refactor(go): use i18n grammar engine instead of translation keys 2026-01-30 22:43:39 +00:00