app.en.ts 1.9 KB

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