Files
Claude-Code-Workflow/ccw/docs-site/.docusaurus/i18n.json
catlog22 37ba849e75 feat: add CLI Viewer Page with multi-pane layout and state management
- Implemented the CliViewerPage component for displaying CLI outputs in a configurable multi-pane layout.
- Integrated Zustand for state management, allowing for dynamic layout changes and tab management.
- Added layout options: single, split horizontal, split vertical, and 2x2 grid.
- Created viewerStore for managing layout, panes, and tabs, including actions for adding/removing panes and tabs.
- Added CoordinatorPage barrel export for easier imports.
2026-02-03 17:28:26 +08:00

31 lines
603 B
JSON

{
"defaultLocale": "en",
"locales": [
"en",
"zh"
],
"path": "i18n",
"currentLocale": "en",
"localeConfigs": {
"en": {
"label": "English",
"direction": "ltr",
"htmlLang": "en",
"calendar": "gregory",
"path": "en",
"translate": false,
"url": "http://localhost:3001",
"baseUrl": "/docs/"
},
"zh": {
"label": "中文",
"direction": "ltr",
"htmlLang": "zh",
"calendar": "gregory",
"path": "zh",
"translate": true,
"url": "http://localhost:3001",
"baseUrl": "/docs/zh/"
}
}
}