Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
52 lines
2.0 KiB
JSON
52 lines
2.0 KiB
JSON
{
|
|
"Commands:": "命令:",
|
|
"Options:": "選項:",
|
|
"Examples:": "範例:",
|
|
"boolean": "布林",
|
|
"count": "次數",
|
|
"string": "字串",
|
|
"number": "數字",
|
|
"array": "陣列",
|
|
"required": "必填",
|
|
"default": "預設值",
|
|
"default:": "預設值:",
|
|
"choices:": "可選值:",
|
|
"aliases:": "別名:",
|
|
"generated-value": "生成的值",
|
|
"Not enough non-option arguments: got %s, need at least %s": {
|
|
"one": "non-option 引數不足:只傳入了 %s 個, 至少要 %s 個",
|
|
"other": "non-option 引數不足:只傳入了 %s 個, 至少要 %s 個"
|
|
},
|
|
"Too many non-option arguments: got %s, maximum of %s": {
|
|
"one": "non-option 引數過多:傳入了 %s 個, 但最多 %s 個",
|
|
"other": "non-option 引數過多:傳入了 %s 個, 但最多 %s 個"
|
|
},
|
|
"Missing argument value: %s": {
|
|
"one": "此引數無指定值:%s",
|
|
"other": "這些引數無指定值:%s"
|
|
},
|
|
"Missing required argument: %s": {
|
|
"one": "缺少必須的引數:%s",
|
|
"other": "缺少這些必須的引數:%s"
|
|
},
|
|
"Unknown argument: %s": {
|
|
"one": "未知的引數:%s",
|
|
"other": "未知的引數:%s"
|
|
},
|
|
"Invalid values:": "無效的選項值:",
|
|
"Argument: %s, Given: %s, Choices: %s": "引數名稱: %s, 傳入的值: %s, 可選的值:%s",
|
|
"Argument check failed: %s": "引數驗證失敗:%s",
|
|
"Implications failed:": "缺少依賴引數:",
|
|
"Not enough arguments following: %s": "沒有提供足夠的值給此引數:%s",
|
|
"Invalid JSON config file: %s": "無效的 JSON 設置文件:%s",
|
|
"Path to JSON config file": "JSON 設置文件的路徑",
|
|
"Show help": "顯示說明",
|
|
"Show version number": "顯示版本",
|
|
"Did you mean %s?": "您是指 %s 嗎?",
|
|
"Arguments %s and %s are mutually exclusive" : "引數 %s 和 %s 互斥",
|
|
"Positionals:": "位置:",
|
|
"command": "命令",
|
|
"deprecated": "已淘汰",
|
|
"deprecated: %s": "已淘汰:%s"
|
|
}
|