1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| const translation = {
| title: '日志',
| description: '日志记录了应用的运行情况,包括用户的输入和 AI 的回复。',
| dateTimeFormat: 'YYYY-MM-DD HH:mm',
| table: {
| header: {
| updatedTime: '更新时间',
| time: '创建时间',
| endUser: '用户或账户',
| input: '输入',
| output: '输出',
| summary: '标题',
| messageCount: '消息数',
| userRate: '用户反馈',
| adminRate: '管理员反馈',
| startTime: '开始时间',
| status: '状态',
| runtime: '运行时间',
| tokens: 'TOKENS',
| user: '用户或账户',
| version: '版本',
| },
| pagination: {
| previous: '上一页',
| next: '下一页',
| },
| empty: {
| noChat: '未开始的对话',
| noOutput: '无输出',
| element: {
| title: '这里有人吗',
| content: '在这里观测和标注最终用户和 AI 应用程序之间的交互,以不断提高 AI 的准确性。您可以<testLink>试试</testLink> WebApp 或<shareLink>分享</shareLink>出去,然后返回此页面。',
| },
| },
| },
| detail: {
| time: '时间',
| conversationId: '对话 ID',
| promptTemplate: '前缀提示词',
| promptTemplateBeforeChat: '对话前提示词 · 以系统消息提交',
| annotationTip: '{{user}} 标记的改进回复',
| timeConsuming: '耗时',
| second: ' 秒',
| tokenCost: '花费 Token',
| loading: '加载中',
| operation: {
| like: '赞同',
| dislike: '反对',
| addAnnotation: '标记改进回复',
| editAnnotation: '编辑改进回复',
| annotationPlaceholder: '输入你希望 AI 回复的预期答案,这在今后可用于模型微调,持续改进文本生成质量。',
| },
| variables: '变量',
| uploadImages: '上传的图片',
| modelParams: '模型参数',
| },
| filter: {
| period: {
| today: '今天',
| last7days: '过去 7 天',
| last4weeks: '过去 4 周',
| last3months: '过去 3 月',
| last12months: '过去 12 月',
| monthToDate: '本月至今',
| quarterToDate: '本季度至今',
| yearToDate: '本年至今',
| allTime: '所有时间',
| },
| annotation: {
| all: '全部',
| annotated: '已标注改进({{count}} 项)',
| not_annotated: '未标注',
| },
| sortBy: '排序:',
| descending: '降序',
| ascending: '升序',
| },
| workflowTitle: '日志',
| workflowSubtitle: '日志记录了应用的执行情况',
| runDetail: {
| title: '对话日志',
| workflowTitle: '日志详情',
| fileListLabel: '文件详情',
| fileListDetail: '详情',
| },
| promptLog: 'Prompt 日志',
| agentLog: 'Agent 日志',
| viewLog: '查看日志',
| agentLogDetail: {
| agentMode: 'Agent 模式',
| toolUsed: '使用工具',
| iterations: '迭代次数',
| iteration: '迭代',
| finalProcessing: '最终处理',
| },
| }
|
| export default translation
|
|