explore.en.ts 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. google: 'Searching Google {{query}}',
  70. wikipedia: 'Searching Wikipedia {{query}}',
  71. dataset: 'Retrieving dataset {datasetName}',
  72. date: 'Searching date',
  73. },
  74. },
  75. viewConfigDetailTip: 'In conversation, cannot change above settings',
  76. },
  77. }
  78. export default translation