UnisKB/ui/src/locales/lang/en-US/views/function-lib.ts

78 lines
2.1 KiB
TypeScript
Raw Normal View History

2025-01-13 06:25:02 +00:00
export default {
2025-01-21 07:55:09 +00:00
title: 'Function',
2025-01-13 06:25:02 +00:00
createFunction: 'Create Function',
editFunction: 'Edit Function',
copyFunction: 'Copy Function',
2025-02-14 09:40:51 +00:00
importFunction: 'Import Function',
2025-01-13 06:25:02 +00:00
searchBar: {
placeholder: 'Search by function name'
},
setting: {
disabled: 'Disabled'
},
tip: {
saveMessage: 'Unsaved changes will be lost. Are you sure you want to exit?'
},
delete: {
2025-01-22 07:06:30 +00:00
confirmTitle: 'Confirm deletion of function:',
2025-01-13 06:25:02 +00:00
confirmMessage:
2025-01-21 08:46:18 +00:00
'Deleting this function will cause errors in APP that reference it when they are queried. Please proceed with caution.'
2025-01-13 06:25:02 +00:00
},
disabled: {
2025-01-22 07:06:30 +00:00
confirmTitle: 'Confirm disable function:',
2025-01-13 06:25:02 +00:00
confirmMessage:
2025-01-21 08:46:18 +00:00
'Disabling this function will cause errors in APP that reference it when they are queried. Please proceed with caution.'
2025-01-13 06:25:02 +00:00
},
functionForm: {
title: {
copy: 'Copy',
baseInfo: 'Basic Information'
},
form: {
functionName: {
2025-02-06 07:15:23 +00:00
label: 'Name',
2025-01-13 06:25:02 +00:00
placeholder: 'Please enter the function name',
requiredMessage: 'Please enter the function name'
},
functionDescription: {
label: 'Description',
placeholder: 'Please enter a description of the function'
},
permission_type: {
label: 'Permissions',
requiredMessage: 'Please select'
},
paramName: {
label: 'Parameter Name',
placeholder: 'Please enter the parameter name',
requiredMessage: 'Please enter the parameter name'
},
dataType: {
label: 'Data Type'
},
source: {
label: 'Source',
custom: 'Custom',
reference: 'Reference Parameter'
},
required: {
label: 'Required'
},
param: {
paramInfo1: 'Displayed when using the function',
paramInfo2: 'Not displayed when using the function',
code: 'Content (Python)',
selectPlaceholder: 'Please select parameter',
inputPlaceholder: 'Please enter parameter values',
2025-01-13 06:25:02 +00:00
},
debug: {
run: 'Run',
output: 'Output',
runResult: 'Run Result',
2025-02-06 07:15:23 +00:00
runSuccess: 'Successful',
2025-01-13 06:25:02 +00:00
runFailed: 'Run Failed'
}
}
}
}