explore.en.ts 887 B

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