app.en.ts 1.6 KB

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