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