UnisKB/ui/src/locales/lang/zh-CN/views/tool.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

2025-05-08 08:23:03 +00:00
export default {
title: '工具',
2025-05-22 10:38:06 +00:00
createTool: '创建工具',
editTool: '编辑工具',
disabled: {
confirmTitle: '是否禁用工具:',
confirmMessage: '禁用后,引用了该工具的应用提问时会报错 ,请谨慎操作。',
},
form: {
toolName: {
label: '名称',
name: '工具名称',
placeholder: '请输入工具名称',
requiredMessage: '请输入工具名称',
},
toolDescription: {
label: '描述',
placeholder: '请输入工具的描述',
},
paramName: {
label: '参数名',
placeholder: '请输入参数名',
requiredMessage: '请输入参数名',
},
dataType: {
label: '数据类型',
},
source: {
label: '来源',
custom: '自定义',
reference: '引用参数',
},
required: {
label: '是否必填',
},
param: {
paramInfo1: '使用工具时显示',
paramInfo2: '使用工具时不显示',
code: '工具内容Python',
selectPlaceholder: '请选择参数',
inputPlaceholder: '请输入参数值',
},
debug: {
run: '运行',
output: '输出',
runResult: '运行结果',
runSuccess: '运行成功',
runFailed: '运行失败',
},
},
2025-05-08 08:23:03 +00:00
}