@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.
- package/CHANGELOG.md +43 -0
- package/changelog/v1.json +15 -0
- package/locales/ar/chat.json +13 -0
- package/locales/ar/common.json +1 -0
- package/locales/ar/components.json +4 -0
- package/locales/ar/file.json +2 -2
- package/locales/bg-BG/chat.json +13 -0
- package/locales/bg-BG/common.json +1 -0
- package/locales/bg-BG/components.json +4 -0
- package/locales/bg-BG/file.json +2 -2
- package/locales/de-DE/chat.json +13 -0
- package/locales/de-DE/common.json +1 -0
- package/locales/de-DE/components.json +4 -0
- package/locales/de-DE/file.json +2 -2
- package/locales/en-US/chat.json +13 -0
- package/locales/en-US/common.json +1 -0
- package/locales/en-US/components.json +4 -0
- package/locales/en-US/file.json +2 -2
- package/locales/es-ES/chat.json +13 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/es-ES/components.json +4 -0
- package/locales/es-ES/file.json +2 -2
- package/locales/fa-IR/chat.json +13 -0
- package/locales/fa-IR/common.json +1 -0
- package/locales/fa-IR/components.json +4 -0
- package/locales/fa-IR/file.json +2 -2
- package/locales/fr-FR/chat.json +13 -0
- package/locales/fr-FR/common.json +1 -0
- package/locales/fr-FR/components.json +4 -0
- package/locales/fr-FR/file.json +2 -2
- package/locales/it-IT/chat.json +13 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/it-IT/components.json +4 -0
- package/locales/it-IT/file.json +2 -2
- package/locales/ja-JP/chat.json +13 -0
- package/locales/ja-JP/common.json +1 -0
- package/locales/ja-JP/components.json +4 -0
- package/locales/ja-JP/file.json +2 -2
- package/locales/ko-KR/chat.json +13 -0
- package/locales/ko-KR/common.json +1 -0
- package/locales/ko-KR/components.json +4 -0
- package/locales/ko-KR/file.json +2 -2
- package/locales/nl-NL/chat.json +13 -0
- package/locales/nl-NL/common.json +1 -0
- package/locales/nl-NL/components.json +4 -0
- package/locales/nl-NL/file.json +2 -2
- package/locales/pl-PL/chat.json +13 -0
- package/locales/pl-PL/common.json +1 -0
- package/locales/pl-PL/components.json +4 -0
- package/locales/pl-PL/file.json +2 -2
- package/locales/pt-BR/chat.json +13 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/pt-BR/components.json +4 -0
- package/locales/pt-BR/file.json +2 -2
- package/locales/ru-RU/chat.json +13 -0
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/components.json +4 -0
- package/locales/ru-RU/file.json +2 -2
- package/locales/tr-TR/chat.json +13 -0
- package/locales/tr-TR/common.json +1 -0
- package/locales/tr-TR/components.json +4 -0
- package/locales/tr-TR/file.json +2 -2
- package/locales/vi-VN/chat.json +13 -0
- package/locales/vi-VN/common.json +1 -0
- package/locales/vi-VN/components.json +4 -0
- package/locales/vi-VN/file.json +2 -2
- package/locales/zh-CN/chat.json +13 -0
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-CN/components.json +4 -0
- package/locales/zh-CN/file.json +2 -2
- package/locales/zh-TW/chat.json +13 -0
- package/locales/zh-TW/common.json +1 -0
- package/locales/zh-TW/components.json +4 -0
- package/locales/zh-TW/file.json +2 -2
- package/next.config.ts +5 -6
- package/package.json +8 -2
- package/packages/database/src/models/__tests__/message.test.ts +200 -2
- package/packages/database/src/models/message.ts +13 -0
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +313 -0
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +21 -5
- package/packages/model-runtime/src/providers/azureai/index.test.ts +12 -2
- package/packages/model-runtime/src/providers/groq/index.test.ts +449 -0
- package/packages/model-runtime/src/providers/groq/index.ts +46 -0
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +3 -2
- package/src/app/[variants]/(main)/files/(content)/@menu/features/KnowledgeBase/Item/index.tsx +10 -2
- package/src/features/ChatInput/InputEditor/index.tsx +2 -0
- package/src/features/Conversation/Messages/User/index.tsx +7 -17
- package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +361 -0
- package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +119 -0
- package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/style.ts +63 -0
- package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/template.ts +24 -0
- package/src/features/Conversation/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +93 -0
- package/src/features/Conversation/components/ShareMessageModal/index.tsx +39 -14
- package/src/features/FileManager/FileList/MasonryFileItem/MasonryItemWrapper.tsx +44 -0
- package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +553 -0
- package/src/features/FileManager/FileList/MasonrySkeleton.tsx +57 -0
- package/src/features/FileManager/FileList/ToolBar/ViewSwitcher.tsx +45 -0
- package/src/features/FileManager/FileList/ToolBar/index.tsx +9 -1
- package/src/features/FileManager/FileList/index.tsx +83 -13
- package/src/features/FileManager/Header/FilesSearchBar.tsx +7 -2
- package/src/features/ShareModal/SharePdf/PdfPreview.tsx +361 -0
- package/src/features/ShareModal/SharePdf/index.tsx +194 -0
- package/src/features/ShareModal/SharePdf/usePdfGeneration.ts +90 -0
- package/src/features/ShareModal/index.tsx +40 -14
- package/src/features/ShareModal/style.ts +8 -5
- package/src/libs/trpc/client/lambda.ts +7 -1
- package/src/locales/default/chat.ts +13 -0
- package/src/locales/default/common.ts +1 -0
- package/src/locales/default/components.ts +4 -0
- package/src/locales/default/file.ts +2 -2
- package/src/server/globalConfig/parseSystemAgent.ts +4 -2
- package/src/server/routers/lambda/exporter.ts +173 -3
- package/src/server/routers/lambda/message.ts +11 -0
- 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
|
+
[](#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": [
|
package/locales/ar/chat.json
CHANGED
|
@@ -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": "نص",
|
package/locales/ar/common.json
CHANGED
package/locales/ar/file.json
CHANGED
|
@@ -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
|
},
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -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": "Текст",
|
package/locales/bg-BG/file.json
CHANGED
|
@@ -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
|
},
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -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",
|
package/locales/de-DE/file.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"desc": "
|
|
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": "
|
|
73
|
+
"title": "Wissensdatenbank",
|
|
74
74
|
"toggleLeftPanel": {
|
|
75
75
|
"title": "Linkes Panel einblenden/ausblenden"
|
|
76
76
|
},
|
package/locales/en-US/chat.json
CHANGED
|
@@ -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",
|
package/locales/en-US/file.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"desc": "Manage
|
|
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": "
|
|
73
|
+
"title": "Knowledge Base",
|
|
74
74
|
"toggleLeftPanel": {
|
|
75
75
|
"title": "Show/Hide Left Panel"
|
|
76
76
|
},
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -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",
|
package/locales/es-ES/file.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"desc": "Gestiona
|
|
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": "
|
|
73
|
+
"title": "Base de conocimientos",
|
|
74
74
|
"toggleLeftPanel": {
|
|
75
75
|
"title": "Mostrar/Ocultar panel izquierdo"
|
|
76
76
|
},
|
package/locales/fa-IR/chat.json
CHANGED
|
@@ -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": "متن",
|
package/locales/fa-IR/file.json
CHANGED
|
@@ -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
|
},
|
package/locales/fr-FR/chat.json
CHANGED
|
@@ -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",
|
package/locales/fr-FR/file.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"desc": "Gérez vos
|
|
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": "
|
|
73
|
+
"title": "Base de connaissances",
|
|
74
74
|
"toggleLeftPanel": {
|
|
75
75
|
"title": "Afficher/Masquer le panneau de gauche"
|
|
76
76
|
},
|
package/locales/it-IT/chat.json
CHANGED
|
@@ -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",
|
package/locales/it-IT/file.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"desc": "Gestisci
|
|
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": "
|
|
73
|
+
"title": "Archivio di Conoscenza",
|
|
74
74
|
"toggleLeftPanel": {
|
|
75
75
|
"title": "Mostra/Nascondi il pannello sinistro"
|
|
76
76
|
},
|
package/locales/ja-JP/chat.json
CHANGED
|
@@ -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": "テキスト",
|
package/locales/ja-JP/file.json
CHANGED
|
@@ -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
|
},
|