47 lines
928 B
TypeScript
47 lines
928 B
TypeScript
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',
|
|
},
|
|
},
|
|
}
|