explore.ts 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. const translation = {
  2. title: 'Explore',
  3. sidebar: {
  4. discovery: 'Discovery',
  5. chat: 'Chat',
  6. workspace: 'Workspace',
  7. action: {
  8. pin: 'Pin',
  9. unpin: 'Unpin',
  10. rename: 'Rename',
  11. delete: 'Delete',
  12. },
  13. delete: {
  14. title: 'Delete app',
  15. content: 'Are you sure you want to delete this app?',
  16. },
  17. },
  18. apps: {
  19. title: 'Explore Apps by Dify',
  20. description: 'Use these template apps instantly or customize your own apps based on the templates.',
  21. allCategories: 'Recommended',
  22. },
  23. appCard: {
  24. addToWorkspace: 'Add to Workspace',
  25. customize: 'Customize',
  26. },
  27. appCustomize: {
  28. title: 'Create app from {{name}}',
  29. subTitle: 'App icon & name',
  30. nameRequired: 'App name is required',
  31. },
  32. category: {
  33. Assistant: 'Assistant',
  34. Writing: 'Writing',
  35. Translate: 'Translate',
  36. Programming: 'Programming',
  37. HR: 'HR',
  38. },
  39. }
  40. export default translation