@lobehub/chat 0.162.23 → 0.162.25

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 (54) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docs/self-hosting/platform/zeabur.mdx +1 -1
  5. package/docs/self-hosting/platform/zeabur.zh-CN.mdx +1 -1
  6. package/locales/ar/common.json +28 -1
  7. package/locales/bg-BG/common.json +28 -1
  8. package/locales/de-DE/common.json +28 -1
  9. package/locales/en-US/common.json +28 -1
  10. package/locales/es-ES/common.json +28 -1
  11. package/locales/fr-FR/common.json +28 -1
  12. package/locales/it-IT/common.json +28 -1
  13. package/locales/ja-JP/common.json +28 -1
  14. package/locales/ko-KR/common.json +28 -1
  15. package/locales/nl-NL/common.json +28 -1
  16. package/locales/pl-PL/common.json +28 -1
  17. package/locales/pt-BR/common.json +28 -1
  18. package/locales/ru-RU/common.json +28 -1
  19. package/locales/tr-TR/common.json +28 -1
  20. package/locales/vi-VN/common.json +28 -1
  21. package/locales/zh-CN/common.json +28 -1
  22. package/locales/zh-TW/common.json +28 -1
  23. package/package.json +2 -2
  24. package/src/app/(main)/settings/@category/default.tsx +1 -2
  25. package/src/app/(main)/settings/_layout/Desktop/index.tsx +4 -1
  26. package/src/app/(main)/settings/_layout/Mobile/index.tsx +7 -1
  27. package/src/app/(main)/settings/about/features/AboutList.tsx +13 -120
  28. package/src/app/(main)/settings/about/features/Analytics.tsx +1 -1
  29. package/src/app/(main)/settings/about/features/ItemCard.tsx +45 -0
  30. package/src/app/(main)/settings/about/features/ItemLink.tsx +32 -0
  31. package/src/app/(main)/settings/about/features/Version.tsx +75 -0
  32. package/src/app/(main)/settings/about/index.tsx +118 -25
  33. package/src/app/(main)/settings/features/Footer.tsx +80 -10
  34. package/src/app/(main)/settings/llm/components/Footer.tsx +14 -5
  35. package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +11 -1
  36. package/src/app/(main)/settings/llm/index.tsx +3 -0
  37. package/src/app/(main)/settings/system-agent/page.tsx +11 -11
  38. package/src/app/@modal/_layout/SettingModalLayout.tsx +4 -2
  39. package/src/app/api/middleware/auth/index.ts +1 -1
  40. package/src/components/GuideModal/index.tsx +77 -0
  41. package/src/components/GuideVideo/index.tsx +30 -0
  42. package/src/const/url.ts +6 -1
  43. package/src/features/AgentSetting/AgentModal/index.tsx +6 -7
  44. package/src/features/Conversation/Error/OllamaBizError/SetupGuide.tsx +177 -173
  45. package/src/features/Conversation/Error/style.tsx +56 -31
  46. package/src/features/User/UserPanel/useMenu.tsx +2 -2
  47. package/src/locales/default/common.ts +27 -2
  48. package/src/services/ollama.ts +2 -2
  49. package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +201 -0
  50. package/src/store/user/slices/modelList/selectors/keyVaults.ts +15 -3
  51. package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +29 -1
  52. package/src/store/user/slices/modelList/selectors/modelConfig.ts +21 -1
  53. package/src/types/user/settings/keyVaults.ts +1 -1
  54. package/src/app/(main)/settings/about/features/Item.tsx +0 -50
package/CHANGELOG.md CHANGED
@@ -2,6 +2,57 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.162.25](https://github.com/lobehub/lobe-chat/compare/v0.162.24...v0.162.25)
6
+
7
+ <sup>Released on **2024-06-16**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix issues for client fetch.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix issues for client fetch, closes [#2753](https://github.com/lobehub/lobe-chat/issues/2753) ([6f5be5d](https://github.com/lobehub/lobe-chat/commit/6f5be5d))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ### [Version 0.162.24](https://github.com/lobehub/lobe-chat/compare/v0.162.23...v0.162.24)
31
+
32
+ <sup>Released on **2024-06-14**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Update error card style, Update settings footer style and about page.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Update error card style, closes [#2868](https://github.com/lobehub/lobe-chat/issues/2868) ([a9d678b](https://github.com/lobehub/lobe-chat/commit/a9d678b))
46
+ - **misc**: Update settings footer style and about page, closes [#2846](https://github.com/lobehub/lobe-chat/issues/2846) ([d815109](https://github.com/lobehub/lobe-chat/commit/d815109))
47
+
48
+ </details>
49
+
50
+ <div align="right">
51
+
52
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
53
+
54
+ </div>
55
+
5
56
  ### [Version 0.162.23](https://github.com/lobehub/lobe-chat/compare/v0.162.22...v0.162.23)
6
57
 
7
58
  <sup>Released on **2024-06-12**</sup>
package/README.md CHANGED
@@ -263,14 +263,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
263
263
 
264
264
  <!-- AGENT LIST -->
265
265
 
266
- | Recent Submits | Description |
267
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
268
- | [Mr. MySQL](https://chat-preview.lobehub.com/market?agent=mysql-haoteacher)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-09**</sup> | Mr. MySQL is a great teacher to help everyone learn MySQL<br/>`mysql` `programming` `learning` |
269
- | [Popular Science Writing Assistant](https://chat-preview.lobehub.com/market?agent=popular-science-writer)<br/><sup>By **[ShinChven](https://github.com/ShinChven)** on **2024-06-08**</sup> | The popular science writing assistant uses everyday language to explain scientific concepts, tells stories, uses examples and metaphors to spark interest, and emphasizes importance.<br/>`science-writing` `science-popularization` `creative-expression` |
270
- | [Expert Response to Reviewer](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | Specializing in natural academic editing, assisting authors in responding to reviewer comments in a scientific, courteous, and point-by-point manner.<br/>`academic-editing` `response-to-reviewer-comments` `scientific-writing` |
271
- | [Translation of Novels: English to Chinese](https://chat-preview.lobehub.com/market?agent=noveltranslation)<br/><sup>By **[xbtachlb](https://github.com/xbtachlb)** on **2024-06-03**</sup> | Secondary translation of novels<br/>`translation` |
272
-
273
- > 📊 Total agents: [<kbd>**287**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
266
+ | Recent Submits | Description |
267
+ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
268
+ | [Pseudo Code Prompt Word Generator Expert](https://chat-preview.lobehub.com/market?agent=pseudocode-prompt-master)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-16**</sup> | Pseudo Code Prompt Word Generator Expert allows users to directly input prompt word design requirements and returns designed pseudo code prompt words directly.<br/>`prompt` `prompt-word` `pseudo-code` |
269
+ | [Mr. MySQL](https://chat-preview.lobehub.com/market?agent=mysql-haoteacher)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-09**</sup> | Mr. MySQL is a great teacher to help everyone learn MySQL<br/>`mysql` `programming` `learning` |
270
+ | [Popular Science Writing Assistant](https://chat-preview.lobehub.com/market?agent=popular-science-writer)<br/><sup>By **[ShinChven](https://github.com/ShinChven)** on **2024-06-08**</sup> | The popular science writing assistant uses everyday language to explain scientific concepts, tells stories, uses examples and metaphors to spark interest, and emphasizes importance.<br/>`science-writing` `science-popularization` `creative-expression` |
271
+ | [Expert Response to Reviewer](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | Specializing in natural academic editing, assisting authors in responding to reviewer comments in a scientific, courteous, and point-by-point manner.<br/>`academic-editing` `response-to-reviewer-comments` `scientific-writing` |
272
+
273
+ > 📊 Total agents: [<kbd>**288**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
274
274
 
275
275
  <!-- AGENT LIST -->
276
276
 
package/README.zh-CN.md CHANGED
@@ -251,14 +251,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
251
251
 
252
252
  <!-- AGENT LIST -->
253
253
 
254
- | 最近新增 | 助手说明 |
255
- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
256
- | [Mysql 好先生](https://chat-preview.lobehub.com/market?agent=mysql-haoteacher)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-09**</sup> | mysql 好先生是帮助所有人学习 mysql 的好老师<br/>`mysql` `编程` `学习` |
257
- | [通俗科普创作助手](https://chat-preview.lobehub.com/market?agent=popular-science-writer)<br/><sup>By **[ShinChven](https://github.com/ShinChven)** on **2024-06-08**</sup> | 通俗科普创作助手,用生活化语言讲科学概念,讲故事、使用例子和比喻,激发兴趣,强调重要性。<br/>`科普写作` `科学普及` `创意表达` |
258
- | [审稿回复专家](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | 擅长自然学术编辑,协助作者回复审稿人意见,科学、礼貌、逐点回应。<br/>`学术编辑` `审稿意见回复` `科学写作` |
259
- | [小说翻译 英译中](https://chat-preview.lobehub.com/market?agent=noveltranslation)<br/><sup>By **[xbtachlb](https://github.com/xbtachlb)** on **2024-06-03**</sup> | 小说二次翻译<br/>`翻译` |
260
-
261
- > 📊 Total agents: [<kbd>**287**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
254
+ | 最近新增 | 助手说明 |
255
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------- |
256
+ | [伪代码提示词生成专家](https://chat-preview.lobehub.com/market?agent=pseudocode-prompt-master)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-16**</sup> | 伪代码提示词生成专家,用户直接输入提示词设计需求,直接返还设计的伪代码提示词<br/>`prompt` `提示词` `伪代码` |
257
+ | [Mysql 好先生](https://chat-preview.lobehub.com/market?agent=mysql-haoteacher)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-06-09**</sup> | mysql 好先生是帮助所有人学习 mysql 的好老师<br/>`mysql` `编程` `学习` |
258
+ | [通俗科普创作助手](https://chat-preview.lobehub.com/market?agent=popular-science-writer)<br/><sup>By **[ShinChven](https://github.com/ShinChven)** on **2024-06-08**</sup> | 通俗科普创作助手,用生活化语言讲科学概念,讲故事、使用例子和比喻,激发兴趣,强调重要性。<br/>`科普写作` `科学普及` `创意表达` |
259
+ | [审稿回复专家](https://chat-preview.lobehub.com/market?agent=academic-editor-en)<br/><sup>By **[Starlitnightly](https://github.com/Starlitnightly)** on **2024-06-03**</sup> | 擅长自然学术编辑,协助作者回复审稿人意见,科学、礼貌、逐点回应。<br/>`学术编辑` `审稿意见回复` `科学写作` |
260
+
261
+ > 📊 Total agents: [<kbd>**288**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
262
262
 
263
263
  <!-- AGENT LIST -->
264
264
 
@@ -82,4 +82,4 @@ You can create a subdomain provided by Zeabur, or choose to bind a custom domain
82
82
 
83
83
  ### Zeabur shall start auto build and you should be able to access it by the domain of your choice after a while.
84
84
 
85
- </Steps>
85
+ </Steps>
@@ -81,4 +81,4 @@ tags:
81
81
 
82
82
  ### Zeabur 将开始自动构建,您应该可以在一段时间后通过您选择的域名访问它。
83
83
 
84
- </Steps>
84
+ </Steps>
@@ -9,6 +9,7 @@
9
9
  "cancel": "إلغاء",
10
10
  "changelog": "سجل التغييرات",
11
11
  "close": "إغلاق",
12
+ "contact": "اتصل بنا",
12
13
  "copy": "نسخ",
13
14
  "copyFail": "فشل في النسخ",
14
15
  "copySuccess": "تم النسخ بنجاح",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "تقديم ملاحظات",
37
38
  "follow": "تابعنا على {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "مشاركة ملاحظاتك الثمينة",
42
+ "star": "قم بإضافة نجمة على GitHub"
43
+ },
44
+ "and": "و",
45
+ "feedback": {
46
+ "action": "مشاركة الملاحظات",
47
+ "desc": "كل فكرة ومقترح لديك ثمين بالنسبة لنا، نحن نتطلع بشوق لمعرفة آرائك! نرحب بالتواصل معنا لتقديم ملاحظاتك حول ميزات المنتج وتجربة الاستخدام، لمساعدتنا في تحسين LobeChat بشكل أفضل.",
48
+ "title": "مشاركة ملاحظاتك الثمينة على GitHub"
49
+ },
50
+ "later": "لاحقًا",
51
+ "star": {
52
+ "action": "قم بإضاءة النجمة",
53
+ "desc": "إذا كنت تحب منتجنا وترغب في دعمنا، هل يمكنك إضافة نجمة لنا على GitHub؟ هذا الإجراء الصغير له أهمية كبيرة بالنسبة لنا، حيث يمكن أن يلهمنا لتقديم تجربة ميزات مستمرة لك.",
54
+ "title": "قم بإضاءة النجمة لنا على GitHub"
55
+ },
56
+ "title": "هل تحب منتجنا؟"
57
+ },
38
58
  "fullscreen": "وضع كامل الشاشة",
39
59
  "historyRange": "نطاق التاريخ",
40
60
  "import": "استيراد الإعدادات",
@@ -68,6 +88,7 @@
68
88
  "speed": "سرعة الرفع"
69
89
  }
70
90
  },
91
+ "information": "المجتمع والمعلومات",
71
92
  "installPWA": "تثبيت تطبيق المتصفح",
72
93
  "lang": {
73
94
  "ar": "العربية",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "الصينية التقليدية"
108
129
  },
109
130
  "layoutInitializing": "جاري تحميل التخطيط...",
131
+ "legal": "بيان قانوني",
132
+ "mail": {
133
+ "business": "شراكات تجارية",
134
+ "support": "الدعم عبر البريد الإلكتروني"
135
+ },
110
136
  "noDescription": "لا توجد وصف",
111
137
  "oauth": "تسجيل الدخول SSO",
112
138
  "officialSite": "الموقع الرسمي",
@@ -193,5 +219,6 @@
193
219
  "profile": "إدارة الحساب",
194
220
  "setting": "إعدادات التطبيق",
195
221
  "usages": "إحصاءات الاستخدام"
196
- }
222
+ },
223
+ "version": "الإصدار"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Отказ",
10
10
  "changelog": "Дневник на промените",
11
11
  "close": "Затвори",
12
+ "contact": "Свържете се с нас",
12
13
  "copy": "Копирай",
13
14
  "copyFail": "Копирането не е успешно",
14
15
  "copySuccess": "Копирано успешно",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Обратна връзка",
37
38
  "follow": "Следете ни на {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Споделете ценните си съвети",
42
+ "star": "Добавете звезда в GitHub"
43
+ },
44
+ "and": "и",
45
+ "feedback": {
46
+ "action": "Споделете обратна връзка",
47
+ "desc": "Всеки ваши идеи и предложения са от изключително значение за нас, нетърпеливи сме да чуем мнението ви! Не се колебайте да се свържете с нас, за да споделите отзиви за функциите на продукта и потребителския опит, които да ни помогнат да направим LobeChat още по-добър.",
48
+ "title": "Споделете ценните си отзиви в GitHub"
49
+ },
50
+ "later": "По-късно",
51
+ "star": {
52
+ "action": "Осветете звездата",
53
+ "desc": "Ако обичате нашия продукт и искате да ни подкрепите, можете ли да ни добавите звезда в GitHub? Този малък жест е от огромно значение за нас и ни мотивира да продължим да ви предоставяме уникално преживяване.",
54
+ "title": "Осветете звездата за нас в GitHub"
55
+ },
56
+ "title": "Харесвате нашия продукт?"
57
+ },
38
58
  "fullscreen": "Цял екран",
39
59
  "historyRange": "Диапазон на историята",
40
60
  "import": "Импортирай конфигурация",
@@ -68,6 +88,7 @@
68
88
  "speed": "Скорост на качване"
69
89
  }
70
90
  },
91
+ "information": "Общност и информация",
71
92
  "installPWA": "Инсталиране на PWA",
72
93
  "lang": {
73
94
  "ar": "Арабски",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Традиционен китайски"
108
129
  },
109
130
  "layoutInitializing": "Инициализиране на оформлението...",
131
+ "legal": "Правно уведомление",
132
+ "mail": {
133
+ "business": "Бизнес сътрудничество",
134
+ "support": "Поддръжка по имейл"
135
+ },
110
136
  "noDescription": "Няма налично описание",
111
137
  "oauth": "SSO Вход",
112
138
  "officialSite": "Официален сайт",
@@ -193,5 +219,6 @@
193
219
  "profile": "Управление на профила",
194
220
  "setting": "Настройки на приложението",
195
221
  "usages": "Статистика за използване"
196
- }
222
+ },
223
+ "version": "Версия"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Abbrechen",
10
10
  "changelog": "Änderungsprotokoll",
11
11
  "close": "Schließen",
12
+ "contact": "Kontakt",
12
13
  "copy": "Kopieren",
13
14
  "copyFail": "Kopieren fehlgeschlagen",
14
15
  "copySuccess": "Kopieren erfolgreich",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Feedback und Vorschläge",
37
38
  "follow": "Folge uns auf {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Teilen Sie uns Ihr wertvolles Feedback mit",
42
+ "star": "Geben Sie uns auf GitHub einen Stern"
43
+ },
44
+ "and": "und",
45
+ "feedback": {
46
+ "action": "Feedback teilen",
47
+ "desc": "Jede Ihrer Ideen und Vorschläge sind für uns von unschätzbarem Wert. Wir sind gespannt auf Ihre Meinung! Kontaktieren Sie uns gerne, um Feedback zu Produktfunktionen und Benutzererfahrungen zu geben und helfen Sie uns, LobeChat weiter zu verbessern.",
48
+ "title": "Teilen Sie uns Ihr wertvolles Feedback auf GitHub mit"
49
+ },
50
+ "later": "Später",
51
+ "star": {
52
+ "action": "Stern hinzufügen",
53
+ "desc": "Wenn Sie unser Produkt mögen und uns unterstützen möchten, könnten Sie uns auf GitHub einen Stern geben? Diese kleine Geste bedeutet uns viel und motiviert uns, Ihnen weiterhin besondere Erlebnisse zu bieten.",
54
+ "title": "Geben Sie uns auf GitHub einen Stern"
55
+ },
56
+ "title": "Mögen Sie unser Produkt?"
57
+ },
38
58
  "fullscreen": "Vollbildmodus",
39
59
  "historyRange": "Verlaufsbereich",
40
60
  "import": "Importieren",
@@ -68,6 +88,7 @@
68
88
  "speed": "Upload-Geschwindigkeit"
69
89
  }
70
90
  },
91
+ "information": "Community und Informationen",
71
92
  "installPWA": "Installiere die Browser-App",
72
93
  "lang": {
73
94
  "ar": "Arabisch",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Chinesisch (traditionell)"
108
129
  },
109
130
  "layoutInitializing": "Layout wird geladen...",
131
+ "legal": "Rechtliches",
132
+ "mail": {
133
+ "business": "Geschäftliche Zusammenarbeit",
134
+ "support": "E-Mail-Support"
135
+ },
110
136
  "noDescription": "Keine Beschreibung vorhanden",
111
137
  "oauth": "SSO-Anmeldung",
112
138
  "officialSite": "Offizielle Website",
@@ -193,5 +219,6 @@
193
219
  "profile": "Kontoverwaltung",
194
220
  "setting": "App-Einstellungen",
195
221
  "usages": "Nutzungsstatistiken"
196
- }
222
+ },
223
+ "version": "Version"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Cancel",
10
10
  "changelog": "Changelog",
11
11
  "close": "Close",
12
+ "contact": "Contact Us",
12
13
  "copy": "Copy",
13
14
  "copyFail": "Copy failed",
14
15
  "copySuccess": "Copied successfully",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Feedback",
37
38
  "follow": "Follow us on {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Share Your Valuable Feedback",
42
+ "star": "Star on GitHub"
43
+ },
44
+ "and": "and",
45
+ "feedback": {
46
+ "action": "Share Feedback",
47
+ "desc": "Every idea and suggestion from you is precious to us. We can't wait to hear your thoughts! Feel free to contact us to provide feedback on product features and user experience, helping us make LobeChat even better.",
48
+ "title": "Share Your Valuable Feedback on GitHub"
49
+ },
50
+ "later": "Later",
51
+ "star": {
52
+ "action": "Star It",
53
+ "desc": "If you love our product and want to support us, could you go to GitHub and give us a star? This small gesture means a lot to us and motivates us to continue providing you with great experiences.",
54
+ "title": "Star Us on GitHub"
55
+ },
56
+ "title": "Like Our Product?"
57
+ },
38
58
  "fullscreen": "Full Screen Mode",
39
59
  "historyRange": "History Range",
40
60
  "import": "Import Configuration",
@@ -68,6 +88,7 @@
68
88
  "speed": "Upload speed"
69
89
  }
70
90
  },
91
+ "information": "Community and News",
71
92
  "installPWA": "Install browser app",
72
93
  "lang": {
73
94
  "ar": "Arabic",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Traditional Chinese"
108
129
  },
109
130
  "layoutInitializing": "Initializing layout...",
131
+ "legal": "Legal Disclaimer",
132
+ "mail": {
133
+ "business": "Business Cooperation",
134
+ "support": "Email Support"
135
+ },
110
136
  "noDescription": "No description available",
111
137
  "oauth": "SSO Login",
112
138
  "officialSite": "Official Website",
@@ -193,5 +219,6 @@
193
219
  "profile": "Account Management",
194
220
  "setting": "App Settings",
195
221
  "usages": "Usage Statistics"
196
- }
222
+ },
223
+ "version": "Version"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Cancelar",
10
10
  "changelog": "Registro de cambios",
11
11
  "close": "Cerrar",
12
+ "contact": "Contacto",
12
13
  "copy": "Copiar",
13
14
  "copyFail": "Fallo al copiar",
14
15
  "copySuccess": "¡Copia exitosa!",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Comentarios y sugerencias",
37
38
  "follow": "Síguenos en {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Comparte tus valiosas sugerencias",
42
+ "star": "Agrega una estrella en GitHub"
43
+ },
44
+ "and": "y",
45
+ "feedback": {
46
+ "action": "Compartir retroalimentación",
47
+ "desc": "Cada idea y sugerencia que nos brindes es invaluable. ¡Estamos ansiosos por conocer tu opinión! Siéntete libre de contactarnos para proporcionar comentarios sobre las funciones del producto y la experiencia de uso, ¡ayúdanos a mejorar LobeChat!",
48
+ "title": "Comparte tu valiosa retroalimentación en GitHub"
49
+ },
50
+ "later": "Más tarde",
51
+ "star": {
52
+ "action": "Destacar con una estrella",
53
+ "desc": "¿Te encanta nuestro producto y deseas apoyarnos? ¿Podrías agregar una estrella en GitHub? Este pequeño gesto significa mucho para nosotros y nos motiva a seguir brindándote una experiencia de características excepcional.",
54
+ "title": "Destaca con una estrella en GitHub"
55
+ },
56
+ "title": "¿Te gusta nuestro producto?"
57
+ },
38
58
  "fullscreen": "Pantalla completa",
39
59
  "historyRange": "Rango de historial",
40
60
  "import": "Importar configuración",
@@ -68,6 +88,7 @@
68
88
  "speed": "Velocidad de carga"
69
89
  }
70
90
  },
91
+ "information": "Comunidad e Información",
71
92
  "installPWA": "Instalar la aplicación del navegador",
72
93
  "lang": {
73
94
  "ar": "árabe",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Chino tradicional"
108
129
  },
109
130
  "layoutInitializing": "Inicializando diseño...",
131
+ "legal": "Aviso Legal",
132
+ "mail": {
133
+ "business": "Colaboración Comercial",
134
+ "support": "Soporte por Correo"
135
+ },
110
136
  "noDescription": "Sin descripción",
111
137
  "oauth": "Inicio de sesión SSO",
112
138
  "officialSite": "Sitio oficial",
@@ -193,5 +219,6 @@
193
219
  "profile": "Gestión de cuenta",
194
220
  "setting": "Configuración de la aplicación",
195
221
  "usages": "Estadísticas de uso"
196
- }
222
+ },
223
+ "version": "Versión"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Annuler",
10
10
  "changelog": "Journal des modifications",
11
11
  "close": "Fermer",
12
+ "contact": "Nous contacter",
12
13
  "copy": "Copier",
13
14
  "copyFail": "Échec de la copie",
14
15
  "copySuccess": "Copie réussie",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Retour d'information et suggestions",
37
38
  "follow": "Suivez-nous sur {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Partager vos précieux commentaires",
42
+ "star": "Ajouter une étoile sur GitHub"
43
+ },
44
+ "and": "et",
45
+ "feedback": {
46
+ "action": "Partager des commentaires",
47
+ "desc": "Chaque idée et suggestion que vous avez est précieuse pour nous. Nous sommes impatients de connaître votre avis ! N'hésitez pas à nous contacter pour nous faire part de vos retours sur les fonctionnalités et l'expérience d'utilisation du produit, afin de nous aider à améliorer LobeChat.",
48
+ "title": "Partagez vos précieux commentaires sur GitHub"
49
+ },
50
+ "later": "Plus tard",
51
+ "star": {
52
+ "action": "Ajouter une étoile",
53
+ "desc": "Si vous aimez notre produit et souhaitez nous soutenir, pourriez-vous nous donner une étoile sur GitHub ? Ce petit geste est très important pour nous et nous encourage à continuer à vous offrir une expérience exceptionnelle.",
54
+ "title": "Ajoutez une étoile sur GitHub pour nous"
55
+ },
56
+ "title": "Vous aimez notre produit ?"
57
+ },
38
58
  "fullscreen": "Mode plein écran",
39
59
  "historyRange": "Plage d'historique",
40
60
  "import": "Importer",
@@ -68,6 +88,7 @@
68
88
  "speed": "Vitesse de téléchargement"
69
89
  }
70
90
  },
91
+ "information": "Communauté et Informations",
71
92
  "installPWA": "Installer l'application du navigateur",
72
93
  "lang": {
73
94
  "ar": "arabe",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Chinois traditionnel"
108
129
  },
109
130
  "layoutInitializing": "Initialisation de la mise en page en cours...",
131
+ "legal": "Mentions légales",
132
+ "mail": {
133
+ "business": "Partenariats commerciaux",
134
+ "support": "Support par e-mail"
135
+ },
110
136
  "noDescription": "Aucune description disponible",
111
137
  "oauth": "Connexion SSO",
112
138
  "officialSite": "Site officiel",
@@ -193,5 +219,6 @@
193
219
  "profile": "Gestion du compte",
194
220
  "setting": "Paramètres de l'application",
195
221
  "usages": "Statistiques d'utilisation"
196
- }
222
+ },
223
+ "version": "Version"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "Annulla",
10
10
  "changelog": "Registro modifiche",
11
11
  "close": "Chiudi",
12
+ "contact": "Contattaci",
12
13
  "copy": "Copia",
13
14
  "copyFail": "Copia non riuscita",
14
15
  "copySuccess": "Copia riuscita",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "Feedback e suggerimenti",
37
38
  "follow": "Seguici su {{name}}",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "Condividi i tuoi preziosi suggerimenti",
42
+ "star": "Aggiungi una stella su GitHub"
43
+ },
44
+ "and": "e",
45
+ "feedback": {
46
+ "action": "Condividi feedback",
47
+ "desc": "Ogni tua idea e suggerimento è prezioso per noi, non vediamo l'ora di conoscere la tua opinione! Contattaci per fornire feedback sulle funzionalità del prodotto e sull'esperienza utente, aiutandoci a migliorare LobeChat.",
48
+ "title": "Condividi il tuo prezioso feedback su GitHub"
49
+ },
50
+ "later": "Più tardi",
51
+ "star": {
52
+ "action": "Aggiungi una stella",
53
+ "desc": "Se ami il nostro prodotto e desideri supportarci, potresti aggiungerci una stella su GitHub? Questo piccolo gesto è di grande significato per noi e ci motiva a continuare a offrirti un'esperienza di qualità.",
54
+ "title": "Aggiungi una stella su GitHub per supportarci"
55
+ },
56
+ "title": "Ti piace il nostro prodotto?"
57
+ },
38
58
  "fullscreen": "Modalità a schermo intero",
39
59
  "historyRange": "Intervallo cronologico",
40
60
  "import": "Importa configurazione",
@@ -68,6 +88,7 @@
68
88
  "speed": "Velocità di caricamento"
69
89
  }
70
90
  },
91
+ "information": "Comunità e informazioni",
71
92
  "installPWA": "Installa l'applicazione del browser",
72
93
  "lang": {
73
94
  "ar": "Arabo",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "Cinese tradizionale"
108
129
  },
109
130
  "layoutInitializing": "Inizializzazione layout in corso...",
131
+ "legal": "Avviso legale",
132
+ "mail": {
133
+ "business": "Collaborazioni commerciali",
134
+ "support": "Supporto via email"
135
+ },
110
136
  "noDescription": "Nessuna descrizione disponibile",
111
137
  "oauth": "Accesso SSO",
112
138
  "officialSite": "Sito ufficiale",
@@ -193,5 +219,6 @@
193
219
  "profile": "Gestione account",
194
220
  "setting": "Impostazioni app",
195
221
  "usages": "Statistiche di utilizzo"
196
- }
222
+ },
223
+ "version": "Versione"
197
224
  }
@@ -9,6 +9,7 @@
9
9
  "cancel": "キャンセル",
10
10
  "changelog": "変更履歴",
11
11
  "close": "閉じる",
12
+ "contact": "お問い合わせ",
12
13
  "copy": "コピー",
13
14
  "copyFail": "コピーに失敗しました",
14
15
  "copySuccess": "コピーが成功しました",
@@ -35,6 +36,25 @@
35
36
  },
36
37
  "feedback": "フィードバック",
37
38
  "follow": " {{name}} で私たちをフォローする",
39
+ "footer": {
40
+ "action": {
41
+ "feedback": "貴重なフィードバックを共有する",
42
+ "star": "GitHub でスターを付ける"
43
+ },
44
+ "and": "および",
45
+ "feedback": {
46
+ "action": "フィードバックを共有",
47
+ "desc": "あなたのすべてのアイデアと提案は私たちにとって非常に貴重です。私たちはあなたの意見を知りたくてたまりません!製品の機能や使用体験に関するフィードバックを提供していただければ幸いです。LobeChat をより良くするためのお手伝いをしていただけると嬉しいです。",
48
+ "title": "GitHub で貴重なフィードバックを共有"
49
+ },
50
+ "later": "後で",
51
+ "star": {
52
+ "action": "スターを付ける",
53
+ "desc": "当社の製品が気に入っていただけた場合、GitHub でスターを付けていただけますか?この小さな行動が大きな意味を持ち、私たちが継続的に特性体験を提供する励みとなります。",
54
+ "title": "GitHub で私たちにスターを付ける"
55
+ },
56
+ "title": "当社の製品がお気に入りですか?"
57
+ },
38
58
  "fullscreen": "フルスクリーンモード",
39
59
  "historyRange": "履歴範囲",
40
60
  "import": "インポート",
@@ -68,6 +88,7 @@
68
88
  "speed": "アップロード速度"
69
89
  }
70
90
  },
91
+ "information": "コミュニティと情報",
71
92
  "installPWA": "PWAをインストール",
72
93
  "lang": {
73
94
  "ar": "アラビア語",
@@ -107,6 +128,11 @@
107
128
  "zh-TW": "繁体字中国語"
108
129
  },
109
130
  "layoutInitializing": "レイアウトを初期化中...",
131
+ "legal": "法的声明",
132
+ "mail": {
133
+ "business": "ビジネス提携",
134
+ "support": "メールサポート"
135
+ },
110
136
  "noDescription": "説明はありません",
111
137
  "oauth": "SSO ログイン",
112
138
  "officialSite": "公式サイト",
@@ -193,5 +219,6 @@
193
219
  "profile": "アカウント管理",
194
220
  "setting": "アプリ設定",
195
221
  "usages": "利用量統計"
196
- }
222
+ },
223
+ "version": "バージョン"
197
224
  }