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: '運行失敗'
|
||
}
|
||
}
|
||
}
|
||
}
|