Move the catalogs out of lib/kernel/src/i18n/catalog/ into assets/i18n/, and
switch the layout from a `{namespace}_{locale}.json` filename to a per-locale
DIRECTORY: assets/i18n/en_us/{namespace}.json. Adding a language is now just a
new folder (assets/i18n/nl_nl/, nl_be, en_eu, …) of the same namespace files —
no renames — which is cleaner to maintain and mirrors how an external
extension ships its own catalog. AssetCatalogLoader/FileCatalogLoader resolve
`<root>/<locale>/<namespace>.json`; pubspec bundles the locale folder.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
704 B
JSON
16 lines
704 B
JSON
{
|
|
"a11y.log": { "translation": "output log" },
|
|
"empty": { "translation": "No output yet." },
|
|
"empty.filtered": { "translation": "No output matches the filter." },
|
|
"filter.hint": { "translation": "Filter…" },
|
|
"chip.level": { "translation": "Level: {level}" },
|
|
"chip.source": { "translation": "Source: {source}" },
|
|
"chip.clear": { "translation": "Clear" },
|
|
"source.all": { "translation": "all" },
|
|
"a11y.jumpToLatest": { "translation": "jump to latest" },
|
|
"jump.label": { "translation": "Jump to latest ↓" },
|
|
"a11y.toggleDock": { "translation": "toggle output dock" },
|
|
"dock.label": { "translation": "Output" },
|
|
"command.dock.toggle": { "translation": "Toggle output dock" }
|
|
}
|