@lobehub/chat 1.140.0 → 1.141.0

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.
Files changed (114) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/changelog/v1.json +15 -0
  3. package/locales/ar/chat.json +13 -0
  4. package/locales/ar/common.json +1 -0
  5. package/locales/ar/components.json +4 -0
  6. package/locales/ar/file.json +2 -2
  7. package/locales/bg-BG/chat.json +13 -0
  8. package/locales/bg-BG/common.json +1 -0
  9. package/locales/bg-BG/components.json +4 -0
  10. package/locales/bg-BG/file.json +2 -2
  11. package/locales/de-DE/chat.json +13 -0
  12. package/locales/de-DE/common.json +1 -0
  13. package/locales/de-DE/components.json +4 -0
  14. package/locales/de-DE/file.json +2 -2
  15. package/locales/en-US/chat.json +13 -0
  16. package/locales/en-US/common.json +1 -0
  17. package/locales/en-US/components.json +4 -0
  18. package/locales/en-US/file.json +2 -2
  19. package/locales/es-ES/chat.json +13 -0
  20. package/locales/es-ES/common.json +1 -0
  21. package/locales/es-ES/components.json +4 -0
  22. package/locales/es-ES/file.json +2 -2
  23. package/locales/fa-IR/chat.json +13 -0
  24. package/locales/fa-IR/common.json +1 -0
  25. package/locales/fa-IR/components.json +4 -0
  26. package/locales/fa-IR/file.json +2 -2
  27. package/locales/fr-FR/chat.json +13 -0
  28. package/locales/fr-FR/common.json +1 -0
  29. package/locales/fr-FR/components.json +4 -0
  30. package/locales/fr-FR/file.json +2 -2
  31. package/locales/it-IT/chat.json +13 -0
  32. package/locales/it-IT/common.json +1 -0
  33. package/locales/it-IT/components.json +4 -0
  34. package/locales/it-IT/file.json +2 -2
  35. package/locales/ja-JP/chat.json +13 -0
  36. package/locales/ja-JP/common.json +1 -0
  37. package/locales/ja-JP/components.json +4 -0
  38. package/locales/ja-JP/file.json +2 -2
  39. package/locales/ko-KR/chat.json +13 -0
  40. package/locales/ko-KR/common.json +1 -0
  41. package/locales/ko-KR/components.json +4 -0
  42. package/locales/ko-KR/file.json +2 -2
  43. package/locales/nl-NL/chat.json +13 -0
  44. package/locales/nl-NL/common.json +1 -0
  45. package/locales/nl-NL/components.json +4 -0
  46. package/locales/nl-NL/file.json +2 -2
  47. package/locales/pl-PL/chat.json +13 -0
  48. package/locales/pl-PL/common.json +1 -0
  49. package/locales/pl-PL/components.json +4 -0
  50. package/locales/pl-PL/file.json +2 -2
  51. package/locales/pt-BR/chat.json +13 -0
  52. package/locales/pt-BR/common.json +1 -0
  53. package/locales/pt-BR/components.json +4 -0
  54. package/locales/pt-BR/file.json +2 -2
  55. package/locales/ru-RU/chat.json +13 -0
  56. package/locales/ru-RU/common.json +1 -0
  57. package/locales/ru-RU/components.json +4 -0
  58. package/locales/ru-RU/file.json +2 -2
  59. package/locales/tr-TR/chat.json +13 -0
  60. package/locales/tr-TR/common.json +1 -0
  61. package/locales/tr-TR/components.json +4 -0
  62. package/locales/tr-TR/file.json +2 -2
  63. package/locales/vi-VN/chat.json +13 -0
  64. package/locales/vi-VN/common.json +1 -0
  65. package/locales/vi-VN/components.json +4 -0
  66. package/locales/vi-VN/file.json +2 -2
  67. package/locales/zh-CN/chat.json +13 -0
  68. package/locales/zh-CN/common.json +1 -0
  69. package/locales/zh-CN/components.json +4 -0
  70. package/locales/zh-CN/file.json +2 -2
  71. package/locales/zh-TW/chat.json +13 -0
  72. package/locales/zh-TW/common.json +1 -0
  73. package/locales/zh-TW/components.json +4 -0
  74. package/locales/zh-TW/file.json +2 -2
  75. package/next.config.ts +5 -6
  76. package/package.json +8 -2
  77. package/packages/database/src/models/__tests__/message.test.ts +200 -2
  78. package/packages/database/src/models/message.ts +13 -0
  79. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +313 -0
  80. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +21 -5
  81. package/packages/model-runtime/src/providers/azureai/index.test.ts +12 -2
  82. package/packages/model-runtime/src/providers/groq/index.test.ts +449 -0
  83. package/packages/model-runtime/src/providers/groq/index.ts +46 -0
  84. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +3 -2
  85. package/src/app/[variants]/(main)/files/(content)/@menu/features/KnowledgeBase/Item/index.tsx +10 -2
  86. package/src/features/ChatInput/InputEditor/index.tsx +2 -0
  87. package/src/features/Conversation/Messages/User/index.tsx +7 -17
  88. package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +361 -0
  89. package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +119 -0
  90. package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/style.ts +63 -0
  91. package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/template.ts +24 -0
  92. package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +93 -0
  93. package/src/features/Conversation/components/ShareMessageModal/index.tsx +39 -14
  94. package/src/features/FileManager/FileList/MasonryFileItem/MasonryItemWrapper.tsx +44 -0
  95. package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +553 -0
  96. package/src/features/FileManager/FileList/MasonrySkeleton.tsx +57 -0
  97. package/src/features/FileManager/FileList/ToolBar/ViewSwitcher.tsx +45 -0
  98. package/src/features/FileManager/FileList/ToolBar/index.tsx +9 -1
  99. package/src/features/FileManager/FileList/index.tsx +83 -13
  100. package/src/features/FileManager/Header/FilesSearchBar.tsx +7 -2
  101. package/src/features/ShareModal/SharePdf/PdfPreview.tsx +361 -0
  102. package/src/features/ShareModal/SharePdf/index.tsx +194 -0
  103. package/src/features/ShareModal/SharePdf/usePdfGeneration.ts +90 -0
  104. package/src/features/ShareModal/index.tsx +40 -14
  105. package/src/features/ShareModal/style.ts +8 -5
  106. package/src/libs/trpc/client/lambda.ts +7 -1
  107. package/src/locales/default/chat.ts +13 -0
  108. package/src/locales/default/common.ts +1 -0
  109. package/src/locales/default/components.ts +4 -0
  110. package/src/locales/default/file.ts +2 -2
  111. package/src/server/globalConfig/parseSystemAgent.ts +4 -2
  112. package/src/server/routers/lambda/exporter.ts +173 -3
  113. package/src/server/routers/lambda/message.ts +11 -0
  114. package/src/store/global/initialState.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,49 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 1.141.0](https://github.com/lobehub/lobe-chat/compare/v1.140.0...v1.141.0)
6
+
7
+ <sup>Released on **2025-10-21**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Add PDF export functionality to share modal.
12
+
13
+ #### 🐛 Bug Fixes
14
+
15
+ - **misc**: Ignore abort signal errors in TRPC client, slove when pwa user info have code cannot be viewed in full.
16
+
17
+ #### 💄 Styles
18
+
19
+ - **misc**: Add knowledge base mansory layout \[LOB-496], improve rich text link display.
20
+
21
+ <br/>
22
+
23
+ <details>
24
+ <summary><kbd>Improvements and Fixes</kbd></summary>
25
+
26
+ #### What's improved
27
+
28
+ - **misc**: Add PDF export functionality to share modal, closes [#9300](https://github.com/lobehub/lobe-chat/issues/9300) [#9299](https://github.com/lobehub/lobe-chat/issues/9299) ([2b7761c](https://github.com/lobehub/lobe-chat/commit/2b7761c))
29
+
30
+ #### What's fixed
31
+
32
+ - **misc**: Ignore abort signal errors in TRPC client, closes [#9809](https://github.com/lobehub/lobe-chat/issues/9809) [#9401](https://github.com/lobehub/lobe-chat/issues/9401) ([7f7dcfb](https://github.com/lobehub/lobe-chat/commit/7f7dcfb))
33
+ - **misc**: Slove when pwa user info have code cannot be viewed in full, closes [#9817](https://github.com/lobehub/lobe-chat/issues/9817) ([6734a47](https://github.com/lobehub/lobe-chat/commit/6734a47))
34
+
35
+ #### Styles
36
+
37
+ - **misc**: Add knowledge base mansory layout \[LOB-496], closes [#9722](https://github.com/lobehub/lobe-chat/issues/9722) ([69f21da](https://github.com/lobehub/lobe-chat/commit/69f21da))
38
+ - **misc**: Improve rich text link display, closes [#9816](https://github.com/lobehub/lobe-chat/issues/9816) ([af33543](https://github.com/lobehub/lobe-chat/commit/af33543))
39
+
40
+ </details>
41
+
42
+ <div align="right">
43
+
44
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
45
+
46
+ </div>
47
+
5
48
  ## [Version 1.140.0](https://github.com/lobehub/lobe-chat/compare/v1.139.5...v1.140.0)
6
49
 
7
50
  <sup>Released on **2025-10-21**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,19 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "features": [
5
+ "Add PDF export functionality to share modal."
6
+ ],
7
+ "fixes": [
8
+ "Ignore abort signal errors in TRPC client, slove when pwa user info have code cannot be viewed in full."
9
+ ],
10
+ "improvements": [
11
+ "Add knowledge base mansory layout [LOB-496], improve rich text link display."
12
+ ]
13
+ },
14
+ "date": "2025-10-21",
15
+ "version": "1.141.0"
16
+ },
2
17
  {
3
18
  "children": {
4
19
  "features": [
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "نسخ",
306
306
  "download": "تحميل اللقطة",
307
+ "downloadError": "فشل التنزيل",
307
308
  "downloadFile": "تحميل الملف",
309
+ "downloadPdf": "تنزيل PDF",
310
+ "downloadSuccess": "تم التنزيل بنجاح",
311
+ "exportPdf": "تصدير إلى PDF",
308
312
  "exportTitle": "العنوان الافتراضي",
313
+ "generatePdf": "إنشاء ملف PDF",
314
+ "generatingPdf": "جارٍ إنشاء PDF...",
309
315
  "imageType": "نوع الصورة",
310
316
  "includeTool": "تضمين رسالة الأداة",
311
317
  "includeUser": "تضمين رسالة المستخدم",
318
+ "loadingPdf": "جارٍ تحميل ملف PDF...",
319
+ "noPdfData": "لا توجد بيانات PDF",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "حدث خطأ أثناء إنشاء PDF، يرجى المحاولة مرة أخرى",
322
+ "pdfGenerationError": "فشل إنشاء PDF",
323
+ "pdfReady": "تم تجهيز PDF",
324
+ "regeneratePdf": "إعادة إنشاء ملف PDF",
312
325
  "screenshot": "لقطة شاشة",
313
326
  "settings": "إعدادات التصدير",
314
327
  "text": "نص",
@@ -338,6 +338,7 @@
338
338
  "chat": "الدردشة",
339
339
  "discover": "اكتشاف",
340
340
  "files": "ملفات",
341
+ "knowledgeBase": "قاعدة المعرفة",
341
342
  "me": "أنا",
342
343
  "setting": "الإعدادات"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "إجمالي {{count}} عنصر",
52
52
  "selectedCount": "تم تحديد {{count}} عنصر"
53
+ },
54
+ "view": {
55
+ "list": "عرض القائمة",
56
+ "masonry": "عرض الشبكة"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "إدارة ملفاتك ومكتبتك المعرفية",
2
+ "desc": "إدارة معرفتك",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "تاريخ الإنشاء",
@@ -70,7 +70,7 @@
70
70
  "videos": "الفيديوهات",
71
71
  "websites": "المواقع"
72
72
  },
73
- "title": "الملفات",
73
+ "title": "قاعدة المعرفة",
74
74
  "toggleLeftPanel": {
75
75
  "title": "عرض/إخفاء اللوحة الجانبية اليسرى"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Копирай",
306
306
  "download": "Изтегли екранна снимка",
307
+ "downloadError": "Грешка при изтегляне",
307
308
  "downloadFile": "Изтегли файла",
309
+ "downloadPdf": "Изтегляне на PDF",
310
+ "downloadSuccess": "Изтеглянето е успешно",
311
+ "exportPdf": "Експортиране като PDF",
308
312
  "exportTitle": "По подразбиране заглавие",
313
+ "generatePdf": "Генериране на PDF",
314
+ "generatingPdf": "Генериране на PDF...",
309
315
  "imageType": "Формат на изображението",
310
316
  "includeTool": "Включи съобщения от инструмента",
311
317
  "includeUser": "Включи съобщения от потребителя",
318
+ "loadingPdf": "Зареждане на PDF...",
319
+ "noPdfData": "Няма налични PDF данни",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "Възникна грешка при генерирането на PDF, моля опитайте отново",
322
+ "pdfGenerationError": "Грешка при генериране на PDF",
323
+ "pdfReady": "PDF е готов",
324
+ "regeneratePdf": "Генериране на PDF отново",
312
325
  "screenshot": "Екранна снимка",
313
326
  "settings": "Настройки за експортиране",
314
327
  "text": "Текст",
@@ -338,6 +338,7 @@
338
338
  "chat": "Чат",
339
339
  "discover": "Открий",
340
340
  "files": "Файлове",
341
+ "knowledgeBase": "База знания",
341
342
  "me": "аз",
342
343
  "setting": "Настройки"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Общо {{count}} елемента",
52
52
  "selectedCount": "Избрани {{count}} елемента"
53
+ },
54
+ "view": {
55
+ "list": "Изглед като списък",
56
+ "masonry": "Изглед като мрежа"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Управлявайте вашите файлове и база знания",
2
+ "desc": "Управлявайте своите знания",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Дата на създаване",
@@ -70,7 +70,7 @@
70
70
  "videos": "Видеа",
71
71
  "websites": "Уебсайтове"
72
72
  },
73
- "title": "Файлове",
73
+ "title": "База знания",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Покажи/Скрий лявото панел"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Kopieren",
306
306
  "download": "Screenshot herunterladen",
307
+ "downloadError": "Download fehlgeschlagen",
307
308
  "downloadFile": "Datei herunterladen",
309
+ "downloadPdf": "PDF herunterladen",
310
+ "downloadSuccess": "Download erfolgreich",
311
+ "exportPdf": "Als PDF exportieren",
308
312
  "exportTitle": "Standardtitel",
313
+ "generatePdf": "PDF erstellen",
314
+ "generatingPdf": "PDF wird erstellt...",
309
315
  "imageType": "Bildformat",
310
316
  "includeTool": "Plugin-Nachricht einfügen",
311
317
  "includeUser": "Benutzernachricht einfügen",
318
+ "loadingPdf": "PDF wird geladen...",
319
+ "noPdfData": "Keine PDF-Daten vorhanden",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "Beim Erstellen des PDFs ist ein Fehler aufgetreten, bitte versuchen Sie es erneut",
322
+ "pdfGenerationError": "PDF-Erstellung fehlgeschlagen",
323
+ "pdfReady": "PDF ist bereit",
324
+ "regeneratePdf": "PDF neu erstellen",
312
325
  "screenshot": "Screenshot",
313
326
  "settings": "Exporteinstellungen",
314
327
  "text": "Text",
@@ -338,6 +338,7 @@
338
338
  "chat": "Chat",
339
339
  "discover": "Entdecken",
340
340
  "files": "Dateien",
341
+ "knowledgeBase": "Wissensdatenbank",
341
342
  "me": "Ich",
342
343
  "setting": "Einstellung"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Insgesamt {{count}} Elemente",
52
52
  "selectedCount": "Ausgewählt {{count}} Elemente"
53
+ },
54
+ "view": {
55
+ "list": "Listenansicht",
56
+ "masonry": "Kachelansicht"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Verwalten Sie Ihre Dateien und Wissensdatenbank",
2
+ "desc": "Verwalte dein Wissen",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Erstellungszeit",
@@ -70,7 +70,7 @@
70
70
  "videos": "Videos",
71
71
  "websites": "Webseiten"
72
72
  },
73
- "title": "Dateien",
73
+ "title": "Wissensdatenbank",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Linkes Panel einblenden/ausblenden"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Copy",
306
306
  "download": "Download Screenshot",
307
+ "downloadError": "Download failed",
307
308
  "downloadFile": "Download File",
309
+ "downloadPdf": "Download PDF",
310
+ "downloadSuccess": "Download successful",
311
+ "exportPdf": "Export as PDF",
308
312
  "exportTitle": "Default Title",
313
+ "generatePdf": "Generate PDF",
314
+ "generatingPdf": "Generating PDF...",
309
315
  "imageType": "Image Format",
310
316
  "includeTool": "Include Plugin Messages",
311
317
  "includeUser": "Include User Messages",
318
+ "loadingPdf": "Loading PDF...",
319
+ "noPdfData": "No PDF data available",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "An error occurred while generating the PDF, please try again",
322
+ "pdfGenerationError": "PDF generation failed",
323
+ "pdfReady": "PDF is ready",
324
+ "regeneratePdf": "Regenerate PDF",
312
325
  "screenshot": "Screenshot",
313
326
  "settings": "Export Settings",
314
327
  "text": "Text",
@@ -338,6 +338,7 @@
338
338
  "chat": "Chat",
339
339
  "discover": "Discover",
340
340
  "files": "Files",
341
+ "knowledgeBase": "Knowledge Base",
341
342
  "me": "Me",
342
343
  "setting": "Settings"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Total {{count}} items",
52
52
  "selectedCount": "Selected {{count}} items"
53
+ },
54
+ "view": {
55
+ "list": "List View",
56
+ "masonry": "Grid View"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Manage files and knowledge base",
2
+ "desc": "Manage your knowledge",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Creation Time",
@@ -70,7 +70,7 @@
70
70
  "videos": "Videos",
71
71
  "websites": "Websites"
72
72
  },
73
- "title": "Files",
73
+ "title": "Knowledge Base",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Show/Hide Left Panel"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Copiar",
306
306
  "download": "Descargar captura de pantalla",
307
+ "downloadError": "Error al descargar",
307
308
  "downloadFile": "Descargar archivo",
309
+ "downloadPdf": "Descargar PDF",
310
+ "downloadSuccess": "Descarga exitosa",
311
+ "exportPdf": "Exportar como PDF",
308
312
  "exportTitle": "Título predeterminado",
313
+ "generatePdf": "Generar PDF",
314
+ "generatingPdf": "Generando PDF...",
309
315
  "imageType": "Tipo de imagen",
310
316
  "includeTool": "Incluir mensajes de herramientas",
311
317
  "includeUser": "Incluir mensajes de usuario",
318
+ "loadingPdf": "Cargando PDF...",
319
+ "noPdfData": "No hay datos PDF disponibles",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "Se produjo un error al generar el PDF, por favor inténtelo de nuevo",
322
+ "pdfGenerationError": "Error al generar el PDF",
323
+ "pdfReady": "PDF listo",
324
+ "regeneratePdf": "Regenerar PDF",
312
325
  "screenshot": "Captura de pantalla",
313
326
  "settings": "Configuración de exportación",
314
327
  "text": "Texto",
@@ -338,6 +338,7 @@
338
338
  "chat": "Chat",
339
339
  "discover": "Descubrir",
340
340
  "files": "Archivos",
341
+ "knowledgeBase": "Base de conocimientos",
341
342
  "me": "Yo",
342
343
  "setting": "Configuración"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Total {{count}} elementos",
52
52
  "selectedCount": "Seleccionados {{count}} elementos"
53
+ },
54
+ "view": {
55
+ "list": "Vista de lista",
56
+ "masonry": "Vista de cuadrícula"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Gestiona tus archivos y tu base de conocimientos",
2
+ "desc": "Gestiona tu conocimiento",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Fecha de creación",
@@ -70,7 +70,7 @@
70
70
  "videos": "Videos",
71
71
  "websites": "Sitios web"
72
72
  },
73
- "title": "Archivos",
73
+ "title": "Base de conocimientos",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Mostrar/Ocultar panel izquierdo"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "کپی",
306
306
  "download": "دانلود اسکرین‌شات",
307
+ "downloadError": "دانلود ناموفق بود",
307
308
  "downloadFile": "دانلود فایل",
309
+ "downloadPdf": "دانلود PDF",
310
+ "downloadSuccess": "دانلود با موفقیت انجام شد",
311
+ "exportPdf": "صادر کردن به PDF",
308
312
  "exportTitle": "عنوان پیش‌فرض",
313
+ "generatePdf": "ایجاد PDF",
314
+ "generatingPdf": "در حال تولید PDF...",
309
315
  "imageType": "فرمت تصویر",
310
316
  "includeTool": "شامل پیام‌های ابزار",
311
317
  "includeUser": "شامل پیام‌های کاربر",
318
+ "loadingPdf": "در حال بارگذاری PDF...",
319
+ "noPdfData": "داده‌ای برای PDF موجود نیست",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "خطا در تولید PDF، لطفاً دوباره تلاش کنید",
322
+ "pdfGenerationError": "تولید PDF ناموفق بود",
323
+ "pdfReady": "PDF آماده است",
324
+ "regeneratePdf": "تولید مجدد PDF",
312
325
  "screenshot": "اسکرین‌شات",
313
326
  "settings": "تنظیمات خروجی",
314
327
  "text": "متن",
@@ -338,6 +338,7 @@
338
338
  "chat": "گفتگو",
339
339
  "discover": "کشف",
340
340
  "files": "فایل‌ها",
341
+ "knowledgeBase": "پایگاه دانش",
341
342
  "me": "من",
342
343
  "setting": "تنظیمات"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "مجموعاً {{count}} مورد",
52
52
  "selectedCount": "{{count}} مورد انتخاب شده"
53
+ },
54
+ "view": {
55
+ "list": "نمای فهرست",
56
+ "masonry": "نمای شبکه‌ای"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "مدیریت فایل‌ها و مخزن دانش خود",
2
+ "desc": "مدیریت دانش شما",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "زمان ایجاد",
@@ -70,7 +70,7 @@
70
70
  "videos": "ویدیوها",
71
71
  "websites": "وب‌سایت‌ها"
72
72
  },
73
- "title": "فایل",
73
+ "title": "پایگاه دانش",
74
74
  "toggleLeftPanel": {
75
75
  "title": "نمایش/پنهان کردن پانل سمت چپ"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Copier",
306
306
  "download": "Télécharger la capture d'écran",
307
+ "downloadError": "Échec du téléchargement",
307
308
  "downloadFile": "Télécharger le fichier",
309
+ "downloadPdf": "Télécharger le PDF",
310
+ "downloadSuccess": "Téléchargement réussi",
311
+ "exportPdf": "Exporter en PDF",
308
312
  "exportTitle": "Titre par défaut",
313
+ "generatePdf": "Générer le PDF",
314
+ "generatingPdf": "Génération du PDF en cours...",
309
315
  "imageType": "Type d'image",
310
316
  "includeTool": "Inclure les messages de l'outil",
311
317
  "includeUser": "Inclure les messages de l'utilisateur",
318
+ "loadingPdf": "Chargement du PDF...",
319
+ "noPdfData": "Aucune donnée PDF disponible",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "Une erreur est survenue lors de la génération du PDF, veuillez réessayer",
322
+ "pdfGenerationError": "Échec de la génération du PDF",
323
+ "pdfReady": "Le PDF est prêt",
324
+ "regeneratePdf": "Régénérer le PDF",
312
325
  "screenshot": "Capture d'écran",
313
326
  "settings": "Paramètres d'exportation",
314
327
  "text": "Texte",
@@ -338,6 +338,7 @@
338
338
  "chat": "Conversation",
339
339
  "discover": "Découvrir",
340
340
  "files": "Fichiers",
341
+ "knowledgeBase": "Base de connaissances",
341
342
  "me": "moi",
342
343
  "setting": "Paramètre"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Total {{count}} éléments",
52
52
  "selectedCount": "Sélectionné {{count}} éléments"
53
+ },
54
+ "view": {
55
+ "list": "Vue en liste",
56
+ "masonry": "Vue en grille"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Gérez vos fichiers et votre base de connaissances",
2
+ "desc": "Gérez vos connaissances",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Date de création",
@@ -70,7 +70,7 @@
70
70
  "videos": "Vidéos",
71
71
  "websites": "Sites web"
72
72
  },
73
- "title": "Fichiers",
73
+ "title": "Base de connaissances",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Afficher/Masquer le panneau de gauche"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "Copia",
306
306
  "download": "Scarica screenshot",
307
+ "downloadError": "Download fallito",
307
308
  "downloadFile": "Scarica file",
309
+ "downloadPdf": "Scarica PDF",
310
+ "downloadSuccess": "Download riuscito",
311
+ "exportPdf": "Esporta come PDF",
308
312
  "exportTitle": "Titolo predefinito",
313
+ "generatePdf": "Genera PDF",
314
+ "generatingPdf": "Generazione PDF in corso...",
309
315
  "imageType": "Tipo di immagine",
310
316
  "includeTool": "Includi messaggio dello strumento",
311
317
  "includeUser": "Includi messaggio dell'utente",
318
+ "loadingPdf": "Caricamento PDF...",
319
+ "noPdfData": "Nessun dato PDF disponibile",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "Si è verificato un errore durante la generazione del PDF, riprova",
322
+ "pdfGenerationError": "Generazione PDF fallita",
323
+ "pdfReady": "PDF pronto",
324
+ "regeneratePdf": "Rigenera PDF",
312
325
  "screenshot": "Screenshot",
313
326
  "settings": "Impostazioni di esportazione",
314
327
  "text": "Testo",
@@ -338,6 +338,7 @@
338
338
  "chat": "Chat",
339
339
  "discover": "Scopri",
340
340
  "files": "File",
341
+ "knowledgeBase": "Base di conoscenza",
341
342
  "me": "io",
342
343
  "setting": "Impostazioni"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "Totale {{count}} elementi",
52
52
  "selectedCount": "Selezionati {{count}} elementi"
53
+ },
54
+ "view": {
55
+ "list": "Vista elenco",
56
+ "masonry": "Vista griglia"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "Gestisci i tuoi file e il tuo knowledge base",
2
+ "desc": "Gestisci le tue conoscenze",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "Data di creazione",
@@ -70,7 +70,7 @@
70
70
  "videos": "Video",
71
71
  "websites": "Siti web"
72
72
  },
73
- "title": "File",
73
+ "title": "Archivio di Conoscenza",
74
74
  "toggleLeftPanel": {
75
75
  "title": "Mostra/Nascondi il pannello sinistro"
76
76
  },
@@ -304,11 +304,24 @@
304
304
  "shareModal": {
305
305
  "copy": "コピー",
306
306
  "download": "スクリーンショットをダウンロード",
307
+ "downloadError": "ダウンロード失敗",
307
308
  "downloadFile": "ファイルをダウンロード",
309
+ "downloadPdf": "PDFをダウンロード",
310
+ "downloadSuccess": "ダウンロード成功",
311
+ "exportPdf": "PDFとしてエクスポート",
308
312
  "exportTitle": "デフォルトタイトル",
313
+ "generatePdf": "PDFを生成する",
314
+ "generatingPdf": "PDFを生成中...",
309
315
  "imageType": "画像形式",
310
316
  "includeTool": "ツールメッセージを含める",
311
317
  "includeUser": "ユーザーメッセージを含める",
318
+ "loadingPdf": "PDFを読み込み中...",
319
+ "noPdfData": "PDFデータがありません",
320
+ "pdf": "PDF",
321
+ "pdfErrorDescription": "PDFの生成中にエラーが発生しました。再試行してください。",
322
+ "pdfGenerationError": "PDFの生成に失敗しました",
323
+ "pdfReady": "PDFの準備ができました",
324
+ "regeneratePdf": "PDFを再生成する",
312
325
  "screenshot": "スクリーンショット",
313
326
  "settings": "エクスポート設定",
314
327
  "text": "テキスト",
@@ -338,6 +338,7 @@
338
338
  "chat": "チャット",
339
339
  "discover": "発見",
340
340
  "files": "ファイル",
341
+ "knowledgeBase": "ナレッジベース",
341
342
  "me": "私",
342
343
  "setting": "設定"
343
344
  },
@@ -50,6 +50,10 @@
50
50
  "total": {
51
51
  "fileCount": "合計 {{count}} 件",
52
52
  "selectedCount": "選択済み {{count}} 件"
53
+ },
54
+ "view": {
55
+ "list": "リスト表示",
56
+ "masonry": "グリッド表示"
53
57
  }
54
58
  },
55
59
  "FileParsingStatus": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "desc": "ファイルと知識ベースを管理する",
2
+ "desc": "あなたの知識を管理する",
3
3
  "detail": {
4
4
  "basic": {
5
5
  "createdAt": "作成日時",
@@ -70,7 +70,7 @@
70
70
  "videos": "動画",
71
71
  "websites": "ウェブサイト"
72
72
  },
73
- "title": "ファイル",
73
+ "title": "ナレッジベース",
74
74
  "toggleLeftPanel": {
75
75
  "title": "左側パネルの表示/非表示"
76
76
  },