79 lines
2.0 KiB
TypeScript
79 lines
2.0 KiB
TypeScript
|
|
export default {
|
|||
|
|
title: '函数库',
|
|||
|
|
createFunction: '创建函数',
|
|||
|
|
editFunction: '编辑函数',
|
|||
|
|
copyFunction: '复制函数',
|
|||
|
|
searchBar: {
|
|||
|
|
placeholder: '按函数名称搜索'
|
|||
|
|
},
|
|||
|
|
setting: {
|
|||
|
|
disabled: '禁用'
|
|||
|
|
},
|
|||
|
|
tip: {
|
|||
|
|
saveMessage: '当前的更改尚未保存,确认退出吗?'
|
|||
|
|
},
|
|||
|
|
delete: {
|
|||
|
|
confirmTitle: '是否删除函数:',
|
|||
|
|
confirmMessage: '删除后,引用了该函数的应用提问时会报错 ,请谨慎操作。'
|
|||
|
|
},
|
|||
|
|
disabled: {
|
|||
|
|
confirmTitle: '是否禁用函数:',
|
|||
|
|
confirmMessage: '禁用后,引用了该函数的应用提问时会报错 ,请谨慎操作。'
|
|||
|
|
},
|
|||
|
|
functionForm: {
|
|||
|
|
title: {
|
|||
|
|
copy: '副本',
|
|||
|
|
baseInfo: '基础信息'
|
|||
|
|
},
|
|||
|
|
form: {
|
|||
|
|
functionName: {
|
|||
|
|
label: '函数名称',
|
|||
|
|
placeholder: '请输入函数名称',
|
|||
|
|
requiredMessage: '请输入函数名称'
|
|||
|
|
},
|
|||
|
|
functionDescription: {
|
|||
|
|
label: '描述',
|
|||
|
|
placeholder: '请输入函数的描述'
|
|||
|
|
},
|
|||
|
|
permission_type: {
|
|||
|
|
label: '权限',
|
|||
|
|
requiredMessage: '请选择'
|
|||
|
|
},
|
|||
|
|
inputParam: {
|
|||
|
|
label: '输入参数',
|
|||
|
|
placeholder: '请选择参数',
|
|||
|
|
requiredMessage: '请输入参数值'
|
|||
|
|
},
|
|||
|
|
paramName: {
|
|||
|
|
label: '参数名',
|
|||
|
|
placeholder: '请输入参数名',
|
|||
|
|
requiredMessage: '请输入参数名'
|
|||
|
|
},
|
|||
|
|
dataType: {
|
|||
|
|
label: '数据类型'
|
|||
|
|
},
|
|||
|
|
source: {
|
|||
|
|
label: '来源',
|
|||
|
|
custom: '自定义',
|
|||
|
|
reference: '引用参数'
|
|||
|
|
},
|
|||
|
|
required: {
|
|||
|
|
label: '是否必填'
|
|||
|
|
},
|
|||
|
|
param: {
|
|||
|
|
outputParam: '输出参数',
|
|||
|
|
paramInfo1: '使用函数时显示',
|
|||
|
|
paramInfo2: '使用函数时不显示',
|
|||
|
|
code: '函数内容(Python)'
|
|||
|
|
},
|
|||
|
|
debug: {
|
|||
|
|
run: '运行',
|
|||
|
|
output: '输出',
|
|||
|
|
runResult: '运行结果',
|
|||
|
|
runSuccess: '运行成功',
|
|||
|
|
runFailed: '运行失败'
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|