Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. const translation = {
  2. createApp: 'CREATE APP',
  3. types: {
  4. all: 'All',
  5. chatbot: 'Chatbot',
  6. agent: 'Agent',
  7. workflow: 'Workflow',
  8. completion: 'Completion',
  9. advanced: 'Chatflow',
  10. basic: 'Basic',
  11. },
  12. duplicate: 'Duplicate',
  13. mermaid: {
  14. handDrawn: 'Hand Drawn',
  15. classic: 'Classic',
  16. },
  17. duplicateTitle: 'Duplicate App',
  18. export: 'Export DSL',
  19. exportFailed: 'Export DSL failed.',
  20. importDSL: 'Import DSL file',
  21. createFromConfigFile: 'Create from DSL file',
  22. importFromDSL: 'Import from DSL',
  23. importFromDSLFile: 'From DSL file',
  24. importFromDSLUrl: 'From URL',
  25. importFromDSLUrlPlaceholder: 'Paste DSL link here',
  26. dslUploader: {
  27. button: 'Drag and drop file, or',
  28. browse: 'Browse',
  29. },
  30. deleteAppConfirmTitle: 'Delete this app?',
  31. deleteAppConfirmContent:
  32. 'Deleting the app is irreversible. Users will no longer be able to access your app, and all prompt configurations and logs will be permanently deleted.',
  33. appDeleted: 'App deleted',
  34. appDeleteFailed: 'Failed to delete app',
  35. join: 'Join the community',
  36. communityIntro:
  37. 'Discuss with team members, contributors and developers on different channels.',
  38. roadmap: 'See our roadmap',
  39. newApp: {
  40. learnMore: 'Learn more',
  41. startFromBlank: 'Create from Blank',
  42. startFromTemplate: 'Create from Template',
  43. foundResult: '{{count}} Result',
  44. foundResults: '{{count}} Results',
  45. noAppsFound: 'No apps found',
  46. noTemplateFound: 'No templates found',
  47. noTemplateFoundTip: 'Try searching using different keywords.',
  48. chatbotShortDescription: 'LLM-based chatbot with simple setup',
  49. chatbotUserDescription: 'Quickly build an LLM-based chatbot with simple configuration. You can switch to Chatflow later.',
  50. completionShortDescription: 'AI assistant for text generation tasks',
  51. completionUserDescription: 'Quickly build an AI assistant for text generation tasks with simple configuration.',
  52. agentShortDescription: 'Intelligent agent with reasoning and autonomous tool use',
  53. agentUserDescription: 'An intelligent agent capable of iterative reasoning and autonomous tool use to achieve task goals.',
  54. workflowShortDescription: 'Agentic flow for intelligent automations',
  55. workflowUserDescription: 'Visually build autonomous AI workflows with drag-and-drop simplicity.',
  56. workflowWarning: 'Currently in beta',
  57. advancedShortDescription: 'Workflow enhanced for multi-turn chats',
  58. advancedUserDescription: 'Workflow with additional memory features and a chatbot interface.',
  59. chooseAppType: 'Choose an App Type',
  60. forBeginners: 'More basic app types',
  61. forAdvanced: 'FOR ADVANCED USERS',
  62. noIdeaTip: 'No ideas? Check out our templates',
  63. captionName: 'App Name & Icon',
  64. appNamePlaceholder: 'Give your app a name',
  65. captionDescription: 'Description',
  66. optional: 'Optional',
  67. appDescriptionPlaceholder: 'Enter the description of the app',
  68. useTemplate: 'Use this template',
  69. previewDemo: 'Preview demo',
  70. chatApp: 'Assistant',
  71. chatAppIntro:
  72. 'I want to build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
  73. agentAssistant: 'New Agent Assistant',
  74. completeApp: 'Text Generator',
  75. completeAppIntro:
  76. 'I want to create an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
  77. showTemplates: 'I want to choose from a template',
  78. hideTemplates: 'Go back to mode selection',
  79. Create: 'Create',
  80. Cancel: 'Cancel',
  81. Confirm: 'Confirm',
  82. import: 'Import',
  83. nameNotEmpty: 'Name cannot be empty',
  84. appTemplateNotSelected: 'Please select a template',
  85. appTypeRequired: 'Please select an app type',
  86. appCreated: 'App created',
  87. caution: 'Caution',
  88. appCreateDSLWarning: 'Caution: DSL version difference may affect certain features',
  89. appCreateDSLErrorTitle: 'Version Incompatibility',
  90. appCreateDSLErrorPart1: 'A significant difference in DSL versions has been detected. Forcing the import may cause the application to malfunction.',
  91. appCreateDSLErrorPart2: 'Do you want to continue?',
  92. appCreateDSLErrorPart3: 'Current application DSL version: ',
  93. appCreateDSLErrorPart4: 'System-supported DSL version: ',
  94. appCreateFailed: 'Failed to create app',
  95. dropDSLToCreateApp: 'Drop DSL file here to create app',
  96. },
  97. newAppFromTemplate: {
  98. byCategories: 'BY CATEGORIES',
  99. searchAllTemplate: 'Search all templates...',
  100. sidebar: {
  101. Recommended: 'Recommended',
  102. Agent: 'Agent',
  103. Assistant: 'Assistant',
  104. HR: 'HR',
  105. Workflow: 'Workflow',
  106. Writing: 'Writing',
  107. Programming: 'Programming',
  108. },
  109. },
  110. editApp: 'Edit Info',
  111. editAppTitle: 'Edit App Info',
  112. editDone: 'App info updated',
  113. editFailed: 'Failed to update app info',
  114. iconPicker: {
  115. ok: 'OK',
  116. cancel: 'Cancel',
  117. emoji: 'Emoji',
  118. image: 'Image',
  119. },
  120. answerIcon: {
  121. title: 'Use web app icon to replace 🤖',
  122. description: 'Whether to use the web app icon to replace 🤖 in the shared application',
  123. descriptionInExplore: 'Whether to use the web app icon to replace 🤖 in Explore',
  124. },
  125. switch: 'Switch to Workflow Orchestrate',
  126. switchTipStart: 'A new app copy will be created for you, and the new copy will switch to Workflow Orchestrate. The new copy will ',
  127. switchTip: 'not allow',
  128. switchTipEnd: ' switching back to Basic Orchestrate.',
  129. switchLabel: 'The app copy to be created',
  130. removeOriginal: 'Delete the original app',
  131. switchStart: 'Start switch',
  132. openInExplore: 'Open in Explore',
  133. typeSelector: {
  134. all: 'All Types ',
  135. chatbot: 'Chatbot',
  136. agent: 'Agent',
  137. workflow: 'Workflow',
  138. completion: 'Completion',
  139. advanced: 'Chatflow',
  140. },
  141. tracing: {
  142. title: 'Tracing app performance',
  143. description: 'Configuring a Third-Party LLMOps provider and tracing app performance.',
  144. config: 'Config',
  145. view: 'View',
  146. collapse: 'Collapse',
  147. expand: 'Expand',
  148. tracing: 'Tracing',
  149. disabled: 'Disabled',
  150. disabledTip: 'Please config provider first',
  151. enabled: 'In Service',
  152. tracingDescription: 'Capture the full context of app execution, including LLM calls, context, prompts, HTTP requests, and more, to a third-party tracing platform.',
  153. configProviderTitle: {
  154. configured: 'Configured',
  155. notConfigured: 'Config provider to enable tracing',
  156. moreProvider: 'More Provider',
  157. },
  158. arize: {
  159. title: 'Arize',
  160. description: 'Enterprise-grade LLM observability, online & offline evaluation, monitoring, and experimentation—powered by OpenTelemetry. Purpose-built for LLM & agent-driven applications.',
  161. },
  162. phoenix: {
  163. title: 'Phoenix',
  164. description: 'Open-source & OpenTelemetry-based observability, evaluation, prompt engineering and experimentation platform for your LLM workflows and agents.',
  165. },
  166. langsmith: {
  167. title: 'LangSmith',
  168. description: 'An all-in-one developer platform for every step of the LLM-powered application lifecycle.',
  169. },
  170. langfuse: {
  171. title: 'Langfuse',
  172. description: 'Open-source LLM observability, evaluation, prompt management and metrics to debug and improve your LLM application.',
  173. },
  174. opik: {
  175. title: 'Opik',
  176. description: 'Opik is an open-source platform for evaluating, testing, and monitoring LLM applications.',
  177. },
  178. weave: {
  179. title: 'Weave',
  180. description: 'Weave is an open-source platform for evaluating, testing, and monitoring LLM applications.',
  181. },
  182. aliyun: {
  183. title: 'Cloud Monitor',
  184. description: 'The fully-managed and maintenance-free observability platform provided by Alibaba Cloud, enables out-of-the-box monitoring, tracing, and evaluation of Dify applications.',
  185. },
  186. inUse: 'In use',
  187. configProvider: {
  188. title: 'Config ',
  189. placeholder: 'Enter your {{key}}',
  190. project: 'Project',
  191. publicKey: 'Public Key',
  192. secretKey: 'Secret Key',
  193. viewDocsLink: 'View {{key}} docs',
  194. removeConfirmTitle: 'Remove {{key}} configuration?',
  195. removeConfirmContent: 'The current configuration is in use, removing it will turn off the Tracing feature.',
  196. },
  197. },
  198. appSelector: {
  199. label: 'APP',
  200. placeholder: 'Select an app...',
  201. params: 'APP PARAMETERS',
  202. noParams: 'No parameters needed',
  203. },
  204. showMyCreatedAppsOnly: 'Created by me',
  205. structOutput: {
  206. moreFillTip: 'Showing max 10 levels of nesting',
  207. required: 'Required',
  208. LLMResponse: 'LLM Response',
  209. configure: 'Configure',
  210. notConfiguredTip: 'Structured output has not been configured yet',
  211. structured: 'Structured',
  212. structuredTip: 'Structured Outputs is a feature that ensures the model will always generate responses that adhere to your supplied JSON Schema',
  213. modelNotSupported: 'Model not supported',
  214. modelNotSupportedTip: 'The current model does not support this feature and is automatically downgraded to prompt injection.',
  215. },
  216. accessControl: 'Web App Access Control',
  217. accessItemsDescription: {
  218. anyone: 'Anyone can access the web app (no login required)',
  219. specific: 'Only specific members within the platform can access the web app',
  220. organization: 'All members within the platform can access the web app',
  221. external: 'Only authenticated external users can access the web app',
  222. },
  223. accessControlDialog: {
  224. title: 'Web App Access Control',
  225. description: 'Set web app access permissions',
  226. accessLabel: 'Who has access',
  227. accessItems: {
  228. anyone: 'Anyone with the link',
  229. specific: 'Specific members within the platform',
  230. organization: 'All members within the platform',
  231. external: 'Authenticated external users',
  232. },
  233. groups_one: '{{count}} GROUP',
  234. groups_other: '{{count}} GROUPS',
  235. members_one: '{{count}} MEMBER',
  236. members_other: '{{count}} MEMBERS',
  237. noGroupsOrMembers: 'No groups or members selected',
  238. webAppSSONotEnabledTip: 'Please contact your organization administrator to configure external authentication for the web app.',
  239. operateGroupAndMember: {
  240. searchPlaceholder: 'Search groups and members',
  241. allMembers: 'All members',
  242. expand: 'Expand',
  243. noResult: 'No result',
  244. },
  245. updateSuccess: 'Update successfully',
  246. },
  247. publishApp: {
  248. title: 'Who can access web app',
  249. notSet: 'Not set',
  250. notSetDesc: 'Currently nobody can access the web app. Please set permissions.',
  251. },
  252. noAccessPermission: 'No permission to access web app',
  253. maxActiveRequests: 'Max concurrent requests',
  254. maxActiveRequestsPlaceholder: 'Enter 0 for unlimited',
  255. maxActiveRequestsTip: 'Maximum number of concurrent active requests per app (0 for unlimited)',
  256. gotoAnything: {
  257. searchPlaceholder: 'Search or type @ or / for commands...',
  258. searchTitle: 'Search for anything',
  259. searching: 'Searching...',
  260. noResults: 'No results found',
  261. searchFailed: 'Search failed',
  262. searchTemporarilyUnavailable: 'Search temporarily unavailable',
  263. servicesUnavailableMessage: 'Some search services may be experiencing issues. Try again in a moment.',
  264. someServicesUnavailable: 'Some search services unavailable',
  265. resultCount: '{{count}} result',
  266. resultCount_other: '{{count}} results',
  267. inScope: 'in {{scope}}s',
  268. clearToSearchAll: 'Clear @ to search all',
  269. useAtForSpecific: 'Use @ for specific types',
  270. selectSearchType: 'Choose what to search for',
  271. searchHint: 'Start typing to search everything instantly',
  272. commandHint: 'Type @ to browse by category',
  273. slashHint: 'Type / to see all available commands',
  274. actions: {
  275. searchApplications: 'Search Applications',
  276. searchApplicationsDesc: 'Search and navigate to your applications',
  277. searchPlugins: 'Search Plugins',
  278. searchPluginsDesc: 'Search and navigate to your plugins',
  279. searchKnowledgeBases: 'Search Knowledge Bases',
  280. searchKnowledgeBasesDesc: 'Search and navigate to your knowledge bases',
  281. searchWorkflowNodes: 'Search Workflow Nodes',
  282. searchWorkflowNodesDesc: 'Find and jump to nodes in the current workflow by name or type',
  283. searchWorkflowNodesHelp: 'This feature only works when viewing a workflow. Navigate to a workflow first.',
  284. runTitle: 'Commands',
  285. runDesc: 'Run quick commands (theme, language, ...)',
  286. themeCategoryTitle: 'Theme',
  287. themeCategoryDesc: 'Switch application theme',
  288. themeSystem: 'System Theme',
  289. themeSystemDesc: 'Follow your OS appearance',
  290. themeLight: 'Light Theme',
  291. themeLightDesc: 'Use light appearance',
  292. themeDark: 'Dark Theme',
  293. themeDarkDesc: 'Use dark appearance',
  294. languageCategoryTitle: 'Language',
  295. languageCategoryDesc: 'Switch interface language',
  296. languageChangeDesc: 'Change UI language',
  297. slashDesc: 'Execute commands (type / to see all available commands)',
  298. accountDesc: 'Navigate to account page',
  299. communityDesc: 'Open Discord community',
  300. docDesc: 'Open help documentation',
  301. feedbackDesc: 'Open community feedback discussions',
  302. },
  303. emptyState: {
  304. noAppsFound: 'No apps found',
  305. noPluginsFound: 'No plugins found',
  306. noKnowledgeBasesFound: 'No knowledge bases found',
  307. noWorkflowNodesFound: 'No workflow nodes found',
  308. tryDifferentTerm: 'Try a different search term',
  309. trySpecificSearch: 'Try {{shortcuts}} for specific searches',
  310. },
  311. groups: {
  312. apps: 'Apps',
  313. plugins: 'Plugins',
  314. knowledgeBases: 'Knowledge Bases',
  315. workflowNodes: 'Workflow Nodes',
  316. commands: 'Commands',
  317. },
  318. noMatchingCommands: 'No matching commands found',
  319. tryDifferentSearch: 'Try a different search term',
  320. },
  321. }
  322. export default translation