mirror of
https://github.com/langgenius/dify.git
synced 2026-04-14 07:56:31 +08:00
Co-authored-by: AkaraChen <akarachen@outlook.com> Co-authored-by: Yi <yxiaoisme@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: kurokobo <kuro664@gmail.com> Co-authored-by: Hiroshi Fujita <fujita-h@users.noreply.github.com>
32 lines
729 B
TypeScript
32 lines
729 B
TypeScript
const translation = {
|
||
input: '输入',
|
||
result: '结果',
|
||
detail: '详情',
|
||
tracing: '追踪',
|
||
resultPanel: {
|
||
status: '状态',
|
||
time: '运行时间',
|
||
tokens: '总 token 数',
|
||
},
|
||
meta: {
|
||
title: '元数据',
|
||
status: '状态',
|
||
version: '版本',
|
||
executor: '执行人',
|
||
startTime: '开始时间',
|
||
time: '运行时间',
|
||
tokens: '总 token 数',
|
||
steps: '运行步数',
|
||
},
|
||
resultEmpty: {
|
||
title: '本次运行仅输出JSON格式,',
|
||
tipLeft: '请转到',
|
||
link: '详细信息面板',
|
||
tipRight: '查看它。',
|
||
},
|
||
actionLogs: 'Action 日志',
|
||
circularInvocationTip: '当前工作流中存在工具/节点的循环调用。',
|
||
}
|
||
|
||
export default translation
|