@lobehub/lobehub 2.0.0-next.97 → 2.0.0-next.99
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/.console-log-whitelist.json +14 -0
- package/.github/workflows/check-console-log.yml +117 -0
- package/.github/workflows/desktop-pr-build.yml +4 -4
- package/.github/workflows/release-desktop-beta.yml +4 -4
- package/.github/workflows/release.yml +1 -1
- package/.github/workflows/test.yml +5 -5
- package/CHANGELOG.md +58 -0
- package/apps/desktop/src/main/services/__tests__/fileSrv.test.ts +603 -0
- package/changelog/v1.json +21 -0
- package/codecov.yml +1 -0
- package/docs/development/database-schema.dbml +1 -0
- package/e2e/package.json +1 -1
- package/locales/ar/file.json +9 -11
- package/locales/ar/plugin.json +34 -22
- package/locales/ar/tool.json +8 -0
- package/locales/bg-BG/file.json +8 -10
- package/locales/bg-BG/plugin.json +34 -22
- package/locales/bg-BG/tool.json +8 -0
- package/locales/de-DE/file.json +9 -11
- package/locales/de-DE/plugin.json +34 -22
- package/locales/de-DE/tool.json +8 -0
- package/locales/en-US/file.json +12 -14
- package/locales/en-US/plugin.json +34 -22
- package/locales/en-US/tool.json +8 -0
- package/locales/es-ES/file.json +7 -9
- package/locales/es-ES/plugin.json +34 -22
- package/locales/es-ES/tool.json +8 -0
- package/locales/fa-IR/file.json +9 -11
- package/locales/fa-IR/plugin.json +34 -22
- package/locales/fa-IR/tool.json +8 -0
- package/locales/fr-FR/file.json +6 -8
- package/locales/fr-FR/plugin.json +34 -22
- package/locales/fr-FR/tool.json +8 -0
- package/locales/it-IT/file.json +8 -10
- package/locales/it-IT/plugin.json +34 -22
- package/locales/it-IT/tool.json +8 -0
- package/locales/ja-JP/file.json +10 -12
- package/locales/ja-JP/plugin.json +34 -22
- package/locales/ja-JP/tool.json +8 -0
- package/locales/ko-KR/file.json +8 -10
- package/locales/ko-KR/plugin.json +34 -22
- package/locales/ko-KR/tool.json +8 -0
- package/locales/nl-NL/file.json +8 -10
- package/locales/nl-NL/plugin.json +34 -22
- package/locales/nl-NL/tool.json +8 -0
- package/locales/pl-PL/file.json +7 -9
- package/locales/pl-PL/plugin.json +34 -22
- package/locales/pl-PL/tool.json +8 -0
- package/locales/pt-BR/file.json +7 -9
- package/locales/pt-BR/plugin.json +34 -22
- package/locales/pt-BR/tool.json +8 -0
- package/locales/ru-RU/file.json +9 -11
- package/locales/ru-RU/plugin.json +34 -22
- package/locales/ru-RU/tool.json +8 -0
- package/locales/tr-TR/file.json +8 -10
- package/locales/tr-TR/plugin.json +34 -22
- package/locales/tr-TR/tool.json +8 -0
- package/locales/vi-VN/file.json +9 -11
- package/locales/vi-VN/plugin.json +34 -22
- package/locales/vi-VN/tool.json +8 -0
- package/locales/zh-CN/file.json +10 -12
- package/locales/zh-CN/plugin.json +34 -22
- package/locales/zh-CN/tool.json +8 -0
- package/locales/zh-TW/file.json +10 -12
- package/locales/zh-TW/plugin.json +34 -22
- package/locales/zh-TW/tool.json +8 -0
- package/package.json +3 -2
- package/packages/database/migrations/0047_add_slug_document.sql +6 -0
- package/packages/database/migrations/meta/0047_snapshot.json +7891 -0
- package/packages/database/migrations/meta/_journal.json +7 -0
- package/packages/database/src/core/migrations.json +16 -7
- package/packages/database/src/models/__tests__/document.test.ts +149 -0
- package/packages/database/src/models/chunk.ts +3 -1
- package/packages/database/src/models/document.ts +10 -4
- package/packages/database/src/schemas/file.ts +7 -1
- package/packages/model-bank/src/aiModels/qwen.ts +5 -3
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +21 -21
- package/packages/obervability-otel/package.json +2 -2
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatFileContents.test.ts.snap +75 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatNoSearchResults.test.ts.snap +45 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatSearchResults.test.ts.snap +82 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.test.ts +118 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.ts +31 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.test.ts +25 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.ts +13 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.test.ts +191 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.ts +50 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/index.ts +6 -0
- package/packages/types/src/rag.ts +13 -4
- package/scripts/checkConsoleLog.mts +148 -0
- package/scripts/prebuild.mts +5 -5
- package/src/app/[variants]/(main)/changelog/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +20 -16
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +6 -3
- package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +3 -2
- package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +14 -4
- package/src/app/[variants]/desktopRouter.config.tsx +23 -0
- package/src/app/[variants]/mobileRouter.config.tsx +23 -0
- package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +2 -2
- package/src/features/ChatInput/ActionBar/Token/TokenTagForGroupChat.tsx +2 -2
- package/src/features/ChatList/Messages/Group/Tool/Inspector/ToolTitle.tsx +5 -23
- package/src/features/ChatList/Messages/Tool/Inspector/ToolTitle.tsx +5 -25
- package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +0 -20
- package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +3 -3
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +0 -20
- package/src/features/KnowledgeManager/Header/AddButton.tsx +0 -1
- package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +1 -1
- package/src/features/KnowledgeManager/Header/TogglePanelButton.tsx +2 -2
- package/src/features/KnowledgeManager/Home/UploadEntries.tsx +2 -2
- package/src/features/KnowledgeManager/Home/index.tsx +4 -4
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +1 -1
- package/src/features/User/UserPanel/useMenu.tsx +7 -3
- package/src/helpers/toolEngineering/index.test.ts +3 -3
- package/src/helpers/toolEngineering/index.ts +17 -4
- package/src/libs/trpc/client/lambda.ts +0 -6
- package/src/locales/default/file.ts +11 -13
- package/src/locales/default/plugin.ts +34 -22
- package/src/locales/default/tool.ts +13 -5
- package/src/server/routers/lambda/chunk.ts +168 -41
- package/src/services/chat/chat.test.ts +3 -3
- package/src/services/chat/index.ts +2 -2
- package/src/services/rag.ts +6 -2
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/testExecutor.ts +1 -4
- package/src/store/chat/slices/aiChat/actions/__tests__/conversationLifecycle.test.ts +11 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +0 -87
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +2 -69
- package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +0 -2
- package/src/store/chat/slices/aiChat/actions/rag.ts +0 -47
- package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +8 -69
- package/src/store/chat/slices/builtinTool/actions/index.ts +4 -1
- package/src/store/chat/slices/builtinTool/actions/knowledgeBase.ts +174 -0
- package/src/store/chat/slices/operation/types.ts +1 -0
- package/src/store/chat/slices/thread/action.test.ts +0 -1
- package/src/store/chat/slices/thread/action.ts +0 -1
- package/src/tools/executionRuntimes.ts +3 -0
- package/src/tools/identifiers.ts +13 -0
- package/src/tools/index.ts +7 -0
- package/src/tools/knowledge-base/ExecutionRuntime/index.ts +96 -0
- package/src/tools/knowledge-base/Render/ReadKnowledge/FileCard.tsx +135 -0
- package/src/tools/knowledge-base/Render/ReadKnowledge/index.tsx +27 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/index.tsx +54 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/style.ts +51 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/index.tsx +23 -0
- package/src/tools/knowledge-base/Render/index.ts +7 -0
- package/src/tools/knowledge-base/index.ts +64 -0
- package/src/tools/knowledge-base/systemRole.ts +102 -0
- package/src/tools/knowledge-base/type.ts +25 -0
- package/src/tools/local-system/Intervention/WriteFile/index.tsx +1 -1
- package/src/tools/renders.ts +4 -0
- package/src/store/chat/agents/createToolEngine.ts +0 -22
package/locales/pt-BR/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copiar conteúdo completo",
|
|
58
|
-
"documentCount": "Total de {{count}} documentos",
|
|
59
58
|
"duplicate": "Criar uma cópia",
|
|
60
|
-
"empty": "Nenhum documento
|
|
59
|
+
"empty": "Nenhum documento ainda. Clique no botão acima para criar seu primeiro.",
|
|
61
60
|
"noResults": "Nenhum documento correspondente encontrado",
|
|
61
|
+
"pageCount": "Total de {{count}} documentos",
|
|
62
62
|
"selectNote": "Selecione um documento para começar a editar",
|
|
63
63
|
"untitled": "Sem título"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Enviar arquivo",
|
|
71
71
|
"uploadFolder": "Enviar pasta"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Novo documento",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Cancelar",
|
|
76
75
|
"editTitle": "Editar documento",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Novo documento",
|
|
84
83
|
"updateSuccess": "Documento atualizado com sucesso"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Novo Documento",
|
|
86
86
|
"uploadButton": "Enviar"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Começar",
|
|
90
90
|
"greeting": "Início",
|
|
91
91
|
"quickActions": "Ações Rápidas",
|
|
92
|
-
"recentDocuments": "Documentos Recentes",
|
|
93
92
|
"recentFiles": "Arquivos Recentes",
|
|
93
|
+
"recentPages": "Documentos Recentes",
|
|
94
94
|
"subtitle": "Bem-vindo ao seu repositório de conhecimento. Comece a gerenciar seus documentos aqui",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Nova Base de Conhecimento"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Novo Documento"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Baixar arquivo",
|
|
143
143
|
"unsupportedFileAndContact": "Este formato de arquivo não é suportado para visualização online. Se você tiver interesse em visualizar, sinta-se à vontade para <1>nos enviar um feedback</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Pesquisar documentos",
|
|
146
145
|
"searchFilePlaceholder": "Pesquisar arquivo",
|
|
146
|
+
"searchPagePlaceholder": "Buscar documentos",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Todos",
|
|
149
149
|
"audios": "Áudios",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Sites"
|
|
157
157
|
},
|
|
158
158
|
"title": "Base de Conhecimento",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Mostrar/Ocultar painel esquerdo"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Mostrar/Ocultar painel esquerdo",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Recolher",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Ler conteúdo da base de conhecimento",
|
|
6
|
+
"searchKnowledgeBase": "Pesquisar na base de conhecimento"
|
|
7
|
+
},
|
|
8
|
+
"title": "Base de Conhecimento"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Editar arquivo",
|
|
13
|
+
"getCommandOutput": "Obter saída do código",
|
|
14
|
+
"globLocalFiles": "Buscar arquivos correspondentes",
|
|
15
|
+
"grepContent": "Pesquisar conteúdo",
|
|
16
|
+
"killCommand": "Encerrar execução do código",
|
|
17
|
+
"listLocalFiles": "Listar arquivos",
|
|
18
|
+
"moveLocalFiles": "Mover arquivos",
|
|
19
|
+
"readLocalFile": "Ler conteúdo do arquivo",
|
|
20
|
+
"renameLocalFile": "Renomear",
|
|
21
|
+
"runCommand": "Executar código",
|
|
22
|
+
"searchLocalFiles": "Pesquisar arquivos",
|
|
23
|
+
"writeLocalFile": "Escrever no arquivo"
|
|
24
|
+
},
|
|
25
|
+
"title": "Sistema Local"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Ler conteúdo de várias páginas",
|
|
30
|
+
"crawlSinglePage": "Ler conteúdo da página",
|
|
31
|
+
"search": "Pesquisar na web"
|
|
32
|
+
},
|
|
33
|
+
"title": "Pesquisa Online"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Confirmar",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Parâmetros de chamada",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Chamando plugin...",
|
|
252
286
|
"plugin": "Plugin em execução..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Editar arquivo",
|
|
257
|
-
"getCommandOutput": "Obter saída do código",
|
|
258
|
-
"globLocalFiles": "Buscar arquivos correspondentes",
|
|
259
|
-
"grepContent": "Procurar conteúdo",
|
|
260
|
-
"killCommand": "Encerrar execução do código",
|
|
261
|
-
"listLocalFiles": "Ver lista de arquivos",
|
|
262
|
-
"moveLocalFiles": "Mover arquivos",
|
|
263
|
-
"readLocalFile": "Ler conteúdo do arquivo",
|
|
264
|
-
"renameLocalFile": "Renomear",
|
|
265
|
-
"runCommand": "Executar código",
|
|
266
|
-
"searchLocalFiles": "Pesquisar arquivos",
|
|
267
|
-
"writeLocalFile": "Escrever arquivo"
|
|
268
|
-
},
|
|
269
|
-
"title": "Sistema Local"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Verificando ambiente de instalação...",
|
|
273
290
|
"COMPLETED": "Instalação concluída",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Por favor, confirme que confia na fonte deste plugin, plugins maliciosos podem comprometer a segurança do seu sistema."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Ler conteúdo de várias páginas",
|
|
380
|
-
"crawlSinglePage": "Ler conteúdo da página",
|
|
381
|
-
"search": "Pesquisar página"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Adicionar chave",
|
|
385
397
|
"close": "Remover",
|
package/locales/pt-BR/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Imagens:",
|
|
15
15
|
"prompt": "Palavra-chave"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Número de caracteres",
|
|
21
|
+
"lines": "Número de linhas"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Substituir por",
|
package/locales/ru-RU/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Скопировать всё содержимое",
|
|
58
|
-
"documentCount": "Всего {{count}} документов",
|
|
59
58
|
"duplicate": "Создать копию",
|
|
60
|
-
"empty": "Документов пока
|
|
59
|
+
"empty": "Документов пока нет, нажмите кнопку выше, чтобы создать первый документ",
|
|
61
60
|
"noResults": "Совпадающих документов не найдено",
|
|
62
|
-
"
|
|
61
|
+
"pageCount": "Всего {{count}} документов",
|
|
62
|
+
"selectNote": "Выберите документ для начала редактирования",
|
|
63
63
|
"untitled": "Без названия"
|
|
64
64
|
},
|
|
65
65
|
"empty": "Нет загруженных файлов/папок",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Загрузить файл",
|
|
71
71
|
"uploadFolder": "Загрузить папку"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Новый документ",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Отмена",
|
|
76
75
|
"editTitle": "Редактировать документ",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Создать новый документ",
|
|
84
83
|
"updateSuccess": "Документ успешно обновлён"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Создать документ",
|
|
86
86
|
"uploadButton": "Загрузить"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Начать",
|
|
90
90
|
"greeting": "Начало",
|
|
91
91
|
"quickActions": "Быстрые действия",
|
|
92
|
-
"recentDocuments": "Недавние документы",
|
|
93
92
|
"recentFiles": "Недавние файлы",
|
|
93
|
+
"recentPages": "Недавние документы",
|
|
94
94
|
"subtitle": "Добро пожаловать в базу знаний. Начните управлять своими документами отсюда",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Создать базу знаний"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "Создать документ"
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "Создать новый документ"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Скачать файл",
|
|
143
143
|
"unsupportedFileAndContact": "Этот формат файла в настоящее время не поддерживает онлайн-просмотр. Если у вас есть запрос на просмотр, пожалуйста, <1>сообщите нам</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Поиск документов",
|
|
146
145
|
"searchFilePlaceholder": "Поиск файла",
|
|
146
|
+
"searchPagePlaceholder": "Поиск документов",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Все",
|
|
149
149
|
"audios": "Аудио",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Веб-сайты"
|
|
157
157
|
},
|
|
158
158
|
"title": "База знаний",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Показать/Скрыть левую панель"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Показать/скрыть левую панель",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Свернуть",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Чтение содержимого базы знаний",
|
|
6
|
+
"searchKnowledgeBase": "Поиск в базе знаний"
|
|
7
|
+
},
|
|
8
|
+
"title": "База знаний"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Редактировать файл",
|
|
13
|
+
"getCommandOutput": "Получить вывод команды",
|
|
14
|
+
"globLocalFiles": "Поиск файлов по шаблону",
|
|
15
|
+
"grepContent": "Поиск по содержимому",
|
|
16
|
+
"killCommand": "Остановить выполнение кода",
|
|
17
|
+
"listLocalFiles": "Просмотр списка файлов",
|
|
18
|
+
"moveLocalFiles": "Переместить файлы",
|
|
19
|
+
"readLocalFile": "Чтение содержимого файла",
|
|
20
|
+
"renameLocalFile": "Переименовать",
|
|
21
|
+
"runCommand": "Выполнить код",
|
|
22
|
+
"searchLocalFiles": "Поиск файлов",
|
|
23
|
+
"writeLocalFile": "Запись в файл"
|
|
24
|
+
},
|
|
25
|
+
"title": "Локальная система"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Чтение содержимого нескольких страниц",
|
|
30
|
+
"crawlSinglePage": "Чтение содержимого страницы",
|
|
31
|
+
"search": "Поиск по страницам"
|
|
32
|
+
},
|
|
33
|
+
"title": "Поиск в интернете"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Подтвердить",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Аргументы вызова",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Вызов плагина...",
|
|
252
286
|
"plugin": "Плагин работает..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Редактировать файл",
|
|
257
|
-
"getCommandOutput": "Получить вывод команды",
|
|
258
|
-
"globLocalFiles": "Поиск файлов по шаблону",
|
|
259
|
-
"grepContent": "Поиск по содержимому",
|
|
260
|
-
"killCommand": "Прервать выполнение команды",
|
|
261
|
-
"listLocalFiles": "Просмотр списка файлов",
|
|
262
|
-
"moveLocalFiles": "Перемещение файлов",
|
|
263
|
-
"readLocalFile": "Чтение содержимого файла",
|
|
264
|
-
"renameLocalFile": "Переименование",
|
|
265
|
-
"runCommand": "Выполнить код",
|
|
266
|
-
"searchLocalFiles": "Поиск файлов",
|
|
267
|
-
"writeLocalFile": "Запись в файл"
|
|
268
|
-
},
|
|
269
|
-
"title": "Локальная система"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Проверка среды установки...",
|
|
273
290
|
"COMPLETED": "Установка завершена",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Пожалуйста, убедитесь, что вы доверяете источнику этого плагина, вредоносные плагины могут угрожать безопасности вашей системы."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Чтение содержимого нескольких страниц",
|
|
380
|
-
"crawlSinglePage": "Чтение содержимого страницы",
|
|
381
|
-
"search": "Поиск по странице"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Добавить ключ",
|
|
385
397
|
"close": "Удалить",
|
package/locales/ru-RU/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Изображения:",
|
|
15
15
|
"prompt": "подсказка"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Количество символов",
|
|
21
|
+
"lines": "Количество строк"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Заменить на",
|
package/locales/tr-TR/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Tüm İçeriği Kopyala",
|
|
58
|
-
"documentCount": "Toplam {{count}} belge",
|
|
59
58
|
"duplicate": "Kopyasını Oluştur",
|
|
60
|
-
"empty": "Henüz belge yok, ilk belgenizi oluşturmak için yukarıdaki butona tıklayın",
|
|
59
|
+
"empty": "Henüz bir belge yok, ilk belgenizi oluşturmak için yukarıdaki butona tıklayın",
|
|
61
60
|
"noResults": "Eşleşen belge bulunamadı",
|
|
61
|
+
"pageCount": "Toplam {{count}} belge",
|
|
62
62
|
"selectNote": "Düzenlemeye başlamak için bir belge seçin",
|
|
63
63
|
"untitled": "Başlıksız"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Dosya Yükle",
|
|
71
71
|
"uploadFolder": "Klasör Yükle"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Yeni Belge",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "İptal",
|
|
76
75
|
"editTitle": "Belgeyi Düzenle",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Yeni Belge",
|
|
84
83
|
"updateSuccess": "Belge başarıyla güncellendi"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Yeni Belge Oluştur",
|
|
86
86
|
"uploadButton": "Yükle"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Başlarken",
|
|
90
90
|
"greeting": "Başla",
|
|
91
91
|
"quickActions": "Hızlı İşlemler",
|
|
92
|
-
"recentDocuments": "Son Belgeler",
|
|
93
92
|
"recentFiles": "Son Dosyalar",
|
|
93
|
+
"recentPages": "Son Belgeler",
|
|
94
94
|
"subtitle": "Bilgi tabanına hoş geldiniz, belgelerinizi buradan yönetin",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Yeni Bilgi Tabanı"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "Yeni Belge"
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "Yeni Belge Oluştur"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Dosyayı İndir",
|
|
143
143
|
"unsupportedFileAndContact": "Bu dosya formatı çevrimiçi önizleme için desteklenmiyor. Önizleme talebiniz varsa, lütfen <1>bize geri bildirimde bulunun</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Belge ara",
|
|
146
145
|
"searchFilePlaceholder": "Dosya Ara",
|
|
146
|
+
"searchPagePlaceholder": "Belge ara",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Tümü",
|
|
149
149
|
"audios": "Sesler",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Web Siteleri"
|
|
157
157
|
},
|
|
158
158
|
"title": "Bilgi Bankası",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Sol Panelini Göster/Gizle"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Sol paneli göster/gizle",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Kapat",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Bilgi tabanını oku",
|
|
6
|
+
"searchKnowledgeBase": "Bilgi tabanında ara"
|
|
7
|
+
},
|
|
8
|
+
"title": "Bilgi Tabanı"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Dosyayı düzenle",
|
|
13
|
+
"getCommandOutput": "Komut çıktısını al",
|
|
14
|
+
"globLocalFiles": "Dosyaları desenle ara",
|
|
15
|
+
"grepContent": "İçerikte ara",
|
|
16
|
+
"killCommand": "Komut çalışmasını durdur",
|
|
17
|
+
"listLocalFiles": "Dosya listesini görüntüle",
|
|
18
|
+
"moveLocalFiles": "Dosyaları taşı",
|
|
19
|
+
"readLocalFile": "Dosya içeriğini oku",
|
|
20
|
+
"renameLocalFile": "Yeniden adlandır",
|
|
21
|
+
"runCommand": "Komut çalıştır",
|
|
22
|
+
"searchLocalFiles": "Dosyalarda ara",
|
|
23
|
+
"writeLocalFile": "Dosyaya yaz"
|
|
24
|
+
},
|
|
25
|
+
"title": "Yerel Sistem"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Birden fazla sayfanın içeriğini oku",
|
|
30
|
+
"crawlSinglePage": "Sayfa içeriğini oku",
|
|
31
|
+
"search": "Sayfada ara"
|
|
32
|
+
},
|
|
33
|
+
"title": "İnternette Arama"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Onayla",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Çağrı parametreleri",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Eklenti çağrılıyor...",
|
|
252
286
|
"plugin": "Eklenti çalışıyor..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Dosyayı Düzenle",
|
|
257
|
-
"getCommandOutput": "Komut Çıktısını Al",
|
|
258
|
-
"globLocalFiles": "Dosyaları Ara",
|
|
259
|
-
"grepContent": "İçeriği Ara",
|
|
260
|
-
"killCommand": "Komut Yürütmesini Durdur",
|
|
261
|
-
"listLocalFiles": "Dosya listesini görüntüle",
|
|
262
|
-
"moveLocalFiles": "Dosya taşı",
|
|
263
|
-
"readLocalFile": "Dosya içeriğini oku",
|
|
264
|
-
"renameLocalFile": "Dosya adını değiştir",
|
|
265
|
-
"runCommand": "Komutu Çalıştır",
|
|
266
|
-
"searchLocalFiles": "Dosya ara",
|
|
267
|
-
"writeLocalFile": "Dosyaya yaz"
|
|
268
|
-
},
|
|
269
|
-
"title": "Yerel Sistem"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Kurulum ortamı kontrol ediliyor...",
|
|
273
290
|
"COMPLETED": "Kurulum tamamlandı",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Lütfen bu eklentinin kaynağına güvendiğinizden emin olun, kötü amaçlı eklentiler sistem güvenliğinizi tehlikeye atabilir."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Birden fazla sayfa içeriği oku",
|
|
380
|
-
"crawlSinglePage": "Sayfa içeriği oku",
|
|
381
|
-
"search": "Sayfa ara"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Anahtar ekle",
|
|
385
397
|
"close": "Sil",
|
package/locales/tr-TR/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Görseller:",
|
|
15
15
|
"prompt": "İpucu"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Karakter Sayısı",
|
|
21
|
+
"lines": "Satır Sayısı"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Şununla değiştir",
|
package/locales/vi-VN/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Sao chép toàn bộ nội dung",
|
|
58
|
-
"documentCount": "Tổng cộng {{count}} tài liệu",
|
|
59
58
|
"duplicate": "Tạo bản sao",
|
|
60
|
-
"empty": "Chưa có
|
|
61
|
-
"noResults": "Không tìm thấy
|
|
62
|
-
"
|
|
59
|
+
"empty": "Chưa có bản thảo nào, hãy nhấn nút phía trên để tạo bản thảo đầu tiên của bạn",
|
|
60
|
+
"noResults": "Không tìm thấy bản thảo phù hợp",
|
|
61
|
+
"pageCount": "Tổng cộng {{count}} bản thảo",
|
|
62
|
+
"selectNote": "Chọn một bản thảo để bắt đầu chỉnh sửa",
|
|
63
63
|
"untitled": "Không có tiêu đề"
|
|
64
64
|
},
|
|
65
65
|
"empty": "Chưa có tệp/tệp tin nào được tải lên",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Tải tệp lên",
|
|
71
71
|
"uploadFolder": "Tải thư mục lên"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Tạo tài liệu mới",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Hủy",
|
|
76
75
|
"editTitle": "Chỉnh sửa tài liệu",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Tạo tài liệu mới",
|
|
84
83
|
"updateSuccess": "Cập nhật tài liệu thành công"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Tạo tài liệu mới",
|
|
86
86
|
"uploadButton": "Tải lên"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Bắt đầu",
|
|
90
90
|
"greeting": "Bắt đầu",
|
|
91
91
|
"quickActions": "Hành động nhanh",
|
|
92
|
-
"recentDocuments": "Tài liệu gần đây",
|
|
93
92
|
"recentFiles": "Tệp gần đây",
|
|
93
|
+
"recentPages": "Tài liệu gần đây",
|
|
94
94
|
"subtitle": "Chào mừng đến với kho tri thức, bắt đầu quản lý tài liệu của bạn từ đây",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Tạo kho kiến thức mới"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Tạo tài liệu mới"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Tải tệp",
|
|
143
143
|
"unsupportedFileAndContact": "Định dạng tệp này hiện không hỗ trợ xem trước trực tuyến. Nếu bạn có yêu cầu xem trước, vui lòng <1>phản hồi cho chúng tôi</1>"
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Tìm kiếm tài liệu",
|
|
146
145
|
"searchFilePlaceholder": "Tìm kiếm tệp",
|
|
146
|
+
"searchPagePlaceholder": "Tìm kiếm bản thảo",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Tất cả",
|
|
149
149
|
"audios": "Âm thanh",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Trang web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Kho kiến thức",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Hiện/Ẩn bảng bên trái"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Hiển thị/Ẩn bảng điều khiển bên trái",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Thu gọn",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Đọc nội dung cơ sở tri thức",
|
|
6
|
+
"searchKnowledgeBase": "Tìm kiếm trong cơ sở tri thức"
|
|
7
|
+
},
|
|
8
|
+
"title": "Cơ sở tri thức"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Chỉnh sửa tệp",
|
|
13
|
+
"getCommandOutput": "Lấy kết quả mã lệnh",
|
|
14
|
+
"globLocalFiles": "Tìm kiếm tệp theo mẫu",
|
|
15
|
+
"grepContent": "Tìm kiếm nội dung",
|
|
16
|
+
"killCommand": "Dừng thực thi mã lệnh",
|
|
17
|
+
"listLocalFiles": "Xem danh sách tệp",
|
|
18
|
+
"moveLocalFiles": "Di chuyển tệp",
|
|
19
|
+
"readLocalFile": "Đọc nội dung tệp",
|
|
20
|
+
"renameLocalFile": "Đổi tên tệp",
|
|
21
|
+
"runCommand": "Thực thi mã lệnh",
|
|
22
|
+
"searchLocalFiles": "Tìm kiếm tệp",
|
|
23
|
+
"writeLocalFile": "Ghi nội dung vào tệp"
|
|
24
|
+
},
|
|
25
|
+
"title": "Hệ thống cục bộ"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Đọc nội dung nhiều trang",
|
|
30
|
+
"crawlSinglePage": "Đọc nội dung trang",
|
|
31
|
+
"search": "Tìm kiếm trang"
|
|
32
|
+
},
|
|
33
|
+
"title": "Tìm kiếm trực tuyến"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Xác nhận",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Tham số gọi",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Đang gọi plugin...",
|
|
252
286
|
"plugin": "Plugin đang chạy..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Chỉnh sửa tệp",
|
|
257
|
-
"getCommandOutput": "Lấy đầu ra mã lệnh",
|
|
258
|
-
"globLocalFiles": "Tìm kiếm tệp",
|
|
259
|
-
"grepContent": "Tìm kiếm nội dung",
|
|
260
|
-
"killCommand": "Dừng thực thi mã",
|
|
261
|
-
"listLocalFiles": "Xem danh sách tệp",
|
|
262
|
-
"moveLocalFiles": "Di chuyển tệp",
|
|
263
|
-
"readLocalFile": "Đọc nội dung tệp",
|
|
264
|
-
"renameLocalFile": "Đổi tên",
|
|
265
|
-
"runCommand": "Chạy mã",
|
|
266
|
-
"searchLocalFiles": "Tìm kiếm tệp",
|
|
267
|
-
"writeLocalFile": "Ghi tệp"
|
|
268
|
-
},
|
|
269
|
-
"title": "Hệ thống cục bộ"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Đang kiểm tra môi trường cài đặt...",
|
|
273
290
|
"COMPLETED": "Hoàn thành cài đặt",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Vui lòng xác nhận bạn tin tưởng nguồn plugin này, plugin độc hại có thể gây nguy hiểm cho hệ thống của bạn."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Đọc nội dung nhiều trang",
|
|
380
|
-
"crawlSinglePage": "Đọc nội dung trang",
|
|
381
|
-
"search": "Tìm kiếm trang"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Thêm khóa bí mật",
|
|
385
397
|
"close": "Xóa",
|
package/locales/vi-VN/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Hình ảnh:",
|
|
15
15
|
"prompt": "Từ khóa"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Số ký tự",
|
|
21
|
+
"lines": "Số dòng"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Thay thế bằng",
|