|
| 1 | +export default { |
| 2 | + title: 'Function Library', |
| 3 | + createFunction: 'Create Function', |
| 4 | + editFunction: 'Edit Function', |
| 5 | + copyFunction: 'Copy Function', |
| 6 | + searchBar: { |
| 7 | + placeholder: 'Search by function name' |
| 8 | + }, |
| 9 | + setting: { |
| 10 | + disabled: 'Disabled' |
| 11 | + }, |
| 12 | + tip: { |
| 13 | + saveMessage: 'Unsaved changes will be lost. Are you sure you want to exit?' |
| 14 | + }, |
| 15 | + delete: { |
| 16 | + confirmTitle: 'Confirm Deletion of Function:', |
| 17 | + confirmMessage: |
| 18 | + 'Deleting this function will cause errors in applications that reference it when they are queried. Please proceed with caution.' |
| 19 | + }, |
| 20 | + disabled: { |
| 21 | + confirmTitle: 'Confirm Disable Function:', |
| 22 | + confirmMessage: |
| 23 | + 'Disabling this function will cause errors in applications that reference it when they are queried. Please proceed with caution.' |
| 24 | + }, |
| 25 | + functionForm: { |
| 26 | + title: { |
| 27 | + copy: 'Copy', |
| 28 | + editParam: 'Edit Parameters', |
| 29 | + addParam: 'Add Parameter', |
| 30 | + baseInfo: 'Basic Information' |
| 31 | + }, |
| 32 | + form: { |
| 33 | + functionName: { |
| 34 | + label: 'Function Name', |
| 35 | + placeholder: 'Please enter the function name', |
| 36 | + requiredMessage: 'Please enter the function name' |
| 37 | + }, |
| 38 | + functionDescription: { |
| 39 | + label: 'Description', |
| 40 | + placeholder: 'Please enter a description of the function' |
| 41 | + }, |
| 42 | + permission_type: { |
| 43 | + label: 'Permissions', |
| 44 | + requiredMessage: 'Please select' |
| 45 | + }, |
| 46 | + inputParam: { |
| 47 | + label: 'Input Parameters', |
| 48 | + placeholder: 'Please enter parameter values', |
| 49 | + requiredMessage: 'Please enter parameter values' |
| 50 | + }, |
| 51 | + paramName: { |
| 52 | + label: 'Parameter Name', |
| 53 | + placeholder: 'Please enter the parameter name', |
| 54 | + requiredMessage: 'Please enter the parameter name' |
| 55 | + }, |
| 56 | + dataType: { |
| 57 | + label: 'Data Type' |
| 58 | + }, |
| 59 | + source: { |
| 60 | + label: 'Source', |
| 61 | + custom: 'Custom', |
| 62 | + reference: 'Reference Parameter' |
| 63 | + }, |
| 64 | + required: { |
| 65 | + label: 'Required' |
| 66 | + }, |
| 67 | + param: { |
| 68 | + outputParam: 'Output Parameters', |
| 69 | + paramInfo1: 'Displayed when using the function', |
| 70 | + paramInfo2: 'Not displayed when using the function', |
| 71 | + required: 'Required', |
| 72 | + code: 'Code', |
| 73 | + result: 'Result' |
| 74 | + }, |
| 75 | + debug: { |
| 76 | + run: 'Run', |
| 77 | + output: 'Output', |
| 78 | + runResult: 'Run Result', |
| 79 | + runSuccess: 'Run Successful', |
| 80 | + runFailed: 'Run Failed' |
| 81 | + } |
| 82 | + } |
| 83 | + } |
| 84 | +} |
0 commit comments