@lobehub/chat 0.152.1 → 0.152.2

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 (214) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/locales/ar/common.json +14 -0
  5. package/locales/ar/setting.json +4 -1
  6. package/locales/bg-BG/common.json +14 -0
  7. package/locales/bg-BG/setting.json +4 -1
  8. package/locales/de-DE/common.json +14 -0
  9. package/locales/de-DE/setting.json +4 -1
  10. package/locales/en-US/common.json +14 -0
  11. package/locales/en-US/setting.json +4 -1
  12. package/locales/es-ES/common.json +14 -0
  13. package/locales/es-ES/setting.json +4 -1
  14. package/locales/fr-FR/common.json +14 -0
  15. package/locales/fr-FR/setting.json +4 -1
  16. package/locales/it-IT/common.json +14 -0
  17. package/locales/it-IT/setting.json +4 -1
  18. package/locales/ja-JP/common.json +14 -0
  19. package/locales/ja-JP/setting.json +4 -1
  20. package/locales/ko-KR/common.json +14 -0
  21. package/locales/ko-KR/setting.json +4 -1
  22. package/locales/nl-NL/common.json +14 -0
  23. package/locales/nl-NL/setting.json +4 -1
  24. package/locales/pl-PL/common.json +14 -0
  25. package/locales/pl-PL/setting.json +4 -1
  26. package/locales/pt-BR/common.json +14 -0
  27. package/locales/pt-BR/setting.json +4 -1
  28. package/locales/ru-RU/common.json +14 -0
  29. package/locales/ru-RU/setting.json +4 -1
  30. package/locales/tr-TR/common.json +14 -0
  31. package/locales/tr-TR/setting.json +4 -1
  32. package/locales/vi-VN/common.json +14 -0
  33. package/locales/vi-VN/setting.json +4 -1
  34. package/locales/zh-CN/common.json +14 -0
  35. package/locales/zh-CN/setting.json +4 -1
  36. package/locales/zh-TW/common.json +14 -0
  37. package/locales/zh-TW/setting.json +4 -1
  38. package/package.json +1 -1
  39. package/src/app/(main)/(mobile)/me/features/AvatarBanner.tsx +52 -0
  40. package/src/app/(main)/(mobile)/me/features/Cate.tsx +34 -0
  41. package/src/app/(main)/(mobile)/me/features/ExtraCate.tsx +26 -0
  42. package/src/app/(main)/(mobile)/me/features/useExtraCate.tsx +68 -0
  43. package/src/app/(main)/(mobile)/me/layout.tsx +11 -0
  44. package/src/app/(main)/(mobile)/me/loading.tsx +17 -0
  45. package/src/app/(main)/(mobile)/me/page.tsx +31 -0
  46. package/src/app/(main)/@nav/_layout/Desktop/BottomActions.tsx +7 -120
  47. package/src/app/(main)/@nav/_layout/Desktop/index.tsx +7 -2
  48. package/src/app/(main)/@nav/_layout/Mobile.tsx +3 -3
  49. package/src/app/(main)/@nav/features/UserAvatar.tsx +24 -0
  50. package/src/app/(main)/@nav/features/UserPanel/LangButton.tsx +55 -0
  51. package/src/app/(main)/@nav/features/UserPanel/Popover.tsx +34 -0
  52. package/src/app/(main)/@nav/features/UserPanel/ThemeButton.tsx +70 -0
  53. package/src/app/(main)/@nav/features/UserPanel/UserInfo.tsx +35 -0
  54. package/src/app/(main)/@nav/features/UserPanel/index.tsx +69 -0
  55. package/src/app/(main)/@nav/features/UserPanel/useMenu.tsx +144 -0
  56. package/src/app/(main)/@nav/features/UserPanel/useNewVersion.tsx +12 -0
  57. package/src/app/(main)/chat/(mobile)/features/SessionHeader.tsx +1 -1
  58. package/src/app/(main)/chat/_layout/Desktop/index.tsx +6 -8
  59. package/src/app/(main)/chat/_layout/Mobile/index.tsx +5 -3
  60. package/src/app/(main)/chat/_layout/type.ts +5 -0
  61. package/src/app/(main)/chat/features/SettingButton.tsx +5 -2
  62. package/src/app/(main)/chat/layout.ts +5 -2
  63. package/src/app/(main)/chat/settings/{(desktop) → _layout/Desktop}/Header.tsx +2 -0
  64. package/src/app/(main)/chat/settings/_layout/Desktop/index.tsx +32 -0
  65. package/src/app/(main)/chat/settings/{(mobile) → _layout/Mobile}/Header.tsx +3 -2
  66. package/src/app/(main)/chat/settings/_layout/Mobile/index.tsx +15 -0
  67. package/src/app/(main)/chat/settings/error.tsx +5 -0
  68. package/src/app/(main)/chat/settings/features/HeaderContent.tsx +15 -9
  69. package/src/app/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +2 -0
  70. package/src/app/(main)/chat/settings/features/SubmitAgentButton/index.tsx +16 -8
  71. package/src/app/(main)/chat/settings/layout.tsx +9 -2
  72. package/src/app/(main)/chat/settings/loading.tsx +3 -0
  73. package/src/app/(main)/chat/settings/not-found.tsx +3 -0
  74. package/src/app/(main)/chat/settings/page.tsx +2 -9
  75. package/src/app/(main)/market/@detail/default.tsx +1 -10
  76. package/src/app/(main)/market/@detail/loading.tsx +1 -0
  77. package/src/app/(main)/market/{@detail/_layout/Desktop.tsx → _layout/Desktop/DetailSidebar.tsx} +2 -2
  78. package/src/app/(main)/market/_layout/Desktop/index.tsx +2 -1
  79. package/src/app/(main)/market/{@detail/_layout/Mobile.tsx → _layout/Mobile/DetailModal.tsx} +2 -2
  80. package/src/app/(main)/market/_layout/Mobile/index.tsx +3 -1
  81. package/src/app/(main)/settings/@category/default.tsx +16 -0
  82. package/src/app/(main)/settings/@category/features/CategoryContent.tsx +35 -0
  83. package/src/app/(main)/settings/@category/features/UpgradeAlert.tsx +38 -0
  84. package/src/app/(main)/settings/_layout/Desktop/Header.tsx +78 -23
  85. package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +39 -27
  86. package/src/app/(main)/settings/_layout/Desktop/index.tsx +41 -17
  87. package/src/app/(main)/settings/_layout/Mobile/{SubSettingHeader.tsx → Header.tsx} +3 -1
  88. package/src/app/(main)/settings/_layout/Mobile/index.tsx +7 -18
  89. package/src/app/(main)/settings/_layout/type.ts +6 -0
  90. package/src/app/(main)/settings/about/features/AboutList.tsx +122 -0
  91. package/src/app/(main)/settings/about/features/Analytics.tsx +42 -0
  92. package/src/app/(main)/settings/about/layout.tsx +26 -0
  93. package/src/app/(main)/settings/about/loading.tsx +5 -0
  94. package/src/app/(main)/settings/about/page.tsx +20 -25
  95. package/src/app/(main)/settings/agent/layout.tsx +35 -0
  96. package/src/app/(main)/settings/agent/loading.tsx +4 -2
  97. package/src/app/(main)/settings/agent/page.tsx +25 -12
  98. package/src/app/(main)/settings/common/{Common.tsx → features/Common.tsx} +7 -5
  99. package/src/app/(main)/settings/common/{Theme.tsx → features/Theme/index.tsx} +8 -6
  100. package/src/app/(main)/settings/common/page.tsx +21 -4
  101. package/src/app/(main)/settings/error.tsx +5 -0
  102. package/src/app/(main)/settings/features/Footer.tsx +2 -0
  103. package/src/app/(main)/settings/features/UpgradeAlert.tsx +21 -13
  104. package/src/app/(main)/settings/hooks/useCategory.tsx +54 -0
  105. package/src/app/(main)/settings/hooks/useSyncSettings.ts +2 -2
  106. package/src/app/(main)/settings/layout.ts +4 -1
  107. package/src/app/(main)/settings/llm/Anthropic/index.tsx +4 -10
  108. package/src/app/(main)/settings/llm/Azure/index.tsx +3 -1
  109. package/src/app/(main)/settings/llm/Bedrock/index.tsx +3 -1
  110. package/src/app/(main)/settings/llm/Google/index.tsx +4 -2
  111. package/src/app/(main)/settings/llm/Groq/index.tsx +3 -1
  112. package/src/app/(main)/settings/llm/Minimax/index.tsx +3 -9
  113. package/src/app/(main)/settings/llm/Mistral/index.tsx +3 -9
  114. package/src/app/(main)/settings/llm/Moonshot/index.tsx +3 -1
  115. package/src/app/(main)/settings/llm/Ollama/index.tsx +3 -1
  116. package/src/app/(main)/settings/llm/OpenAI/index.tsx +2 -0
  117. package/src/app/(main)/settings/llm/OpenRouter/index.tsx +3 -9
  118. package/src/app/(main)/settings/llm/Perplexity/index.tsx +3 -9
  119. package/src/app/(main)/settings/llm/TogetherAI/index.tsx +3 -9
  120. package/src/app/(main)/settings/llm/ZeroOne/index.tsx +3 -9
  121. package/src/app/(main)/settings/llm/Zhipu/index.tsx +3 -10
  122. package/src/app/(main)/settings/llm/components/Checker.tsx +2 -0
  123. package/src/app/(main)/settings/llm/components/Footer.tsx +26 -0
  124. package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +16 -1
  125. package/src/app/(main)/settings/llm/page.tsx +57 -3
  126. package/src/app/(main)/settings/loading.tsx +9 -0
  127. package/src/app/(main)/settings/not-found.tsx +3 -0
  128. package/src/app/(main)/settings/page.tsx +2 -14
  129. package/src/app/(main)/settings/sync/{DeviceInfo → features/DeviceInfo}/Card.tsx +6 -5
  130. package/src/app/(main)/settings/sync/features/DeviceInfo/DeviceName.tsx +63 -0
  131. package/src/app/(main)/settings/sync/{components → features/DeviceInfo}/SystemIcon.tsx +6 -14
  132. package/src/app/(main)/settings/sync/{DeviceInfo → features/DeviceInfo}/index.tsx +22 -36
  133. package/src/app/(main)/settings/sync/{WebRTC → features/WebRTC}/ChannelNameInput.tsx +3 -3
  134. package/src/app/(main)/settings/sync/{WebRTC → features/WebRTC}/index.tsx +10 -9
  135. package/src/app/(main)/settings/sync/page.tsx +19 -11
  136. package/src/app/(main)/settings/tts/features/OpenAI.tsx +54 -0
  137. package/src/app/(main)/settings/tts/{TTS/index.tsx → features/STT.tsx} +11 -27
  138. package/src/app/(main)/settings/tts/page.tsx +17 -11
  139. package/src/app/@modal/(.)settings/about/layout.tsx +1 -0
  140. package/src/app/@modal/(.)settings/about/page.tsx +1 -0
  141. package/src/app/@modal/(.)settings/agent/layout.tsx +1 -0
  142. package/src/app/@modal/(.)settings/agent/page.tsx +1 -0
  143. package/src/app/@modal/(.)settings/common/page.tsx +1 -0
  144. package/src/app/@modal/(.)settings/layout.tsx +28 -0
  145. package/src/app/@modal/(.)settings/llm/page.tsx +1 -0
  146. package/src/app/@modal/(.)settings/loading.tsx +5 -0
  147. package/src/app/@modal/(.)settings/sync/page.tsx +1 -0
  148. package/src/app/@modal/(.)settings/tts/page.tsx +1 -0
  149. package/src/app/@modal/_layout/SettingModalLayout.tsx +59 -0
  150. package/src/app/@modal/chat/(.)settings/features/CategoryContent.tsx +36 -0
  151. package/src/app/@modal/chat/(.)settings/features/useCategory.tsx +62 -0
  152. package/src/app/@modal/chat/(.)settings/layout.tsx +55 -0
  153. package/src/app/@modal/chat/(.)settings/loading.tsx +5 -0
  154. package/src/app/@modal/chat/(.)settings/page.tsx +40 -0
  155. package/src/app/@modal/default.tsx +1 -0
  156. package/src/app/@modal/layout.tsx +30 -0
  157. package/src/app/@modal/loading.tsx +5 -0
  158. package/src/app/layout.tsx +11 -3
  159. package/src/components/BrandWatermark/index.tsx +39 -0
  160. package/src/components/Cell/Divider.tsx +19 -0
  161. package/src/components/Cell/index.tsx +38 -0
  162. package/src/components/Menu/index.tsx +97 -0
  163. package/src/components/SkeletonLoading/index.tsx +21 -0
  164. package/src/const/url.ts +1 -0
  165. package/src/features/AgentSetting/AgentChat/index.tsx +135 -0
  166. package/src/features/AgentSetting/AgentMeta/index.tsx +4 -3
  167. package/src/features/AgentSetting/AgentModal/index.tsx +95 -0
  168. package/src/features/AgentSetting/AgentPlugin/index.tsx +65 -66
  169. package/src/features/AgentSetting/AgentPrompt/index.tsx +101 -47
  170. package/src/features/AgentSetting/AgentTTS/index.tsx +4 -0
  171. package/src/features/AgentSetting/StoreUpdater.tsx +2 -0
  172. package/src/features/AgentSetting/index.tsx +6 -6
  173. package/src/features/AgentSetting/store/index.ts +2 -0
  174. package/src/features/AvatarWithUpload/index.tsx +2 -0
  175. package/src/hooks/useQuery.ts +7 -0
  176. package/src/hooks/useQueryRoute.ts +16 -0
  177. package/src/locales/default/common.ts +14 -0
  178. package/src/locales/default/setting.ts +3 -0
  179. package/src/server/redirectHard.ts +9 -0
  180. package/src/store/global/initialState.ts +1 -0
  181. package/src/app/(main)/@nav/_layout/Desktop/Avatar.tsx +0 -11
  182. package/src/app/(main)/chat/settings/(desktop)/index.tsx +0 -23
  183. package/src/app/(main)/chat/settings/(mobile)/index.tsx +0 -16
  184. package/src/app/(main)/settings/(desktop)/index.tsx +0 -23
  185. package/src/app/(main)/settings/(mobile)/features/AvatarBanner.tsx +0 -68
  186. package/src/app/(main)/settings/(mobile)/features/ExtraList.tsx +0 -65
  187. package/src/app/(main)/settings/(mobile)/index.tsx +0 -53
  188. package/src/app/(main)/settings/about/AboutList.tsx +0 -53
  189. package/src/app/(main)/settings/about/Analytics.tsx +0 -40
  190. package/src/app/(main)/settings/about/style.ts +0 -22
  191. package/src/app/(main)/settings/agent/Agent.tsx +0 -29
  192. package/src/app/(main)/settings/common/index.tsx +0 -24
  193. package/src/app/(main)/settings/common/loading.tsx +0 -3
  194. package/src/app/(main)/settings/features/SettingList/index.tsx +0 -47
  195. package/src/app/(main)/settings/llm/index.tsx +0 -59
  196. package/src/app/(main)/settings/llm/layout.tsx +0 -11
  197. package/src/app/(main)/settings/llm/loading.tsx +0 -3
  198. package/src/app/(main)/settings/sync/DeviceInfo/DeviceName.tsx +0 -66
  199. package/src/app/(main)/settings/sync/PageTitle.tsx +0 -11
  200. package/src/app/(main)/settings/sync/layout.tsx +0 -12
  201. package/src/app/(main)/settings/sync/loading.tsx +0 -3
  202. package/src/app/(main)/settings/tts/loading.tsx +0 -3
  203. package/src/features/AgentSetting/AgentConfig/index.tsx +0 -202
  204. package/src/features/AgentSetting/AgentConfig/useSyncConfig.ts +0 -23
  205. /package/src/app/(main)/settings/{features/SettingList → about/features}/Item.tsx +0 -0
  206. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/ThemeSwatchesNeutral.tsx +0 -0
  207. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/ThemeSwatchesPrimary.tsx +0 -0
  208. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/index.ts +0 -0
  209. /package/src/app/(main)/settings/sync/{Alert.tsx → features/Alert.tsx} +0 -0
  210. /package/src/app/(main)/settings/sync/{components → features/WebRTC}/SyncSwitch/index.css +0 -0
  211. /package/src/app/(main)/settings/sync/{components → features/WebRTC}/SyncSwitch/index.tsx +0 -0
  212. /package/src/app/(main)/settings/sync/{util.ts → features/WebRTC/generateRandomRoomName.ts} +0 -0
  213. /package/src/app/(main)/settings/tts/{TTS/options.ts → features/const.ts} +0 -0
  214. /package/src/features/AgentSetting/{AgentConfig → AgentModal}/ModelSelect.tsx +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.152.2](https://github.com/lobehub/lobe-chat/compare/v0.152.1...v0.152.2)
6
+
7
+ <sup>Released on **2024-05-01**</sup>
8
+
9
+ #### ♻ Code Refactoring
10
+
11
+ - **misc**: Refactor Setting Layout.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Code refactoring
19
+
20
+ - **misc**: Refactor Setting Layout, closes [#2336](https://github.com/lobehub/lobe-chat/issues/2336) ([282082e](https://github.com/lobehub/lobe-chat/commit/282082e))
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
+
5
30
  ### [Version 0.152.1](https://github.com/lobehub/lobe-chat/compare/v0.152.0...v0.152.1)
6
31
 
7
32
  <sup>Released on **2024-05-01**</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
- | [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` |
228
- | [Social Search](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-04-02**</sup> | The Social Search provides access to tweets, users, followers, images, media and more.<br/>`social` `twitter` `x` `search` |
229
- | [Calendar Assistant](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | A plugin to manage your calendar events # will auto generate i18n in workflow<br/>`calendar` `schedule` `will-auto-generate-i-18-n-in-workflow` |
230
- | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | Get realtime crypto price, BTC, ETH, BNB, and the latest insights.The latest coin news and airdrop opportunities.<br/>`crypto` `btc` `eth` `bnb` |
231
-
232
- > 📊 Total plugins: [<kbd>**55**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
225
+ | Recent Submits | Description |
226
+ | ------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
227
+ | [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` |
228
+ | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | Learn how to say anything in another language with Speak, your AI-powered language tutor.<br/>`education` `language` |
229
+ | [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` |
230
+ | [Calendar Assistant](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | A plugin to manage your calendar events # will auto generate i18n in workflow<br/>`calendar` `schedule` `will-auto-generate-i-18-n-in-workflow` |
231
+
232
+ > 📊 Total plugins: [<kbd>**56**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
233
233
 
234
234
  <!-- PLUGIN LIST -->
235
235
 
package/README.zh-CN.md CHANGED
@@ -214,14 +214,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
214
214
 
215
215
  <!-- PLUGIN LIST -->
216
216
 
217
- | 最近新增 | 插件描述 |
218
- | ----------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
219
- | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | 发现主要平台上 NFT 的当前价格,并通过实时跟踪快速变化的市场了解情况<br/>`加密货币` `nft` |
220
- | [社交搜索](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-04-02**</sup> | 社交搜索提供访问推文、用户、关注者、图片、媒体等功能。<br/>`社交` `推特` `x` `搜索` |
221
- | [日历助手](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | 一个用于管理日历事件的插件 # 将自动生成工作流程中的 i18n<br/>`日历` `日程安排` `将自动生成工作流程中的-i-18-n` |
222
- | [TokenInsights](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **feednews** on **2024-01-27**</sup> | 获取实时加密货币价格,BTC,ETH,BNB 和最新见解。最新的币新闻和空投机会。<br/>`加密货币` `btc` `eth` `bnb` |
223
-
224
- > 📊 Total plugins: [<kbd>**55**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
217
+ | 最近新增 | 插件描述 |
218
+ | ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------- |
219
+ | [通过 Serper 搜索 Google](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | 通过 Serper.dev 免费 API 进行 Google 搜索引擎(每月 2500 次🆓)<br/>`网络` `搜索` |
220
+ | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | 使用 Speak,您的 AI 语言导师,学习如何用另一种语言说任何事情。<br/>`教育` `语言` |
221
+ | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | 发现主要平台上 NFT 的当前价格,并通过实时跟踪快速变化的市场了解情况<br/>`加密货币` `nft` |
222
+ | [日历助手](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | 一个用于管理日历事件的插件 # 将自动生成工作流程中的 i18n<br/>`日历` `日程安排` `将自动生成工作流程中的-i-18-n` |
223
+
224
+ > 📊 Total plugins: [<kbd>**56**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
225
225
 
226
226
  <!-- PLUGIN LIST -->
227
227
 
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "الدردشة",
142
142
  "market": "الاكتشاف",
143
+ "me": "أنا",
143
144
  "setting": "الإعدادات"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "ترقية",
157
158
  "hasNew": "يوجد تحديث متاح",
158
159
  "newVersion": "هناك إصدار جديد متاح: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "إدارة الفواتير",
163
+ "discord": "الدعم المجتمعي",
164
+ "docs": "وثائق الاستخدام",
165
+ "email": "الدعم عبر البريد الإلكتروني",
166
+ "feedback": "التغذية الراجعة والاقتراحات",
167
+ "help": "مركز المساعدة",
168
+ "plans": "الخطط الاشتراكية",
169
+ "profile": "إدارة الحساب",
170
+ "setting": "إعدادات التطبيق",
171
+ "usages": "إحصاءات الاستخدام",
172
+ "warn": "هذا الدخول سيتم إيقافه قريبًا، يرجى استدعاء هذه القائمة من زاوية الصورة الرمزية في الزاوية اليسرى العلوية"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "إعدادات التفضيلات والنماذج.",
30
31
  "global": "إعدادات عامة",
31
32
  "session": "إعدادات الجلسة",
32
- "sessionWithName": "إعدادات الجلسة · {{name}}"
33
+ "sessionDesc": "إعداد الشخصية وتفضيلات الجلسة.",
34
+ "sessionWithName": "إعدادات الجلسة · {{name}}",
35
+ "title": "إعدادات"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Чат",
142
142
  "market": "Открий",
143
+ "me": "我",
143
144
  "setting": "Настройки"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Надстрой",
157
158
  "hasNew": "Налична е нова актуализация",
158
159
  "newVersion": "Налична е нова версия: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Сметки",
163
+ "discord": "Общностна поддръжка",
164
+ "docs": "Документация",
165
+ "email": "Имейл поддръжка",
166
+ "feedback": "Обратна връзка и предложения",
167
+ "help": "Център за помощ",
168
+ "plans": "Планове за абонамент",
169
+ "profile": "Управление на профила",
170
+ "setting": "Настройки на приложението",
171
+ "usages": "Статистика за използване",
172
+ "warn": "Този вход скоро ще бъде премахнат, моля използвайте менюто в горния ляв ъгъл, за да достъпите тази информация"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Предпочитания и настройки на модела.",
30
31
  "global": "Глобални настройки",
31
32
  "session": "Настройки на сесията",
32
- "sessionWithName": "Настройки на сесията · {{name}}"
33
+ "sessionDesc": "Задаване на роля и предпочитания за сесия.",
34
+ "sessionWithName": "Настройки на сесията · {{name}}",
35
+ "title": "Настройки"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Entdecken",
143
+ "me": "Ich",
143
144
  "setting": "Einstellung"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Aktualisieren",
157
158
  "hasNew": "Neue Version verfügbar",
158
159
  "newVersion": "Neue Version verfügbar: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Abrechnung",
163
+ "discord": "Community-Support",
164
+ "docs": "Dokumentation",
165
+ "email": "E-Mail-Support",
166
+ "feedback": "Feedback und Vorschläge",
167
+ "help": "Hilfezentrum",
168
+ "plans": "Pläne",
169
+ "profile": "Profil",
170
+ "setting": "Einstellungen",
171
+ "usages": "Nutzung",
172
+ "warn": "Dieser Zugang wird bald entfernt. Bitte rufen Sie das Menü über das Profilbild oben links auf."
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Präferenzen und Modellkonfigurationen.",
30
31
  "global": "Global Einstellungen",
31
32
  "session": "Sitzungseinstellungen",
32
- "sessionWithName": "Sitzungseinstellungen · {{name}}"
33
+ "sessionDesc": "Rollenkonfiguration und Sitzungspräferenzen.",
34
+ "sessionWithName": "Sitzungseinstellungen · {{name}}",
35
+ "title": "Einstellungen"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Discover",
143
+ "me": "Me",
143
144
  "setting": "Settings"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Upgrade",
157
158
  "hasNew": "New update available",
158
159
  "newVersion": "New version available: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Billing",
163
+ "discord": "Community Support",
164
+ "docs": "Documentation",
165
+ "email": "Email Support",
166
+ "feedback": "Feedback & Suggestions",
167
+ "help": "Help Center",
168
+ "plans": "Subscription Plans",
169
+ "profile": "Account Management",
170
+ "setting": "App Settings",
171
+ "usages": "Usage Statistics",
172
+ "warn": "This entry will be deprecated soon. Please access this menu from the profile icon on the top left corner."
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Preferences and model settings.",
30
31
  "global": "Global Settings",
31
32
  "session": "Session Settings",
32
- "sessionWithName": "Session Settings · {{name}}"
33
+ "sessionDesc": "Role settings and session preferences.",
34
+ "sessionWithName": "Session Settings · {{name}}",
35
+ "title": "Settings"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Descubrir",
143
+ "me": "Yo",
143
144
  "setting": "Configuración"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Actualizar",
157
158
  "hasNew": "Hay una nueva actualización disponible",
158
159
  "newVersion": "Nueva versión disponible: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Gestión de facturación",
163
+ "discord": "Soporte comunitario",
164
+ "docs": "Documentación de uso",
165
+ "email": "Soporte por correo electrónico",
166
+ "feedback": "Comentarios y sugerencias",
167
+ "help": "Centro de ayuda",
168
+ "plans": "Planes de suscripción",
169
+ "profile": "Gestión de cuenta",
170
+ "setting": "Configuración de la aplicación",
171
+ "usages": "Estadísticas de uso",
172
+ "warn": "Esta entrada pronto se eliminará, por favor, acceda a este menú desde la imagen de perfil en la esquina superior izquierda"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Preferencias y configuración del modelo.",
30
31
  "global": "Configuración global",
31
32
  "session": "Configuración de la sesión",
32
- "sessionWithName": "Configuración de la sesión · {{name}}"
33
+ "sessionDesc": "Configuración de roles y preferencias de sesión.",
34
+ "sessionWithName": "Configuración de la sesión · {{name}}",
35
+ "title": "Configuración"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Conversation",
142
142
  "market": "Découvrir",
143
+ "me": "我",
143
144
  "setting": "Paramètre"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Mettre à jour",
157
158
  "hasNew": "Nouvelle mise à jour disponible",
158
159
  "newVersion": "Nouvelle version disponible : {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Gestion de la facturation",
163
+ "discord": "Support communautaire",
164
+ "docs": "Documentation d'utilisation",
165
+ "email": "Support par e-mail",
166
+ "feedback": "Retours et suggestions",
167
+ "help": "Centre d'aide",
168
+ "plans": "Forfaits d'abonnement",
169
+ "profile": "Gestion du compte",
170
+ "setting": "Paramètres de l'application",
171
+ "usages": "Statistiques d'utilisation",
172
+ "warn": "Cette entrée sera bientôt supprimée. Veuillez accéder à ce menu en cliquant sur l'avatar en haut à gauche."
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Préférences et paramètres du modèle.",
30
31
  "global": "Paramètres globaux",
31
32
  "session": "Paramètres de session",
32
- "sessionWithName": "Paramètres de session · {{name}}"
33
+ "sessionDesc": "Paramètres de personnage et préférences de session.",
34
+ "sessionWithName": "Paramètres de session · {{name}}",
35
+ "title": "Paramètres"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Scopri",
143
+ "me": "io",
143
144
  "setting": "Impostazioni"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Aggiorna",
157
158
  "hasNew": "Nuovo aggiornamento disponibile",
158
159
  "newVersion": "Nuova versione disponibile: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Gestione fatturazione",
163
+ "discord": "Supporto comunità",
164
+ "docs": "Documentazione",
165
+ "email": "Supporto email",
166
+ "feedback": "Feedback e suggerimenti",
167
+ "help": "Centro assistenza",
168
+ "plans": "Piani di abbonamento",
169
+ "profile": "Gestione account",
170
+ "setting": "Impostazioni app",
171
+ "usages": "Statistiche utilizzo",
172
+ "warn": "Questa voce verrà presto rimossa, successivamente accedi a questo menu dall'icona in alto a sinistra"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Preferenze e impostazioni del modello.",
30
31
  "global": "Impostazioni globali",
31
32
  "session": "Impostazioni della sessione",
32
- "sessionWithName": "Impostazioni della sessione · {{name}}"
33
+ "sessionDesc": "Impostazioni del personaggio e preferenze di sessione.",
34
+ "sessionWithName": "Impostazioni della sessione · {{name}}",
35
+ "title": "Impostazioni"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "チャット",
142
142
  "market": "探す",
143
+ "me": "私",
143
144
  "setting": "設定"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "アップグレード",
157
158
  "hasNew": "利用可能な更新があります",
158
159
  "newVersion": "新しいバージョンが利用可能です:{{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "請求管理",
163
+ "discord": "コミュニティサポート",
164
+ "docs": "ドキュメント",
165
+ "email": "メールサポート",
166
+ "feedback": "フィードバック",
167
+ "help": "ヘルプセンター",
168
+ "plans": "プラン",
169
+ "profile": "アカウント管理",
170
+ "setting": "アプリ設定",
171
+ "usages": "利用状況",
172
+ "warn": "このエントリは近日廃止予定です。今後は左上のアイコンからこのメニューを呼び出してください"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "設定優先順位和模型設置。",
30
31
  "global": "グローバル設定",
31
32
  "session": "セッション設定",
32
- "sessionWithName": "セッション設定 · {{name}}"
33
+ "sessionDesc": "キャラクター設定とセッションの好み。",
34
+ "sessionWithName": "セッション設定 · {{name}}",
35
+ "title": "設定"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "채팅",
142
142
  "market": "발견",
143
+ "me": "나",
143
144
  "setting": "설정"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "업그레이드",
157
158
  "hasNew": "사용 가능한 업데이트가 있습니다",
158
159
  "newVersion": "새 버전 사용 가능: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "청구서 관리",
163
+ "discord": "커뮤니티 지원",
164
+ "docs": "사용 설명서",
165
+ "email": "이메일 지원",
166
+ "feedback": "피드백 및 제안",
167
+ "help": "도움말 센터",
168
+ "plans": "요금제",
169
+ "profile": "계정 관리",
170
+ "setting": "앱 설정",
171
+ "usages": "사용량 통계",
172
+ "warn": "이 항목은 곧 제거될 예정이며, 향후에는 왼쪽 상단의 프로필 아이콘을 클릭하여 이 메뉴를 열어주세요"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "설정 및 모델 설정.",
30
31
  "global": "전역 설정",
31
32
  "session": "세션 설정",
32
- "sessionWithName": "세션 설정 · {{name}}"
33
+ "sessionDesc": "캐릭터 설정 세션 환경 설정.",
34
+ "sessionWithName": "세션 설정 · {{name}}",
35
+ "title": "설정"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "会话",
142
142
  "market": "发现",
143
+ "me": "我",
143
144
  "setting": "设置"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "升级",
157
158
  "hasNew": "有可用更新",
158
159
  "newVersion": "有新版本可用:{{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "账单管理",
163
+ "discord": "社区支持",
164
+ "docs": "使用文档",
165
+ "email": "邮件支持",
166
+ "feedback": "反馈与建议",
167
+ "help": "帮助中心",
168
+ "plans": "订阅方案",
169
+ "profile": "账户管理",
170
+ "setting": "应用设置",
171
+ "usages": "用量统计",
172
+ "warn": "此入口即将下线,后续请从左上角头像唤起本菜单"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Voorkeuren en modelinstellingen.",
30
31
  "global": "Algemene instellingen",
31
32
  "session": "Sessie-instellingen",
32
- "sessionWithName": "Sessie-instellingen · {{name}}"
33
+ "sessionDesc": "Rolinstellingen en sessievoorkeuren.",
34
+ "sessionWithName": "Sessie-instellingen · {{name}}",
35
+ "title": "Instellingen"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Czat",
142
142
  "market": "Odkrywaj",
143
+ "me": "我",
143
144
  "setting": "Ustawienia"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Aktualizuj",
157
158
  "hasNew": "Dostępna jest nowa aktualizacja",
158
159
  "newVersion": "Dostępna jest nowa wersja: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Zarządzanie rachunkiem",
163
+ "discord": "Wsparcie społeczności",
164
+ "docs": "Dokumentacja",
165
+ "email": "Wsparcie mailowe",
166
+ "feedback": "Opinie i sugestie",
167
+ "help": "Centrum pomocy",
168
+ "plans": "Plan abonamentu",
169
+ "profile": "Zarządzanie kontem",
170
+ "setting": "Ustawienia aplikacji",
171
+ "usages": "Statystyki użycia",
172
+ "warn": "To wejście zostanie wkrótce usunięte, prosimy o skorzystanie z menu wywoływanego z lewego górnego rogu"
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Preferencje i ustawienia modelu.",
30
31
  "global": "Ustawienia globalne",
31
32
  "session": "Ustawienia sesji",
32
- "sessionWithName": "Ustawienia sesji · {{name}}"
33
+ "sessionDesc": "Ustawienia postaci i preferencje sesji.",
34
+ "sessionWithName": "Ustawienia sesji · {{name}}",
35
+ "title": "Ustawienia"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Descobrir",
143
+ "me": "eu",
143
144
  "setting": "Configuração"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "Atualizar",
157
158
  "hasNew": "Nova atualização disponível",
158
159
  "newVersion": "Nova versão disponível: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "gerenciamento de faturas",
163
+ "discord": "suporte da comunidade",
164
+ "docs": "documentação",
165
+ "email": "suporte por e-mail",
166
+ "feedback": "feedback e sugestões",
167
+ "help": "centro de ajuda",
168
+ "plans": "planos de assinatura",
169
+ "profile": "gerenciamento de conta",
170
+ "setting": "configurações do aplicativo",
171
+ "usages": "estatísticas de uso",
172
+ "warn": "Este acesso será descontinuado em breve. Por favor, acesse este menu a partir do ícone do perfil no canto superior esquerdo."
159
173
  }
160
174
  }
@@ -27,9 +27,12 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
+ "desc": "Preferências e configurações do modelo.",
30
31
  "global": "Configurações Globais",
31
32
  "session": "Configurações de Sessão",
32
- "sessionWithName": "Configurações de Sessão · {{name}}"
33
+ "sessionDesc": "Configurações de personagem e preferências de sessão.",
34
+ "sessionWithName": "Configurações de Sessão · {{name}}",
35
+ "title": "Configurações"
33
36
  },
34
37
  "llm": {
35
38
  "checker": {
@@ -140,6 +140,7 @@
140
140
  "tab": {
141
141
  "chat": "Чат",
142
142
  "market": "Обзор",
143
+ "me": "我",
143
144
  "setting": "Настройки"
144
145
  },
145
146
  "telemetry": {
@@ -156,5 +157,18 @@
156
157
  "action": "обновить",
157
158
  "hasNew": "Доступно обновление",
158
159
  "newVersion": "Доступна новая версия: {{version}}"
160
+ },
161
+ "userPanel": {
162
+ "billing": "Управление счетами",
163
+ "discord": "Поддержка сообщества",
164
+ "docs": "Документация",
165
+ "email": "Поддержка по электронной почте",
166
+ "feedback": "Обратная связь и предложения",
167
+ "help": "Центр помощи",
168
+ "plans": "Планы подписки",
169
+ "profile": "Управление аккаунтом",
170
+ "setting": "Настройки приложения",
171
+ "usages": "Статистика использования",
172
+ "warn": "Этот раздел скоро будет закрыт, пожалуйста, воспользуйтесь этим меню, вызвав его из левого верхнего угла"
159
173
  }
160
174
  }