cli/pkg/i18n/locales/en_US.json
Snider 39de3c2836 refactor(i18n): slim locale files using composable grammar
Reduce locale files from ~4600 to 338 total lines (93% reduction):
- en_GB.json: 1520 → 262 lines (83% reduction)
- en_US.json: ~1500 → 10 lines (US spelling overrides only)
- en_AU.json: ~1500 → 2 lines (inherits from en_GB)
- de.json: 120 → 64 lines

Removed redundant entries that can now be composed via core.* patterns:
- Labels: T("core.label.status") → "Status:"
- Counts: T("core.count.item", 5) → "5 items"
- Progress: T("core.progress.build") → "Building..."
- Done/Fail: T("core.done.build", subj) → "Build completed"

Updated tests to use new key patterns.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 14:24:23 +00:00

10 lines
365 B
JSON

{
"gram": {
"verb": {
"analyse": { "base": "analyze", "past": "analyzed", "gerund": "analyzing" },
"organise": { "base": "organize", "past": "organized", "gerund": "organizing" },
"recognise": { "base": "recognize", "past": "recognized", "gerund": "recognizing" },
"realise": { "base": "realize", "past": "realized", "gerund": "realizing" }
}
}
}