explore.en.ts 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. const translation = {
  2. title: 'My Apps',
  3. sidebar: {
  4. discovery: 'Discovery',
  5. chat: 'Chat',
  6. workspace: 'Workspace',
  7. action: {
  8. pin: 'Pin',
  9. unpin: 'Unpin',
  10. delete: 'Delete',
  11. },
  12. delete: {
  13. title: 'Delete app',
  14. content: 'Are you sure you want to delete this app?',
  15. },
  16. },
  17. apps: {
  18. title: 'Explore Apps by Dify',
  19. description: 'Use these template apps instantly or customize your own apps based on the templates.',
  20. allCategories: 'All Categories',
  21. },
  22. appCard: {
  23. addToWorkspace: 'Add to Workspace',
  24. customize: 'Customize',
  25. },
  26. appCustomize: {
  27. title: 'Create app from {{name}}',
  28. subTitle: 'App icon & name',
  29. nameRequired: 'App name is required',
  30. },
  31. category: {
  32. Assistant: 'Assistant',
  33. Writing: 'Writing',
  34. Translate: 'Translate',
  35. Programming: 'Programming',
  36. HR: 'HR',
  37. },
  38. universalChat: {
  39. welcome: 'Start chat with Dify',
  40. welcomeDescribe: 'Your AI conversation companion for personalized assistance',
  41. model: 'Model',
  42. plugins: {
  43. name: 'Plugins',
  44. google_search: {
  45. name: 'Google Search',
  46. more: {
  47. left: 'Enable the plugin, ',
  48. link: 'set up your SerpAPI key',
  49. right: ' first.',
  50. },
  51. },
  52. web_reader: {
  53. name: 'Web Reader',
  54. description: 'Get needed information from any web link',
  55. },
  56. wikipedia: {
  57. name: 'Wikipedia',
  58. },
  59. },
  60. thought: {
  61. show: 'Show',
  62. hide: 'Hide',
  63. processOfThought: ' the process of thinking',
  64. res: {
  65. webReader: {
  66. normal: 'Reading {url}',
  67. hasPageInfo: 'Reading next page of {url}',
  68. },
  69. search: 'Searching {{query}}',
  70. dataset: 'Retrieving dataset {datasetName}',
  71. },
  72. },
  73. viewConfigDetailTip: 'In conversation, cannot change above settings',
  74. },
  75. }
  76. export default translation