@lobehub/chat 1.82.0 → 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.
- package/.cursor/rules/desktop-local-tools-implement.mdc +80 -0
- package/.env.desktop +2 -1
- package/.github/scripts/pr-comment.js +4 -9
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/locales/ar/electron.json +38 -2
- package/locales/ar/plugin.json +31 -31
- package/locales/bg-BG/electron.json +38 -2
- package/locales/bg-BG/plugin.json +31 -31
- package/locales/de-DE/electron.json +38 -2
- package/locales/de-DE/plugin.json +3 -8
- package/locales/en-US/electron.json +38 -2
- package/locales/en-US/plugin.json +3 -8
- package/locales/es-ES/electron.json +38 -2
- package/locales/es-ES/plugin.json +31 -31
- package/locales/fa-IR/electron.json +38 -2
- package/locales/fa-IR/plugin.json +31 -31
- package/locales/fr-FR/electron.json +38 -2
- package/locales/fr-FR/plugin.json +31 -31
- package/locales/it-IT/electron.json +38 -2
- package/locales/it-IT/plugin.json +31 -31
- package/locales/ja-JP/electron.json +38 -2
- package/locales/ja-JP/plugin.json +31 -31
- package/locales/ko-KR/electron.json +38 -2
- package/locales/ko-KR/plugin.json +3 -8
- package/locales/nl-NL/electron.json +38 -2
- package/locales/nl-NL/plugin.json +31 -31
- package/locales/pl-PL/electron.json +38 -2
- package/locales/pl-PL/plugin.json +3 -8
- package/locales/pt-BR/electron.json +38 -2
- package/locales/pt-BR/plugin.json +31 -31
- package/locales/ru-RU/electron.json +38 -2
- package/locales/ru-RU/plugin.json +31 -31
- package/locales/tr-TR/electron.json +38 -2
- package/locales/tr-TR/plugin.json +31 -31
- package/locales/vi-VN/electron.json +38 -2
- package/locales/vi-VN/plugin.json +3 -8
- package/locales/zh-CN/electron.json +38 -2
- package/locales/zh-CN/plugin.json +14 -9
- package/locales/zh-TW/electron.json +38 -2
- package/locales/zh-TW/plugin.json +31 -31
- package/package.json +1 -1
- package/packages/electron-client-ipc/src/events/update.ts +3 -3
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Mode.tsx +222 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Option.tsx +104 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Sync.tsx +42 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/Waiting.tsx +203 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/Connection/index.tsx +57 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/UpdateModal.tsx +242 -0
- package/src/app/[variants]/(main)/_layout/Desktop/ElectronTitlebar/UpdateNotification.tsx +193 -0
- package/src/app/[variants]/(main)/_layout/Desktop/{Titlebar.tsx → ElectronTitlebar/index.tsx} +15 -1
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/BottomActions.tsx +3 -2
- package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +1 -1
- package/src/app/[variants]/layout.tsx +2 -1
- package/src/features/Conversation/components/MarkdownElements/LocalFile/Render/LocalFile.tsx +65 -0
- package/src/features/Conversation/components/MarkdownElements/LocalFile/Render/index.tsx +29 -0
- package/src/features/Conversation/components/MarkdownElements/LocalFile/index.ts +16 -0
- package/src/features/Conversation/components/MarkdownElements/index.ts +7 -1
- package/src/features/Conversation/components/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +260 -0
- package/src/features/Conversation/components/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +204 -0
- package/src/features/Conversation/components/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +133 -0
- package/src/features/Conversation/components/MarkdownElements/type.ts +5 -1
- package/src/features/PluginDevModal/MCPManifestForm/ArgsInput.tsx +20 -0
- package/src/features/PluginDevModal/MCPManifestForm/MCPTypeSelect.tsx +176 -0
- package/src/features/PluginDevModal/{MCPManifestForm.tsx → MCPManifestForm/index.tsx} +92 -30
- package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +0 -56
- package/src/locales/default/electron.ts +38 -2
- package/src/locales/default/plugin.ts +14 -7
- package/src/server/modules/ElectronIPCClient/index.ts +36 -0
- package/src/server/routers/lambda/session.ts +2 -6
- package/src/server/routers/tools/mcp.ts +6 -0
- package/src/server/services/file/impls/index.ts +9 -1
- package/src/server/services/file/impls/local.test.ts +299 -0
- package/src/server/services/file/impls/local.ts +183 -0
- package/src/server/services/mcp/index.ts +19 -0
- package/src/services/aiModel/index.ts +5 -1
- package/src/services/aiProvider/index.ts +5 -1
- package/src/services/electron/autoUpdate.ts +4 -0
- package/src/services/file/index.ts +5 -1
- package/src/services/mcp.ts +13 -2
- package/src/services/message/index.ts +5 -1
- package/src/services/plugin/index.ts +5 -1
- package/src/services/session/index.ts +5 -1
- package/src/services/tableViewer/desktop.ts +15 -0
- package/src/services/tableViewer/index.ts +4 -1
- package/src/services/thread/index.ts +5 -1
- package/src/services/topic/index.ts +5 -1
- package/src/services/user/index.ts +5 -1
- package/src/store/electron/actions/app.ts +59 -0
- package/src/store/electron/actions/sync.ts +5 -1
- package/src/store/electron/initialState.ts +3 -1
- package/src/store/electron/store.ts +6 -1
- package/src/store/tool/slices/customPlugin/action.ts +16 -4
- package/src/utils/client/GlobalAgentContextManager.ts +85 -0
- package/src/utils/promptTemplate.test.ts +78 -0
- 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": "
|
56
|
+
"restartAndInstall": "Instalar actualizaciones y reiniciar",
|
27
57
|
"updateError": "Error de actualización",
|
28
58
|
"updateReady": "Actualización lista",
|
29
|
-
"updateReadyDesc": "
|
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
|
}
|
@@ -34,37 +34,6 @@
|
|
34
34
|
"desc": "Identificador único del complemento",
|
35
35
|
"label": "Identificador"
|
36
36
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "Lista de parámetros a pasar al comando STDIO",
|
40
|
-
"label": "Parámetros del comando",
|
41
|
-
"placeholder": "Por ejemplo: --port 8080 --debug",
|
42
|
-
"tooltip": "Presiona enter después de ingresar los parámetros o usa comas/espacios para separarlos"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "Archivo ejecutable o script para iniciar el plugin MCP STDIO",
|
46
|
-
"label": "Comando",
|
47
|
-
"placeholder": "Por ejemplo: python main.py o /ruta/al/ejecutable"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "Ingresa la dirección de tu servidor HTTP Streamable MCP",
|
51
|
-
"label": "URL del Endpoint MCP"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "Especifica un nombre para tu plugin MCP, debe usar caracteres en inglés",
|
55
|
-
"invalid": "Solo se pueden ingresar caracteres en inglés, números, y los símbolos - y _",
|
56
|
-
"label": "Nombre del plugin MCP",
|
57
|
-
"placeholder": "Por ejemplo: my-mcp-plugin"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "Selecciona el método de comunicación del plugin MCP, la versión web solo soporta HTTP Streamable",
|
61
|
-
"label": "Tipo de plugin MCP"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "Ingresa la dirección del Endpoint de tu plugin HTTP MCP",
|
65
|
-
"label": "URL del Endpoint HTTP"
|
66
|
-
}
|
67
|
-
},
|
68
37
|
"mode": {
|
69
38
|
"mcp": "Plugin MCP",
|
70
39
|
"mcpExp": "Experimental",
|
@@ -76,6 +45,37 @@
|
|
76
45
|
"placeholder": "Buscar motor de búsqueda"
|
77
46
|
}
|
78
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
|
+
},
|
79
79
|
"meta": {
|
80
80
|
"author": {
|
81
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": "
|
59
|
+
"updateReadyDesc": "نسخه جدید {{version}} دانلود شده است، با راهاندازی مجدد برنامه نصب کامل میشود.",
|
30
60
|
"upgradeNow": "همین حالا بهروزرسانی کنید"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "لغو",
|
64
|
+
"description": "صفحه مجوز در مرورگر باز شده است، لطفاً مجوز را در مرورگر کامل کنید",
|
65
|
+
"helpText": "اگر مرورگر به طور خودکار باز نشد، لطفاً روی لغو کلیک کرده و دوباره تلاش کنید",
|
66
|
+
"title": "در انتظار اتصال مجوز"
|
31
67
|
}
|
32
68
|
}
|
@@ -34,37 +34,6 @@
|
|
34
34
|
"desc": "شناسهی یکتای افزونه",
|
35
35
|
"label": "شناسه"
|
36
36
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "لیست پارامترهای منتقل شده به دستور STDIO",
|
40
|
-
"label": "پارامترهای دستور",
|
41
|
-
"placeholder": "برای مثال: --port 8080 --debug",
|
42
|
-
"tooltip": "پس از وارد کردن پارامترها، کلید Enter را فشار دهید یا از کاما/فاصله برای جداسازی استفاده کنید"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "فایل اجرایی یا اسکریپتی که برای راهاندازی افزونه MCP STDIO استفاده میشود",
|
46
|
-
"label": "دستور",
|
47
|
-
"placeholder": "برای مثال: python main.py یا /path/to/executable"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "آدرس سرور HTTP Streamable MCP خود را وارد کنید",
|
51
|
-
"label": "آدرس URL Endpoint MCP"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "برای افزونه MCP خود یک نام مشخص کنید، باید از کاراکترهای انگلیسی استفاده کنید",
|
55
|
-
"invalid": "فقط میتوانید از کاراکترهای انگلیسی، اعداد، و دو علامت - و _ استفاده کنید",
|
56
|
-
"label": "نام افزونه MCP",
|
57
|
-
"placeholder": "برای مثال: my-mcp-plugin"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "روش ارتباطی افزونه MCP را انتخاب کنید، نسخه وب فقط از Streamable HTTP پشتیبانی میکند",
|
61
|
-
"label": "نوع افزونه MCP"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "آدرس Endpoint افزونه HTTP MCP خود را وارد کنید",
|
65
|
-
"label": "آدرس URL Endpoint HTTP"
|
66
|
-
}
|
67
|
-
},
|
68
37
|
"mode": {
|
69
38
|
"mcp": "افزونه MCP",
|
70
39
|
"mcpExp": "تجربی",
|
@@ -76,6 +45,37 @@
|
|
76
45
|
"placeholder": "موتور جستجو"
|
77
46
|
}
|
78
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
|
+
},
|
79
79
|
"meta": {
|
80
80
|
"author": {
|
81
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": "
|
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": "
|
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
|
}
|
@@ -34,37 +34,6 @@
|
|
34
34
|
"desc": "Identifiant unique du plugin",
|
35
35
|
"label": "Identifiant"
|
36
36
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "Liste des paramètres à passer à la commande STDIO",
|
40
|
-
"label": "Paramètres de commande",
|
41
|
-
"placeholder": "Par exemple : --port 8080 --debug",
|
42
|
-
"tooltip": "Appuyez sur Entrée après avoir saisi les paramètres ou utilisez une virgule/un espace pour les séparer"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "Fichier exécutable ou script utilisé pour démarrer le plugin MCP STDIO",
|
46
|
-
"label": "Commande",
|
47
|
-
"placeholder": "Par exemple : python main.py ou /path/to/executable"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "Entrez l'adresse de votre serveur HTTP Streamable MCP",
|
51
|
-
"label": "URL de l'endpoint MCP"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "Donnez un nom à votre plugin MCP, doit utiliser des caractères anglais",
|
55
|
-
"invalid": "Vous ne pouvez entrer que des caractères anglais, des chiffres, - et _",
|
56
|
-
"label": "Nom du plugin MCP",
|
57
|
-
"placeholder": "Par exemple : mon-plugin-mcp"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "Choisissez le mode de communication du plugin MCP, la version web ne prend en charge que HTTP Streamable",
|
61
|
-
"label": "Type de plugin MCP"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "Entrez l'adresse de l'endpoint de votre plugin HTTP MCP",
|
65
|
-
"label": "URL de l'endpoint HTTP"
|
66
|
-
}
|
67
|
-
},
|
68
37
|
"mode": {
|
69
38
|
"mcp": "Plugin MCP",
|
70
39
|
"mcpExp": "Expérimental",
|
@@ -76,6 +45,37 @@
|
|
76
45
|
"placeholder": "Moteur de recherche"
|
77
46
|
}
|
78
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
|
+
},
|
79
79
|
"meta": {
|
80
80
|
"author": {
|
81
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": "
|
56
|
+
"restartAndInstall": "Installa aggiornamenti e riavvia",
|
27
57
|
"updateError": "Errore di aggiornamento",
|
28
58
|
"updateReady": "Aggiornamento pronto",
|
29
|
-
"updateReadyDesc": "
|
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
|
}
|
@@ -34,37 +34,6 @@
|
|
34
34
|
"desc": "Identificatore univoco del plugin",
|
35
35
|
"label": "Identificatore"
|
36
36
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "Elenco di parametri da passare al comando STDIO",
|
40
|
-
"label": "Parametri del comando",
|
41
|
-
"placeholder": "Ad esempio: --port 8080 --debug",
|
42
|
-
"tooltip": "Premi invio dopo aver inserito i parametri o separali con una virgola/spazio"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "File eseguibile o script per avviare il plugin MCP STDIO",
|
46
|
-
"label": "Comando",
|
47
|
-
"placeholder": "Ad esempio: python main.py o /path/to/executable"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "Inserisci l'indirizzo del tuo server HTTP Streamable MCP",
|
51
|
-
"label": "URL Endpoint MCP"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "Assegna un nome al tuo plugin MCP, deve utilizzare caratteri inglesi",
|
55
|
-
"invalid": "Puoi inserire solo caratteri inglesi, numeri, e i simboli - e _",
|
56
|
-
"label": "Nome del plugin MCP",
|
57
|
-
"placeholder": "Ad esempio: my-mcp-plugin"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "Seleziona il metodo di comunicazione del plugin MCP, la versione web supporta solo Streamable HTTP",
|
61
|
-
"label": "Tipo di plugin MCP"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "Inserisci l'indirizzo Endpoint del tuo plugin HTTP MCP",
|
65
|
-
"label": "URL Endpoint HTTP"
|
66
|
-
}
|
67
|
-
},
|
68
37
|
"mode": {
|
69
38
|
"mcp": "Plugin MCP",
|
70
39
|
"mcpExp": "Sperimentale",
|
@@ -76,6 +45,37 @@
|
|
76
45
|
"placeholder": "Motore di ricerca"
|
77
46
|
}
|
78
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
|
+
},
|
79
79
|
"meta": {
|
80
80
|
"author": {
|
81
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": "
|
59
|
+
"updateReadyDesc": "新しいバージョン {{version}} のダウンロードが完了しました。アプリを再起動するとインストールが完了します。",
|
30
60
|
"upgradeNow": "今すぐ更新"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "キャンセル",
|
64
|
+
"description": "ブラウザが認証ページを開きました。ブラウザで認証を完了してください",
|
65
|
+
"helpText": "ブラウザが自動的に開かない場合は、キャンセルをクリックして再試行してください",
|
66
|
+
"title": "認証接続を待機中"
|
31
67
|
}
|
32
68
|
}
|