@lobehub/chat 1.81.9 → 1.82.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.cursor/rules/desktop-local-tools-implement.mdc +80 -0
  2. package/.env.desktop +2 -1
  3. package/.github/scripts/pr-comment.js +4 -9
  4. package/CHANGELOG.md +50 -0
  5. package/changelog/v1.json +18 -0
  6. package/locales/ar/electron.json +38 -2
  7. package/locales/ar/plugin.json +33 -2
  8. package/locales/bg-BG/electron.json +38 -2
  9. package/locales/bg-BG/plugin.json +33 -2
  10. package/locales/de-DE/electron.json +38 -2
  11. package/locales/de-DE/plugin.json +28 -2
  12. package/locales/en-US/electron.json +38 -2
  13. package/locales/en-US/plugin.json +28 -2
  14. package/locales/es-ES/electron.json +38 -2
  15. package/locales/es-ES/plugin.json +33 -2
  16. package/locales/fa-IR/electron.json +38 -2
  17. package/locales/fa-IR/plugin.json +33 -2
  18. package/locales/fr-FR/electron.json +38 -2
  19. package/locales/fr-FR/plugin.json +33 -2
  20. package/locales/it-IT/electron.json +38 -2
  21. package/locales/it-IT/plugin.json +33 -2
  22. package/locales/ja-JP/electron.json +38 -2
  23. package/locales/ja-JP/plugin.json +33 -2
  24. package/locales/ko-KR/electron.json +38 -2
  25. package/locales/ko-KR/plugin.json +28 -2
  26. package/locales/nl-NL/electron.json +38 -2
  27. package/locales/nl-NL/plugin.json +33 -2
  28. package/locales/pl-PL/electron.json +38 -2
  29. package/locales/pl-PL/plugin.json +28 -2
  30. package/locales/pt-BR/electron.json +38 -2
  31. package/locales/pt-BR/plugin.json +33 -2
  32. package/locales/ru-RU/electron.json +38 -2
  33. package/locales/ru-RU/plugin.json +33 -2
  34. package/locales/tr-TR/electron.json +38 -2
  35. package/locales/tr-TR/plugin.json +33 -2
  36. package/locales/vi-VN/electron.json +38 -2
  37. package/locales/vi-VN/plugin.json +28 -2
  38. package/locales/zh-CN/electron.json +38 -2
  39. package/locales/zh-CN/plugin.json +38 -2
  40. package/locales/zh-TW/electron.json +38 -2
  41. package/locales/zh-TW/plugin.json +33 -2
  42. package/package.json +1 -1
  43. package/packages/electron-client-ipc/src/events/update.ts +3 -3
  44. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Mode.tsx +222 -0
  45. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Option.tsx +104 -0
  46. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Sync.tsx +42 -0
  47. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Waiting.tsx +203 -0
  48. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/index.tsx +57 -0
  49. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/UpdateModal.tsx +242 -0
  50. package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/UpdateNotification.tsx +193 -0
  51. package/src/app/[variants]/(main)/_layout/Desktop/{Titlebar.tsx → ElectronTitlebar/index.tsx} +15 -1
  52. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/BottomActions.tsx +3 -2
  53. package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +1 -1
  54. package/src/app/[variants]/layout.tsx +2 -1
  55. package/src/components/ManifestPreviewer/index.tsx +4 -1
  56. package/src/features/ChatInput/ActionBar/Tools/Dropdown.tsx +2 -1
  57. package/src/features/Conversation/Extras/Usage/index.tsx +7 -1
  58. package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +1 -1
  59. package/src/features/Conversation/components/MarkdownElements/LocalFile/Render/LocalFile.tsx +65 -0
  60. package/src/features/Conversation/components/MarkdownElements/LocalFile/Render/index.tsx +29 -0
  61. package/src/features/Conversation/components/MarkdownElements/LocalFile/index.ts +16 -0
  62. package/src/features/Conversation/components/MarkdownElements/index.ts +7 -1
  63. package/src/features/Conversation/components/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +260 -0
  64. package/src/features/Conversation/components/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +204 -0
  65. package/src/features/Conversation/components/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +133 -0
  66. package/src/features/Conversation/components/MarkdownElements/type.ts +5 -1
  67. package/src/features/PluginAvatar/index.tsx +2 -1
  68. package/src/features/PluginDevModal/MCPManifestForm/ArgsInput.tsx +20 -0
  69. package/src/features/PluginDevModal/MCPManifestForm/MCPTypeSelect.tsx +176 -0
  70. package/src/features/PluginDevModal/MCPManifestForm/index.tsx +226 -0
  71. package/src/features/PluginDevModal/PluginPreview.tsx +4 -3
  72. package/src/features/PluginDevModal/index.tsx +43 -34
  73. package/src/features/PluginStore/AddPluginButton.tsx +3 -1
  74. package/src/features/PluginStore/PluginItem/Action.tsx +5 -2
  75. package/src/features/PluginStore/PluginItem/PluginAvatar.tsx +25 -0
  76. package/src/features/PluginStore/PluginItem/index.tsx +4 -3
  77. package/src/features/PluginTag/index.tsx +8 -2
  78. package/src/{server/modules/MCPClient → libs/mcp}/__tests__/__snapshots__/index.test.ts.snap +0 -56
  79. package/src/{server/modules/MCPClient → libs/mcp}/__tests__/index.test.ts +2 -2
  80. package/src/{server/modules/MCPClient/index.ts → libs/mcp/client.ts} +29 -33
  81. package/src/libs/mcp/index.ts +2 -0
  82. package/src/libs/mcp/types.ts +27 -0
  83. package/src/locales/default/electron.ts +38 -2
  84. package/src/locales/default/plugin.ts +41 -3
  85. package/src/server/modules/ElectronIPCClient/index.ts +36 -0
  86. package/src/server/routers/lambda/session.ts +2 -6
  87. package/src/server/routers/tools/index.ts +2 -0
  88. package/src/server/routers/tools/mcp.ts +85 -0
  89. package/src/server/services/file/impls/index.ts +9 -1
  90. package/src/server/services/file/impls/local.test.ts +299 -0
  91. package/src/server/services/file/impls/local.ts +183 -0
  92. package/src/server/services/mcp/index.ts +176 -0
  93. package/src/services/aiModel/index.ts +5 -1
  94. package/src/services/aiProvider/index.ts +5 -1
  95. package/src/services/electron/autoUpdate.ts +4 -0
  96. package/src/services/file/index.ts +5 -1
  97. package/src/services/mcp.ts +36 -0
  98. package/src/services/message/index.ts +5 -1
  99. package/src/services/plugin/index.ts +5 -1
  100. package/src/services/session/index.ts +5 -1
  101. package/src/services/tableViewer/desktop.ts +15 -0
  102. package/src/services/tableViewer/index.ts +4 -1
  103. package/src/services/thread/index.ts +5 -1
  104. package/src/services/topic/index.ts +5 -1
  105. package/src/services/user/index.ts +5 -1
  106. package/src/store/chat/slices/plugin/action.ts +46 -2
  107. package/src/store/electron/actions/app.ts +59 -0
  108. package/src/store/electron/actions/sync.ts +5 -1
  109. package/src/store/electron/initialState.ts +3 -1
  110. package/src/store/electron/store.ts +6 -1
  111. package/src/store/tool/slices/customPlugin/action.ts +16 -4
  112. package/src/types/tool/plugin.ts +9 -0
  113. package/src/utils/client/GlobalAgentContextManager.ts +85 -0
  114. package/src/utils/promptTemplate.test.ts +78 -0
  115. package/src/utils/promptTemplate.ts +17 -0
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "Desconectado",
18
18
  "urlRequired": "Por favor, introduzca la dirección del servidor"
19
19
  },
20
+ "sync": {
21
+ "continue": "Continuar",
22
+ "inCloud": "Actualmente utilizando sincronización en la nube",
23
+ "inLocalStorage": "Actualmente utilizando almacenamiento local",
24
+ "isIniting": "Inicializando...",
25
+ "lobehubCloud": {
26
+ "description": "Versión en la nube proporcionada oficialmente",
27
+ "title": "LobeHub Cloud"
28
+ },
29
+ "local": {
30
+ "description": "Usando base de datos local, completamente disponible sin conexión",
31
+ "title": "Base de datos local"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "Sincronización en la nube",
35
+ "localStorage": "Almacenamiento local",
36
+ "title": "Elige tu modo de conexión",
37
+ "useSelfHosted": "¿Usar instancia autohospedada?"
38
+ },
39
+ "selfHosted": {
40
+ "description": "Versión comunitaria desplegada por uno mismo",
41
+ "title": "Instancia autohospedada"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "Comprobando actualizaciones",
46
+ "checkingUpdateDesc": "Obteniendo información de la versión...",
47
+ "downloadNewVersion": "Descargar nueva versión",
21
48
  "downloadingUpdate": "Descargando actualización",
22
49
  "downloadingUpdateDesc": "La actualización se está descargando, por favor espere...",
50
+ "installLater": "Actualizar en el próximo inicio",
51
+ "isLatestVersion": "Ya tienes la última versión",
52
+ "isLatestVersionDesc": "¡Genial! La versión {{version}} que estás utilizando ya es la más avanzada.",
23
53
  "later": "Actualizar más tarde",
24
54
  "newVersionAvailable": "Nueva versión disponible",
25
55
  "newVersionAvailableDesc": "Se ha encontrado una nueva versión {{version}}, ¿desea descargarla ahora?",
26
- "restartAndInstall": "Reiniciar e instalar",
56
+ "restartAndInstall": "Instalar actualizaciones y reiniciar",
27
57
  "updateError": "Error de actualización",
28
58
  "updateReady": "Actualización lista",
29
- "updateReadyDesc": "Lobe Chat {{version}} se ha descargado, reinicie la aplicación para completar la instalación.",
59
+ "updateReadyDesc": "La nueva versión {{version}} se ha descargado, reinicia la aplicación para completar la instalación.",
30
60
  "upgradeNow": "Actualizar ahora"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "Cancelar",
64
+ "description": "Se ha abierto la página de autorización en el navegador, por favor completa la autorización en el navegador",
65
+ "helpText": "Si el navegador no se abre automáticamente, haz clic en cancelar y vuelve a intentarlo",
66
+ "title": "Esperando conexión de autorización"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "Identificador"
36
36
  },
37
37
  "mode": {
38
- "local": "Configuración visual",
39
- "local-tooltip": "La configuración visual no está disponible temporalmente",
38
+ "mcp": "Plugin MCP",
39
+ "mcpExp": "Experimental",
40
40
  "url": "Enlace en línea"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,37 @@
45
45
  "placeholder": "Buscar motor de búsqueda"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "desc": "Lista de parámetros a pasar al comando STDIO",
51
+ "label": "Parámetros del comando",
52
+ "placeholder": "Por ejemplo: --port 8080 --debug",
53
+ "tooltip": "Presiona enter o usa comas/espacios para separar los parámetros después de ingresarlos"
54
+ },
55
+ "command": {
56
+ "desc": "Archivo ejecutable o script para iniciar el complemento MCP STDIO",
57
+ "label": "Comando",
58
+ "placeholder": "Por ejemplo: python main.py o /ruta/al/ejecutable"
59
+ },
60
+ "endpoint": {
61
+ "desc": "Ingresa la dirección de tu servidor HTTP Streamable MCP",
62
+ "label": "URL del Endpoint MCP"
63
+ },
64
+ "identifier": {
65
+ "desc": "Especifica un nombre para tu complemento MCP, debe usar caracteres en inglés",
66
+ "invalid": "Solo se pueden ingresar caracteres en inglés, números, y los símbolos - y _",
67
+ "label": "Nombre del complemento MCP",
68
+ "placeholder": "Por ejemplo: my-mcp-plugin"
69
+ },
70
+ "type": {
71
+ "desc": "Selecciona el método de comunicación del complemento MCP, la versión web solo admite HTTP Streamable",
72
+ "label": "Tipo de complemento MCP"
73
+ },
74
+ "url": {
75
+ "desc": "Introduce la dirección HTTP transmitible de tu servidor MCP, que no debe terminar con /sse",
76
+ "label": "URL del Endpoint HTTP"
77
+ }
78
+ },
48
79
  "meta": {
49
80
  "author": {
50
81
  "desc": "Autor del complemento",
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "قطع شده",
18
18
  "urlRequired": "لطفاً آدرس سرور را وارد کنید"
19
19
  },
20
+ "sync": {
21
+ "continue": "ادامه",
22
+ "inCloud": "در حال حاضر از همگام‌سازی ابری استفاده می‌شود",
23
+ "inLocalStorage": "در حال حاضر از ذخیره‌سازی محلی استفاده می‌شود",
24
+ "isIniting": "در حال راه‌اندازی...",
25
+ "lobehubCloud": {
26
+ "description": "نسخه ابری ارائه شده توسط رسمی",
27
+ "title": "LobeHub Cloud"
28
+ },
29
+ "local": {
30
+ "description": "استفاده از پایگاه داده محلی، کاملاً آفلاین قابل استفاده است",
31
+ "title": "پایگاه داده محلی"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "همگام‌سازی ابری",
35
+ "localStorage": "ذخیره‌سازی محلی",
36
+ "title": "مدل اتصال خود را انتخاب کنید",
37
+ "useSelfHosted": "آیا از نمونه خود میزبانی شده استفاده می‌کنید؟"
38
+ },
39
+ "selfHosted": {
40
+ "description": "نسخه جامعه‌ای که خودتان مستقر کرده‌اید",
41
+ "title": "نمونه خود میزبانی شده"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "بررسی نسخه جدید",
46
+ "checkingUpdateDesc": "در حال دریافت اطلاعات نسخه...",
47
+ "downloadNewVersion": "دانلود نسخه جدید",
21
48
  "downloadingUpdate": "در حال دانلود به‌روزرسانی",
22
49
  "downloadingUpdateDesc": "به‌روزرسانی در حال دانلود است، لطفاً صبر کنید...",
50
+ "installLater": "به‌روزرسانی در راه‌اندازی بعدی",
51
+ "isLatestVersion": "در حال حاضر آخرین نسخه است",
52
+ "isLatestVersionDesc": "عالی است، نسخه {{version}} که استفاده می‌کنید، آخرین نسخه موجود است.",
23
53
  "later": "به‌روزرسانی بعداً",
24
54
  "newVersionAvailable": "نسخه جدید در دسترس است",
25
55
  "newVersionAvailableDesc": "نسخه جدید {{version}} شناسایی شد، آیا می‌خواهید بلافاصله دانلود کنید؟",
26
- "restartAndInstall": "راه‌اندازی مجدد و نصب",
56
+ "restartAndInstall": "نصب به‌روزرسانی و راه‌اندازی مجدد",
27
57
  "updateError": "خطا در به‌روزرسانی",
28
58
  "updateReady": "به‌روزرسانی آماده است",
29
- "updateReadyDesc": "Lobe Chat {{version}} دانلود شده است، با راه‌اندازی مجدد برنامه می‌توانید نصب را کامل کنید.",
59
+ "updateReadyDesc": "نسخه جدید {{version}} دانلود شده است، با راه‌اندازی مجدد برنامه نصب کامل می‌شود.",
30
60
  "upgradeNow": "همین حالا به‌روزرسانی کنید"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "لغو",
64
+ "description": "صفحه مجوز در مرورگر باز شده است، لطفاً مجوز را در مرورگر کامل کنید",
65
+ "helpText": "اگر مرورگر به طور خودکار باز نشد، لطفاً روی لغو کلیک کرده و دوباره تلاش کنید",
66
+ "title": "در انتظار اتصال مجوز"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "شناسه"
36
36
  },
37
37
  "mode": {
38
- "local": "پیکربندی بصری",
39
- "local-tooltip": "پیکربندی بصری در حال حاضر پشتیبانی نمی‌شود",
38
+ "mcp": "افزونه MCP",
39
+ "mcpExp": "تجربی",
40
40
  "url": "لینک آنلاین"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,37 @@
45
45
  "placeholder": "موتور جستجو"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "desc": "لیست پارامترهای منتقل شده به دستور STDIO",
51
+ "label": "پارامترهای دستور",
52
+ "placeholder": "برای مثال: --port 8080 --debug",
53
+ "tooltip": "پس از وارد کردن پارامترها، Enter را بزنید یا از ویرگول/فاصله استفاده کنید"
54
+ },
55
+ "command": {
56
+ "desc": "فایل اجرایی یا اسکریپتی که برای راه‌اندازی افزونه MCP STDIO استفاده می‌شود",
57
+ "label": "دستور",
58
+ "placeholder": "برای مثال: python main.py یا /path/to/executable"
59
+ },
60
+ "endpoint": {
61
+ "desc": "آدرس سرور HTTP Streamable MCP خود را وارد کنید",
62
+ "label": "آدرس URL نقطه پایانی MCP"
63
+ },
64
+ "identifier": {
65
+ "desc": "برای افزونه MCP خود یک نام مشخص کنید، باید از کاراکترهای انگلیسی استفاده کنید",
66
+ "invalid": "فقط می‌توانید از کاراکترهای انگلیسی، اعداد، - و _ استفاده کنید",
67
+ "label": "نام افزونه MCP",
68
+ "placeholder": "برای مثال: my-mcp-plugin"
69
+ },
70
+ "type": {
71
+ "desc": "روش ارتباط افزونه MCP را انتخاب کنید، نسخه وب فقط از HTTP Streamable پشتیبانی می‌کند",
72
+ "label": "نوع افزونه MCP"
73
+ },
74
+ "url": {
75
+ "desc": "آدرس HTTP قابل پخش سرور MCP خود را وارد کنید، که با /sse پایان نمی‌یابد",
76
+ "label": "آدرس URL نقطه پایانی HTTP"
77
+ }
78
+ },
48
79
  "meta": {
49
80
  "author": {
50
81
  "desc": "نویسنده افزونه",
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "Déconnecté",
18
18
  "urlRequired": "Veuillez entrer l'adresse du serveur"
19
19
  },
20
+ "sync": {
21
+ "continue": "Continuer",
22
+ "inCloud": "Utilisation actuelle de la synchronisation dans le cloud",
23
+ "inLocalStorage": "Utilisation actuelle du stockage local",
24
+ "isIniting": "Initialisation en cours...",
25
+ "lobehubCloud": {
26
+ "description": "Version cloud fournie par l'éditeur",
27
+ "title": "LobeHub Cloud"
28
+ },
29
+ "local": {
30
+ "description": "Utilise une base de données locale, entièrement hors ligne",
31
+ "title": "Base de données locale"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "Synchronisation dans le cloud",
35
+ "localStorage": "Stockage local",
36
+ "title": "Choisissez votre mode de connexion",
37
+ "useSelfHosted": "Utiliser une instance auto-hébergée ?"
38
+ },
39
+ "selfHosted": {
40
+ "description": "Version communautaire déployée par vos soins",
41
+ "title": "Instance auto-hébergée"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "Vérification des mises à jour",
46
+ "checkingUpdateDesc": "Récupération des informations de version...",
47
+ "downloadNewVersion": "Télécharger la nouvelle version",
21
48
  "downloadingUpdate": "Téléchargement de la mise à jour",
22
49
  "downloadingUpdateDesc": "La mise à jour est en cours de téléchargement, veuillez patienter...",
50
+ "installLater": "Mettre à jour au prochain démarrage",
51
+ "isLatestVersion": "Vous utilisez déjà la dernière version",
52
+ "isLatestVersionDesc": "Super, la version {{version}} que vous utilisez est à la pointe de la technologie.",
23
53
  "later": "Mettre à jour plus tard",
24
54
  "newVersionAvailable": "Nouvelle version disponible",
25
55
  "newVersionAvailableDesc": "Une nouvelle version {{version}} a été trouvée, souhaitez-vous la télécharger maintenant ?",
26
- "restartAndInstall": "Redémarrer et installer",
56
+ "restartAndInstall": "Installer la mise à jour et redémarrer",
27
57
  "updateError": "Erreur de mise à jour",
28
58
  "updateReady": "Mise à jour prête",
29
- "updateReadyDesc": "Lobe Chat {{version}} a été téléchargé, redémarrez l'application pour terminer l'installation.",
59
+ "updateReadyDesc": "La nouvelle version {{version}} a été téléchargée avec succès, redémarrez l'application pour terminer l'installation.",
30
60
  "upgradeNow": "Mettre à jour maintenant"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "Annuler",
64
+ "description": "La page d'autorisation a été ouverte dans le navigateur, veuillez compléter l'autorisation dans le navigateur",
65
+ "helpText": "Si le navigateur ne s'est pas ouvert automatiquement, veuillez cliquer sur annuler puis réessayer",
66
+ "title": "En attente de connexion d'autorisation"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "Identifiant"
36
36
  },
37
37
  "mode": {
38
- "local": "Configuration visuelle",
39
- "local-tooltip": "Configuration visuelle non prise en charge pour le moment",
38
+ "mcp": "Plugin MCP",
39
+ "mcpExp": "Expérimental",
40
40
  "url": "Lien en ligne"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,37 @@
45
45
  "placeholder": "Moteur de recherche"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "desc": "Liste des paramètres à passer à la commande STDIO",
51
+ "label": "Paramètres de commande",
52
+ "placeholder": "Par exemple : --port 8080 --debug",
53
+ "tooltip": "Appuyez sur Entrée après avoir saisi les paramètres ou utilisez une virgule/un espace pour les séparer"
54
+ },
55
+ "command": {
56
+ "desc": "Fichier exécutable ou script utilisé pour démarrer le plugin MCP STDIO",
57
+ "label": "Commande",
58
+ "placeholder": "Par exemple : python main.py ou /path/to/executable"
59
+ },
60
+ "endpoint": {
61
+ "desc": "Entrez l'adresse de votre serveur HTTP Streamable MCP",
62
+ "label": "URL de l'endpoint MCP"
63
+ },
64
+ "identifier": {
65
+ "desc": "Donnez un nom à votre plugin MCP, en utilisant des caractères anglais",
66
+ "invalid": "Vous ne pouvez entrer que des caractères anglais, des chiffres, - et _",
67
+ "label": "Nom du plugin MCP",
68
+ "placeholder": "Par exemple : my-mcp-plugin"
69
+ },
70
+ "type": {
71
+ "desc": "Choisissez le mode de communication du plugin MCP, la version web ne prend en charge que le HTTP Streamable",
72
+ "label": "Type de plugin MCP"
73
+ },
74
+ "url": {
75
+ "desc": "Entrez l'adresse HTTP Streamable de votre serveur MCP, sans terminer par /sse",
76
+ "label": "URL de l'endpoint HTTP"
77
+ }
78
+ },
48
79
  "meta": {
49
80
  "author": {
50
81
  "desc": "Auteur du plugin",
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "Non connesso",
18
18
  "urlRequired": "Inserisci l'indirizzo del server"
19
19
  },
20
+ "sync": {
21
+ "continue": "Continua",
22
+ "inCloud": "Attualmente utilizza la sincronizzazione cloud",
23
+ "inLocalStorage": "Attualmente utilizza l'archiviazione locale",
24
+ "isIniting": "In fase di inizializzazione...",
25
+ "lobehubCloud": {
26
+ "description": "Versione cloud fornita ufficialmente",
27
+ "title": "LobeHub Cloud"
28
+ },
29
+ "local": {
30
+ "description": "Utilizza un database locale, completamente disponibile offline",
31
+ "title": "Database locale"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "Sincronizzazione cloud",
35
+ "localStorage": "Archiviazione locale",
36
+ "title": "Scegli il tuo modo di connessione",
37
+ "useSelfHosted": "Utilizzare un'istanza autogestita?"
38
+ },
39
+ "selfHosted": {
40
+ "description": "Versione comunitaria auto-ospitata",
41
+ "title": "Istanze autogestite"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "Controllo aggiornamenti",
46
+ "checkingUpdateDesc": "Sto recuperando le informazioni sulla versione...",
47
+ "downloadNewVersion": "Scarica nuova versione",
21
48
  "downloadingUpdate": "Download dell'aggiornamento in corso",
22
49
  "downloadingUpdateDesc": "L'aggiornamento è in fase di download, attendere...",
50
+ "installLater": "Aggiorna al prossimo avvio",
51
+ "isLatestVersion": "Sei già all'ultima versione",
52
+ "isLatestVersionDesc": "Ottimo, la versione {{version}} che stai utilizzando è già la più recente.",
23
53
  "later": "Aggiorna più tardi",
24
54
  "newVersionAvailable": "Nuova versione disponibile",
25
55
  "newVersionAvailableDesc": "È disponibile una nuova versione {{version}}, desideri scaricarla subito?",
26
- "restartAndInstall": "Riavvia e installa",
56
+ "restartAndInstall": "Installa aggiornamenti e riavvia",
27
57
  "updateError": "Errore di aggiornamento",
28
58
  "updateReady": "Aggiornamento pronto",
29
- "updateReadyDesc": "Lobe Chat {{version}} è stato scaricato, riavvia l'app per completare l'installazione.",
59
+ "updateReadyDesc": "La nuova versione {{version}} è stata scaricata, riavvia l'app per completare l'installazione.",
30
60
  "upgradeNow": "Aggiorna ora"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "Annulla",
64
+ "description": "Il browser ha aperto la pagina di autorizzazione, completare l'autorizzazione nel browser",
65
+ "helpText": "Se il browser non si è aperto automaticamente, fai clic su annulla e riprova",
66
+ "title": "In attesa di autorizzazione"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "Identificatore"
36
36
  },
37
37
  "mode": {
38
- "local": "Configurazione visuale",
39
- "local-tooltip": "Configurazione visuale non supportata al momento",
38
+ "mcp": "Plugin MCP",
39
+ "mcpExp": "Sperimentale",
40
40
  "url": "Collegamento online"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,37 @@
45
45
  "placeholder": "Motore di ricerca"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "desc": "Elenco dei parametri da passare al comando STDIO",
51
+ "label": "Parametri del comando",
52
+ "placeholder": "Ad esempio: --port 8080 --debug",
53
+ "tooltip": "Premi invio dopo aver inserito i parametri o separali con una virgola/spazio"
54
+ },
55
+ "command": {
56
+ "desc": "File eseguibile o script per avviare il plugin MCP STDIO",
57
+ "label": "Comando",
58
+ "placeholder": "Ad esempio: python main.py o /path/to/executable"
59
+ },
60
+ "endpoint": {
61
+ "desc": "Inserisci l'indirizzo del tuo server HTTP Streamable MCP",
62
+ "label": "URL Endpoint MCP"
63
+ },
64
+ "identifier": {
65
+ "desc": "Assegna un nome al tuo plugin MCP, deve utilizzare caratteri inglesi",
66
+ "invalid": "Puoi inserire solo caratteri inglesi, numeri, e i simboli - e _",
67
+ "label": "Nome del plugin MCP",
68
+ "placeholder": "Ad esempio: my-mcp-plugin"
69
+ },
70
+ "type": {
71
+ "desc": "Scegli il metodo di comunicazione del plugin MCP, la versione web supporta solo Streamable HTTP",
72
+ "label": "Tipo di plugin MCP"
73
+ },
74
+ "url": {
75
+ "desc": "Inserisci l'indirizzo HTTP Streamable del tuo server MCP, che non deve terminare con /sse",
76
+ "label": "URL Endpoint HTTP"
77
+ }
78
+ },
48
79
  "meta": {
49
80
  "author": {
50
81
  "desc": "Autore del plugin",
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "未接続",
18
18
  "urlRequired": "サーバーアドレスを入力してください"
19
19
  },
20
+ "sync": {
21
+ "continue": "続行",
22
+ "inCloud": "現在、クラウド同期を使用しています",
23
+ "inLocalStorage": "現在、ローカルストレージを使用しています",
24
+ "isIniting": "初期化中...",
25
+ "lobehubCloud": {
26
+ "description": "公式提供のクラウド版",
27
+ "title": "LobeHub Cloud"
28
+ },
29
+ "local": {
30
+ "description": "ローカルデータベースを使用し、完全にオフラインで利用可能",
31
+ "title": "ローカルデータベース"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "クラウド同期",
35
+ "localStorage": "ローカルストレージ",
36
+ "title": "接続モードを選択",
37
+ "useSelfHosted": "自己ホストのインスタンスを使用しますか?"
38
+ },
39
+ "selfHosted": {
40
+ "description": "自分でデプロイしたコミュニティ版",
41
+ "title": "自己ホストインスタンス"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "更新を確認中",
46
+ "checkingUpdateDesc": "バージョン情報を取得しています...",
47
+ "downloadNewVersion": "新しいバージョンをダウンロード",
21
48
  "downloadingUpdate": "更新をダウンロード中",
22
49
  "downloadingUpdateDesc": "更新をダウンロードしています。しばらくお待ちください...",
50
+ "installLater": "次回起動時に更新",
51
+ "isLatestVersion": "現在最新のバージョンです",
52
+ "isLatestVersionDesc": "素晴らしい、使用中のバージョン {{version}} は最新のバージョンです。",
23
53
  "later": "後で更新",
24
54
  "newVersionAvailable": "新しいバージョンが利用可能です",
25
55
  "newVersionAvailableDesc": "新しいバージョン {{version}} が見つかりました。今すぐダウンロードしますか?",
26
- "restartAndInstall": "再起動してインストール",
56
+ "restartAndInstall": "更新をインストールして再起動",
27
57
  "updateError": "更新エラー",
28
58
  "updateReady": "更新が準備完了",
29
- "updateReadyDesc": "Lobe Chat {{version}} がダウンロード完了しました。アプリを再起動するとインストールが完了します。",
59
+ "updateReadyDesc": "新しいバージョン {{version}} のダウンロードが完了しました。アプリを再起動するとインストールが完了します。",
30
60
  "upgradeNow": "今すぐ更新"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "キャンセル",
64
+ "description": "ブラウザが認証ページを開きました。ブラウザで認証を完了してください",
65
+ "helpText": "ブラウザが自動的に開かない場合は、キャンセルをクリックして再試行してください",
66
+ "title": "認証接続を待機中"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "識別子"
36
36
  },
37
37
  "mode": {
38
- "local": "ビジュアル設定",
39
- "local-tooltip": "ビジュアル設定は一時的にサポートされていません",
38
+ "mcp": "MCP プラグイン",
39
+ "mcpExp": "実験的",
40
40
  "url": "オンラインリンク"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,37 @@
45
45
  "placeholder": "検索エンジン"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "desc": "STDIO コマンドに渡すパラメータのリスト",
51
+ "label": "コマンドパラメータ",
52
+ "placeholder": "例:--port 8080 --debug",
53
+ "tooltip": "パラメータを入力したら、Enter キーを押すか、カンマ/スペースで区切ってください"
54
+ },
55
+ "command": {
56
+ "desc": "MCP STDIO プラグインを起動するための実行可能ファイルまたはスクリプト",
57
+ "label": "コマンド",
58
+ "placeholder": "例:python main.py または /path/to/executable"
59
+ },
60
+ "endpoint": {
61
+ "desc": "あなたの MCP Streamable HTTP サーバーのアドレスを入力してください",
62
+ "label": "MCP エンドポイント URL"
63
+ },
64
+ "identifier": {
65
+ "desc": "あなたの MCP プラグインに名前を指定してください。英字を使用する必要があります",
66
+ "invalid": "英字、数字、- および _ のみを入力できます",
67
+ "label": "MCP プラグイン名",
68
+ "placeholder": "例:my-mcp-plugin"
69
+ },
70
+ "type": {
71
+ "desc": "MCP プラグインの通信方式を選択してください。ウェブ版は Streamable HTTP のみをサポートしています",
72
+ "label": "MCP プラグインタイプ"
73
+ },
74
+ "url": {
75
+ "desc": "あなたのMCPサーバーストリーミングHTTPアドレスを入力してください。/sseで終わることはありません",
76
+ "label": "HTTP エンドポイント URL"
77
+ }
78
+ },
48
79
  "meta": {
49
80
  "author": {
50
81
  "desc": "プラグインの作者",
@@ -17,16 +17,52 @@
17
17
  "statusDisconnected": "연결되지 않음",
18
18
  "urlRequired": "서버 주소를 입력하세요"
19
19
  },
20
+ "sync": {
21
+ "continue": "계속",
22
+ "inCloud": "현재 클라우드 동기화를 사용 중",
23
+ "inLocalStorage": "현재 로컬 저장소를 사용 중",
24
+ "isIniting": "초기화 중...",
25
+ "lobehubCloud": {
26
+ "description": "공식에서 제공하는 클라우드 버전",
27
+ "title": "로브허브 클라우드"
28
+ },
29
+ "local": {
30
+ "description": "로컬 데이터베이스를 사용하며, 완전히 오프라인에서 사용 가능",
31
+ "title": "로컬 데이터베이스"
32
+ },
33
+ "mode": {
34
+ "cloudSync": "클라우드 동기화",
35
+ "localStorage": "로컬 저장소",
36
+ "title": "연결 모드 선택",
37
+ "useSelfHosted": "자체 호스팅 인스턴스 사용?"
38
+ },
39
+ "selfHosted": {
40
+ "description": "자체 배포된 커뮤니티 버전",
41
+ "title": "자체 호스팅 인스턴스"
42
+ }
43
+ },
20
44
  "updater": {
45
+ "checkingUpdate": "새 버전 확인",
46
+ "checkingUpdateDesc": "버전 정보를 가져오는 중...",
47
+ "downloadNewVersion": "새 버전 다운로드",
21
48
  "downloadingUpdate": "업데이트 다운로드 중",
22
49
  "downloadingUpdateDesc": "업데이트가 다운로드 중입니다. 잠시 기다려 주세요...",
50
+ "installLater": "다음 시작 시 업데이트",
51
+ "isLatestVersion": "현재 최신 버전입니다",
52
+ "isLatestVersionDesc": "훌륭합니다! 사용 중인 버전 {{version}}은 최신 버전입니다.",
23
53
  "later": "나중에 업데이트",
24
54
  "newVersionAvailable": "새 버전 사용 가능",
25
55
  "newVersionAvailableDesc": "새 버전 {{version}}이 발견되었습니다. 지금 다운로드 하시겠습니까?",
26
- "restartAndInstall": "재시작설치",
56
+ "restartAndInstall": "업데이트 설치 재시작",
27
57
  "updateError": "업데이트 오류",
28
58
  "updateReady": "업데이트 준비 완료",
29
- "updateReadyDesc": "Lobe Chat {{version}}이 다운로드 완료되었습니다. 앱을 재시작하면 설치가 완료됩니다.",
59
+ "updateReadyDesc": " 버전 {{version}}이 다운로드 완료되었습니다. 애플리케이션을 재시작하면 설치가 완료됩니다.",
30
60
  "upgradeNow": "지금 업데이트"
61
+ },
62
+ "waitingOAuth": {
63
+ "cancel": "취소",
64
+ "description": "브라우저에서 인증 페이지가 열렸습니다. 브라우저에서 인증을 완료하세요.",
65
+ "helpText": "브라우저가 자동으로 열리지 않으면, 취소를 클릭한 후 다시 시도하세요.",
66
+ "title": "인증 연결 대기 중"
31
67
  }
32
68
  }
@@ -35,8 +35,8 @@
35
35
  "label": "식별자"
36
36
  },
37
37
  "mode": {
38
- "local": "시각적 구성",
39
- "local-tooltip": "시각적 구성은 일시적으로 지원되지 않습니다.",
38
+ "mcp": "MCP 플러그인",
39
+ "mcpExp": "실험적",
40
40
  "url": "온라인 링크"
41
41
  },
42
42
  "name": {
@@ -45,6 +45,32 @@
45
45
  "placeholder": "검색 엔진"
46
46
  }
47
47
  },
48
+ "mcp": {
49
+ "args": {
50
+ "label": "명령 매개변수"
51
+ },
52
+ "command": {
53
+ "label": "명령"
54
+ },
55
+ "endpoint": {
56
+ "desc": "당신의 MCP 스트리밍 HTTP 서버 주소를 입력하세요",
57
+ "label": "MCP 엔드포인트 URL"
58
+ },
59
+ "identifier": {
60
+ "desc": "당신의 MCP 플러그인에 이름을 지정하세요, 영어 문자 사용 필요",
61
+ "invalid": "영어 문자, 숫자, - 및 _ 기호만 입력할 수 있습니다",
62
+ "label": "MCP 플러그인 이름",
63
+ "placeholder": "예: my-mcp-plugin"
64
+ },
65
+ "type": {
66
+ "desc": "MCP 플러그인의 통신 방식을 선택하세요, 웹 버전은 스트리밍 HTTP만 지원합니다",
67
+ "label": "MCP 플러그인 유형"
68
+ },
69
+ "url": {
70
+ "desc": "MCP 서버의 스트리밍 HTTP 주소를 입력하세요. /sse로 끝나지 않습니다.",
71
+ "label": "HTTP 엔드포인트 URL"
72
+ }
73
+ },
48
74
  "meta": {
49
75
  "author": {
50
76
  "desc": "플러그인 작성자",