2024-01-23 19:31:56 +08:00
|
|
|
const translation = {
|
|
|
|
title: 'Tools',
|
|
|
|
createCustomTool: 'Create Custom Tool',
|
2024-05-27 21:57:08 +08:00
|
|
|
customToolTip: 'Learn more about Dify custom tools',
|
2024-01-23 19:31:56 +08:00
|
|
|
type: {
|
|
|
|
all: 'All',
|
|
|
|
builtIn: 'Built-in',
|
|
|
|
custom: 'Custom',
|
2024-05-27 21:57:08 +08:00
|
|
|
workflow: 'Workflow',
|
2024-01-23 19:31:56 +08:00
|
|
|
},
|
|
|
|
contribute: {
|
|
|
|
line1: 'I\'m interested in ',
|
|
|
|
line2: 'contributing tools to Dify.',
|
|
|
|
viewGuide: 'View the guide',
|
|
|
|
},
|
|
|
|
author: 'By',
|
|
|
|
auth: {
|
|
|
|
unauthorized: 'To Authorize',
|
|
|
|
authorized: 'Authorized',
|
|
|
|
setup: 'Set up authorization to use',
|
|
|
|
setupModalTitle: 'Set Up Authorization',
|
|
|
|
setupModalTitleDescription: 'After configuring credentials, all members within the workspace can use this tool when orchestrating applications.',
|
|
|
|
},
|
|
|
|
includeToolNum: '{{num}} tools included',
|
|
|
|
addTool: 'Add Tool',
|
2024-05-27 21:57:08 +08:00
|
|
|
addToolModal: {
|
|
|
|
type: 'type',
|
|
|
|
category: 'category',
|
|
|
|
add: 'add',
|
|
|
|
added: 'added',
|
|
|
|
manageInTools: 'Manage in Tools',
|
|
|
|
emptyTitle: 'No workflow tool available',
|
|
|
|
emptyTip: 'Go to "Workflow -> Publish as Tool"',
|
|
|
|
},
|
2024-01-23 19:31:56 +08:00
|
|
|
createTool: {
|
|
|
|
title: 'Create Custom Tool',
|
|
|
|
editAction: 'Configure',
|
|
|
|
editTitle: 'Edit Custom Tool',
|
|
|
|
name: 'Name',
|
|
|
|
toolNamePlaceHolder: 'Enter the tool name',
|
2024-05-27 21:57:08 +08:00
|
|
|
nameForToolCall: 'Tool call name',
|
|
|
|
nameForToolCallPlaceHolder: 'Used for machine recognition, such as getCurrentWeather, list_pets',
|
|
|
|
nameForToolCallTip: 'Only supports numbers, letters, and underscores.',
|
|
|
|
description: 'Description',
|
|
|
|
descriptionPlaceholder: 'Brief description of the tool\'s purpose, e.g., get the temperature for a specific location.',
|
2024-01-23 19:31:56 +08:00
|
|
|
schema: 'Schema',
|
|
|
|
schemaPlaceHolder: 'Enter your OpenAPI schema here',
|
|
|
|
viewSchemaSpec: 'View the OpenAPI-Swagger Specification',
|
|
|
|
importFromUrl: 'Import from URL',
|
|
|
|
importFromUrlPlaceHolder: 'https://...',
|
|
|
|
urlError: 'Please enter a valid URL',
|
|
|
|
examples: 'Examples',
|
|
|
|
exampleOptions: {
|
|
|
|
json: 'Weather(JSON)',
|
|
|
|
yaml: 'Pet Store(YAML)',
|
|
|
|
blankTemplate: 'Blank Template',
|
|
|
|
},
|
|
|
|
availableTools: {
|
|
|
|
title: 'Available Tools',
|
|
|
|
name: 'Name',
|
|
|
|
description: 'Description',
|
|
|
|
method: 'Method',
|
|
|
|
path: 'Path',
|
|
|
|
action: 'Actions',
|
|
|
|
test: 'Test',
|
|
|
|
},
|
|
|
|
authMethod: {
|
|
|
|
title: 'Authorization method',
|
|
|
|
type: 'Authorization type',
|
2024-02-28 23:19:08 +08:00
|
|
|
keyTooltip: 'Http Header Key, You can leave it with "Authorization" if you have no idea what it is or set it to a custom value',
|
2024-01-23 19:31:56 +08:00
|
|
|
types: {
|
|
|
|
none: 'None',
|
|
|
|
api_key: 'API Key',
|
2024-02-23 13:55:43 +08:00
|
|
|
apiKeyPlaceholder: 'HTTP header name for API Key',
|
|
|
|
apiValuePlaceholder: 'Enter API Key',
|
2024-01-23 19:31:56 +08:00
|
|
|
},
|
|
|
|
key: 'Key',
|
|
|
|
value: 'Value',
|
|
|
|
},
|
2024-02-28 23:19:08 +08:00
|
|
|
authHeaderPrefix: {
|
|
|
|
title: 'Auth Type',
|
|
|
|
types: {
|
|
|
|
basic: 'Basic',
|
|
|
|
bearer: 'Bearer',
|
|
|
|
custom: 'Custom',
|
|
|
|
},
|
|
|
|
},
|
2024-01-23 19:31:56 +08:00
|
|
|
privacyPolicy: 'Privacy policy',
|
|
|
|
privacyPolicyPlaceholder: 'Please enter privacy policy',
|
2024-05-27 21:57:08 +08:00
|
|
|
toolInput: {
|
|
|
|
title: 'Tool Input',
|
|
|
|
name: 'Name',
|
|
|
|
required: 'Required',
|
|
|
|
method: 'Method',
|
|
|
|
methodSetting: 'Setting',
|
|
|
|
methodSettingTip: 'User fills in the tool configuration',
|
|
|
|
methodParameter: 'Parameter',
|
|
|
|
methodParameterTip: 'LLM fills during inference',
|
|
|
|
label: 'Tags',
|
|
|
|
labelPlaceholder: 'Choose tags(optional)',
|
|
|
|
description: 'Description',
|
|
|
|
descriptionPlaceholder: 'Description of the parameter\'s meaning',
|
|
|
|
},
|
2024-05-18 10:52:48 +08:00
|
|
|
customDisclaimer: 'Custom disclaimer',
|
|
|
|
customDisclaimerPlaceholder: 'Please enter custom disclaimer',
|
2024-05-27 21:57:08 +08:00
|
|
|
confirmTitle: 'Confirm to save ?',
|
|
|
|
confirmTip: 'Apps using this tool will be affected',
|
2024-06-26 19:27:22 +08:00
|
|
|
deleteToolConfirmTitle: 'Delete this Tool?',
|
|
|
|
deleteToolConfirmContent: 'Deleting the Tool is irreversible. Users will no longer be able to access your Tool.',
|
2024-01-23 19:31:56 +08:00
|
|
|
},
|
|
|
|
test: {
|
|
|
|
title: 'Test',
|
|
|
|
parametersValue: 'Parameters & Value',
|
|
|
|
parameters: 'Parameters',
|
|
|
|
value: 'Value',
|
|
|
|
testResult: 'Test Results',
|
|
|
|
testResultPlaceholder: 'Test result will show here',
|
|
|
|
},
|
|
|
|
thought: {
|
|
|
|
using: 'Using',
|
|
|
|
used: 'Used',
|
|
|
|
requestTitle: 'Request to',
|
|
|
|
responseTitle: 'Response from',
|
|
|
|
},
|
|
|
|
setBuiltInTools: {
|
|
|
|
info: 'Info',
|
|
|
|
setting: 'Setting',
|
|
|
|
toolDescription: 'Tool description',
|
|
|
|
parameters: 'parameters',
|
|
|
|
string: 'string',
|
|
|
|
number: 'number',
|
|
|
|
required: 'Required',
|
|
|
|
infoAndSetting: 'Info & Settings',
|
|
|
|
},
|
|
|
|
noCustomTool: {
|
2024-01-26 12:48:26 +08:00
|
|
|
title: 'No custom tools!',
|
2024-01-23 19:31:56 +08:00
|
|
|
content: 'Add and manage your custom tools here for building AI apps.',
|
|
|
|
createTool: 'Create Tool',
|
|
|
|
},
|
|
|
|
noSearchRes: {
|
|
|
|
title: 'Sorry, no results!',
|
|
|
|
content: 'We couldn\'t find any tools that match your search.',
|
|
|
|
reset: 'Reset Search',
|
|
|
|
},
|
|
|
|
builtInPromptTitle: 'Prompt',
|
|
|
|
toolRemoved: 'Tool removed',
|
|
|
|
notAuthorized: 'Tool not authorized',
|
2024-02-05 16:22:30 +08:00
|
|
|
howToGet: 'How to get',
|
2024-05-27 21:57:08 +08:00
|
|
|
openInStudio: 'Open in Studio',
|
|
|
|
toolNameUsageTip: 'Tool call name for agent reasoning and prompting',
|
2024-01-23 19:31:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default translation
|