@lobehub/chat 0.157.1 → 0.158.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.eslintignore +1 -2
  2. package/CHANGELOG.md +50 -0
  3. package/README.md +14 -14
  4. package/README.zh-CN.md +14 -14
  5. package/locales/ar/auth.json +2 -0
  6. package/locales/ar/chat.json +1 -0
  7. package/locales/ar/common.json +1 -0
  8. package/locales/bg-BG/auth.json +2 -0
  9. package/locales/bg-BG/chat.json +1 -0
  10. package/locales/bg-BG/common.json +1 -0
  11. package/locales/bg-BG/error.json +3 -3
  12. package/locales/de-DE/auth.json +2 -0
  13. package/locales/de-DE/chat.json +1 -0
  14. package/locales/de-DE/common.json +1 -0
  15. package/locales/en-US/auth.json +2 -0
  16. package/locales/en-US/chat.json +1 -0
  17. package/locales/en-US/common.json +1 -0
  18. package/locales/es-ES/auth.json +2 -0
  19. package/locales/es-ES/chat.json +1 -0
  20. package/locales/es-ES/common.json +1 -0
  21. package/locales/fr-FR/auth.json +2 -0
  22. package/locales/fr-FR/chat.json +1 -0
  23. package/locales/fr-FR/common.json +1 -0
  24. package/locales/it-IT/auth.json +2 -0
  25. package/locales/it-IT/chat.json +1 -0
  26. package/locales/it-IT/common.json +1 -0
  27. package/locales/ja-JP/auth.json +2 -0
  28. package/locales/ja-JP/chat.json +1 -0
  29. package/locales/ja-JP/common.json +1 -0
  30. package/locales/ko-KR/auth.json +2 -0
  31. package/locales/ko-KR/chat.json +1 -0
  32. package/locales/ko-KR/common.json +1 -0
  33. package/locales/nl-NL/auth.json +2 -0
  34. package/locales/nl-NL/chat.json +1 -0
  35. package/locales/nl-NL/common.json +50 -49
  36. package/locales/pl-PL/auth.json +2 -0
  37. package/locales/pl-PL/chat.json +1 -0
  38. package/locales/pl-PL/common.json +1 -0
  39. package/locales/pl-PL/error.json +3 -3
  40. package/locales/pt-BR/auth.json +2 -0
  41. package/locales/pt-BR/chat.json +1 -0
  42. package/locales/pt-BR/common.json +1 -0
  43. package/locales/ru-RU/auth.json +2 -0
  44. package/locales/ru-RU/chat.json +1 -0
  45. package/locales/ru-RU/common.json +1 -0
  46. package/locales/ru-RU/error.json +3 -3
  47. package/locales/tr-TR/auth.json +2 -0
  48. package/locales/tr-TR/chat.json +1 -0
  49. package/locales/tr-TR/common.json +1 -0
  50. package/locales/vi-VN/auth.json +2 -0
  51. package/locales/vi-VN/chat.json +1 -0
  52. package/locales/vi-VN/common.json +1 -0
  53. package/locales/zh-CN/auth.json +2 -0
  54. package/locales/zh-CN/chat.json +1 -0
  55. package/locales/zh-CN/common.json +1 -0
  56. package/locales/zh-TW/auth.json +2 -0
  57. package/locales/zh-TW/chat.json +1 -0
  58. package/locales/zh-TW/common.json +1 -0
  59. package/package.json +2 -2
  60. package/src/app/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +80 -0
  61. package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +116 -0
  62. package/src/app/(main)/(mobile)/me/(home)/features/Category.tsx +15 -0
  63. package/src/app/(main)/(mobile)/me/(home)/features/UserBanner.tsx +37 -0
  64. package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +95 -0
  65. package/src/app/(main)/(mobile)/me/{page.tsx → (home)/page.tsx} +6 -10
  66. package/src/app/(main)/(mobile)/me/data/features/Category.tsx +48 -0
  67. package/src/app/(main)/(mobile)/me/data/features/Header.tsx +33 -0
  68. package/src/app/(main)/(mobile)/me/data/layout.tsx +13 -0
  69. package/src/app/(main)/(mobile)/me/data/loading.tsx +5 -0
  70. package/src/app/(main)/(mobile)/me/data/page.tsx +17 -0
  71. package/src/app/(main)/(mobile)/me/profile/features/Category.tsx +45 -0
  72. package/src/app/(main)/(mobile)/me/profile/features/Header.tsx +33 -0
  73. package/src/app/(main)/(mobile)/me/profile/layout.tsx +16 -0
  74. package/src/app/(main)/(mobile)/me/profile/loading.tsx +5 -0
  75. package/src/app/(main)/(mobile)/me/profile/page.tsx +17 -0
  76. package/src/app/(main)/(mobile)/me/settings/features/Category.tsx +15 -0
  77. package/src/app/(main)/(mobile)/me/settings/features/Header.tsx +33 -0
  78. package/src/app/(main)/(mobile)/me/settings/features/useCategory.tsx +57 -0
  79. package/src/app/(main)/(mobile)/me/settings/layout.tsx +13 -0
  80. package/src/app/(main)/(mobile)/me/settings/loading.tsx +5 -0
  81. package/src/app/(main)/(mobile)/me/settings/page.tsx +17 -0
  82. package/src/app/(main)/_layout/Mobile.tsx +5 -4
  83. package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +21 -1
  84. package/src/app/(main)/profile/[[...slugs]]/Client.tsx +74 -0
  85. package/src/app/(main)/profile/[[...slugs]]/page.tsx +18 -0
  86. package/src/app/(main)/profile/_layout/Mobile/Header.tsx +26 -0
  87. package/src/app/(main)/profile/_layout/Mobile/index.tsx +16 -0
  88. package/src/app/(main)/profile/layout.tsx +20 -0
  89. package/src/app/(main)/profile/loading.tsx +23 -0
  90. package/src/app/(main)/settings/_layout/Mobile/Header.tsx +2 -1
  91. package/src/app/(main)/settings/hooks/useCategory.tsx +7 -13
  92. package/src/app/@modal/layout.tsx +3 -0
  93. package/src/components/Cell/Divider.tsx +3 -2
  94. package/src/components/Cell/index.tsx +28 -18
  95. package/src/features/User/DataStatistics.tsx +3 -1
  96. package/src/features/User/UserLoginOrSignup.tsx +2 -2
  97. package/src/features/User/UserPanel/PanelContent.tsx +9 -3
  98. package/src/features/User/UserPanel/useMenu.tsx +29 -29
  99. package/src/features/User/__tests__/PanelContent.test.tsx +7 -0
  100. package/src/features/User/__tests__/useMenu.test.tsx +142 -0
  101. package/src/layout/AuthProvider/Clerk/useAppearance.ts +5 -4
  102. package/src/libs/agent-runtime/azureOpenai/index.test.ts +161 -27
  103. package/src/libs/agent-runtime/utils/streams/openai.ts +4 -0
  104. package/src/locales/default/auth.ts +2 -0
  105. package/src/locales/default/chat.ts +1 -0
  106. package/src/locales/default/common.ts +1 -0
  107. package/src/store/user/slices/auth/selectors.ts +2 -1
  108. package/src/app/(auth)/profile/[[...slugs]]/PageTitle.tsx +0 -13
  109. package/src/app/(auth)/profile/[[...slugs]]/page.tsx +0 -14
  110. package/src/app/(main)/(mobile)/me/features/Cate.tsx +0 -33
  111. package/src/app/(main)/(mobile)/me/features/ExtraCate.tsx +0 -24
  112. package/src/app/(main)/(mobile)/me/features/useExtraCate.tsx +0 -62
  113. /package/src/app/(main)/(mobile)/me/{features → (home)/features}/Header.tsx +0 -0
  114. /package/src/app/(main)/(mobile)/me/{layout.tsx → (home)/layout.tsx} +0 -0
  115. /package/src/app/(main)/(mobile)/me/{loading.tsx → (home)/loading.tsx} +0 -0
package/.eslintignore CHANGED
@@ -10,9 +10,8 @@ coverage
10
10
 
11
11
  # test
12
12
  jest*
13
- _test_
14
- __test__
15
13
  *.test.ts
14
+ *.test.tsx
16
15
 
17
16
  # umi
18
17
  .umi
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 0.158.0](https://github.com/lobehub/lobe-chat/compare/v0.157.2...v0.158.0)
6
+
7
+ <sup>Released on **2024-05-13**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Add user profile page.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **misc**: Add user profile page, closes [#2433](https://github.com/lobehub/lobe-chat/issues/2433) ([91f7294](https://github.com/lobehub/lobe-chat/commit/91f7294))
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.157.2](https://github.com/lobehub/lobe-chat/compare/v0.157.1...v0.157.2)
31
+
32
+ <sup>Released on **2024-05-13**</sup>
33
+
34
+ #### 🐛 Bug Fixes
35
+
36
+ - **misc**: Fix azure openai stream.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's fixed
44
+
45
+ - **misc**: Fix azure openai stream, closes [#2465](https://github.com/lobehub/lobe-chat/issues/2465) ([760fe67](https://github.com/lobehub/lobe-chat/commit/760fe67))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 0.157.1](https://github.com/lobehub/lobe-chat/compare/v0.157.0...v0.157.1)
6
56
 
7
57
  <sup>Released on **2024-05-12**</sup>
package/README.md CHANGED
@@ -222,14 +222,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
222
222
 
223
223
  <!-- PLUGIN LIST -->
224
224
 
225
- | Recent Submits | Description |
226
- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
227
- | [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | Search aggregation service, specifically designed for LLMs<br/>`web` `search` |
228
- | [Social Search](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | The Social Search provides access to tweets, users, followers, images, media and more.<br/>`social` `twitter` `x` `search` |
229
- | [Search Google via Serper](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | Google search engine via Serper.dev free API (2500x🆓/month)<br/>`web` `search` |
230
- | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | Discover current prices of NFTs across major platforms and keep track of the rapidly changing marketplace with real-time<br/>`crypto` `nft` |
225
+ | Recent Submits | Description |
226
+ | ------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
227
+ | [Space](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **automateyournetwork** on **2024-05-12**</sup> | Space data including NASA.<br/>`space` `nasa` |
228
+ | [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | Search aggregation service, specifically designed for LLMs<br/>`web` `search` |
229
+ | [Social Search](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | The Social Search provides access to tweets, users, followers, images, media and more.<br/>`social` `twitter` `x` `search` |
230
+ | [Search Google via Serper](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | Google search engine via Serper.dev free API (2500x🆓/month)<br/>`web` `search` |
231
231
 
232
- > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
232
+ > 📊 Total plugins: [<kbd>**58**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
233
233
 
234
234
  <!-- PLUGIN LIST -->
235
235
 
@@ -261,14 +261,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
261
261
 
262
262
  <!-- AGENT LIST -->
263
263
 
264
- | Recent Submits | Description |
265
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
266
- | [SF Symbols Finder](https://chat-preview.lobehub.com/market?agent=sf-symbols-finder)<br/><sup>By **[inquiry-paring0a](https://github.com/inquiry-paring0a)** on **2024-05-08**</sup> | Master Apple SF Symbols, select symbols that match the description<br/>`sf-symbols` `expert` `icon` `symbol` `plugin` |
267
- | [Video to Blog Post Assistant](https://chat-preview.lobehub.com/market?agent=video-2-blog-assistant)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-05-06**</sup> | Helps you quickly organize messy subtitles into beautiful blog posts<br/>`subtitle-organization` `blog-post-formatting` `video-to-blog` |
268
- | [Art Evaluation Tutor](https://chat-preview.lobehub.com/market?agent=wanwusheng-art)<br/><sup>By **[dingyufei615](https://github.com/dingyufei615)** on **2024-05-06**</sup> | Specializes in teaching children's art, meticulously evaluates works, pays attention to details, and adapts to students of different age groups.<br/>`art-education` `evaluation` `creativity` `teaching` `painting` |
269
- | [iOS Code Artist](https://chat-preview.lobehub.com/market?agent=ios-develop)<br/><sup>By **[Alcu1n](https://github.com/Alcu1n)** on **2024-05-03**</sup> | iOS development expert with 15 years of experience, proficient in Swift, SwiftUI, Flutter. Clear logic in code, precise debugging, providing project frameworks from 0 to 1.<br/>`i-os-development` `coding` `debugging` `project-planning` `logical-thinking` |
264
+ | Recent Submits | Description |
265
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
266
+ | [SF Symbols Finder](https://chat-preview.lobehub.com/market?agent=sf-symbols-finder)<br/><sup>By **[inquiry-paring0a](https://github.com/inquiry-paring0a)** on **2024-05-08**</sup> | Master Apple SF Symbols, select symbols that match the description<br/>`sf-symbols` `expert` `icon` `symbol` `plugin` |
267
+ | [GhostWriter Pro](https://chat-preview.lobehub.com/market?agent=ghostwriter-pro-ai)<br/><sup>By **[EarlofSandwhich](https://github.com/EarlofSandwhich)** on **2024-05-07**</sup> | A sophisticated AI-powered ghostwriting agent designed to craft high-quality content across a diverse range of genres and formats. Equipped with advanced language models, GhostWriter Pro excels in creating personalized, engaging, and research-backed writing that meets professional standards.<br/>`author` `writing` |
268
+ | [Video to Blog Post Assistant](https://chat-preview.lobehub.com/market?agent=video-2-blog-assistant)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-05-06**</sup> | Helps you quickly organize messy subtitles into beautiful blog posts<br/>`subtitle-organization` `blog-post-formatting` `video-to-blog` |
269
+ | [Art Evaluation Tutor](https://chat-preview.lobehub.com/market?agent=wanwusheng-art)<br/><sup>By **[dingyufei615](https://github.com/dingyufei615)** on **2024-05-06**</sup> | Specializes in teaching children's art, meticulously evaluates works, pays attention to details, and adapts to students of different age groups.<br/>`art-education` `evaluation` `creativity` `teaching` `painting` |
270
270
 
271
- > 📊 Total agents: [<kbd>**248**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
271
+ > 📊 Total agents: [<kbd>**249**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
272
272
 
273
273
  <!-- AGENT LIST -->
274
274
 
package/README.zh-CN.md CHANGED
@@ -214,14 +214,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
214
214
 
215
215
  <!-- PLUGIN LIST -->
216
216
 
217
- | 最近新增 | 插件描述 |
218
- | ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------- |
219
- | [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | 搜索聚合服务,专为 LLMs 设计<br/>`web` `search` |
220
- | [社交搜索](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | 社交搜索提供访问推文、用户、关注者、图片、媒体等功能。<br/>`社交` `推特` `x` `搜索` |
221
- | [通过 Serper 搜索 Google](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | 通过 Serper.dev 免费 API 进行 Google 搜索引擎(每月 2500 次🆓)<br/>`网络` `搜索` |
222
- | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | 发现主要平台上 NFT 的当前价格,并通过实时跟踪快速变化的市场了解情况<br/>`加密货币` `nft` |
217
+ | 最近新增 | 插件描述 |
218
+ | ------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
219
+ | [空间](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **automateyournetwork** on **2024-05-12**</sup> | 包括 NASA 的空间数据。<br/>`空间` `nasa` |
220
+ | [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | 搜索聚合服务,专为 LLMs 设计<br/>`web` `search` |
221
+ | [社交搜索](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | 社交搜索提供访问推文、用户、关注者、图片、媒体等功能。<br/>`社交` `推特` `x` `搜索` |
222
+ | [通过 Serper 搜索 Google](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | 通过 Serper.dev 免费 API 进行 Google 搜索引擎(每月 2500 次🆓)<br/>`网络` `搜索` |
223
223
 
224
- > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
224
+ > 📊 Total plugins: [<kbd>**58**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
225
225
 
226
226
  <!-- PLUGIN LIST -->
227
227
 
@@ -249,14 +249,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
249
249
 
250
250
  <!-- AGENT LIST -->
251
251
 
252
- | 最近新增 | 助手说明 |
253
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
254
- | [SF Symbols 查找器](https://chat-preview.lobehub.com/market?agent=sf-symbols-finder)<br/><sup>By **[inquiry-paring0a](https://github.com/inquiry-paring0a)** on **2024-05-08**</sup> | 精通苹果 SF Symbols,可根据描述选择符合的 Symbols<br/>`sf-symbols` `专家` `图标` `符号` `插件` |
255
- | [视频转博客文章助手](https://chat-preview.lobehub.com/market?agent=video-2-blog-assistant)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-05-06**</sup> | 帮你快速整理缭乱的字幕,变成精美的博客文章<br/>`字幕整理` `博文格式` `视频变博客` |
256
- | [美术评价导师](https://chat-preview.lobehub.com/market?agent=wanwusheng-art)<br/><sup>By **[dingyufei615](https://github.com/dingyufei615)** on **2024-05-06**</sup> | 擅长少儿美术教学,细致评价作品,关注细节,适应不同年龄段学生。<br/>`美术教育` `评价` `创意` `教学` `绘画` |
257
- | [iOS 代码艺术家](https://chat-preview.lobehub.com/market?agent=ios-develop)<br/><sup>By **[Alcu1n](https://github.com/Alcu1n)** on **2024-05-03**</sup> | iOS 开发专家,15 年经验,精通 Swift、SwiftUI、Flutter。逻辑清晰的代码,精准 debug,提供 0 到 1 的项目框架。<br/>`i-os开发` `编码` `调试` `项目规划` `逻辑思维` |
252
+ | 最近新增 | 助手说明 |
253
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
254
+ | [SF Symbols 查找器](https://chat-preview.lobehub.com/market?agent=sf-symbols-finder)<br/><sup>By **[inquiry-paring0a](https://github.com/inquiry-paring0a)** on **2024-05-08**</sup> | 精通苹果 SF Symbols,可根据描述选择符合的 Symbols<br/>`sf-symbols` `专家` `图标` `符号` `插件` |
255
+ | [GhostWriter Pro](https://chat-preview.lobehub.com/market?agent=ghostwriter-pro-ai)<br/><sup>By **[EarlofSandwhich](https://github.com/EarlofSandwhich)** on **2024-05-07**</sup> | 一款复杂的 AI 驱动的写手代理,旨在跨多种流派和格式创作高质量内容。GhostWriter Pro 配备先进的语言模型,擅长创作个性化、引人入胜且有研究支持的写作,符合专业标准。<br/>`作者` `写作` |
256
+ | [视频转博客文章助手](https://chat-preview.lobehub.com/market?agent=video-2-blog-assistant)<br/><sup>By **[yayoinoyume](https://github.com/yayoinoyume)** on **2024-05-06**</sup> | 帮你快速整理缭乱的字幕,变成精美的博客文章<br/>`字幕整理` `博文格式` `视频变博客` |
257
+ | [美术评价导师](https://chat-preview.lobehub.com/market?agent=wanwusheng-art)<br/><sup>By **[dingyufei615](https://github.com/dingyufei615)** on **2024-05-06**</sup> | 擅长少儿美术教学,细致评价作品,关注细节,适应不同年龄段学生。<br/>`美术教育` `评价` `创意` `教学` `绘画` |
258
258
 
259
- > 📊 Total agents: [<kbd>**248**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
259
+ > 📊 Total agents: [<kbd>**249**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
260
260
 
261
261
  <!-- AGENT LIST -->
262
262
 
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "تسجيل الدخول",
3
3
  "loginOrSignup": "تسجيل الدخول / التسجيل",
4
+ "profile": "الملف الشخصي",
5
+ "security": "الأمان",
4
6
  "signout": "تسجيل الخروج",
5
7
  "signup": "التسجيل"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "مرحبًا، أنا **{{name}}**، يمكنك البدء في الدردشة معي على الفور، أو يمكنك الانتقال إلى [إعدادات المساعد](/chat/settings#session={{id}}) لتحسين معلوماتي.",
6
6
  "agentDefaultMessageWithSystemRole": "مرحبًا، أنا **{{name}}**، {{systemRole}}، دعنا نبدأ الدردشة!",
7
+ "agentsAndConversations": "الوكلاء والمحادثات",
7
8
  "backToBottom": "العودة إلى الأسفل",
8
9
  "clearCurrentMessages": "مسح رسائل الجلسة الحالية",
9
10
  "confirmClearCurrentMessages": "سيتم مسح رسائل الجلسة الحالية قريبًا، وبمجرد المسح لن يمكن استعادتها، يرجى تأكيد الإجراء الخاص بك",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "مستخدم مجهول",
171
171
  "billing": "إدارة الفواتير",
172
+ "data": "تخزين البيانات",
172
173
  "defaultNickname": "مستخدم النسخة المجتمعية",
173
174
  "discord": "الدعم المجتمعي",
174
175
  "docs": "وثائق الاستخدام",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Вход",
3
3
  "loginOrSignup": "Вход / Регистрация",
4
+ "profile": "Профил",
5
+ "security": "Сигурност",
4
6
  "signout": "Изход",
5
7
  "signup": "Регистрация"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Здравей, аз съм **{{name}}**. Можеш да започнеш да чатиш с мен веднага, или да отидеш в [Настройки на агента](/chat/settings#session={{id}}) за да попълниш информацията ми.",
6
6
  "agentDefaultMessageWithSystemRole": "Здравей, аз съм **{{name}}**, {{systemRole}}. Нека започнем да чатим!",
7
+ "agentsAndConversations": "агенти и разговори",
7
8
  "backToBottom": "Върни се в началото",
8
9
  "clearCurrentMessages": "Изчисти съобщенията от текущата сесия",
9
10
  "confirmClearCurrentMessages": "На път си да изчистиш съобщенията от текущата сесия. След като бъдат изчистени, те не могат да бъдат възстановени. Моля, потвърди действието си.",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Анонимен потребител",
171
171
  "billing": "Управление на сметките",
172
+ "data": "Съхранение на данни",
172
173
  "defaultNickname": "Потребител на общността",
173
174
  "discord": "Поддръжка на общността",
174
175
  "docs": "Документация",
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "clerkAuth": {
3
3
  "loginSuccess": {
4
- "action": "继续会话",
5
- "desc": "{{greeting}},很高兴能够继续为你服务。让我们接着刚刚的话题聊下去吧",
6
- "title": "欢迎回来, {{nickName}}"
4
+ "action": "Continue Session",
5
+ "desc": "{{greeting}}, I'm glad to continue serving you. Let's pick up where we left off.",
6
+ "title": "Welcome back, {{nickName}}"
7
7
  }
8
8
  },
9
9
  "error": {
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Anmelden",
3
3
  "loginOrSignup": "Anmelden / Registrieren",
4
+ "profile": "Profil",
5
+ "security": "Sicherheit",
4
6
  "signout": "Abmelden",
5
7
  "signup": "Registrieren"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Hallo, ich bin **{{name}}**. Du kannst sofort mit mir chatten oder gehe zu [Assistenteneinstellungen](/chat/settings#session={{id}}), um meine Informationen zu vervollständigen.",
6
6
  "agentDefaultMessageWithSystemRole": "Hallo, ich bin **{{name}}**, {{systemRole}}. Lass uns chatten!",
7
+ "agentsAndConversations": "Agenten und Unterhaltungen",
7
8
  "backToBottom": "Zurück zum Ende",
8
9
  "clearCurrentMessages": "Aktuelle Nachrichten löschen",
9
10
  "confirmClearCurrentMessages": "Möchtest du wirklich die aktuellen Nachrichten löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Anonymer Benutzer",
171
171
  "billing": "Abrechnung verwalten",
172
+ "data": "Daten speichern",
172
173
  "defaultNickname": "Community User",
173
174
  "discord": "Community-Support",
174
175
  "docs": "Dokumentation",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Login",
3
3
  "loginOrSignup": "Log in / Sign up",
4
+ "profile": "Profile",
5
+ "security": "Security",
4
6
  "signout": "Sign out",
5
7
  "signup": "Sign up"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Hello, I'm **{{name}}**. You can start chatting with me right away, or go to [Agent Settings](/chat/settings#session={{id}}) to complete my information.",
6
6
  "agentDefaultMessageWithSystemRole": "Hello, I'm **{{name}}**, {{systemRole}}. Let's start chatting!",
7
+ "agentsAndConversations": "Agents and Conversations",
7
8
  "backToBottom": "Back to bottom",
8
9
  "clearCurrentMessages": "Clear current session messages",
9
10
  "confirmClearCurrentMessages": "You are about to clear the current session messages. Once cleared, they cannot be retrieved. Please confirm your action.",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Anonymous User",
171
171
  "billing": "Billing Management",
172
+ "data": "Data Storage",
172
173
  "defaultNickname": "Community User",
173
174
  "discord": "Community Support",
174
175
  "docs": "Documentation",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Iniciar sesión",
3
3
  "loginOrSignup": "Iniciar sesión / Registrarse",
4
+ "profile": "Perfil",
5
+ "security": "Seguridad",
4
6
  "signout": "Cerrar sesión",
5
7
  "signup": "Registrarse"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Hola, soy **{{name}}**, puedes comenzar a chatear conmigo de inmediato o ir a [Configuración del asistente](/chat/settings#session={{id}}) para completar mi información.",
6
6
  "agentDefaultMessageWithSystemRole": "Hola, soy **{{name}}**, {{systemRole}}, ¡comencemos a chatear!",
7
+ "agentsAndConversations": "agentesYConversaciones",
7
8
  "backToBottom": "Volver al fondo",
8
9
  "clearCurrentMessages": "Borrar mensajes actuales",
9
10
  "confirmClearCurrentMessages": "Estás a punto de borrar los mensajes de esta sesión. Una vez borrados, no se podrán recuperar. Por favor, confirma tu acción.",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Usuario Anónimo",
171
171
  "billing": "Gestión de facturación",
172
+ "data": "Almacenamiento de datos",
172
173
  "defaultNickname": "Usuario de la comunidad",
173
174
  "discord": "Soporte de la comunidad",
174
175
  "docs": "Documentación de uso",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Connexion",
3
3
  "loginOrSignup": "Connexion / Inscription",
4
+ "profile": "Profil",
5
+ "security": "Sécurité",
4
6
  "signout": "Déconnexion",
5
7
  "signup": "Inscription"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Bonjour, je suis **{{name}}**. Vous pouvez commencer à discuter avec moi dès maintenant ou aller dans [Paramètres de l'agent](/chat/settings#session={{id}}) pour compléter mes informations.",
6
6
  "agentDefaultMessageWithSystemRole": "Bonjour, je suis **{{name}}**, {{systemRole}}. Commençons la conversation !",
7
+ "agentsAndConversations": "Agents et conversations",
7
8
  "backToBottom": "Retour en bas",
8
9
  "clearCurrentMessages": "Effacer les messages actuels",
9
10
  "confirmClearCurrentMessages": "Vous êtes sur le point d'effacer les messages de cette session. Cette action est irréversible. Veuillez confirmer.",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Utilisateur anonyme",
171
171
  "billing": "Gestion de la facturation",
172
+ "data": "Stockage des données",
172
173
  "defaultNickname": "Utilisateur de la version communautaire",
173
174
  "discord": "Support de la communauté",
174
175
  "docs": "Documentation d'utilisation",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Accedi",
3
3
  "loginOrSignup": "Accedi / Registrati",
4
+ "profile": "Profilo",
5
+ "security": "Sicurezza",
4
6
  "signout": "Esci",
5
7
  "signup": "Registrati"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Ciao, sono **{{name}}**, puoi iniziare a chattare con me subito o andare a [impostazioni assistente](/chat/settings#session={{id}}) per completare le mie informazioni.",
6
6
  "agentDefaultMessageWithSystemRole": "Ciao, sono **{{name}}**, {{systemRole}}, iniziamo a chattare!",
7
+ "agentsAndConversations": "Assistenti e Conversazioni",
7
8
  "backToBottom": "Torna in fondo",
8
9
  "clearCurrentMessages": "Cancella messaggi attuali",
9
10
  "confirmClearCurrentMessages": "Stai per cancellare i messaggi attuali, questa operazione non potrà essere annullata. Confermi?",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "Utente Anonimo",
171
171
  "billing": "Gestione fatturazione",
172
+ "data": "Archiviazione dati",
172
173
  "defaultNickname": "Utente Community",
173
174
  "discord": "Supporto della community",
174
175
  "docs": "Documentazione",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "ログイン",
3
3
  "loginOrSignup": "ログイン / 登録",
4
+ "profile": "プロフィール",
5
+ "security": "セキュリティ",
4
6
  "signout": "ログアウト",
5
7
  "signup": "サインアップ"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "こんにちは、私は **{{name}}** です。すぐにチャットを開始するか、[エージェント設定](/chat/settings#session={{id}}) に移動して私の情報を完全にすることができます。",
6
6
  "agentDefaultMessageWithSystemRole": "こんにちは、私は **{{name}}** です、{{systemRole}}、さあ、チャットを始めましょう!",
7
+ "agentsAndConversations": "エージェントと会話",
7
8
  "backToBottom": "現在に戻る",
8
9
  "clearCurrentMessages": "現在の会話をクリア",
9
10
  "confirmClearCurrentMessages": "現在の会話をクリアします。クリアした後は元に戻すことはできません。操作を確認してください。",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "匿名ユーザー",
171
171
  "billing": "請求管理",
172
+ "data": "データストレージ",
172
173
  "defaultNickname": "コミュニティユーザー",
173
174
  "discord": "コミュニティサポート",
174
175
  "docs": "使用文書",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "로그인",
3
3
  "loginOrSignup": "로그인 / 가입",
4
+ "profile": "프로필",
5
+ "security": "보안",
4
6
  "signout": "로그아웃",
5
7
  "signup": "가입"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "안녕하세요, 저는 **{{name}}**입니다. 지금 즉시 대화를 시작하거나 [도우미 설정](/chat/settings#session={{id}})으로 이동하여 내 정보를 완성할 수 있습니다.",
6
6
  "agentDefaultMessageWithSystemRole": "안녕하세요, 저는 **{{name}}**입니다. {{systemRole}}입니다. 대화를 시작해 봅시다!",
7
+ "agentsAndConversations": "에이전트 및 대화",
7
8
  "backToBottom": "하단으로 이동",
8
9
  "clearCurrentMessages": "현재 대화 지우기",
9
10
  "confirmClearCurrentMessages": "현재 대화를 지우시면 되돌릴 수 없습니다. 작업을 확인하시겠습니까?",
@@ -169,6 +169,7 @@
169
169
  "userPanel": {
170
170
  "anonymousNickName": "익명 사용자",
171
171
  "billing": "결제 관리",
172
+ "data": "데이터 저장",
172
173
  "defaultNickname": "커뮤니티 사용자",
173
174
  "discord": "커뮤니티 지원",
174
175
  "docs": "사용 설명서",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "login": "Inloggen",
3
3
  "loginOrSignup": "Inloggen / Registreren",
4
+ "profile": "Profiel",
5
+ "security": "Veiligheid",
4
6
  "signout": "Uitloggen",
5
7
  "signup": "Registreren"
6
8
  }
@@ -4,6 +4,7 @@
4
4
  },
5
5
  "agentDefaultMessage": "Hallo, ik ben **{{name}}**. Je kunt meteen met me praten of naar [Assistentinstellingen](/chat/settings#session={{id}}) gaan om mijn informatie aan te vullen.",
6
6
  "agentDefaultMessageWithSystemRole": "Hallo, ik ben **{{name}}**, {{systemRole}}, laten we beginnen met praten!",
7
+ "agentsAndConversations": "agenten en gesprekken",
7
8
  "backToBottom": "Terug naar onderen",
8
9
  "clearCurrentMessages": "Huidige berichten wissen",
9
10
  "confirmClearCurrentMessages": "Huidige berichten worden gewist en kunnen niet worden hersteld. Bevestig je actie.",
@@ -104,52 +104,52 @@
104
104
  "pin": "Vastzetten",
105
105
  "pinOff": "Vastzetten uitschakelen",
106
106
  "privacy": "Privacybeleid",
107
- "regenerate": "重新生成",
108
- "rename": "重命名",
109
- "reset": "重置",
110
- "retry": "重试",
111
- "send": "发送",
112
- "setting": "设置",
113
- "share": "分享",
114
- "stop": "停止",
107
+ "regenerate": "Opnieuw genereren",
108
+ "rename": "Naam wijzigen",
109
+ "reset": "Resetten",
110
+ "retry": "Opnieuw proberen",
111
+ "send": "Verzenden",
112
+ "setting": "Instelling",
113
+ "share": "Delen",
114
+ "stop": "Stoppen",
115
115
  "sync": {
116
116
  "actions": {
117
- "settings": "同步设置",
118
- "sync": "立即同步"
117
+ "settings": "Synchronisatie-instellingen",
118
+ "sync": "Nu synchroniseren"
119
119
  },
120
120
  "awareness": {
121
- "current": "当前设备"
121
+ "current": "Huidig apparaat"
122
122
  },
123
- "channel": "频道",
123
+ "channel": "Kanaal",
124
124
  "disabled": {
125
125
  "actions": {
126
- "enable": "开启云端同步",
127
- "settings": "配置同步参数"
126
+ "enable": "Cloudsynchronisatie inschakelen",
127
+ "settings": "Synchronisatie-instellingen configureren"
128
128
  },
129
- "desc": "当前会话数据仅存储于此浏览器中。如果你需要在多个设备间同步数据,请配置并开启云端同步。",
130
- "title": "数据同步未开启"
129
+ "desc": "De huidige gespreksgegevens worden alleen opgeslagen in deze browser. Als u gegevens wilt synchroniseren tussen meerdere apparaten, configureer en schakel dan cloudsynchronisatie in.",
130
+ "title": "Gegevenssynchronisatie is uitgeschakeld"
131
131
  },
132
132
  "enabled": {
133
- "title": "数据同步"
133
+ "title": "Gegevenssynchronisatie"
134
134
  },
135
135
  "status": {
136
- "connecting": "连接中",
137
- "disabled": "同步未开启",
138
- "ready": "已连接",
139
- "synced": "已同步",
140
- "syncing": "同步中",
141
- "unconnected": "连接失败"
136
+ "connecting": "Verbinding maken",
137
+ "disabled": "Synchronisatie is uitgeschakeld",
138
+ "ready": "Verbonden",
139
+ "synced": "Gesynchroniseerd",
140
+ "syncing": "Synchroniseren",
141
+ "unconnected": "Verbinding mislukt"
142
142
  },
143
- "title": "同步状态",
143
+ "title": "Synchronisatiestatus",
144
144
  "unconnected": {
145
- "tip": "信令服务器连接失败,将无法建立点对点通信频道,请检查网络后重试"
145
+ "tip": "Verbindingsfout met de signaleringsserver. Er kan geen point-to-point-communicatiekanaal worden opgezet. Controleer het netwerk en probeer het opnieuw."
146
146
  }
147
147
  },
148
148
  "tab": {
149
- "chat": "会话",
150
- "market": "发现",
151
- "me": "",
152
- "setting": "设置"
149
+ "chat": "Chat",
150
+ "market": "Ontdekken",
151
+ "me": "Ik",
152
+ "setting": "Instellingen"
153
153
  },
154
154
  "telemetry": {
155
155
  "allow": "Toestaan",
@@ -158,28 +158,29 @@
158
158
  "learnMore": "Meer informatie",
159
159
  "title": "Help LobeChat verbeteren"
160
160
  },
161
- "temp": "临时",
162
- "terms": "Algemene voorwaarden",
163
- "updateAgent": "更新助理信息",
161
+ "temp": "tijdelijk",
162
+ "terms": "algemene voorwaarden",
163
+ "updateAgent": "update assistent",
164
164
  "upgradeVersion": {
165
- "action": "升级",
166
- "hasNew": "有可用更新",
167
- "newVersion": "有新版本可用:{{version}}"
165
+ "action": "upgraden",
166
+ "hasNew": "nieuwe versie beschikbaar",
167
+ "newVersion": "nieuwe versie beschikbaar: {{version}}"
168
168
  },
169
169
  "userPanel": {
170
- "anonymousNickName": "Anonieme gebruiker",
171
- "billing": "账单管理",
172
- "defaultNickname": "Standaardgebruiker",
173
- "discord": "社区支持",
174
- "docs": "使用文档",
175
- "email": "邮件支持",
176
- "feedback": "反馈与建议",
177
- "help": "帮助中心",
178
- "moveGuide": "De instellingenknop is hierheen verplaatst",
179
- "plans": "订阅方案",
180
- "preview": "Voorbeeld",
181
- "profile": "账户管理",
182
- "setting": "应用设置",
183
- "usages": "用量统计"
170
+ "anonymousNickName": "anonieme gebruiker",
171
+ "billing": "facturatie",
172
+ "data": "gegevensopslag",
173
+ "defaultNickname": "communitygebruiker",
174
+ "discord": "communityondersteuning",
175
+ "docs": "gebruiksaanwijzing",
176
+ "email": "e-mailondersteuning",
177
+ "feedback": "feedback en suggesties",
178
+ "help": "helpcentrum",
179
+ "moveGuide": "instellingen verplaatst naar hier",
180
+ "plans": "abonnementen",
181
+ "preview": "voorbeeldversie",
182
+ "profile": "accountbeheer",
183
+ "setting": "app-instellingen",
184
+ "usages": "gebruiksstatistieken"
184
185
  }
185
186
  }