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>
36 lines
2.0 KiB
JSON
36 lines
2.0 KiB
JSON
{
|
|
"title": { "translation": "clide" },
|
|
"subtitle": { "translation": "IDE for Claude Code CLI" },
|
|
"open-project": { "translation": "Open project" },
|
|
"open-project.hint": { "translation": "Pick a git repository to open as the workspace" },
|
|
"tab.title": { "translation": "Welcome" },
|
|
"section.tips": { "translation": "TIPS" },
|
|
"section.start": { "translation": "START" },
|
|
"section.recent": { "translation": "RECENT" },
|
|
"tips.quickOpen": { "translation": "Quick open" },
|
|
"tips.commandPalette": { "translation": "Command palette" },
|
|
"tips.toggleSidebar": { "translation": "Toggle sidebar" },
|
|
"tips.toggleContext": { "translation": "Toggle context" },
|
|
"tips.findInFiles": { "translation": "Find in files" },
|
|
"tips.focusMode": { "translation": "Focus mode" },
|
|
"action.openFolder": { "translation": "Open folder…" },
|
|
"recent.empty": { "translation": "No recent projects." },
|
|
"sticky.label": { "translation": "always open this project on launch" },
|
|
"sticky.tooltip": { "translation": "Always open this project on launch" },
|
|
"sticky.tooltip.active": { "translation": "Always open this project on launch (uncheck to restore picker)" },
|
|
"status.checking": { "translation": "checking…" },
|
|
"status.ok": { "translation": "application ok" },
|
|
"status.notFound": { "translation": "{tool} not found" },
|
|
"status.theme": { "translation": "theme: " },
|
|
"dialog.openProject.title": { "translation": "Open project" },
|
|
"dialog.openProject.body": { "translation": "Enter the path to a git repository." },
|
|
"dialog.openProject.error": { "translation": "Not a git repository" },
|
|
"button.cancel": { "translation": "Cancel" },
|
|
"button.open": { "translation": "Open" },
|
|
"button.opening": { "translation": "Opening…" },
|
|
"button.ok": { "translation": "OK" },
|
|
"dialog.notRepo.title": { "translation": "No git repo found" },
|
|
"dialog.notRepo.body": { "translation": "A clide project root requires a git repository." },
|
|
"command.workspace.open-project": { "translation": "Workspace: Open project…" }
|
|
}
|