mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 21:21:49 +08:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
const translation = {
|
|
from: 'From',
|
|
fromMarketplace: 'From Marketplace',
|
|
endpointsEnabled: '{{num}} sets of endpoints enabled',
|
|
detailPanel: {
|
|
categoryTip: {
|
|
marketplace: 'Installed from Marketplace',
|
|
github: 'Installed from Github',
|
|
local: 'Local Plugin',
|
|
debugging: 'Debugging Plugin',
|
|
},
|
|
operation: {
|
|
install: 'Install',
|
|
detail: 'Detail',
|
|
update: 'Update',
|
|
info: 'Plugin Info',
|
|
checkUpdate: 'Check Update',
|
|
viewDetail: 'View Detail',
|
|
remove: 'Remove',
|
|
},
|
|
actionNum: '{{num}} ACTIONS INCLUDED',
|
|
endpoints: 'Endpoints',
|
|
endpointsEmpty: 'Click the \'+\' button to add an endpoint',
|
|
endpointDisableTip: 'Disable Endpoint',
|
|
endpointDisableContent: 'Would you like to disable {{name}}? ',
|
|
endpointDeleteTip: 'Remove Endpoint',
|
|
endpointDeleteContent: 'Would you like to remove {{name}}? ',
|
|
endpointModalTitle: 'Setup endpoint',
|
|
endpointModalDesc: 'After configuring form, all members within the workspace can use this endpoint when orchestrating applications.',
|
|
serviceOk: 'Service OK',
|
|
disabled: 'Disabled',
|
|
modelNum: '{{num}} MODELS INCLUDED',
|
|
},
|
|
install: '{{num}} installs',
|
|
installAction: 'Install',
|
|
debugInfo: {
|
|
title: 'Debugging',
|
|
viewDocs: 'View Docs',
|
|
},
|
|
privilege: {
|
|
title: 'Plugin Preferences',
|
|
whoCanInstall: 'Who can install and manage plugins?',
|
|
whoCanDebug: 'Who can debug plugins?',
|
|
everyone: 'Everyone',
|
|
admin: 'Admins',
|
|
noOne: 'No one',
|
|
},
|
|
pluginInfoModal: {
|
|
title: 'Plugin info',
|
|
repository: 'Repository',
|
|
release: 'Release',
|
|
packageName: 'Package',
|
|
},
|
|
action: {
|
|
checkForUpdates: 'Check for updates',
|
|
pluginInfo: 'Plugin info',
|
|
delete: 'Remove plugin',
|
|
deleteContentLeft: 'Would you like to remove ',
|
|
deleteContentRight: ' plugin?',
|
|
usedInApps: 'This plugin is being used in {{num}} apps.',
|
|
},
|
|
upgrade: {
|
|
title: 'Upgrade Plugin',
|
|
successfulTitle: 'Upgrade successful',
|
|
description: 'About to upgrade the following plugin',
|
|
usedInApps: 'Used in {{num}} apps',
|
|
upgrade: 'Upgrade',
|
|
upgrading: 'Upgrading...',
|
|
close: 'Close',
|
|
},
|
|
}
|
|
|
|
export default translation
|