@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
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "페이로드",
|
8
8
|
"pluginState": "플러그인 상태",
|
9
9
|
"response": "응답",
|
10
|
+
"title": "플러그인 세부정보",
|
10
11
|
"tool_call": "도구 호출"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -47,15 +48,16 @@
|
|
47
48
|
},
|
48
49
|
"mcp": {
|
49
50
|
"args": {
|
50
|
-
"desc": "STDIO 명령에 전달할 매개변수
|
51
|
+
"desc": "STDIO 명령에 전달할 매개변수 목록, 일반적으로 여기에서 MCP 서버 이름을 입력합니다",
|
51
52
|
"label": "명령 매개변수",
|
52
|
-
"placeholder": "예:
|
53
|
-
"
|
53
|
+
"placeholder": "예: mcp-hello-world",
|
54
|
+
"required": "시작 매개변수를 입력하세요"
|
54
55
|
},
|
55
56
|
"command": {
|
56
|
-
"desc": "MCP STDIO
|
57
|
+
"desc": "MCP STDIO 서버를 시작하는 실행 파일 또는 스크립트",
|
57
58
|
"label": "명령",
|
58
|
-
"placeholder": "예:
|
59
|
+
"placeholder": "예: npx / uv / docker 등",
|
60
|
+
"required": "시작 명령어를 입력하세요"
|
59
61
|
},
|
60
62
|
"endpoint": {
|
61
63
|
"desc": "당신의 MCP 스트리밍 HTTP 서버 주소를 입력하세요",
|
@@ -65,15 +67,29 @@
|
|
65
67
|
"desc": "당신의 MCP 플러그인에 이름을 지정하세요, 영어 문자 사용 필요",
|
66
68
|
"invalid": "영어 문자, 숫자, - 및 _ 기호만 입력할 수 있습니다",
|
67
69
|
"label": "MCP 플러그인 이름",
|
68
|
-
"placeholder": "예: my-mcp-plugin"
|
70
|
+
"placeholder": "예: my-mcp-plugin",
|
71
|
+
"required": "MCP 서비스 식별자를 입력하세요"
|
69
72
|
},
|
73
|
+
"previewManifest": "플러그인 설명 파일 미리보기",
|
74
|
+
"testConnection": "연결 테스트",
|
75
|
+
"testConnectionTip": "연결 테스트가 성공해야 MCP 플러그인을 정상적으로 사용할 수 있습니다",
|
70
76
|
"type": {
|
71
77
|
"desc": "MCP 플러그인의 통신 방식을 선택하세요, 웹 버전은 스트리밍 HTTP만 지원합니다",
|
72
|
-
"
|
78
|
+
"httpFeature1": "웹 버전과 데스크톱 버전 호환",
|
79
|
+
"httpFeature2": "원격 MCP 서버에 연결, 추가 설치 및 구성 필요 없음",
|
80
|
+
"httpShortDesc": "스트리밍 HTTP 기반 통신 프로토콜",
|
81
|
+
"label": "MCP 플러그인 유형",
|
82
|
+
"stdioFeature1": "더 낮은 통신 지연, 로컬 실행에 적합",
|
83
|
+
"stdioFeature2": "로컬에 MCP 서버를 설치하고 실행해야 함",
|
84
|
+
"stdioNotAvailable": "STDIO 모드는 데스크톱 버전에서만 사용 가능",
|
85
|
+
"stdioShortDesc": "표준 입력 및 출력을 기반으로 한 통신 프로토콜",
|
86
|
+
"title": "MCP 플러그인 유형"
|
73
87
|
},
|
74
88
|
"url": {
|
75
|
-
"desc": "
|
76
|
-
"
|
89
|
+
"desc": "MCP 서버의 스트리밍 HTTP 주소를 입력하세요. /sse로 끝나지 않습니다.",
|
90
|
+
"invalid": "유효한 URL 주소를 입력하세요",
|
91
|
+
"label": "HTTP 엔드포인트 URL",
|
92
|
+
"required": "MCP 서비스 URL을 입력하세요"
|
77
93
|
}
|
78
94
|
},
|
79
95
|
"meta": {
|
@@ -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": "Manifest 미리보기",
|
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": "Niet verbonden",
|
18
18
|
"urlRequired": "Voer het serveradres in"
|
19
19
|
},
|
20
|
+
"sync": {
|
21
|
+
"continue": "Doorgaan",
|
22
|
+
"inCloud": "Momenteel gebruik makend van cloud synchronisatie",
|
23
|
+
"inLocalStorage": "Momenteel gebruik makend van lokale opslag",
|
24
|
+
"isIniting": "Bezig met initialiseren...",
|
25
|
+
"lobehubCloud": {
|
26
|
+
"description": "De door de officiële instantie aangeboden cloudversie",
|
27
|
+
"title": "LobeHub Cloud"
|
28
|
+
},
|
29
|
+
"local": {
|
30
|
+
"description": "Gebruik makend van een lokale database, volledig offline beschikbaar",
|
31
|
+
"title": "Lokale database"
|
32
|
+
},
|
33
|
+
"mode": {
|
34
|
+
"cloudSync": "Cloud synchronisatie",
|
35
|
+
"localStorage": "Lokale opslag",
|
36
|
+
"title": "Kies je verbindingsmodus",
|
37
|
+
"useSelfHosted": "Gebruik je een zelfgehoste instantie?"
|
38
|
+
},
|
39
|
+
"selfHosted": {
|
40
|
+
"description": "Gemeenschapsversie die zelf is geïmplementeerd",
|
41
|
+
"title": "Zelfgehoste instantie"
|
42
|
+
}
|
43
|
+
},
|
20
44
|
"updater": {
|
45
|
+
"checkingUpdate": "Controleer op updates",
|
46
|
+
"checkingUpdateDesc": "Bezig met het ophalen van versie-informatie...",
|
47
|
+
"downloadNewVersion": "Download nieuwe versie",
|
21
48
|
"downloadingUpdate": "Update aan het downloaden",
|
22
49
|
"downloadingUpdateDesc": "De update wordt gedownload, even geduld...",
|
50
|
+
"installLater": "Bij de volgende opstarten bijwerken",
|
51
|
+
"isLatestVersion": "Je hebt de nieuwste versie",
|
52
|
+
"isLatestVersionDesc": "Geweldig, de versie {{version}} die je gebruikt is de meest recente versie.",
|
23
53
|
"later": "Later bijwerken",
|
24
54
|
"newVersionAvailable": "Nieuwe versie beschikbaar",
|
25
55
|
"newVersionAvailableDesc": "Nieuwe versie {{version}} gevonden, wilt u deze nu downloaden?",
|
26
|
-
"restartAndInstall": "
|
56
|
+
"restartAndInstall": "Installeer de update en herstart",
|
27
57
|
"updateError": "Updatefout",
|
28
58
|
"updateReady": "Update gereed",
|
29
|
-
"updateReadyDesc": "
|
59
|
+
"updateReadyDesc": "Nieuwe versie {{version}} is gedownload, herstart de applicatie om de installatie te voltooien.",
|
30
60
|
"upgradeNow": "Nu bijwerken"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "Annuleren",
|
64
|
+
"description": "De browser heeft de autorisatiepagina geopend, voltooi de autorisatie in de browser",
|
65
|
+
"helpText": "Als de browser niet automatisch opent, klik dan op annuleren en probeer het opnieuw",
|
66
|
+
"title": "Wachten op autorisatieverbinding"
|
31
67
|
}
|
32
68
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "plug-in payload",
|
8
8
|
"pluginState": "Pluginstatus",
|
9
9
|
"response": "Reactie",
|
10
|
+
"title": "Plugin Details",
|
10
11
|
"tool_call": "Tool-oproepverzoek"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -34,37 +35,6 @@
|
|
34
35
|
"desc": "De unieke identificatie van de plug-in",
|
35
36
|
"label": "Identificatie"
|
36
37
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "Lijst van parameters die aan het STDIO-commando worden doorgegeven",
|
40
|
-
"label": "Commando-parameters",
|
41
|
-
"placeholder": "Bijvoorbeeld: --port 8080 --debug",
|
42
|
-
"tooltip": "Druk op enter of gebruik komma's/spaties om parameters te scheiden"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "Uitvoerbaar bestand of script om de MCP STDIO-plugin te starten",
|
46
|
-
"label": "Commando",
|
47
|
-
"placeholder": "Bijvoorbeeld: python main.py of /path/to/executable"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "Voer het adres van je MCP Streamable HTTP Server in",
|
51
|
-
"label": "MCP Endpoint URL"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "Geef je MCP-plugin een naam, gebruik Engelse karakters",
|
55
|
-
"invalid": "Alleen Engelse karakters, cijfers, - en _ zijn toegestaan",
|
56
|
-
"label": "Naam van de MCP-plugin",
|
57
|
-
"placeholder": "Bijvoorbeeld: my-mcp-plugin"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "Kies de communicatiemethode voor de MCP-plugin, de webversie ondersteunt alleen Streamable HTTP",
|
61
|
-
"label": "Type MCP-plugin"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "Voer het Endpoint-adres van je MCP HTTP-plugin in",
|
65
|
-
"label": "HTTP Endpoint URL"
|
66
|
-
}
|
67
|
-
},
|
68
38
|
"mode": {
|
69
39
|
"mcp": "MCP-plugin",
|
70
40
|
"mcpExp": "Experimenteel",
|
@@ -76,6 +46,52 @@
|
|
76
46
|
"placeholder": "Zoekmachine"
|
77
47
|
}
|
78
48
|
},
|
49
|
+
"mcp": {
|
50
|
+
"args": {
|
51
|
+
"desc": "Lijst van parameters die aan het STDIO-commando worden doorgegeven",
|
52
|
+
"label": "Commando-parameters",
|
53
|
+
"placeholder": "Bijvoorbeeld: --port 8080 --debug",
|
54
|
+
"required": "Voer de opstartparameters in"
|
55
|
+
},
|
56
|
+
"command": {
|
57
|
+
"desc": "Uitvoerbaar bestand of script om de MCP STDIO-plugin te starten",
|
58
|
+
"label": "Commando",
|
59
|
+
"placeholder": "Bijvoorbeeld: python main.py of /path/to/executable",
|
60
|
+
"required": "Voer het opstartcommando in"
|
61
|
+
},
|
62
|
+
"endpoint": {
|
63
|
+
"desc": "Voer het adres van je MCP Streamable HTTP Server in",
|
64
|
+
"label": "MCP Endpoint URL"
|
65
|
+
},
|
66
|
+
"identifier": {
|
67
|
+
"desc": "Geef je MCP-plugin een naam, gebruik Engelse karakters",
|
68
|
+
"invalid": "Alleen Engelse karakters, cijfers, - en _ zijn toegestaan",
|
69
|
+
"label": "MCP Plugin Naam",
|
70
|
+
"placeholder": "Bijvoorbeeld: my-mcp-plugin",
|
71
|
+
"required": "Voer de MCP service-identificator in"
|
72
|
+
},
|
73
|
+
"previewManifest": "Voorbeeld van het plugin beschrijvingsbestand",
|
74
|
+
"testConnection": "Test verbinding",
|
75
|
+
"testConnectionTip": "De MCP plugin kan pas normaal worden gebruikt na een succesvolle verbindingstest",
|
76
|
+
"type": {
|
77
|
+
"desc": "Kies de communicatiemethode voor de MCP-plugin, de webversie ondersteunt alleen Streamable HTTP",
|
78
|
+
"httpFeature1": "Compatibel met web- en desktopversies",
|
79
|
+
"httpFeature2": "Verbind met een externe MCP-server, zonder extra installatie of configuratie",
|
80
|
+
"httpShortDesc": "Communicatieprotocol op basis van streaming HTTP",
|
81
|
+
"label": "MCP Plugin Type",
|
82
|
+
"stdioFeature1": "Lagere communicatietijd, geschikt voor lokale uitvoering",
|
83
|
+
"stdioFeature2": "MCP-server moet lokaal worden geïnstalleerd en uitgevoerd",
|
84
|
+
"stdioNotAvailable": "STDIO-modus is alleen beschikbaar in de desktopversie",
|
85
|
+
"stdioShortDesc": "Communicatieprotocol op basis van standaardinvoer en -uitvoer",
|
86
|
+
"title": "MCP-plugintype"
|
87
|
+
},
|
88
|
+
"url": {
|
89
|
+
"desc": "Voer je MCP Server Streamable HTTP-adres in, dit eindigt niet op /sse",
|
90
|
+
"invalid": "Voer een geldige URL in",
|
91
|
+
"label": "HTTP Endpoint URL",
|
92
|
+
"required": "Voer de MCP service URL in"
|
93
|
+
}
|
94
|
+
},
|
79
95
|
"meta": {
|
80
96
|
"author": {
|
81
97
|
"desc": "De auteur van de plug-in",
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "Identificatie",
|
102
118
|
"pattenErrorMessage": "Alleen alfanumerieke tekens, koppelteken - en underscore _ zijn toegestaan"
|
103
119
|
},
|
120
|
+
"lobe": "{{appName}} plugin",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}} zal de plugin installeren via deze link",
|
106
123
|
"label": "Plug-in Beschrijving (Manifest) URL",
|
107
124
|
"preview": "Voorbeeld",
|
108
125
|
"refresh": "Vernieuwen"
|
109
126
|
},
|
127
|
+
"openai": "OpenAI plugin",
|
110
128
|
"title": {
|
111
129
|
"desc": "De titel van de plug-in",
|
112
130
|
"label": "Titel",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "Geen manifest beschikbaar",
|
149
167
|
"openAPIInvalid": "OpenAPI-analyse mislukt. Fout: \n\n {{error}}",
|
150
168
|
"reinstallError": "Vernieuwen van de plugin {{name}} is mislukt.",
|
169
|
+
"testConnectionFailed": "Manifest ophalen mislukt: {{error}}",
|
151
170
|
"urlError": "De link retourneert geen JSON-indeling. Zorg ervoor dat het een geldige link is."
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "Pluginwinkel"
|
228
247
|
},
|
248
|
+
"unknownError": "Onbekende fout",
|
229
249
|
"unknownPlugin": "onbekende plugin"
|
230
250
|
}
|
@@ -17,16 +17,52 @@
|
|
17
17
|
"statusDisconnected": "Nie połączono",
|
18
18
|
"urlRequired": "Proszę wprowadzić adres serwera"
|
19
19
|
},
|
20
|
+
"sync": {
|
21
|
+
"continue": "Kontynuuj",
|
22
|
+
"inCloud": "Obecnie używasz synchronizacji w chmurze",
|
23
|
+
"inLocalStorage": "Obecnie używasz lokalnego przechowywania",
|
24
|
+
"isIniting": "Inicjalizacja...",
|
25
|
+
"lobehubCloud": {
|
26
|
+
"description": "Oficjalna wersja chmurowa",
|
27
|
+
"title": "LobeHub Cloud"
|
28
|
+
},
|
29
|
+
"local": {
|
30
|
+
"description": "Używa lokalnej bazy danych, całkowicie offline",
|
31
|
+
"title": "Lokalna baza danych"
|
32
|
+
},
|
33
|
+
"mode": {
|
34
|
+
"cloudSync": "Synchronizacja w chmurze",
|
35
|
+
"localStorage": "Lokalne przechowywanie",
|
36
|
+
"title": "Wybierz tryb połączenia",
|
37
|
+
"useSelfHosted": "Używasz instancji samodzielnie hostowanej?"
|
38
|
+
},
|
39
|
+
"selfHosted": {
|
40
|
+
"description": "Wersja społecznościowa do samodzielnego wdrożenia",
|
41
|
+
"title": "Instancja samodzielnie hostowana"
|
42
|
+
}
|
43
|
+
},
|
20
44
|
"updater": {
|
45
|
+
"checkingUpdate": "Sprawdzanie aktualizacji",
|
46
|
+
"checkingUpdateDesc": "Pobieranie informacji o wersji...",
|
47
|
+
"downloadNewVersion": "Pobierz nową wersję",
|
21
48
|
"downloadingUpdate": "Pobieranie aktualizacji",
|
22
49
|
"downloadingUpdateDesc": "Aktualizacja jest pobierana, proszę czekać...",
|
50
|
+
"installLater": "Zaktualizuj przy następnym uruchomieniu",
|
51
|
+
"isLatestVersion": "Aktualnie używasz najnowszej wersji",
|
52
|
+
"isLatestVersionDesc": "Świetnie, używana wersja {{version}} jest najnowszą dostępną wersją.",
|
23
53
|
"later": "Zaktualizuj później",
|
24
54
|
"newVersionAvailable": "Dostępna nowa wersja",
|
25
55
|
"newVersionAvailableDesc": "Znaleziono nową wersję {{version}}, czy chcesz ją pobrać teraz?",
|
26
|
-
"restartAndInstall": "
|
56
|
+
"restartAndInstall": "Zainstaluj aktualizację i uruchom ponownie",
|
27
57
|
"updateError": "Błąd aktualizacji",
|
28
58
|
"updateReady": "Aktualizacja gotowa",
|
29
|
-
"updateReadyDesc": "
|
59
|
+
"updateReadyDesc": "Nowa wersja {{version}} została pobrana, zainstaluj ją po ponownym uruchomieniu aplikacji.",
|
30
60
|
"upgradeNow": "Zaktualizuj teraz"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "Anuluj",
|
64
|
+
"description": "Przeglądarka otworzyła stronę autoryzacji, proszę zakończyć autoryzację w przeglądarce",
|
65
|
+
"helpText": "Jeśli przeglądarka nie otworzyła się automatycznie, kliknij anuluj i spróbuj ponownie",
|
66
|
+
"title": "Oczekiwanie na połączenie autoryzacyjne"
|
31
67
|
}
|
32
68
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "dane wejściowe wtyczki",
|
8
8
|
"pluginState": "Stan wtyczki",
|
9
9
|
"response": "Odpowiedź",
|
10
|
+
"title": "Szczegóły wtyczki",
|
10
11
|
"tool_call": "żądanie wywołania narzędzia"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -47,15 +48,16 @@
|
|
47
48
|
},
|
48
49
|
"mcp": {
|
49
50
|
"args": {
|
50
|
-
"desc": "Lista argumentów przekazywanych do polecenia STDIO",
|
51
|
+
"desc": "Lista argumentów przekazywanych do polecenia STDIO, zazwyczaj wpisz tutaj nazwę serwera MCP",
|
51
52
|
"label": "Argumenty polecenia",
|
52
|
-
"placeholder": "Na przykład:
|
53
|
-
"
|
53
|
+
"placeholder": "Na przykład: mcp-hello-world",
|
54
|
+
"required": "Proszę wprowadzić parametry uruchomienia"
|
54
55
|
},
|
55
56
|
"command": {
|
56
|
-
"desc": "Wykonywalny plik lub skrypt do uruchomienia
|
57
|
+
"desc": "Wykonywalny plik lub skrypt do uruchomienia serwera MCP STDIO",
|
57
58
|
"label": "Polecenie",
|
58
|
-
"placeholder": "Na przykład:
|
59
|
+
"placeholder": "Na przykład: npx / uv / docker itp.",
|
60
|
+
"required": "Proszę wprowadzić polecenie uruchomienia"
|
59
61
|
},
|
60
62
|
"endpoint": {
|
61
63
|
"desc": "Wprowadź adres swojego serwera MCP Streamable HTTP",
|
@@ -65,15 +67,29 @@
|
|
65
67
|
"desc": "Nadaj nazwę swojej wtyczce MCP, używając znaków angielskich",
|
66
68
|
"invalid": "Można wprowadzać tylko znaki angielskie, cyfry, oraz symbole - i _",
|
67
69
|
"label": "Nazwa wtyczki MCP",
|
68
|
-
"placeholder": "Na przykład: my-mcp-plugin"
|
70
|
+
"placeholder": "Na przykład: my-mcp-plugin",
|
71
|
+
"required": "Proszę wprowadzić identyfikator usługi MCP"
|
69
72
|
},
|
73
|
+
"previewManifest": "Podgląd pliku opisu wtyczki",
|
74
|
+
"testConnection": "Testuj połączenie",
|
75
|
+
"testConnectionTip": "Wtyczka MCP może być używana prawidłowo po pomyślnym teście połączenia",
|
70
76
|
"type": {
|
71
77
|
"desc": "Wybierz sposób komunikacji wtyczki MCP, wersja przeglądarkowa obsługuje tylko Streamable HTTP",
|
72
|
-
"
|
78
|
+
"httpFeature1": "Kompatybilność z wersją przeglądarkową i desktopową",
|
79
|
+
"httpFeature2": "Połączenie zdalnego serwera MCP, bez potrzeby dodatkowej instalacji i konfiguracji",
|
80
|
+
"httpShortDesc": "Protokół komunikacyjny oparty na strumieniowym HTTP",
|
81
|
+
"label": "Typ wtyczki MCP",
|
82
|
+
"stdioFeature1": "Niższe opóźnienie komunikacji, odpowiednie do lokalnego wykonania",
|
83
|
+
"stdioFeature2": "Wymaga lokalnej instalacji i uruchomienia serwera MCP",
|
84
|
+
"stdioNotAvailable": "Tryb STDIO jest dostępny tylko w wersji desktopowej",
|
85
|
+
"stdioShortDesc": "Protokół komunikacyjny oparty na standardowym wejściu/wyjściu",
|
86
|
+
"title": "Typ wtyczki MCP"
|
73
87
|
},
|
74
88
|
"url": {
|
75
|
-
"desc": "Wprowadź adres
|
76
|
-
"
|
89
|
+
"desc": "Wprowadź adres HTTP swojego serwera MCP Streamable, który nie kończy się na /sse",
|
90
|
+
"invalid": "Proszę wprowadzić prawidłowy adres URL",
|
91
|
+
"label": "URL punktu końcowego HTTP",
|
92
|
+
"required": "Proszę wprowadzić adres URL usługi MCP"
|
77
93
|
}
|
78
94
|
},
|
79
95
|
"meta": {
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "Identyfikator",
|
102
118
|
"pattenErrorMessage": "Dozwolone są tylko znaki alfanumeryczne, myślnik - i podkreślenie _"
|
103
119
|
},
|
120
|
+
"lobe": "Wtyczka {{appName}}",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}} zainstaluje wtyczkę za pośrednictwem tego linku",
|
106
123
|
"label": "Opis wtyczki (Manifest) URL",
|
107
124
|
"preview": "Podgląd",
|
108
125
|
"refresh": "Odśwież"
|
109
126
|
},
|
127
|
+
"openai": "Wtyczka OpenAI",
|
110
128
|
"title": {
|
111
129
|
"desc": "Tytuł wtyczki",
|
112
130
|
"label": "Tytuł",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "Plik manifestu nie istnieje",
|
149
167
|
"openAPIInvalid": "Analiza OpenAPI nie powiodła się. Błąd: \n\n {{error}}",
|
150
168
|
"reinstallError": "Nie udało się odświeżyć wtyczki {{name}}",
|
169
|
+
"testConnectionFailed": "Nie udało się pobrać manifestu: {{error}}",
|
151
170
|
"urlError": "Link nie zwrócił treści w formacie JSON. Upewnij się, że jest to poprawny link."
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "Sklep wtyczek"
|
228
247
|
},
|
248
|
+
"unknownError": "Nieznany błąd",
|
229
249
|
"unknownPlugin": "nieznana wtyczka"
|
230
250
|
}
|
@@ -17,16 +17,52 @@
|
|
17
17
|
"statusDisconnected": "Desconectado",
|
18
18
|
"urlRequired": "Por favor, insira o endereço do servidor"
|
19
19
|
},
|
20
|
+
"sync": {
|
21
|
+
"continue": "Continuar",
|
22
|
+
"inCloud": "Atualmente usando sincronização em nuvem",
|
23
|
+
"inLocalStorage": "Atualmente usando armazenamento local",
|
24
|
+
"isIniting": "Inicializando...",
|
25
|
+
"lobehubCloud": {
|
26
|
+
"description": "Versão em nuvem fornecida oficialmente",
|
27
|
+
"title": "LobeHub Cloud"
|
28
|
+
},
|
29
|
+
"local": {
|
30
|
+
"description": "Usando banco de dados local, totalmente disponível offline",
|
31
|
+
"title": "Banco de Dados Local"
|
32
|
+
},
|
33
|
+
"mode": {
|
34
|
+
"cloudSync": "Sincronização em Nuvem",
|
35
|
+
"localStorage": "Armazenamento Local",
|
36
|
+
"title": "Escolha seu modo de conexão",
|
37
|
+
"useSelfHosted": "Usar instância auto-hospedada?"
|
38
|
+
},
|
39
|
+
"selfHosted": {
|
40
|
+
"description": "Versão comunitária autoimplantada",
|
41
|
+
"title": "Instância Auto-Hospedada"
|
42
|
+
}
|
43
|
+
},
|
20
44
|
"updater": {
|
45
|
+
"checkingUpdate": "Verificando atualizações",
|
46
|
+
"checkingUpdateDesc": "Obtendo informações da versão...",
|
47
|
+
"downloadNewVersion": "Baixar nova versão",
|
21
48
|
"downloadingUpdate": "Baixando atualização",
|
22
49
|
"downloadingUpdateDesc": "A atualização está sendo baixada, por favor aguarde...",
|
50
|
+
"installLater": "Atualizar na próxima inicialização",
|
51
|
+
"isLatestVersion": "Você já está na versão mais recente",
|
52
|
+
"isLatestVersionDesc": "Ótimo, a versão {{version}} que você está usando já é a mais atual.",
|
23
53
|
"later": "Atualizar depois",
|
24
54
|
"newVersionAvailable": "Nova versão disponível",
|
25
55
|
"newVersionAvailableDesc": "Uma nova versão {{version}} foi encontrada, deseja baixar agora?",
|
26
|
-
"restartAndInstall": "
|
56
|
+
"restartAndInstall": "Instalar atualização e reiniciar",
|
27
57
|
"updateError": "Erro na atualização",
|
28
58
|
"updateReady": "Atualização pronta",
|
29
|
-
"updateReadyDesc": "
|
59
|
+
"updateReadyDesc": "A nova versão {{version}} foi baixada com sucesso, reinicie o aplicativo para concluir a instalação.",
|
30
60
|
"upgradeNow": "Atualizar agora"
|
61
|
+
},
|
62
|
+
"waitingOAuth": {
|
63
|
+
"cancel": "Cancelar",
|
64
|
+
"description": "A página de autorização foi aberta no navegador, por favor, complete a autorização no navegador",
|
65
|
+
"helpText": "Se o navegador não abrir automaticamente, clique em cancelar e tente novamente",
|
66
|
+
"title": "Aguardando conexão de autorização"
|
31
67
|
}
|
32
68
|
}
|
@@ -7,6 +7,7 @@
|
|
7
7
|
"payload": "carga do plugin",
|
8
8
|
"pluginState": "Estado do plugin",
|
9
9
|
"response": "Resposta",
|
10
|
+
"title": "Detalhes do Plugin",
|
10
11
|
"tool_call": "solicitação de chamada de ferramenta"
|
11
12
|
},
|
12
13
|
"detailModal": {
|
@@ -34,37 +35,6 @@
|
|
34
35
|
"desc": "Identificador único do plugin",
|
35
36
|
"label": "Identificador"
|
36
37
|
},
|
37
|
-
"mcp": {
|
38
|
-
"args": {
|
39
|
-
"desc": "Lista de parâmetros a serem passados para o comando STDIO",
|
40
|
-
"label": "Parâmetros do comando",
|
41
|
-
"placeholder": "Por exemplo: --port 8080 --debug",
|
42
|
-
"tooltip": "Pressione Enter após inserir os parâmetros ou use vírgula/espaço para separar"
|
43
|
-
},
|
44
|
-
"command": {
|
45
|
-
"desc": "Arquivo executável ou script usado para iniciar o plugin MCP STDIO",
|
46
|
-
"label": "Comando",
|
47
|
-
"placeholder": "Por exemplo: python main.py ou /caminho/para/executável"
|
48
|
-
},
|
49
|
-
"endpoint": {
|
50
|
-
"desc": "Insira o endereço do seu Servidor HTTP Streamable MCP",
|
51
|
-
"label": "URL do Endpoint MCP"
|
52
|
-
},
|
53
|
-
"identifier": {
|
54
|
-
"desc": "Dê um nome ao seu plugin MCP, deve usar caracteres em inglês",
|
55
|
-
"invalid": "Somente caracteres em inglês, números, - e _ são permitidos",
|
56
|
-
"label": "Nome do plugin MCP",
|
57
|
-
"placeholder": "Por exemplo: meu-plugin-mcp"
|
58
|
-
},
|
59
|
-
"type": {
|
60
|
-
"desc": "Escolha o método de comunicação do plugin MCP, a versão web suporta apenas HTTP Streamable",
|
61
|
-
"label": "Tipo de plugin MCP"
|
62
|
-
},
|
63
|
-
"url": {
|
64
|
-
"desc": "Insira o endereço do Endpoint do seu plugin HTTP MCP",
|
65
|
-
"label": "URL do Endpoint HTTP"
|
66
|
-
}
|
67
|
-
},
|
68
38
|
"mode": {
|
69
39
|
"mcp": "Plugin MCP",
|
70
40
|
"mcpExp": "Experimental",
|
@@ -76,6 +46,52 @@
|
|
76
46
|
"placeholder": "Pesquisar mecanismo de busca"
|
77
47
|
}
|
78
48
|
},
|
49
|
+
"mcp": {
|
50
|
+
"args": {
|
51
|
+
"desc": "Lista de parâmetros a serem passados para o comando STDIO",
|
52
|
+
"label": "Parâmetros do comando",
|
53
|
+
"placeholder": "Por exemplo: --port 8080 --debug",
|
54
|
+
"required": "Por favor, insira os parâmetros de inicialização"
|
55
|
+
},
|
56
|
+
"command": {
|
57
|
+
"desc": "Arquivo executável ou script usado para iniciar o plugin MCP STDIO",
|
58
|
+
"label": "Comando",
|
59
|
+
"placeholder": "Por exemplo: python main.py ou /caminho/para/executável",
|
60
|
+
"required": "Por favor, insira o comando de inicialização"
|
61
|
+
},
|
62
|
+
"endpoint": {
|
63
|
+
"desc": "Insira o endereço do seu Servidor HTTP Streamable MCP",
|
64
|
+
"label": "URL do Endpoint MCP"
|
65
|
+
},
|
66
|
+
"identifier": {
|
67
|
+
"desc": "Dê um nome ao seu plugin MCP, deve usar caracteres em inglês",
|
68
|
+
"invalid": "Somente caracteres em inglês, números, - e _ são permitidos",
|
69
|
+
"label": "Nome do plugin MCP",
|
70
|
+
"placeholder": "Por exemplo: meu-plugin-mcp",
|
71
|
+
"required": "Por favor, insira o identificador do serviço MCP"
|
72
|
+
},
|
73
|
+
"previewManifest": "Pré-visualizar arquivo de descrição do plugin",
|
74
|
+
"testConnection": "Testar conexão",
|
75
|
+
"testConnectionTip": "O plugin MCP só pode ser usado normalmente após a conexão ser testada com sucesso",
|
76
|
+
"type": {
|
77
|
+
"desc": "Escolha o método de comunicação do plugin MCP, a versão web suporta apenas Streamable HTTP",
|
78
|
+
"httpFeature1": "Compatível com a versão web e desktop",
|
79
|
+
"httpFeature2": "Conectar ao servidor MCP remoto, sem necessidade de instalação ou configuração adicional",
|
80
|
+
"httpShortDesc": "Protocolo de comunicação baseado em HTTP streaming",
|
81
|
+
"label": "Tipo de plugin MCP",
|
82
|
+
"stdioFeature1": "Menor latência de comunicação, adequado para execução local",
|
83
|
+
"stdioFeature2": "É necessário instalar e executar o servidor MCP localmente",
|
84
|
+
"stdioNotAvailable": "O modo STDIO está disponível apenas na versão desktop",
|
85
|
+
"stdioShortDesc": "Protocolo de comunicação baseado em entrada e saída padrão",
|
86
|
+
"title": "Tipo de plugin MCP"
|
87
|
+
},
|
88
|
+
"url": {
|
89
|
+
"desc": "Insira o endereço HTTP Streamable do seu servidor MCP, que não deve terminar com /sse",
|
90
|
+
"invalid": "Por favor, insira um URL válido",
|
91
|
+
"label": "URL do Endpoint HTTP",
|
92
|
+
"required": "Por favor, insira o URL do serviço MCP"
|
93
|
+
}
|
94
|
+
},
|
79
95
|
"meta": {
|
80
96
|
"author": {
|
81
97
|
"desc": "Autor do plugin",
|
@@ -101,12 +117,14 @@
|
|
101
117
|
"label": "Identificador",
|
102
118
|
"pattenErrorMessage": "Apenas caracteres alfanuméricos, - e _ são permitidos"
|
103
119
|
},
|
120
|
+
"lobe": "Plugin {{appName}}",
|
104
121
|
"manifest": {
|
105
122
|
"desc": "{{appName}} será instalado através deste link para adicionar o plugin",
|
106
123
|
"label": "URL do Arquivo de Descrição do Plugin (Manifest)",
|
107
124
|
"preview": "Visualizar Manifesto",
|
108
125
|
"refresh": "Atualizar"
|
109
126
|
},
|
127
|
+
"openai": "Plugin OpenAI",
|
110
128
|
"title": {
|
111
129
|
"desc": "Título do plugin",
|
112
130
|
"label": "Título",
|
@@ -148,6 +166,7 @@
|
|
148
166
|
"noManifest": "Manifesto não encontrado",
|
149
167
|
"openAPIInvalid": "Falha ao analisar o OpenAPI. Erro: \n\n {{error}}",
|
150
168
|
"reinstallError": "Falha ao atualizar o plugin {{name}}",
|
169
|
+
"testConnectionFailed": "Falha ao obter o Manifest: {{error}}",
|
151
170
|
"urlError": "O link não retornou conteúdo no formato JSON. Certifique-se de que o link é válido."
|
152
171
|
},
|
153
172
|
"inspector": {
|
@@ -226,5 +245,6 @@
|
|
226
245
|
},
|
227
246
|
"title": "Loja de Plugins"
|
228
247
|
},
|
248
|
+
"unknownError": "Erro desconhecido",
|
229
249
|
"unknownPlugin": "Plugin desconhecido"
|
230
250
|
}
|