优化: AI Chat全栈多批审查修复与架构清理(risk_level清理/路由解耦/工具渲染/测试补测/死代码)
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
export default {
|
||||
auditLog: {
|
||||
title: 'Approval History',
|
||||
refresh: 'Refresh',
|
||||
desc: 'AI tool call audit records (newest first). Arguments and results show summaries only; full data persists in the local database.',
|
||||
loading: 'Loading…',
|
||||
empty: 'No audit records',
|
||||
|
||||
col: {
|
||||
time: 'Requested',
|
||||
tool: 'Tool',
|
||||
risk: 'Risk',
|
||||
status: 'Status',
|
||||
decided: 'Decided by',
|
||||
args: 'Args summary',
|
||||
result: 'Result summary',
|
||||
},
|
||||
|
||||
pager: {
|
||||
prev: 'Prev',
|
||||
next: 'Next',
|
||||
page: 'Page {n}',
|
||||
last: '(last)',
|
||||
},
|
||||
|
||||
risk: {
|
||||
low: 'Low',
|
||||
medium: 'Med',
|
||||
high: 'High',
|
||||
},
|
||||
|
||||
status: {
|
||||
pending: 'Pending',
|
||||
approved: 'Approved',
|
||||
rejected: 'Rejected',
|
||||
executing: 'Executing',
|
||||
completed: 'Completed',
|
||||
failed: 'Failed',
|
||||
},
|
||||
|
||||
decided: {
|
||||
human: 'Human',
|
||||
auto: 'Auto',
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user