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: '日誌詳情',
| fileListDetail: '細節',
| fileListLabel: '檔詳細資訊',
| },
| promptLog: 'Prompt 日誌',
| agentLog: 'Agent 日誌',
| viewLog: '檢視日誌',
| agentLogDetail: {
| agentMode: 'Agent 模式',
| toolUsed: '使用工具',
| iterations: '迭代次數',
| iteration: '迭代',
| finalProcessing: '最終處理',
| },
| }
|
| export default translation
|
|