app.ts 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. const translation = {
  2. createApp: 'Create new App',
  3. types: {
  4. all: 'All',
  5. assistant: 'Assistant',
  6. completion: 'Completion',
  7. },
  8. modes: {
  9. completion: 'Text Generator',
  10. chat: 'Basic Assistant',
  11. },
  12. createFromConfigFile: 'Create app from config file',
  13. deleteAppConfirmTitle: 'Delete this app?',
  14. deleteAppConfirmContent:
  15. '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.',
  16. appDeleted: 'App deleted',
  17. appDeleteFailed: 'Failed to delete app',
  18. join: 'Join the community',
  19. communityIntro:
  20. 'Discuss with team members, contributors and developers on different channels.',
  21. roadmap: 'See our roadmap',
  22. appNamePlaceholder: 'Please enter the name of the app',
  23. newApp: {
  24. startToCreate: 'Let\'s start with your new app',
  25. captionName: 'App icon & name',
  26. captionAppType: 'What type of app do you want to create?',
  27. previewDemo: 'Preview demo',
  28. chatApp: 'Assistant',
  29. chatAppIntro:
  30. 'I want to build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
  31. agentAssistant: 'New Agent Assistant',
  32. completeApp: 'Text Generator',
  33. completeAppIntro:
  34. 'I want to create an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
  35. showTemplates: 'I want to choose from a template',
  36. hideTemplates: 'Go back to mode selection',
  37. Create: 'Create',
  38. Cancel: 'Cancel',
  39. nameNotEmpty: 'Name cannot be empty',
  40. appTemplateNotSelected: 'Please select a template',
  41. appTypeRequired: 'Please select an app type',
  42. appCreated: 'App created',
  43. appCreateFailed: 'Failed to create app',
  44. },
  45. editApp: {
  46. startToEdit: 'Edit App',
  47. },
  48. emoji: {
  49. ok: 'OK',
  50. cancel: 'Cancel',
  51. },
  52. }
  53. export default translation