app.ts 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. },
  10. duplicate: 'Duplicate',
  11. duplicateTitle: 'Duplicate App',
  12. export: 'Export DSL',
  13. exportFailed: 'Export DSL failed.',
  14. importDSL: 'Import DSL file',
  15. createFromConfigFile: 'Create from DSL file',
  16. deleteAppConfirmTitle: 'Delete this app?',
  17. deleteAppConfirmContent:
  18. '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.',
  19. appDeleted: 'App deleted',
  20. appDeleteFailed: 'Failed to delete app',
  21. join: 'Join the community',
  22. communityIntro:
  23. 'Discuss with team members, contributors and developers on different channels.',
  24. roadmap: 'See our roadmap',
  25. newApp: {
  26. startFromBlank: 'Create from Blank',
  27. startFromTemplate: 'Create from Template',
  28. captionAppType: 'What type of app do you want to create?',
  29. chatbotDescription: 'Build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
  30. completionDescription: 'Build an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
  31. completionWarning: 'This type of app will no longer be supported.',
  32. agentDescription: 'Build an intelligent Agent which can autonomously choose tools to complete the tasks',
  33. workflowDescription: 'Build an application that generates high-quality text based on workflow orchestrates with a high degree of customization. It is suitable for experienced users.',
  34. workflowWarning: 'Currently in beta',
  35. chatbotType: 'Chatbot orchestrate method',
  36. basic: 'Basic',
  37. basicTip: 'For beginners, can switch to Chatflow later',
  38. basicFor: 'FOR BEGINNERS',
  39. basicDescription: 'Basic Orchestrate allows for the orchestration of a Chatbot app using simple settings, without the ability to modify built-in prompts. It is suitable for beginners.',
  40. advanced: 'Chatflow',
  41. advancedFor: 'For advanced users',
  42. advancedDescription: 'Workflow Orchestrate orchestrates Chatbots in the form of workflows, offering a high degree of customization, including the ability to edit built-in prompts. It is suitable for experienced users.',
  43. captionName: 'App icon & name',
  44. appNamePlaceholder: 'Give your app a name',
  45. captionDescription: 'Description',
  46. appDescriptionPlaceholder: 'Enter the description of the app',
  47. useTemplate: 'Use this template',
  48. previewDemo: 'Preview demo',
  49. chatApp: 'Assistant',
  50. chatAppIntro:
  51. 'I want to build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
  52. agentAssistant: 'New Agent Assistant',
  53. completeApp: 'Text Generator',
  54. completeAppIntro:
  55. 'I want to create an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
  56. showTemplates: 'I want to choose from a template',
  57. hideTemplates: 'Go back to mode selection',
  58. Create: 'Create',
  59. Cancel: 'Cancel',
  60. nameNotEmpty: 'Name cannot be empty',
  61. appTemplateNotSelected: 'Please select a template',
  62. appTypeRequired: 'Please select an app type',
  63. appCreated: 'App created',
  64. appCreateFailed: 'Failed to create app',
  65. },
  66. editApp: 'Edit Info',
  67. editAppTitle: 'Edit App Info',
  68. editDone: 'App info updated',
  69. editFailed: 'Failed to update app info',
  70. emoji: {
  71. ok: 'OK',
  72. cancel: 'Cancel',
  73. },
  74. switch: 'Switch to Workflow Orchestrate',
  75. switchTipStart: 'A new app copy will be created for you, and the new copy will switch to Workflow Orchestrate. The new copy will ',
  76. switchTip: 'not allow',
  77. switchTipEnd: ' switching back to Basic Orchestrate.',
  78. switchLabel: 'The app copy to be created',
  79. removeOriginal: 'Delete the original app',
  80. switchStart: 'Start swtich',
  81. typeSelector: {
  82. all: 'ALL Types',
  83. chatbot: 'Chatbot',
  84. agent: 'Agent',
  85. workflow: 'Workflow',
  86. completion: 'Completion',
  87. },
  88. }
  89. export default translation