app.en.ts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. appNamePlaceholder: 'Please enter the name of the app',
  19. newApp: {
  20. startToCreate: 'Let\'s start with your new app',
  21. captionName: 'Give your app a name',
  22. captionAppType: 'What kind of app do you want?',
  23. previewDemo: 'Preview demo',
  24. chatApp: 'Chat App',
  25. chatAppIntro:
  26. 'I want to build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
  27. completeApp: 'Text Generator',
  28. completeAppIntro:
  29. 'I want to create an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
  30. showTemplates: 'I want to choose from a template',
  31. hideTemplates: 'Go back to mode selection',
  32. Create: 'Create',
  33. Cancel: 'Cancel',
  34. nameNotEmpty: 'Name cannot be empty',
  35. appTemplateNotSelected: 'Please select a template',
  36. appTypeRequired: 'Please select an app type',
  37. appCreated: 'App created',
  38. appCreateFailed: 'Failed to create app',
  39. },
  40. editApp: {
  41. startToEdit: 'Edit App',
  42. },
  43. emoji: {
  44. ok: 'OK',
  45. cancel: 'Cancel',
  46. },
  47. }
  48. export default translation