113 lines
3.3 KiB
TypeScript
113 lines
3.3 KiB
TypeScript
const translation = {
|
||
title: '日志',
|
||
description: '日志记录了应用的运行情况,包括用户的输入和 AI 的回复。',
|
||
dateTimeFormat: 'YYYY-MM-DD HH:mm:ss',
|
||
dateFormat: 'YYYY-MM-DD',
|
||
table: {
|
||
header: {
|
||
updatedTime: '更新时间',
|
||
time: '创建时间',
|
||
endUser: '用户或账户',
|
||
input: '输入',
|
||
output: '输出',
|
||
summary: '标题',
|
||
messageCount: '消息数',
|
||
userRate: '用户反馈',
|
||
adminRate: '管理员反馈',
|
||
startTime: '开始时间',
|
||
status: '状态',
|
||
runtime: '运行时间',
|
||
tokens: 'TOKENS',
|
||
user: '用户或账户',
|
||
version: '版本',
|
||
triggered_from: '触发方式',
|
||
},
|
||
pagination: {
|
||
previous: '上一页',
|
||
next: '下一页',
|
||
},
|
||
empty: {
|
||
noChat: '未开始的对话',
|
||
noOutput: '无输出',
|
||
element: {
|
||
title: '这里有人吗',
|
||
content: '在这里观测和标注最终用户和 AI 应用程序之间的交互,以不断提高 AI 的准确性。您可以尝试<shareLink>分享</shareLink>或<testLink>测试</testLink>此Web应用程序,然后返回此页面。',
|
||
},
|
||
},
|
||
},
|
||
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 天',
|
||
last30days: '过去 30 天',
|
||
last4weeks: '过去 4 周',
|
||
last3months: '过去 3 月',
|
||
last12months: '过去 12 月',
|
||
monthToDate: '本月至今',
|
||
quarterToDate: '本季度至今',
|
||
yearToDate: '本年至今',
|
||
allTime: '所有时间',
|
||
custom: '自定义',
|
||
},
|
||
annotation: {
|
||
all: '全部',
|
||
annotated: '已标注改进({{count}} 项)',
|
||
not_annotated: '未标注',
|
||
},
|
||
sortBy: '排序:',
|
||
descending: '降序',
|
||
ascending: '升序',
|
||
},
|
||
workflowTitle: '日志',
|
||
workflowSubtitle: '日志记录了应用的执行情况',
|
||
runDetail: {
|
||
title: '对话日志',
|
||
workflowTitle: '日志详情',
|
||
fileListLabel: '文件详情',
|
||
fileListDetail: '详情',
|
||
testWithParams: '按此参数测试',
|
||
},
|
||
promptLog: 'Prompt 日志',
|
||
agentLog: 'Agent 日志',
|
||
viewLog: '查看日志',
|
||
agentLogDetail: {
|
||
agentMode: 'Agent 模式',
|
||
toolUsed: '使用工具',
|
||
iterations: '迭代次数',
|
||
iteration: '迭代',
|
||
finalProcessing: '最终处理',
|
||
},
|
||
triggerBy: {
|
||
debugging: '调试',
|
||
appRun: '网页应用',
|
||
webhook: 'Webhook',
|
||
schedule: '定时任务',
|
||
plugin: '插件',
|
||
ragPipelineRun: 'RAG 流水线',
|
||
ragPipelineDebugging: 'RAG 调试',
|
||
},
|
||
}
|
||
|
||
export default translation
|