app.en.ts 1.7 KB

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