mirror of
https://github.com/langgenius/dify.git
synced 2026-04-07 16:57:59 +08:00
25 lines
452 B
TypeScript
25 lines
452 B
TypeScript
const translation = {
|
|
nodes: {
|
|
common: {
|
|
outputVars: '输出变量',
|
|
},
|
|
directAnswer: {
|
|
answer: '回复',
|
|
inputVars: '输入变量',
|
|
},
|
|
llm: {
|
|
model: '模型',
|
|
variables: '变量',
|
|
context: '上下文',
|
|
prompt: '提示词',
|
|
vision: '视觉',
|
|
outputVars: {
|
|
output: '生成内容',
|
|
usage: '模型用量信息',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default translation
|