@lobehub/chat 1.16.3 → 1.16.5

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.

Potentially problematic release.


This version of @lobehub/chat might be problematic. Click here for more details.

Files changed (71) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/locales/ar/common.json +1 -1
  3. package/locales/ar/error.json +2 -1
  4. package/locales/ar/file.json +2 -0
  5. package/locales/bg-BG/common.json +1 -1
  6. package/locales/bg-BG/error.json +2 -1
  7. package/locales/bg-BG/file.json +2 -0
  8. package/locales/de-DE/common.json +1 -1
  9. package/locales/de-DE/error.json +2 -1
  10. package/locales/de-DE/file.json +2 -0
  11. package/locales/en-US/common.json +1 -1
  12. package/locales/en-US/error.json +2 -1
  13. package/locales/en-US/file.json +2 -0
  14. package/locales/es-ES/common.json +1 -1
  15. package/locales/es-ES/error.json +2 -1
  16. package/locales/es-ES/file.json +2 -0
  17. package/locales/fr-FR/common.json +1 -1
  18. package/locales/fr-FR/error.json +2 -1
  19. package/locales/fr-FR/file.json +2 -0
  20. package/locales/it-IT/common.json +1 -1
  21. package/locales/it-IT/error.json +2 -1
  22. package/locales/it-IT/file.json +2 -0
  23. package/locales/ja-JP/common.json +1 -1
  24. package/locales/ja-JP/error.json +2 -1
  25. package/locales/ja-JP/file.json +2 -0
  26. package/locales/ko-KR/common.json +1 -1
  27. package/locales/ko-KR/error.json +2 -1
  28. package/locales/ko-KR/file.json +2 -0
  29. package/locales/nl-NL/common.json +1 -1
  30. package/locales/nl-NL/error.json +2 -1
  31. package/locales/nl-NL/file.json +2 -0
  32. package/locales/pl-PL/common.json +1 -1
  33. package/locales/pl-PL/error.json +2 -1
  34. package/locales/pl-PL/file.json +2 -0
  35. package/locales/pt-BR/common.json +1 -1
  36. package/locales/pt-BR/error.json +2 -1
  37. package/locales/pt-BR/file.json +2 -0
  38. package/locales/ru-RU/common.json +1 -1
  39. package/locales/ru-RU/error.json +2 -1
  40. package/locales/ru-RU/file.json +2 -0
  41. package/locales/tr-TR/common.json +1 -1
  42. package/locales/tr-TR/error.json +2 -1
  43. package/locales/tr-TR/file.json +2 -0
  44. package/locales/vi-VN/common.json +1 -1
  45. package/locales/vi-VN/error.json +2 -1
  46. package/locales/vi-VN/file.json +2 -0
  47. package/locales/zh-CN/common.json +1 -1
  48. package/locales/zh-CN/error.json +2 -1
  49. package/locales/zh-CN/file.json +2 -0
  50. package/locales/zh-TW/common.json +1 -1
  51. package/locales/zh-TW/error.json +2 -1
  52. package/locales/zh-TW/file.json +2 -0
  53. package/package.json +4 -4
  54. package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/FileItem/File.tsx +4 -1
  55. package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/FileItem/Image.tsx +4 -1
  56. package/src/app/(main)/files/loading.tsx +3 -1
  57. package/src/components/404/index.tsx +5 -1
  58. package/src/components/CircleLoading/index.tsx +3 -1
  59. package/src/components/FullscreenLoading/index.tsx +6 -2
  60. package/src/config/modelProviders/ai360.ts +1 -1
  61. package/src/config/modelProviders/baichuan.ts +4 -0
  62. package/src/config/modelProviders/minimax.ts +4 -0
  63. package/src/config/modelProviders/moonshot.ts +4 -0
  64. package/src/config/modelProviders/qwen.ts +4 -0
  65. package/src/config/modelProviders/spark.ts +4 -0
  66. package/src/config/modelProviders/stepfun.ts +1 -1
  67. package/src/features/ChatInput/ActionBar/Upload/ServerMode.tsx +3 -3
  68. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +3 -3
  69. package/src/locales/default/common.ts +1 -1
  70. package/src/locales/default/error.ts +2 -1
  71. package/src/locales/default/file.ts +2 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,48 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.16.5](https://github.com/lobehub/lobe-chat/compare/v1.16.4...v1.16.5)
6
+
7
+ <sup>Released on **2024-09-11**</sup>
8
+
9
+ <br/>
10
+
11
+ <details>
12
+ <summary><kbd>Improvements and Fixes</kbd></summary>
13
+
14
+ </details>
15
+
16
+ <div align="right">
17
+
18
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
19
+
20
+ </div>
21
+
22
+ ### [Version 1.16.4](https://github.com/lobehub/lobe-chat/compare/v1.16.3...v1.16.4)
23
+
24
+ <sup>Released on **2024-09-11**</sup>
25
+
26
+ #### 💄 Styles
27
+
28
+ - **ui**: Improve UI layout and text.
29
+
30
+ <br/>
31
+
32
+ <details>
33
+ <summary><kbd>Improvements and Fixes</kbd></summary>
34
+
35
+ #### Styles
36
+
37
+ - **ui**: Improve UI layout and text, closes [#3762](https://github.com/lobehub/lobe-chat/issues/3762) ([7c08f29](https://github.com/lobehub/lobe-chat/commit/7c08f29))
38
+
39
+ </details>
40
+
41
+ <div align="right">
42
+
43
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
44
+
45
+ </div>
46
+
5
47
  ### [Version 1.16.3](https://github.com/lobehub/lobe-chat/compare/v1.16.2...v1.16.3)
6
48
 
7
49
  <sup>Released on **2024-09-11**</sup>
@@ -9,7 +9,7 @@
9
9
  "title": "مرحبًا بك في التجربة {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "جاري تشغيل التطبيق، يرجى الانتظار...",
12
+ "appInitializing": "جارٍ تشغيل التطبيق...",
13
13
  "autoGenerate": "توليد تلقائي",
14
14
  "autoGenerateTooltip": "إكمال تلقائي بناءً على الكلمات المقترحة لوصف المساعد",
15
15
  "autoGenerateTooltipDisabled": "الرجاء إدخال كلمة تلميح قبل تفعيل وظيفة الإكمال التلقائي",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "تفاصيل الخطأ",
17
17
  "notFound": {
18
18
  "backHome": "العودة إلى الصفحة الرئيسية",
19
- "desc": "لم نتمكن من العثور على الصفحة التي تبحث عنها، يرجى التحقق مما إذا كان الرابط صحيحًا",
19
+ "check": "يرجى التحقق من صحة عنوان URL الخاص بك",
20
+ "desc": "لم نتمكن من العثور على الصفحة التي تبحث عنها",
20
21
  "title": "هل دخلت إلى مجال غير معروف؟"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "تحويل إلى متجهات"
22
22
  }
23
23
  },
24
+ "empty": "لا توجد ملفات/مجلدات تم تحميلها بعد",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "إنشاء مجلد جديد",
@@ -37,6 +38,7 @@
37
38
  "new": "إنشاء مكتبة معرفية جديدة",
38
39
  "title": "المكتبة المعرفية"
39
40
  },
41
+ "networkError": "فشل في الحصول على قاعدة المعرفة، يرجى التحقق من اتصال الشبكة ثم إعادة المحاولة",
40
42
  "notSupportGuide": {
41
43
  "desc": "الوضع الحالي للنشر هو وضع قاعدة بيانات العميل، ولا يمكن استخدام وظيفة إدارة الملفات. يرجى التبديل إلى <1>وضع نشر قاعدة بيانات الخادم</1>، أو استخدام <3>LobeChat Cloud</3> مباشرة.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Добре дошли в {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Приложението се стартира, моля, бъдете търпеливи...",
12
+ "appInitializing": "Приложението се стартира...",
13
13
  "autoGenerate": "Автоматично генериране",
14
14
  "autoGenerateTooltip": "Автоматично генериране на описание на агент въз основа на подкани",
15
15
  "autoGenerateTooltipDisabled": "Моля, попълнете подсказката, за да използвате функцията за автоматично допълване",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Подробности за грешката",
17
17
  "notFound": {
18
18
  "backHome": "Върни се в началото",
19
- "desc": "Не можем да намерим страницата, която търсите. Моля, проверете дали връзката е правилна.",
19
+ "check": "Моля, проверете дали URL адресът е правилен",
20
+ "desc": "Не можем да намерим страницата, която търсите",
20
21
  "title": "Влезли сте в неизвестна територия?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Векторизация"
22
22
  }
23
23
  },
24
+ "empty": "Няма качени файлове/папки",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Нова папка",
@@ -37,6 +38,7 @@
37
38
  "new": "Нова база знания",
38
39
  "title": "База знания"
39
40
  },
41
+ "networkError": "Неуспешно получаване на базата от знания, моля, проверете интернет връзката и опитайте отново",
40
42
  "notSupportGuide": {
41
43
  "desc": "Текущият инстанс е в режим на клиентска база данни и не поддържа функцията за управление на файлове. Моля, превключете на <1>режим на сървърна база данни</1> или използвайте директно <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Willkommen bei {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Die App wird gestartet, bitte haben Sie etwas Geduld...",
12
+ "appInitializing": "Anwendung wird gestartet...",
13
13
  "autoGenerate": "Automatisch generieren",
14
14
  "autoGenerateTooltip": "Assistentenbeschreibung automatisch auf Basis von Vorschlägen vervollständigen",
15
15
  "autoGenerateTooltipDisabled": "Bitte geben Sie einen Hinweis ein, um die automatische Vervollständigung zu aktivieren",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Fehlerdetails",
17
17
  "notFound": {
18
18
  "backHome": "Zurück zur Startseite",
19
- "desc": "Die von Ihnen gesuchte Seite konnte nicht gefunden werden. Bitte überprüfen Sie, ob der Link korrekt ist.",
19
+ "check": "Bitte überprüfen Sie, ob Ihre URL korrekt ist.",
20
+ "desc": "Die von Ihnen gesuchte Seite konnte nicht gefunden werden.",
20
21
  "title": "In unbekanntes Gebiet geraten?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vektorisierung"
22
22
  }
23
23
  },
24
+ "empty": "Keine hochgeladenen Dateien/Ordner vorhanden",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Neuen Ordner erstellen",
@@ -37,6 +38,7 @@
37
38
  "new": "Neue Wissensdatenbank",
38
39
  "title": "Wissensdatenbank"
39
40
  },
41
+ "networkError": "Fehler beim Abrufen der Wissensdatenbank. Bitte überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut.",
40
42
  "notSupportGuide": {
41
43
  "desc": "Die aktuelle Bereitstellung ist im Client-Datenbankmodus und unterstützt keine Dateiverwaltungsfunktionen. Bitte wechseln Sie zu <1>Server-Datenbank-Bereitstellungsmodus</1> oder verwenden Sie direkt <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Launch {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "The application is initializing, please wait for a moment...",
12
+ "appInitializing": "Application is starting...",
13
13
  "autoGenerate": "Auto Generate",
14
14
  "autoGenerateTooltip": "Auto-generate assistant description based on prompts",
15
15
  "autoGenerateTooltipDisabled": "Please enter a tooltip before using the autocomplete feature",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Error Details",
17
17
  "notFound": {
18
18
  "backHome": "Back to Home",
19
- "desc": "We couldn't find the page you're looking for, please check if the link is correct",
19
+ "check": "Please check if your URL is correct.",
20
+ "desc": "We couldn't find the page you were looking for.",
20
21
  "title": "Entered Unknown Territory?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "embedding"
22
22
  }
23
23
  },
24
+ "empty": "No files or folders have been uploaded yet.",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "New Folder",
@@ -37,6 +38,7 @@
37
38
  "new": "New Knowledge Base",
38
39
  "title": "Knowledge Base"
39
40
  },
41
+ "networkError": "Failed to retrieve the knowledge base. Please check your network connection and try again.",
40
42
  "notSupportGuide": {
41
43
  "desc": "The current deployment instance is in client database mode, and file management features are not available. Please switch to <1>server database deployment mode</1>, or use <3>LobeChat Cloud</3> directly.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bienvenido a {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Iniciando la aplicación, por favor espere...",
12
+ "appInitializing": "Iniciando la aplicación...",
13
13
  "autoGenerate": "Generación automática",
14
14
  "autoGenerateTooltip": "Completar automáticamente la descripción del asistente basándose en las sugerencias",
15
15
  "autoGenerateTooltipDisabled": "Por favor, complete la palabra clave antes de usar la función de autocompletar",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Detalles del error",
17
17
  "notFound": {
18
18
  "backHome": "Volver a la página de inicio",
19
- "desc": "No podemos encontrar la página que estás buscando, por favor verifica si el enlace es correcto",
19
+ "check": "Por favor, verifica si tu URL es correcta",
20
+ "desc": "No podemos encontrar la página que estás buscando",
20
21
  "title": "¿Has entrado en un área desconocida?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorización"
22
22
  }
23
23
  },
24
+ "empty": "No hay archivos/carpetas subidos aún",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nueva carpeta",
@@ -37,6 +38,7 @@
37
38
  "new": "Nueva base de conocimientos",
38
39
  "title": "Base de conocimientos"
39
40
  },
41
+ "networkError": "Error al obtener la base de conocimientos, por favor verifica la conexión a internet y vuelve a intentarlo",
40
42
  "notSupportGuide": {
41
43
  "desc": "La instancia de despliegue actual está en modo de base de datos cliente, no se puede utilizar la función de gestión de archivos. Por favor, cambia a <1>modo de despliegue de base de datos en servidor</1>, o utiliza directamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bienvenue à {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "L'application est en cours de démarrage, veuillez patienter...",
12
+ "appInitializing": "L'application est en cours de démarrage...",
13
13
  "autoGenerate": "Générer automatiquement",
14
14
  "autoGenerateTooltip": "Générer automatiquement la description de l'agent basée sur les suggestions",
15
15
  "autoGenerateTooltipDisabled": "Veuillez saisir un mot-clé avant d'activer la fonction de complétion automatique",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Détails de l'erreur",
17
17
  "notFound": {
18
18
  "backHome": "Retour à la page d'accueil",
19
- "desc": "La page que vous recherchez est introuvable. Veuillez vérifier si le lien est correct.",
19
+ "check": "Veuillez vérifier si votre URL est correcte",
20
+ "desc": "Nous n'avons pas pu trouver la page que vous recherchez.",
20
21
  "title": "Êtes-vous entré dans un domaine inconnu ?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorisation"
22
22
  }
23
23
  },
24
+ "empty": "Aucun fichier/dossier téléchargé pour le moment",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nouveau dossier",
@@ -37,6 +38,7 @@
37
38
  "new": "Nouvelle base de connaissances",
38
39
  "title": "Base de connaissances"
39
40
  },
41
+ "networkError": "Échec de l'accès à la base de connaissances, veuillez vérifier votre connexion réseau et réessayer",
40
42
  "notSupportGuide": {
41
43
  "desc": "L'instance déployée actuellement est en mode base de données client, la fonction de gestion des fichiers n'est pas disponible. Veuillez passer en <1>mode de déploiement de base de données serveur</1>, ou utilisez directement <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Benvenuto a {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inizializzazione dell'app in corso, attendere pazientemente...",
12
+ "appInitializing": "Applicazione in fase di avvio...",
13
13
  "autoGenerate": "Generazione automatica",
14
14
  "autoGenerateTooltip": "Completamento automatico basato su suggerimenti",
15
15
  "autoGenerateTooltipDisabled": "Si prega di compilare il campo suggerimento per abilitare la funzione di completamento automatico",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Dettagli dell'errore",
17
17
  "notFound": {
18
18
  "backHome": "Torna alla homepage",
19
- "desc": "Non riusciamo a trovare la pagina che stai cercando, controlla che il link sia corretto",
19
+ "check": "Controlla se l'URL è corretto",
20
+ "desc": "Non siamo riusciti a trovare la pagina che stai cercando",
20
21
  "title": "Hai raggiunto un territorio sconosciuto?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vettorizzazione"
22
22
  }
23
23
  },
24
+ "empty": "Nessun file/cartella caricato",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nuova cartella",
@@ -37,6 +38,7 @@
37
38
  "new": "Nuova knowledge base",
38
39
  "title": "Knowledge Base"
39
40
  },
41
+ "networkError": "Impossibile ottenere la knowledge base, controlla la connessione di rete e riprova",
40
42
  "notSupportGuide": {
41
43
  "desc": "L'istanza attuale è in modalità database client e non supporta la gestione dei file. Passa a <1>modalità di distribuzione del database server</1>, oppure utilizza direttamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "{{name}} を体験してみてください"
10
10
  }
11
11
  },
12
- "appInitializing": "アプリケーションを初期化しています。しばらくお待ちください...",
12
+ "appInitializing": "アプリケーションを初期化しています...",
13
13
  "autoGenerate": "自動生成",
14
14
  "autoGenerateTooltip": "ヒントに基づいてエージェントの説明を自動生成します",
15
15
  "autoGenerateTooltipDisabled": "ツールチップを入力してから自動生成機能を使用してください",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "エラーの詳細",
17
17
  "notFound": {
18
18
  "backHome": "ホームに戻る",
19
- "desc": "お探しのページが見つかりません。リンクが正しいかどうかをご確認ください",
19
+ "check": "URLが正しいかどうかを確認してください",
20
+ "desc": "お探しのページが見つかりませんでした",
20
21
  "title": "未知の領域に入りましたか?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "ベクトル化"
22
22
  }
23
23
  },
24
+ "empty": "アップロードされたファイル/フォルダーはありません",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "新しいフォルダーを作成",
@@ -37,6 +38,7 @@
37
38
  "new": "新しい知識ベース",
38
39
  "title": "知識ベース"
39
40
  },
41
+ "networkError": "知識ベースの取得に失敗しました。ネットワーク接続を確認してから再試行してください",
40
42
  "notSupportGuide": {
41
43
  "desc": "現在のデプロイメントインスタンスはクライアントデータベースモードであり、ファイル管理機能を使用できません。<1>サーバーデータベースデプロイメントモード</1>に切り替えるか、直接 <3>LobeChat Cloud</3> を使用してください。",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "환영합니다 {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "앱을 시작하는 중입니다. 잠시 기다려주세요...",
12
+ "appInitializing": " 초기화 중...",
13
13
  "autoGenerate": "자동 생성",
14
14
  "autoGenerateTooltip": "힌트 단어를 기반으로 에이전트 설명을 자동으로 완성합니다",
15
15
  "autoGenerateTooltipDisabled": "자동 완성 기능을 사용하려면 툴팁을 입력하십시오",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "오류 상세",
17
17
  "notFound": {
18
18
  "backHome": "홈페이지로 돌아가기",
19
- "desc": "찾고 있는 페이지를 찾을 수 없습니다. 링크가 올바른지 확인해주세요.",
19
+ "check": "URL이 올바른지 확인해 주세요.",
20
+ "desc": "찾고 있는 페이지를 찾을 수 없습니다.",
20
21
  "title": "알 수 없는 영역에 들어갔나요?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "벡터화"
22
22
  }
23
23
  },
24
+ "empty": "업로드된 파일/폴더가 없습니다.",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "새 폴더 만들기",
@@ -37,6 +38,7 @@
37
38
  "new": "새 지식 베이스 만들기",
38
39
  "title": "지식 베이스"
39
40
  },
41
+ "networkError": "지식베이스를 가져오는 데 실패했습니다. 네트워크 연결을 확인한 후 다시 시도해 주세요.",
40
42
  "notSupportGuide": {
41
43
  "desc": "현재 배포된 인스턴스는 클라이언트 데이터베이스 모드로, 파일 관리 기능을 사용할 수 없습니다. <1>서버 데이터베이스 배포 모드</1>로 전환하거나 직접 <3>LobeChat Cloud</3>를 사용하세요.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Welkom bij {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Applicatie wordt gestart, gelieve geduld te hebben...",
12
+ "appInitializing": "Applicatie wordt gestart...",
13
13
  "autoGenerate": "Automatisch genereren",
14
14
  "autoGenerateTooltip": "Automatisch assistentbeschrijving genereren op basis van suggesties",
15
15
  "autoGenerateTooltipDisabled": "Schakel de automatische aanvulling in nadat u een suggestiewoord heeft ingevoerd",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Foutdetails",
17
17
  "notFound": {
18
18
  "backHome": "Terug naar startpagina",
19
- "desc": "We kunnen de pagina die je zoekt niet vinden, controleer of de link juist is",
19
+ "check": "Controleer of je URL correct is",
20
+ "desc": "We kunnen de pagina die je zoekt niet vinden",
20
21
  "title": "Betreden onbekend terrein?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorisatie"
22
22
  }
23
23
  },
24
+ "empty": "Geen bestanden/mappen geüpload",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nieuwe map",
@@ -37,6 +38,7 @@
37
38
  "new": "Nieuwe kennisbank",
38
39
  "title": "Kennisbank"
39
40
  },
41
+ "networkError": "Kon de kennisbank niet ophalen, controleer uw netwerkverbinding en probeer het opnieuw",
40
42
  "notSupportGuide": {
41
43
  "desc": "De huidige implementatie is in client-database modus, waardoor de bestandsbeheerfunctie niet beschikbaar is. Schakel over naar <1>server-database implementatiemodus</1>, of gebruik direct <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Witaj w {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inicjowanie aplikacji, prosimy o cierpliwość...",
12
+ "appInitializing": "Aplikacja uruchamia się...",
13
13
  "autoGenerate": "Automatyczne generowanie",
14
14
  "autoGenerateTooltip": "Automatyczne uzupełnianie opisu asystenta na podstawie sugestii",
15
15
  "autoGenerateTooltipDisabled": "Proszę wprowadzić słowo kluczowe przed użyciem funkcji automatycznego uzupełniania",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Szczegóły błędu",
17
17
  "notFound": {
18
18
  "backHome": "Powrót do strony głównej",
19
- "desc": "Nie możemy odnaleźć strony, której szukasz. Sprawdź, czy link jest poprawny.",
19
+ "check": "Proszę sprawdzić, czy Twój adres URL jest poprawny",
20
+ "desc": "Nie możemy znaleźć strony, której szukasz",
20
21
  "title": "Wkraczasz w nieznane terytorium?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Indeksowanie"
22
22
  }
23
23
  },
24
+ "empty": "Brak przesłanych plików/folderów",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nowy folder",
@@ -37,6 +38,7 @@
37
38
  "new": "Nowa baza wiedzy",
38
39
  "title": "Baza wiedzy"
39
40
  },
41
+ "networkError": "Nie udało się uzyskać dostępu do bazy wiedzy, proszę sprawdzić połączenie sieciowe i spróbować ponownie",
40
42
  "notSupportGuide": {
41
43
  "desc": "Obecna instancja wdrożeniowa jest w trybie bazy danych klienta, co uniemożliwia korzystanie z funkcji zarządzania plikami. Proszę przełączyć się na <1>tryb wdrożenia bazy danych serwera</1> lub bezpośrednio korzystać z <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bem-vindo para experimentar {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inicializando o aplicativo, por favor, aguarde...",
12
+ "appInitializing": "Aplicativo iniciando...",
13
13
  "autoGenerate": "Auto completar",
14
14
  "autoGenerateTooltip": "Auto completar descrição do assistente com base em sugestões",
15
15
  "autoGenerateTooltipDisabled": "Por favor, preencha a dica antes de usar a função de preenchimento automático",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Detalhes do erro",
17
17
  "notFound": {
18
18
  "backHome": "Voltar para a página inicial",
19
- "desc": "Não conseguimos encontrar a página que você está procurando, por favor, verifique se o link está correto",
19
+ "check": "Por favor, verifique se a sua URL está correta",
20
+ "desc": "Não conseguimos encontrar a página que você está procurando",
20
21
  "title": "Entrou em um território desconhecido?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vetorização"
22
22
  }
23
23
  },
24
+ "empty": "Nenhum arquivo/pasta enviado até o momento",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nova pasta",
@@ -37,6 +38,7 @@
37
38
  "new": "Novo repositório de conhecimento",
38
39
  "title": "Repositório de conhecimento"
39
40
  },
41
+ "networkError": "Falha ao acessar a base de conhecimento, por favor verifique a conexão de rede e tente novamente",
40
42
  "notSupportGuide": {
41
43
  "desc": "A instância atual está no modo de banco de dados cliente e não pode usar a funcionalidade de gerenciamento de arquivos. Por favor, mude para <1>modo de banco de dados servidor</1>, ou use diretamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Добро пожаловать в {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Приложение запускается, пожалуйста, подождите...",
12
+ "appInitializing": "Приложение запускается...",
13
13
  "autoGenerate": "Автозаполнение",
14
14
  "autoGenerateTooltip": "Автоматическое дополнение описания агента на основе подсказок",
15
15
  "autoGenerateTooltipDisabled": "Пожалуйста, введите подсказку перед использованием функции автозаполнения",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Подробности ошибки",
17
17
  "notFound": {
18
18
  "backHome": "Вернуться на главную",
19
- "desc": "Мы не можем найти страницу, которую вы ищете. Пожалуйста, проверьте правильность ссылки",
19
+ "check": "Пожалуйста, проверьте, правильный ли ваш URL",
20
+ "desc": "Мы не можем найти страницу, которую вы ищете",
20
21
  "title": "Заблудились в неизведанных местах?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Векторизация"
22
22
  }
23
23
  },
24
+ "empty": "Нет загруженных файлов/папок",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Создать папку",
@@ -37,6 +38,7 @@
37
38
  "new": "Создать базу знаний",
38
39
  "title": "База знаний"
39
40
  },
41
+ "networkError": "Не удалось получить базу знаний, пожалуйста, проверьте сетевое соединение и попробуйте снова",
40
42
  "notSupportGuide": {
41
43
  "desc": "Текущий развертываемый экземпляр находится в режиме клиентской базы данных, функции управления файлами недоступны. Пожалуйста, переключитесь на <1>режим серверной базы данных</1> или используйте <3>LobeChat Cloud</3> напрямую.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "{{name}}'i Denemek İçin Hoş Geldiniz"
10
10
  }
11
11
  },
12
- "appInitializing": "Uygulama başlatılıyor, lütfen bekleyin...",
12
+ "appInitializing": "Uygulama başlatılıyor...",
13
13
  "autoGenerate": "Otomatik Oluştur",
14
14
  "autoGenerateTooltip": "Auto-generate agent description based on prompts",
15
15
  "autoGenerateTooltipDisabled": "Otomatik tamamlama işlevini kullanmadan önce ipucu kelimesini girin",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Hata detayı",
17
17
  "notFound": {
18
18
  "backHome": "Ana Sayfaya Dön",
19
- "desc": "Aradığınız sayfayı bulamadık, lütfen bağlantının doğru olduğundan emin olun",
19
+ "check": "Lütfen URL'nizin doğru olduğundan emin olun",
20
+ "desc": "Aradığınız sayfa bulunamadı",
20
21
  "title": "Bilinmeyen bir alana mı girdiniz?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vektörleştirme"
22
22
  }
23
23
  },
24
+ "empty": "Henüz yüklenmiş dosya/klasör yok",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Yeni Klasör",
@@ -37,6 +38,7 @@
37
38
  "new": "Yeni Bilgi Tabanı",
38
39
  "title": "Bilgi Tabanı"
39
40
  },
41
+ "networkError": "Bilgi bankası alınamadı, lütfen ağ bağlantınızı kontrol edip tekrar deneyin",
40
42
  "notSupportGuide": {
41
43
  "desc": "Mevcut dağıtım örneği istemci veritabanı modunda, dosya yönetim işlevini kullanamazsınız. Lütfen <1>sunucu veritabanı dağıtım moduna</1> geçin veya doğrudan <3>LobeChat Cloud</3> kullanın.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Chào mừng bạn trải nghiệm {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Ứng dụng đang khởi động, vui lòng chờ...",
12
+ "appInitializing": "Đang khởi động ứng dụng...",
13
13
  "autoGenerate": "Tự động tạo",
14
14
  "autoGenerateTooltip": "Tự động hoàn thành mô tả trợ lý dựa trên từ gợi ý",
15
15
  "autoGenerateTooltipDisabled": "Vui lòng nhập từ gợi ý trước khi sử dụng tính năng tự động hoàn thành",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Chi tiết lỗi",
17
17
  "notFound": {
18
18
  "backHome": "Quay về Trang chủ",
19
- "desc": "Chúng tôi không thể tìm thấy trang bạn đang tìm, vui lòng kiểm tra xem liên kết có đúng không",
19
+ "check": "Vui lòng kiểm tra xem URL của bạn có đúng không",
20
+ "desc": "Chúng tôi không thể tìm thấy trang bạn đang tìm kiếm",
20
21
  "title": "Bước vào vùng đất chưa biết?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Trạng thái vector hóa"
22
22
  }
23
23
  },
24
+ "empty": "Chưa có tệp/tệp tin nào được tải lên",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Tạo thư mục mới",
@@ -37,6 +38,7 @@
37
38
  "new": "Tạo kho tri thức mới",
38
39
  "title": "Kho tri thức"
39
40
  },
41
+ "networkError": "Không thể lấy kho tri thức, vui lòng kiểm tra kết nối mạng và thử lại",
40
42
  "notSupportGuide": {
41
43
  "desc": "Phiên bản triển khai hiện tại là chế độ cơ sở dữ liệu khách hàng, không thể sử dụng chức năng quản lý tệp. Vui lòng chuyển sang <1>chế độ triển khai cơ sở dữ liệu máy chủ</1>, hoặc sử dụng trực tiếp <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "{{name}} 开始公测"
10
10
  }
11
11
  },
12
- "appInitializing": "应用启动中,请耐心等待...",
12
+ "appInitializing": "应用启动中...",
13
13
  "autoGenerate": "自动补全",
14
14
  "autoGenerateTooltip": "基于提示词自动补全助手描述",
15
15
  "autoGenerateTooltipDisabled": "请填写提示词后使用自动补全功能",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "错误详情",
17
17
  "notFound": {
18
18
  "backHome": "返回首页",
19
- "desc": "我们找不到你正在寻找的页面,请检查链接是否正确",
19
+ "check": "请检查你的 URL 是否正确",
20
+ "desc": "我们找不到你寻找的页面",
20
21
  "title": "进入了未知领域?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "向量化"
22
22
  }
23
23
  },
24
+ "empty": "暂无已上传文件/文件夹",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "新建文件夹",
@@ -37,6 +38,7 @@
37
38
  "new": "新建知识库",
38
39
  "title": "知识库"
39
40
  },
41
+ "networkError": "获取知识库失败,请检测网络连接后重试",
40
42
  "notSupportGuide": {
41
43
  "desc": "当前部署实例为客户端数据库模式,无法使用文件管理功能。请切换到<1>服务端数据库部署模式</1>,或直接使用 <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "歡迎體驗 {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "應用程式初始化中,請耐心等候...",
12
+ "appInitializing": "應用啟動中...",
13
13
  "autoGenerate": "自動生成",
14
14
  "autoGenerateTooltip": "基於提示詞自動生成助手描述",
15
15
  "autoGenerateTooltipDisabled": "請填寫提示詞後使用自動補全功能",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "錯誤詳情",
17
17
  "notFound": {
18
18
  "backHome": "返回首頁",
19
- "desc": "我們找不到您正在尋找的頁面,請檢查連結是否正確",
19
+ "check": "請檢查你的 URL 是否正確",
20
+ "desc": "我們找不到您尋找的頁面",
20
21
  "title": "進入了未知領域?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "向量化"
22
22
  }
23
23
  },
24
+ "empty": "暫無已上傳文件/文件夾",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "新建資料夾",
@@ -37,6 +38,7 @@
37
38
  "new": "新建知識庫",
38
39
  "title": "知識庫"
39
40
  },
41
+ "networkError": "獲取知識庫失敗,請檢查網路連接後重試",
40
42
  "notSupportGuide": {
41
43
  "desc": "當前部署實例為客戶端資料庫模式,無法使用檔案管理功能。請切換到<1>伺服器端資料庫部署模式</1>,或直接使用 <3>LobeChat Cloud</3>",
42
44
  "features": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.16.3",
3
+ "version": "1.16.5",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",
@@ -111,7 +111,7 @@
111
111
  "@cfworker/json-schema": "^2.0.0",
112
112
  "@clerk/localizations": "2.0.0",
113
113
  "@clerk/nextjs": "^5.3.3",
114
- "@clerk/themes": "^2.1.21",
114
+ "@clerk/themes": "^2.1.27",
115
115
  "@cyntler/react-doc-viewer": "^1.16.6",
116
116
  "@google/generative-ai": "^0.16.0",
117
117
  "@icons-pack/react-simple-icons": "9.6.0",
@@ -119,9 +119,9 @@
119
119
  "@langchain/community": "^0.2.31",
120
120
  "@lobehub/chat-plugin-sdk": "^1.32.4",
121
121
  "@lobehub/chat-plugins-gateway": "^1.9.0",
122
- "@lobehub/icons": "^1.30.0",
122
+ "@lobehub/icons": "^1.33.3",
123
123
  "@lobehub/tts": "^1.24.3",
124
- "@lobehub/ui": "^1.150.2",
124
+ "@lobehub/ui": "^1.150.3",
125
125
  "@neondatabase/serverless": "^0.9.4",
126
126
  "@next/third-parties": "^14.2.6",
127
127
  "@react-spring/web": "^9.7.3",
@@ -64,7 +64,10 @@ const FileItem = memo<FileItemProps>(({ id, onRemove, file, status, uploadState,
64
64
  e.stopPropagation();
65
65
  onRemove?.();
66
66
  }}
67
- size={'small'}
67
+ style={{
68
+ blockSize: '32px',
69
+ fontSize: '20px',
70
+ }}
68
71
  />
69
72
  </Flexbox>
70
73
  );
@@ -56,7 +56,10 @@ const FileItem = memo<FileItemProps>(({ alt, onRemove, src, loading }) => {
56
56
  e.stopPropagation();
57
57
  onRemove?.();
58
58
  }}
59
- size={'small'}
59
+ style={{
60
+ blockSize: '28px',
61
+ fontSize: '20px',
62
+ }}
60
63
  />
61
64
  }
62
65
  alt={alt || ''}
@@ -14,7 +14,9 @@ export default () => {
14
14
  <div>
15
15
  <Icon icon={LoaderCircle} size={'large'} spin />
16
16
  </div>
17
- <Typography.Text type={'secondary'}>{t('loading')}</Typography.Text>
17
+ <Typography.Text style={{ letterSpacing: '0.1em' }} type={'secondary'}>
18
+ {t('loading')}
19
+ </Typography.Text>
18
20
  </Flexbox>
19
21
  </Center>
20
22
  );
@@ -30,7 +30,11 @@ const NotFound = memo(() => {
30
30
  <h2 style={{ fontWeight: 'bold', marginTop: '1em', textAlign: 'center' }}>
31
31
  {t('notFound.title')}
32
32
  </h2>
33
- <p style={{ marginBottom: '2em' }}>{t('notFound.desc')}</p>
33
+ <p style={{ lineHeight: '1.8', marginBottom: '2em' }}>
34
+ {t('notFound.desc')}
35
+ <br />
36
+ <div style={{ textAlign: 'center' }}>{t('notFound.check')}</div>
37
+ </p>
34
38
  <Link href="/">
35
39
  <Button type={'primary'}>{t('notFound.backHome')}</Button>
36
40
  </Link>
@@ -14,7 +14,9 @@ export default () => {
14
14
  <div>
15
15
  <Icon icon={LoaderCircle} size={'large'} spin />
16
16
  </div>
17
- <Typography.Text type={'secondary'}>{t('loading')}</Typography.Text>
17
+ <Typography.Text style={{ letterSpacing: '0.1em' }} type={'secondary'}>
18
+ {t('loading')}
19
+ </Typography.Text>
18
20
  </Flexbox>
19
21
  </Center>
20
22
  );
@@ -10,8 +10,12 @@ const FullscreenLoading = memo<{ title?: string }>(({ title }) => {
10
10
  <Flexbox height={'100%'} style={{ userSelect: 'none' }} width={'100%'}>
11
11
  <Center flex={1} gap={12} width={'100%'}>
12
12
  <ProductLogo size={48} type={'combine'} />
13
- <Center gap={16} horizontal>
14
- <Icon icon={Loader2} spin />
13
+ <Center
14
+ gap={16}
15
+ horizontal
16
+ style={{ fontSize: '16px', lineHeight: '1.5', marginTop: '2%' }}
17
+ >
18
+ <Icon icon={Loader2} spin style={{ fontSize: '16px' }} />
15
19
  {title}
16
20
  </Center>
17
21
  </Center>
@@ -102,7 +102,7 @@ const Ai360: ModelProviderCard = {
102
102
  disableBrowserRequest: true,
103
103
  id: 'ai360',
104
104
  modelList: { showModelFetcher: true },
105
- name: '360智脑',
105
+ name: '360 AI',
106
106
  };
107
107
 
108
108
  export default Ai360;
@@ -48,6 +48,10 @@ const Baichuan: ModelProviderCard = {
48
48
  id: 'baichuan',
49
49
  modelList: { showModelFetcher: true },
50
50
  name: 'Baichuan',
51
+ smoothing: {
52
+ speed: 2,
53
+ text: true,
54
+ },
51
55
  };
52
56
 
53
57
  export default Baichuan;
@@ -43,6 +43,10 @@ const Minimax: ModelProviderCard = {
43
43
  checkModel: 'abab6.5s-chat',
44
44
  id: 'minimax',
45
45
  name: 'Minimax',
46
+ smoothing: {
47
+ speed: 2,
48
+ text: true,
49
+ },
46
50
  };
47
51
 
48
52
  export default Minimax;
@@ -28,6 +28,10 @@ const Moonshot: ModelProviderCard = {
28
28
  checkModel: 'moonshot-v1-8k',
29
29
  id: 'moonshot',
30
30
  name: 'Moonshot',
31
+ smoothing: {
32
+ speed: 2,
33
+ text: true,
34
+ },
31
35
  };
32
36
 
33
37
  export default Moonshot;
@@ -108,6 +108,10 @@ const Qwen: ModelProviderCard = {
108
108
  id: 'qwen',
109
109
  modelList: { showModelFetcher: true },
110
110
  name: 'Qwen',
111
+ smoothing: {
112
+ speed: 2,
113
+ text: true,
114
+ },
111
115
  };
112
116
 
113
117
  export default Qwen;
@@ -54,6 +54,10 @@ const Spark: ModelProviderCard = {
54
54
  id: 'spark',
55
55
  modelList: { showModelFetcher: true },
56
56
  name: 'Spark',
57
+ smoothing: {
58
+ speed: 2,
59
+ text: true,
60
+ },
57
61
  };
58
62
 
59
63
  export default Spark;
@@ -60,7 +60,7 @@ const Stepfun: ModelProviderCard = {
60
60
  disableBrowserRequest: true,
61
61
  id: 'stepfun',
62
62
  modelList: { showModelFetcher: true },
63
- name: '阶跃星辰',
63
+ name: 'Stepfun',
64
64
  smoothing: {
65
65
  speed: 2,
66
66
  text: true,
@@ -32,7 +32,7 @@ const FileUpload = memo(() => {
32
32
  const items: MenuProps['items'] = [
33
33
  {
34
34
  disabled: !canUploadImage,
35
- icon: <Icon icon={ImageUp} />,
35
+ icon: <Icon icon={ImageUp} style={{ fontSize: '16px' }} />,
36
36
  key: 'upload-image',
37
37
  label: canUploadImage ? (
38
38
  <Upload
@@ -54,7 +54,7 @@ const FileUpload = memo(() => {
54
54
  ),
55
55
  },
56
56
  {
57
- icon: <Icon icon={FileUp} />,
57
+ icon: <Icon icon={FileUp} style={{ fontSize: '16px' }} />,
58
58
  key: 'upload-file',
59
59
  label: (
60
60
  <Upload
@@ -73,7 +73,7 @@ const FileUpload = memo(() => {
73
73
  ),
74
74
  },
75
75
  {
76
- icon: <Icon icon={FolderUp} />,
76
+ icon: <Icon icon={FolderUp} style={{ fontSize: '16px' }} />,
77
77
  key: 'upload-folder',
78
78
  label: (
79
79
  <Upload
@@ -12,7 +12,7 @@ import Item from './Item';
12
12
  import Loading from './Loading';
13
13
 
14
14
  export const List = memo(() => {
15
- const { t } = useTranslation('plugin');
15
+ const { t } = useTranslation('file');
16
16
 
17
17
  const useFetchFilesAndKnowledgeBases = useAgentStore((s) => s.useFetchFilesAndKnowledgeBases);
18
18
 
@@ -27,10 +27,10 @@ export const List = memo(() => {
27
27
  {error ? (
28
28
  <>
29
29
  <Icon icon={ServerCrash} size={{ fontSize: 80 }} />
30
- {t('store.networkError')}
30
+ {t('networkError')}
31
31
  </>
32
32
  ) : (
33
- <Empty description={t('store.empty')} image={Empty.PRESENTED_IMAGE_SIMPLE} />
33
+ <Empty description={t('empty')} image={Empty.PRESENTED_IMAGE_SIMPLE} />
34
34
  )}
35
35
  </Center>
36
36
  ) : (
@@ -10,7 +10,7 @@ export default {
10
10
  title: '{{name}} 开始公测',
11
11
  },
12
12
  },
13
- appInitializing: '应用启动中,请耐心等待...',
13
+ appInitializing: '应用启动中...',
14
14
  autoGenerate: '自动补全',
15
15
  autoGenerateTooltip: '基于提示词自动补全助手描述',
16
16
  autoGenerateTooltipDisabled: '请填写提示词后使用自动补全功能',
@@ -16,7 +16,8 @@ export default {
16
16
  fetchErrorDetail: '错误详情',
17
17
  notFound: {
18
18
  backHome: '返回首页',
19
- desc: '我们找不到你正在寻找的页面,请检查链接是否正确',
19
+ check: '请检查你的 URL 是否正确',
20
+ desc: '我们找不到你寻找的页面',
20
21
  title: '进入了未知领域?',
21
22
  },
22
23
  pluginSettings: {
@@ -21,6 +21,7 @@ export default {
21
21
  embeddingStatus: '向量化',
22
22
  },
23
23
  },
24
+ empty: '暂无已上传文件/文件夹',
24
25
  header: {
25
26
  actions: {
26
27
  newFolder: '新建文件夹',
@@ -38,6 +39,7 @@ export default {
38
39
  new: '新建知识库',
39
40
  title: '知识库',
40
41
  },
42
+ networkError: '获取知识库失败,请检测网络连接后重试',
41
43
  notSupportGuide: {
42
44
  desc: '当前部署实例为客户端数据库模式,无法使用文件管理功能。请切换到<1>服务端数据库部署模式</1>,或直接使用 <3>LobeChat Cloud</3>',
43
45
  features: {