|
| 1 | +export default { |
| 2 | + title: 'Tool', |
| 3 | + internalTitle: 'Internal Tool', |
| 4 | + added: 'Added', |
| 5 | + createTool: 'Create Tool', |
| 6 | + editTool: 'Edit Tool', |
| 7 | + copyTool: 'Copy Tool', |
| 8 | + importTool: 'Import Tool', |
| 9 | + searchBar: { |
| 10 | + placeholder: 'Search by tool name', |
| 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 tool:', |
| 17 | + confirmMessage: |
| 18 | + 'Deleting this tool will cause errors in APP that reference it when they are queried. Please proceed with caution.', |
| 19 | + }, |
| 20 | + disabled: { |
| 21 | + confirmTitle: 'Confirm disable tool:', |
| 22 | + confirmMessage: |
| 23 | + 'Disabling this tool will cause errors in APP that reference it when they are queried. Please proceed with caution.', |
| 24 | + }, |
| 25 | + |
| 26 | + form: { |
| 27 | + toolName: { |
| 28 | + label: 'Name', |
| 29 | + placeholder: 'Please enter the tool name', |
| 30 | + requiredMessage: 'Please enter the tool name', |
| 31 | + }, |
| 32 | + toolDescription: { |
| 33 | + label: 'Description', |
| 34 | + placeholder: 'Please enter a description of the tool', |
| 35 | + }, |
| 36 | + paramName: { |
| 37 | + label: 'Parameter Name', |
| 38 | + placeholder: 'Please enter the parameter name', |
| 39 | + requiredMessage: 'Please enter the parameter name', |
| 40 | + }, |
| 41 | + dataType: { |
| 42 | + label: 'Data Type', |
| 43 | + }, |
| 44 | + source: { |
| 45 | + label: 'Source', |
| 46 | + custom: 'Custom', |
| 47 | + reference: 'Reference Parameter', |
| 48 | + }, |
| 49 | + required: { |
| 50 | + label: 'Required', |
| 51 | + }, |
| 52 | + param: { |
| 53 | + paramInfo1: 'Displayed when using the tool', |
| 54 | + paramInfo2: 'Not displayed when using the tool', |
| 55 | + code: 'Content (Python)', |
| 56 | + selectPlaceholder: 'Please select parameter', |
| 57 | + inputPlaceholder: 'Please enter parameter values', |
| 58 | + }, |
| 59 | + debug: { |
| 60 | + run: 'Run', |
| 61 | + output: 'Output', |
| 62 | + runResult: 'Run Result', |
| 63 | + runSuccess: 'Successful', |
| 64 | + runFailed: 'Run Failed', |
| 65 | + }, |
| 66 | + }, |
| 67 | +} |
0 commit comments