@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/es-ES/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copiar todo el contenido",
|
|
58
|
-
"documentCount": "Total de {{count}} documentos",
|
|
59
58
|
"duplicate": "Crear una copia",
|
|
60
|
-
"empty": "
|
|
59
|
+
"empty": "Aún no hay documentos. Haz clic en el botón de arriba para crear tu primer documento.",
|
|
61
60
|
"noResults": "No se encontraron documentos coincidentes",
|
|
61
|
+
"pageCount": "Total de {{count}} documentos",
|
|
62
62
|
"selectNote": "Selecciona un documento para comenzar a editar",
|
|
63
63
|
"untitled": "Sin título"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Subir archivo",
|
|
71
71
|
"uploadFolder": "Subir carpeta"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Nuevo documento",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Cancelar",
|
|
76
75
|
"editTitle": "Editar documento",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Nuevo documento",
|
|
84
83
|
"updateSuccess": "Documento actualizado con éxito"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Nuevo documento",
|
|
86
86
|
"uploadButton": "Subir"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Comenzar",
|
|
90
90
|
"greeting": "Comenzar",
|
|
91
91
|
"quickActions": "Acciones rápidas",
|
|
92
|
-
"recentDocuments": "Documentos recientes",
|
|
93
92
|
"recentFiles": "Archivos recientes",
|
|
93
|
+
"recentPages": "Páginas recientes",
|
|
94
94
|
"subtitle": "Bienvenido a tu base de conocimientos. Comienza aquí a gestionar tus documentos y notas",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Nueva base de conocimientos"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Nuevo documento"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Descargar archivo",
|
|
143
143
|
"unsupportedFileAndContact": "Este formato de archivo no es compatible con la vista previa en línea. Si desea solicitar una vista previa, no dude en <1>contactarnos</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Buscar documentos",
|
|
146
145
|
"searchFilePlaceholder": "Buscar archivo",
|
|
146
|
+
"searchPagePlaceholder": "Buscar documentos",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Todo",
|
|
149
149
|
"audios": "Audios",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Sitios web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Base de conocimientos",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Mostrar/Ocultar panel izquierdo"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Mostrar/Ocultar panel izquierdo",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Colapsar",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Leer contenido de la base de conocimientos",
|
|
6
|
+
"searchKnowledgeBase": "Buscar en la base de conocimientos"
|
|
7
|
+
},
|
|
8
|
+
"title": "Base de conocimientos"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Editar archivo",
|
|
13
|
+
"getCommandOutput": "Obtener salida del código",
|
|
14
|
+
"globLocalFiles": "Buscar archivos por patrón",
|
|
15
|
+
"grepContent": "Buscar contenido",
|
|
16
|
+
"killCommand": "Detener ejecución del código",
|
|
17
|
+
"listLocalFiles": "Ver lista de archivos",
|
|
18
|
+
"moveLocalFiles": "Mover archivos",
|
|
19
|
+
"readLocalFile": "Leer contenido del archivo",
|
|
20
|
+
"renameLocalFile": "Renombrar archivo",
|
|
21
|
+
"runCommand": "Ejecutar código",
|
|
22
|
+
"searchLocalFiles": "Buscar archivos",
|
|
23
|
+
"writeLocalFile": "Escribir archivo"
|
|
24
|
+
},
|
|
25
|
+
"title": "Sistema local"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Leer contenido de múltiples páginas",
|
|
30
|
+
"crawlSinglePage": "Leer contenido de la página",
|
|
31
|
+
"search": "Buscar en la web"
|
|
32
|
+
},
|
|
33
|
+
"title": "Búsqueda en línea"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Confirmar",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Parámetros de llamada",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Llamando al plugin...",
|
|
252
286
|
"plugin": "Plugin en ejecución..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Editar archivo",
|
|
257
|
-
"getCommandOutput": "Obtener salida del código",
|
|
258
|
-
"globLocalFiles": "Buscar archivos coincidentes",
|
|
259
|
-
"grepContent": "Buscar contenido",
|
|
260
|
-
"killCommand": "Detener ejecución del código",
|
|
261
|
-
"listLocalFiles": "Ver lista de archivos",
|
|
262
|
-
"moveLocalFiles": "Mover archivos",
|
|
263
|
-
"readLocalFile": "Leer contenido del archivo",
|
|
264
|
-
"renameLocalFile": "Renombrar",
|
|
265
|
-
"runCommand": "Ejecutar código",
|
|
266
|
-
"searchLocalFiles": "Buscar archivos",
|
|
267
|
-
"writeLocalFile": "Escribir archivo"
|
|
268
|
-
},
|
|
269
|
-
"title": "Sistema local"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Verificando entorno de instalación...",
|
|
273
290
|
"COMPLETED": "Instalación completada",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Por favor confirme que confía en la fuente de este plugin, plugins maliciosos pueden comprometer la seguridad de su sistema."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Leer contenido de múltiples páginas",
|
|
380
|
-
"crawlSinglePage": "Leer contenido de página",
|
|
381
|
-
"search": "Buscar página"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Agregar clave",
|
|
385
397
|
"close": "Eliminar",
|
package/locales/es-ES/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Imágenes:",
|
|
15
15
|
"prompt": "Palabra de aviso"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Número de caracteres",
|
|
21
|
+
"lines": "Número de líneas"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Reemplazar con",
|
package/locales/fa-IR/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "کپی کل محتوا",
|
|
58
|
-
"documentCount": "مجموع {{count}} سند",
|
|
59
58
|
"duplicate": "ایجاد نسخه مشابه",
|
|
60
|
-
"empty": "هیچ سندی
|
|
61
|
-
"noResults": "سندی مطابق با جستجو یافت نشد",
|
|
62
|
-
"
|
|
59
|
+
"empty": "هنوز هیچ سندی وجود ندارد، برای ایجاد اولین سند خود روی دکمه بالا کلیک کنید",
|
|
60
|
+
"noResults": "هیچ سندی مطابق با جستجو یافت نشد",
|
|
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,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "ایجاد پایگاه دانش جدید"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "ایجاد سند جدید"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -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/fa-IR/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/fr-FR/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copier tout le contenu",
|
|
58
|
-
"documentCount": "{{count}} documents au total",
|
|
59
58
|
"duplicate": "Créer une copie",
|
|
60
59
|
"empty": "Aucun document pour le moment, cliquez sur le bouton ci-dessus pour créer votre premier document",
|
|
61
60
|
"noResults": "Aucun document correspondant trouvé",
|
|
61
|
+
"pageCount": "{{count}} documents au total",
|
|
62
62
|
"selectNote": "Sélectionnez un document pour commencer l’édition",
|
|
63
63
|
"untitled": "Sans titre"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Télécharger un fichier",
|
|
71
71
|
"uploadFolder": "Télécharger un dossier"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Nouveau document",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Annuler",
|
|
76
75
|
"editTitle": "Modifier le document",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Nouveau document",
|
|
84
83
|
"updateSuccess": "Document mis à jour avec succès"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Nouveau document",
|
|
86
86
|
"uploadButton": "Télécharger"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Commencer",
|
|
90
90
|
"greeting": "Commencer",
|
|
91
91
|
"quickActions": "Actions rapides",
|
|
92
|
-
"recentDocuments": "Documents récents",
|
|
93
92
|
"recentFiles": "Fichiers récents",
|
|
93
|
+
"recentPages": "Pages récentes",
|
|
94
94
|
"subtitle": "Bienvenue dans votre base de connaissances, commencez ici à gérer vos documents",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Créer une base de connaissances"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Nouveau document"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Télécharger le fichier",
|
|
143
143
|
"unsupportedFileAndContact": "Ce format de fichier n'est pas encore pris en charge pour l'aperçu en ligne. Si vous souhaitez un aperçu, n'hésitez pas à <1>nous contacter</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Rechercher un document",
|
|
146
145
|
"searchFilePlaceholder": "Rechercher un fichier",
|
|
146
|
+
"searchPagePlaceholder": "Rechercher un document",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Tout",
|
|
149
149
|
"audios": "Audio",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Sites web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Base de connaissances",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Afficher/Masquer le panneau de gauche"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Afficher/Masquer le panneau de gauche",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Réduire",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Lire le contenu de la base de connaissances",
|
|
6
|
+
"searchKnowledgeBase": "Rechercher dans la base de connaissances"
|
|
7
|
+
},
|
|
8
|
+
"title": "Base de connaissances"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Modifier le fichier",
|
|
13
|
+
"getCommandOutput": "Obtenir la sortie du code",
|
|
14
|
+
"globLocalFiles": "Rechercher des fichiers correspondants",
|
|
15
|
+
"grepContent": "Rechercher dans le contenu",
|
|
16
|
+
"killCommand": "Arrêter l'exécution du code",
|
|
17
|
+
"listLocalFiles": "Afficher la liste des fichiers",
|
|
18
|
+
"moveLocalFiles": "Déplacer les fichiers",
|
|
19
|
+
"readLocalFile": "Lire le contenu du fichier",
|
|
20
|
+
"renameLocalFile": "Renommer",
|
|
21
|
+
"runCommand": "Exécuter le code",
|
|
22
|
+
"searchLocalFiles": "Rechercher des fichiers",
|
|
23
|
+
"writeLocalFile": "Écrire dans le fichier"
|
|
24
|
+
},
|
|
25
|
+
"title": "Système local"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Lire le contenu de plusieurs pages",
|
|
30
|
+
"crawlSinglePage": "Lire le contenu de la page",
|
|
31
|
+
"search": "Rechercher sur la page"
|
|
32
|
+
},
|
|
33
|
+
"title": "Recherche en ligne"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Confirmer",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Arguments d'appel",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Appel du plugin en cours...",
|
|
252
286
|
"plugin": "Plugin en cours d'exécution..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Modifier le fichier",
|
|
257
|
-
"getCommandOutput": "Obtenir la sortie du code",
|
|
258
|
-
"globLocalFiles": "Rechercher des fichiers correspondants",
|
|
259
|
-
"grepContent": "Rechercher dans le contenu",
|
|
260
|
-
"killCommand": "Arrêter l'exécution du code",
|
|
261
|
-
"listLocalFiles": "Voir la liste des fichiers",
|
|
262
|
-
"moveLocalFiles": "Déplacer les fichiers",
|
|
263
|
-
"readLocalFile": "Lire le contenu du fichier",
|
|
264
|
-
"renameLocalFile": "Renommer",
|
|
265
|
-
"runCommand": "Exécuter le code",
|
|
266
|
-
"searchLocalFiles": "Rechercher des fichiers",
|
|
267
|
-
"writeLocalFile": "Écrire dans un fichier"
|
|
268
|
-
},
|
|
269
|
-
"title": "Système local"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Vérification de l'environnement d'installation...",
|
|
273
290
|
"COMPLETED": "Installation terminée",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Veuillez confirmer que vous faites confiance à la source de ce plugin, un plugin malveillant pourrait compromettre la sécurité de votre système."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Lire le contenu de plusieurs pages",
|
|
380
|
-
"crawlSinglePage": "Lire le contenu de la page",
|
|
381
|
-
"search": "Rechercher sur la page"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Ajouter une clé",
|
|
385
397
|
"close": "Supprimer",
|
package/locales/fr-FR/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Images :",
|
|
15
15
|
"prompt": "Mot de rappel"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Nombre de caractères",
|
|
21
|
+
"lines": "Nombre de lignes"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Remplacer par",
|
package/locales/it-IT/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copia tutto il contenuto",
|
|
58
|
-
"documentCount": "Totale {{count}} documenti",
|
|
59
58
|
"duplicate": "Crea una copia",
|
|
60
|
-
"empty": "Nessun documento disponibile
|
|
59
|
+
"empty": "Nessun documento disponibile, clicca sul pulsante in alto per creare il tuo primo documento",
|
|
61
60
|
"noResults": "Nessun documento corrispondente trovato",
|
|
61
|
+
"pageCount": "Totale {{count}} documenti",
|
|
62
62
|
"selectNote": "Seleziona un documento per iniziare a modificare",
|
|
63
63
|
"untitled": "Senza titolo"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Carica file",
|
|
71
71
|
"uploadFolder": "Carica cartella"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Nuovo documento",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Annulla",
|
|
76
75
|
"editTitle": "Modifica documento",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Nuovo documento",
|
|
84
83
|
"updateSuccess": "Documento aggiornato con successo"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Nuovo Documento",
|
|
86
86
|
"uploadButton": "Carica"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Inizia subito",
|
|
90
90
|
"greeting": "Inizia",
|
|
91
91
|
"quickActions": "Azioni rapide",
|
|
92
|
-
"recentDocuments": "Documenti recenti",
|
|
93
92
|
"recentFiles": "File recenti",
|
|
93
|
+
"recentPages": "Documenti recenti",
|
|
94
94
|
"subtitle": "Benvenuto nel tuo archivio di conoscenza, inizia a gestire i tuoi documenti da qui",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Crea nuova base di conoscenza"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "Nuovo Documento"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Scarica file",
|
|
143
143
|
"unsupportedFileAndContact": "Questo formato di file non è attualmente supportato per la visualizzazione online. Se hai bisogno di una visualizzazione, ti preghiamo di <1>contattarci</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Cerca documenti",
|
|
146
145
|
"searchFilePlaceholder": "Cerca file",
|
|
146
|
+
"searchPagePlaceholder": "Cerca documenti",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Tutti",
|
|
149
149
|
"audios": "Audio",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Siti web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Archivio di Conoscenza",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Mostra/Nascondi il pannello sinistro"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Mostra/Nascondi pannello sinistro",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Riduci",
|
|
@@ -1,4 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
+
"builtins": {
|
|
3
|
+
"lobe-knowledge-base": {
|
|
4
|
+
"apiName": {
|
|
5
|
+
"readKnowledge": "Leggi contenuti della base di conoscenza",
|
|
6
|
+
"searchKnowledgeBase": "Cerca nella base di conoscenza"
|
|
7
|
+
},
|
|
8
|
+
"title": "Base di conoscenza"
|
|
9
|
+
},
|
|
10
|
+
"lobe-local-system": {
|
|
11
|
+
"apiName": {
|
|
12
|
+
"editLocalFile": "Modifica file",
|
|
13
|
+
"getCommandOutput": "Ottieni output del codice",
|
|
14
|
+
"globLocalFiles": "Cerca file corrispondenti",
|
|
15
|
+
"grepContent": "Cerca contenuto",
|
|
16
|
+
"killCommand": "Termina esecuzione del codice",
|
|
17
|
+
"listLocalFiles": "Visualizza elenco file",
|
|
18
|
+
"moveLocalFiles": "Sposta file",
|
|
19
|
+
"readLocalFile": "Leggi contenuto del file",
|
|
20
|
+
"renameLocalFile": "Rinomina",
|
|
21
|
+
"runCommand": "Esegui codice",
|
|
22
|
+
"searchLocalFiles": "Cerca file",
|
|
23
|
+
"writeLocalFile": "Scrivi nel file"
|
|
24
|
+
},
|
|
25
|
+
"title": "Sistema locale"
|
|
26
|
+
},
|
|
27
|
+
"lobe-web-browsing": {
|
|
28
|
+
"apiName": {
|
|
29
|
+
"crawlMultiPages": "Leggi contenuti da più pagine",
|
|
30
|
+
"crawlSinglePage": "Leggi contenuto della pagina",
|
|
31
|
+
"search": "Cerca nella pagina"
|
|
32
|
+
},
|
|
33
|
+
"title": "Ricerca online"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
2
36
|
"confirm": "Conferma",
|
|
3
37
|
"debug": {
|
|
4
38
|
"arguments": "Parametri di chiamata",
|
|
@@ -251,23 +285,6 @@
|
|
|
251
285
|
"content": "Chiamata plugin in corso...",
|
|
252
286
|
"plugin": "Plugin in esecuzione..."
|
|
253
287
|
},
|
|
254
|
-
"localSystem": {
|
|
255
|
-
"apiName": {
|
|
256
|
-
"editLocalFile": "Modifica file",
|
|
257
|
-
"getCommandOutput": "Ottieni output del codice",
|
|
258
|
-
"globLocalFiles": "Cerca file corrispondenti",
|
|
259
|
-
"grepContent": "Cerca contenuto",
|
|
260
|
-
"killCommand": "Termina esecuzione del codice",
|
|
261
|
-
"listLocalFiles": "Visualizza lista file",
|
|
262
|
-
"moveLocalFiles": "Sposta file",
|
|
263
|
-
"readLocalFile": "Leggi contenuto file",
|
|
264
|
-
"renameLocalFile": "Rinomina",
|
|
265
|
-
"runCommand": "Esegui codice",
|
|
266
|
-
"searchLocalFiles": "Cerca file",
|
|
267
|
-
"writeLocalFile": "Scrivi file"
|
|
268
|
-
},
|
|
269
|
-
"title": "Sistema locale"
|
|
270
|
-
},
|
|
271
288
|
"mcpInstall": {
|
|
272
289
|
"CHECKING_INSTALLATION": "Verifica ambiente di installazione...",
|
|
273
290
|
"COMPLETED": "Installazione completata",
|
|
@@ -375,11 +392,6 @@
|
|
|
375
392
|
"warning": "⚠️ Assicurati di fidarti della fonte di questo plugin, plugin malevoli possono compromettere la sicurezza del sistema."
|
|
376
393
|
},
|
|
377
394
|
"search": {
|
|
378
|
-
"apiName": {
|
|
379
|
-
"crawlMultiPages": "Leggi contenuti di più pagine",
|
|
380
|
-
"crawlSinglePage": "Leggi contenuto pagina",
|
|
381
|
-
"search": "Cerca pagina"
|
|
382
|
-
},
|
|
383
395
|
"config": {
|
|
384
396
|
"addKey": "Aggiungi chiave",
|
|
385
397
|
"close": "Elimina",
|
package/locales/it-IT/tool.json
CHANGED
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"images": "Immagini:",
|
|
15
15
|
"prompt": "parola chiave"
|
|
16
16
|
},
|
|
17
|
+
"lobe-knowledge-base": {
|
|
18
|
+
"readKnowledge": {
|
|
19
|
+
"meta": {
|
|
20
|
+
"chars": "Numero di caratteri",
|
|
21
|
+
"lines": "Numero di righe"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
17
25
|
"localFiles": {
|
|
18
26
|
"editFile": {
|
|
19
27
|
"newString": "Sostituisci con",
|