@lobehub/chat 1.82.0 → 1.82.2
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 +51 -0
- package/changelog/v1.json +18 -0
- package/locales/ar/electron.json +38 -2
- package/locales/ar/plugin.json +51 -31
- package/locales/bg-BG/electron.json +38 -2
- package/locales/bg-BG/plugin.json +51 -31
- package/locales/de-DE/electron.json +38 -2
- package/locales/de-DE/plugin.json +29 -9
- package/locales/en-US/electron.json +38 -2
- package/locales/en-US/plugin.json +29 -9
- package/locales/es-ES/electron.json +38 -2
- package/locales/es-ES/plugin.json +51 -31
- package/locales/fa-IR/electron.json +38 -2
- package/locales/fa-IR/plugin.json +51 -31
- package/locales/fr-FR/electron.json +38 -2
- package/locales/fr-FR/plugin.json +51 -31
- package/locales/it-IT/electron.json +38 -2
- package/locales/it-IT/plugin.json +51 -31
- package/locales/ja-JP/electron.json +38 -2
- package/locales/ja-JP/plugin.json +51 -31
- package/locales/ko-KR/electron.json +38 -2
- package/locales/ko-KR/plugin.json +29 -9
- package/locales/nl-NL/electron.json +38 -2
- package/locales/nl-NL/plugin.json +51 -31
- package/locales/pl-PL/electron.json +38 -2
- package/locales/pl-PL/plugin.json +29 -9
- package/locales/pt-BR/electron.json +38 -2
- package/locales/pt-BR/plugin.json +51 -31
- package/locales/ru-RU/electron.json +38 -2
- package/locales/ru-RU/plugin.json +51 -31
- package/locales/tr-TR/electron.json +38 -2
- package/locales/tr-TR/plugin.json +51 -31
- package/locales/vi-VN/electron.json +38 -2
- package/locales/vi-VN/plugin.json +29 -9
- package/locales/zh-CN/electron.json +38 -2
- package/locales/zh-CN/plugin.json +30 -10
- package/locales/zh-TW/electron.json +38 -2
- package/locales/zh-TW/plugin.json +51 -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/config/aiModels/openrouter.ts +6 -6
- 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/index.tsx +289 -0
- package/src/features/PluginDevModal/MCPManifestForm/utils.test.ts +262 -0
- package/src/features/PluginDevModal/MCPManifestForm/utils.ts +151 -0
- package/src/features/PluginDevModal/index.tsx +31 -22
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +1 -1
- 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 +28 -8
- 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 +26 -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
- package/src/features/PluginDevModal/MCPManifestForm.tsx +0 -164
@@ -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
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "charge du plugin",
|
8
8
|
"pluginState": "État du plugin",
|
9
9
|
"response": "Réponse",
|
10
|
+
"title": "Détails du plugin",
|
10
11
|
"tool_call": "demande d'appel d'outil"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -34,37 +35,6 @@
|
|
34
35
|
"desc": "Identifiant unique du plugin",
|
35
36
|
"label": "Identifiant"
|
36
37
|
},
|
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
38
|
"mode": {
|
69
39
|
"mcp": "Plugin MCP",
|
70
40
|
"mcpExp": "Expérimental",
|
@@ -76,6 +46,52 @@
|
|
76
46
|
"placeholder": "Moteur de recherche"
|
77
47
|
}
|
78
48
|
},
|
49
|
+
"mcp": {
|
50
|
+
"args": {
|
51
|
+
"desc": "Liste des paramètres à passer à la commande STDIO",
|
52
|
+
"label": "Paramètres de commande",
|
53
|
+
"placeholder": "Par exemple : --port 8080 --debug",
|
54
|
+
"required": "Veuillez entrer les paramètres de démarrage"
|
55
|
+
},
|
56
|
+
"command": {
|
57
|
+
"desc": "Fichier exécutable ou script utilisé pour démarrer le plugin MCP STDIO",
|
58
|
+
"label": "Commande",
|
59
|
+
"placeholder": "Par exemple : python main.py ou /path/to/executable",
|
60
|
+
"required": "Veuillez entrer la commande de démarrage"
|
61
|
+
},
|
62
|
+
"endpoint": {
|
63
|
+
"desc": "Entrez l'adresse de votre serveur HTTP Streamable MCP",
|
64
|
+
"label": "URL de l'endpoint MCP"
|
65
|
+
},
|
66
|
+
"identifier": {
|
67
|
+
"desc": "Donnez un nom à votre plugin MCP, en utilisant des caractères anglais",
|
68
|
+
"invalid": "Vous ne pouvez entrer que des caractères anglais, des chiffres, - et _",
|
69
|
+
"label": "Nom du plugin MCP",
|
70
|
+
"placeholder": "Par exemple : my-mcp-plugin",
|
71
|
+
"required": "Veuillez entrer l'identifiant du service MCP"
|
72
|
+
},
|
73
|
+
"previewManifest": "Aperçu du fichier de description du plugin",
|
74
|
+
"testConnection": "Tester la connexion",
|
75
|
+
"testConnectionTip": "Le plugin MCP ne peut être utilisé normalement qu'après un test de connexion réussi",
|
76
|
+
"type": {
|
77
|
+
"desc": "Choisissez le mode de communication du plugin MCP, la version web ne prend en charge que le HTTP Streamable",
|
78
|
+
"httpFeature1": "Compatible avec la version web et de bureau",
|
79
|
+
"httpFeature2": "Connexion à un serveur MCP distant, sans installation ni configuration supplémentaires",
|
80
|
+
"httpShortDesc": "Protocole de communication basé sur HTTP en continu",
|
81
|
+
"label": "Type de plugin MCP",
|
82
|
+
"stdioFeature1": "Latence de communication réduite, adapté à l'exécution locale",
|
83
|
+
"stdioFeature2": "Nécessite l'installation et l'exécution d'un serveur MCP local",
|
84
|
+
"stdioNotAvailable": "Le mode STDIO n'est disponible que dans la version de bureau",
|
85
|
+
"stdioShortDesc": "Protocole de communication basé sur l'entrée/sortie standard",
|
86
|
+
"title": "Type de plugin MCP"
|
87
|
+
},
|
88
|
+
"url": {
|
89
|
+
"desc": "Entrez l'adresse HTTP Streamable de votre serveur MCP, sans terminer par /sse",
|
90
|
+
"invalid": "Veuillez entrer une URL valide",
|
91
|
+
"label": "URL de l'endpoint HTTP",
|
92
|
+
"required": "Veuillez entrer l'URL du service MCP"
|
93
|
+
}
|
94
|
+
},
|
79
95
|
"meta": {
|
80
96
|
"author": {
|
81
97
|
"desc": "Auteur du plugin",
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "Identifiant",
|
102
118
|
"pattenErrorMessage": "Seuls les caractères alphanumériques, - et _ sont autorisés"
|
103
119
|
},
|
120
|
+
"lobe": "Plugin {{appName}}",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}} sera installé via ce lien pour ajouter le plugin.",
|
106
123
|
"label": "URL du fichier de description du plugin (Manifest)",
|
107
124
|
"preview": "Aperçu du Manifest",
|
108
125
|
"refresh": "Actualiser"
|
109
126
|
},
|
127
|
+
"openai": "Plugin OpenAI",
|
110
128
|
"title": {
|
111
129
|
"desc": "Titre du plugin",
|
112
130
|
"label": "Titre",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "Aucun fichier de description trouvé",
|
149
167
|
"openAPIInvalid": "Échec d'analyse de l'OpenAPI, erreur : \n\n {{error}}",
|
150
168
|
"reinstallError": "Échec de la mise à jour du plugin {{name}}",
|
169
|
+
"testConnectionFailed": "Échec de l'obtention du Manifest : {{error}}",
|
151
170
|
"urlError": "Ce lien ne renvoie pas de contenu au format JSON. Veuillez vous assurer qu'il s'agit d'un lien valide."
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "Boutique de plugins"
|
228
247
|
},
|
248
|
+
"unknownError": "Erreur inconnue",
|
229
249
|
"unknownPlugin": "Plugin inconnu"
|
230
250
|
}
|
@@ -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
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "carico del plugin",
|
8
8
|
"pluginState": "Stato del plugin",
|
9
9
|
"response": "Risposta",
|
10
|
+
"title": "Dettagli del plugin",
|
10
11
|
"tool_call": "richiesta di chiamata dello strumento"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -34,37 +35,6 @@
|
|
34
35
|
"desc": "Identificatore univoco del plugin",
|
35
36
|
"label": "Identificatore"
|
36
37
|
},
|
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
38
|
"mode": {
|
69
39
|
"mcp": "Plugin MCP",
|
70
40
|
"mcpExp": "Sperimentale",
|
@@ -76,6 +46,52 @@
|
|
76
46
|
"placeholder": "Motore di ricerca"
|
77
47
|
}
|
78
48
|
},
|
49
|
+
"mcp": {
|
50
|
+
"args": {
|
51
|
+
"desc": "Elenco dei parametri da passare al comando STDIO",
|
52
|
+
"label": "Parametri del comando",
|
53
|
+
"placeholder": "Ad esempio: --port 8080 --debug",
|
54
|
+
"required": "Inserisci i parametri di avvio"
|
55
|
+
},
|
56
|
+
"command": {
|
57
|
+
"desc": "File eseguibile o script per avviare il plugin MCP STDIO",
|
58
|
+
"label": "Comando",
|
59
|
+
"placeholder": "Ad esempio: python main.py o /path/to/executable",
|
60
|
+
"required": "Inserisci il comando di avvio"
|
61
|
+
},
|
62
|
+
"endpoint": {
|
63
|
+
"desc": "Inserisci l'indirizzo del tuo server HTTP Streamable MCP",
|
64
|
+
"label": "URL Endpoint MCP"
|
65
|
+
},
|
66
|
+
"identifier": {
|
67
|
+
"desc": "Assegna un nome al tuo plugin MCP, deve utilizzare caratteri inglesi",
|
68
|
+
"invalid": "Puoi inserire solo caratteri inglesi, numeri, e i simboli - e _",
|
69
|
+
"label": "Nome del plugin MCP",
|
70
|
+
"placeholder": "Ad esempio: my-mcp-plugin",
|
71
|
+
"required": "Inserisci l'identificatore del servizio MCP"
|
72
|
+
},
|
73
|
+
"previewManifest": "Anteprima del file di descrizione del plugin",
|
74
|
+
"testConnection": "Test di connessione",
|
75
|
+
"testConnectionTip": "Il plugin MCP può essere utilizzato correttamente solo dopo un test di connessione riuscito",
|
76
|
+
"type": {
|
77
|
+
"desc": "Scegli il metodo di comunicazione del plugin MCP, la versione web supporta solo Streamable HTTP",
|
78
|
+
"httpFeature1": "Compatibile con la versione web e desktop",
|
79
|
+
"httpFeature2": "Collegamento a un server MCP remoto, senza installazione o configurazione aggiuntive",
|
80
|
+
"httpShortDesc": "Protocollo di comunicazione basato su HTTP streaming",
|
81
|
+
"label": "Tipo di plugin MCP",
|
82
|
+
"stdioFeature1": "Minore latenza nella comunicazione, adatto per esecuzione locale",
|
83
|
+
"stdioFeature2": "È necessario installare e far funzionare il server MCP localmente",
|
84
|
+
"stdioNotAvailable": "La modalità STDIO è disponibile solo nella versione desktop",
|
85
|
+
"stdioShortDesc": "Protocollo di comunicazione basato su input e output standard",
|
86
|
+
"title": "Tipo di plugin MCP"
|
87
|
+
},
|
88
|
+
"url": {
|
89
|
+
"desc": "Inserisci l'indirizzo HTTP Streamable del tuo server MCP, che non deve terminare con /sse",
|
90
|
+
"invalid": "Inserisci un URL valido",
|
91
|
+
"label": "URL Endpoint HTTP",
|
92
|
+
"required": "Inserisci l'URL del servizio MCP"
|
93
|
+
}
|
94
|
+
},
|
79
95
|
"meta": {
|
80
96
|
"author": {
|
81
97
|
"desc": "Autore del plugin",
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "Identificatore",
|
102
118
|
"pattenErrorMessage": "Puoi inserire solo caratteri alfanumerici, - e _"
|
103
119
|
},
|
120
|
+
"lobe": "Plugin {{appName}}",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}} installerà il plugin tramite questo link",
|
106
123
|
"label": "URL del file di descrizione del plugin (Manifest)",
|
107
124
|
"preview": "Anteprima Manifest",
|
108
125
|
"refresh": "Aggiorna"
|
109
126
|
},
|
127
|
+
"openai": "Plugin OpenAI",
|
110
128
|
"title": {
|
111
129
|
"desc": "Titolo del plugin",
|
112
130
|
"label": "Titolo",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "Il file di descrizione non esiste",
|
149
167
|
"openAPIInvalid": "Analisi dell'OpenAPI fallita. Errore: \n\n {{error}}",
|
150
168
|
"reinstallError": "Ricaricamento del plugin {{name}} fallito",
|
169
|
+
"testConnectionFailed": "Impossibile ottenere il Manifest: {{error}}",
|
151
170
|
"urlError": "Il collegamento non restituisce contenuti nel formato JSON. Assicurati che il collegamento sia valido"
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "Negozio dei plugin"
|
228
247
|
},
|
248
|
+
"unknownError": "Errore sconosciuto",
|
229
249
|
"unknownPlugin": "Plugin sconosciuto"
|
230
250
|
}
|
@@ -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
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "ペイロード",
|
8
8
|
"pluginState": "プラグインの状態",
|
9
9
|
"response": "レスポンス",
|
10
|
+
"title": "プラグインの詳細",
|
10
11
|
"tool_call": "ツール呼び出し"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -34,37 +35,6 @@
|
|
34
35
|
"desc": "プラグインの一意の識別子",
|
35
36
|
"label": "識別子"
|
36
37
|
},
|
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": "あなたの MCP ストリーミング HTTP サーバーのアドレスを入力してください",
|
51
|
-
"label": "MCP エンドポイント URL"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "あなたの MCP プラグインに名前を指定してください。英字を使用する必要があります",
|
55
|
-
"invalid": "英字、数字、- および _ のみ入力できます",
|
56
|
-
"label": "MCP プラグイン名",
|
57
|
-
"placeholder": "例:my-mcp-plugin"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "MCP プラグインの通信方法を選択してください。ウェブ版はストリーミング HTTP のみサポートしています",
|
61
|
-
"label": "MCP プラグインタイプ"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "あなたの MCP HTTP プラグインのエンドポイントアドレスを入力してください",
|
65
|
-
"label": "HTTP エンドポイント URL"
|
66
|
-
}
|
67
|
-
},
|
68
38
|
"mode": {
|
69
39
|
"mcp": "MCP プラグイン",
|
70
40
|
"mcpExp": "実験的",
|
@@ -76,6 +46,52 @@
|
|
76
46
|
"placeholder": "検索エンジン"
|
77
47
|
}
|
78
48
|
},
|
49
|
+
"mcp": {
|
50
|
+
"args": {
|
51
|
+
"desc": "STDIO コマンドに渡すパラメータのリスト",
|
52
|
+
"label": "コマンドパラメータ",
|
53
|
+
"placeholder": "例:--port 8080 --debug",
|
54
|
+
"required": "起動パラメータを入力してください"
|
55
|
+
},
|
56
|
+
"command": {
|
57
|
+
"desc": "MCP STDIO プラグインを起動するための実行可能ファイルまたはスクリプト",
|
58
|
+
"label": "コマンド",
|
59
|
+
"placeholder": "例:python main.py または /path/to/executable",
|
60
|
+
"required": "起動コマンドを入力してください"
|
61
|
+
},
|
62
|
+
"endpoint": {
|
63
|
+
"desc": "あなたの MCP Streamable HTTP サーバーのアドレスを入力してください",
|
64
|
+
"label": "MCP エンドポイント URL"
|
65
|
+
},
|
66
|
+
"identifier": {
|
67
|
+
"desc": "あなたの MCP プラグインに名前を指定してください。英字を使用する必要があります",
|
68
|
+
"invalid": "英字、数字、- および _ のみを入力できます",
|
69
|
+
"label": "MCP プラグイン名",
|
70
|
+
"placeholder": "例:my-mcp-plugin",
|
71
|
+
"required": "MCP サービス識別子を入力してください"
|
72
|
+
},
|
73
|
+
"previewManifest": "プラグインの説明ファイルをプレビュー",
|
74
|
+
"testConnection": "接続をテスト",
|
75
|
+
"testConnectionTip": "接続テストが成功した後、MCP プラグインは正常に使用できます",
|
76
|
+
"type": {
|
77
|
+
"desc": "MCP プラグインの通信方式を選択してください。ウェブ版は Streamable HTTP のみをサポートしています",
|
78
|
+
"httpFeature1": "ウェブ版とデスクトップ版の互換性",
|
79
|
+
"httpFeature2": "追加のインストールや設定なしでリモートMCPサーバーに接続",
|
80
|
+
"httpShortDesc": "ストリーミングHTTPに基づく通信プロトコル",
|
81
|
+
"label": "MCP プラグインタイプ",
|
82
|
+
"stdioFeature1": "通信遅延が少なく、ローカル実行に適している",
|
83
|
+
"stdioFeature2": "ローカルにMCPサーバーをインストールして実行する必要がある",
|
84
|
+
"stdioNotAvailable": "STDIOモードはデスクトップ版でのみ利用可能",
|
85
|
+
"stdioShortDesc": "標準入力出力に基づく通信プロトコル",
|
86
|
+
"title": "MCPプラグインタイプ"
|
87
|
+
},
|
88
|
+
"url": {
|
89
|
+
"desc": "あなたのMCPサーバーストリーミングHTTPアドレスを入力してください。/sseで終わることはありません",
|
90
|
+
"invalid": "有効な URL アドレスを入力してください",
|
91
|
+
"label": "HTTP エンドポイント URL",
|
92
|
+
"required": "MCP サービスの URL を入力してください"
|
93
|
+
}
|
94
|
+
},
|
79
95
|
"meta": {
|
80
96
|
"author": {
|
81
97
|
"desc": "プラグインの作者",
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "識別子",
|
102
118
|
"pattenErrorMessage": "英数字、-、_ のみ入力できます"
|
103
119
|
},
|
120
|
+
"lobe": "{{appName}} プラグイン",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}}はこのリンクを通じてプラグインをインストールします",
|
106
123
|
"label": "プラグイン記述ファイル (Manifest) URL",
|
107
124
|
"preview": "マニフェストのプレビュー",
|
108
125
|
"refresh": "更新"
|
109
126
|
},
|
127
|
+
"openai": "OpenAI プラグイン",
|
110
128
|
"title": {
|
111
129
|
"desc": "プラグインのタイトル",
|
112
130
|
"label": "タイトル",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "マニフェストが存在しません",
|
149
167
|
"openAPIInvalid": "OpenAPIの解析に失敗しました。エラー: \n\n {{error}}",
|
150
168
|
"reinstallError": "プラグイン{{name}}の再インストールに失敗しました",
|
169
|
+
"testConnectionFailed": "マニフェストの取得に失敗しました: {{error}}",
|
151
170
|
"urlError": "このリンクはJSON形式のコンテンツを返していません。有効なリンクであることを確認してください"
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "プラグインストア"
|
228
247
|
},
|
248
|
+
"unknownError": "未知のエラー",
|
229
249
|
"unknownPlugin": "未知のプラグイン"
|
230
250
|
}
|
@@ -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": "
|
59
|
+
"updateReadyDesc": "새 버전 {{version}}이 다운로드 완료되었습니다. 애플리케이션을 재시작하면 설치가 완료됩니다.",
|
30
60
|
"upgradeNow": "지금 업데이트"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "취소",
|
64
|
+
"description": "브라우저에서 인증 페이지가 열렸습니다. 브라우저에서 인증을 완료하세요.",
|
65
|
+
"helpText": "브라우저가 자동으로 열리지 않으면, 취소를 클릭한 후 다시 시도하세요.",
|
66
|
+
"title": "인증 연결 대기 중"
|
31
67
|
}
|
32
68
|
}
|