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

79 lines
2.0 KiB
TypeScript
Raw Normal View History

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