@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.
- package/.eslintignore +1 -2
- package/CHANGELOG.md +50 -0
- package/README.md +14 -14
- package/README.zh-CN.md +14 -14
- package/locales/ar/auth.json +2 -0
- package/locales/ar/chat.json +1 -0
- package/locales/ar/common.json +1 -0
- package/locales/bg-BG/auth.json +2 -0
- package/locales/bg-BG/chat.json +1 -0
- package/locales/bg-BG/common.json +1 -0
- package/locales/bg-BG/error.json +3 -3
- package/locales/de-DE/auth.json +2 -0
- package/locales/de-DE/chat.json +1 -0
- package/locales/de-DE/common.json +1 -0
- package/locales/en-US/auth.json +2 -0
- package/locales/en-US/chat.json +1 -0
- package/locales/en-US/common.json +1 -0
- package/locales/es-ES/auth.json +2 -0
- package/locales/es-ES/chat.json +1 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/fr-FR/auth.json +2 -0
- package/locales/fr-FR/chat.json +1 -0
- package/locales/fr-FR/common.json +1 -0
- package/locales/it-IT/auth.json +2 -0
- package/locales/it-IT/chat.json +1 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/ja-JP/auth.json +2 -0
- package/locales/ja-JP/chat.json +1 -0
- package/locales/ja-JP/common.json +1 -0
- package/locales/ko-KR/auth.json +2 -0
- package/locales/ko-KR/chat.json +1 -0
- package/locales/ko-KR/common.json +1 -0
- package/locales/nl-NL/auth.json +2 -0
- package/locales/nl-NL/chat.json +1 -0
- package/locales/nl-NL/common.json +50 -49
- package/locales/pl-PL/auth.json +2 -0
- package/locales/pl-PL/chat.json +1 -0
- package/locales/pl-PL/common.json +1 -0
- package/locales/pl-PL/error.json +3 -3
- package/locales/pt-BR/auth.json +2 -0
- package/locales/pt-BR/chat.json +1 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/ru-RU/auth.json +2 -0
- package/locales/ru-RU/chat.json +1 -0
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/error.json +3 -3
- package/locales/tr-TR/auth.json +2 -0
- package/locales/tr-TR/chat.json +1 -0
- package/locales/tr-TR/common.json +1 -0
- package/locales/vi-VN/auth.json +2 -0
- package/locales/vi-VN/chat.json +1 -0
- package/locales/vi-VN/common.json +1 -0
- package/locales/zh-CN/auth.json +2 -0
- package/locales/zh-CN/chat.json +1 -0
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-TW/auth.json +2 -0
- package/locales/zh-TW/chat.json +1 -0
- package/locales/zh-TW/common.json +1 -0
- package/package.json +2 -2
- package/src/app/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +80 -0
- package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +116 -0
- package/src/app/(main)/(mobile)/me/(home)/features/Category.tsx +15 -0
- package/src/app/(main)/(mobile)/me/(home)/features/UserBanner.tsx +37 -0
- package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +95 -0
- package/src/app/(main)/(mobile)/me/{page.tsx → (home)/page.tsx} +6 -10
- package/src/app/(main)/(mobile)/me/data/features/Category.tsx +48 -0
- package/src/app/(main)/(mobile)/me/data/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/data/layout.tsx +13 -0
- package/src/app/(main)/(mobile)/me/data/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/data/page.tsx +17 -0
- package/src/app/(main)/(mobile)/me/profile/features/Category.tsx +45 -0
- package/src/app/(main)/(mobile)/me/profile/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/profile/layout.tsx +16 -0
- package/src/app/(main)/(mobile)/me/profile/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/profile/page.tsx +17 -0
- package/src/app/(main)/(mobile)/me/settings/features/Category.tsx +15 -0
- package/src/app/(main)/(mobile)/me/settings/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/settings/features/useCategory.tsx +57 -0
- package/src/app/(main)/(mobile)/me/settings/layout.tsx +13 -0
- package/src/app/(main)/(mobile)/me/settings/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/settings/page.tsx +17 -0
- package/src/app/(main)/_layout/Mobile.tsx +5 -4
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +21 -1
- package/src/app/(main)/profile/[[...slugs]]/Client.tsx +74 -0
- package/src/app/(main)/profile/[[...slugs]]/page.tsx +18 -0
- package/src/app/(main)/profile/_layout/Mobile/Header.tsx +26 -0
- package/src/app/(main)/profile/_layout/Mobile/index.tsx +16 -0
- package/src/app/(main)/profile/layout.tsx +20 -0
- package/src/app/(main)/profile/loading.tsx +23 -0
- package/src/app/(main)/settings/_layout/Mobile/Header.tsx +2 -1
- package/src/app/(main)/settings/hooks/useCategory.tsx +7 -13
- package/src/app/@modal/layout.tsx +3 -0
- package/src/components/Cell/Divider.tsx +3 -2
- package/src/components/Cell/index.tsx +28 -18
- package/src/features/User/DataStatistics.tsx +3 -1
- package/src/features/User/UserLoginOrSignup.tsx +2 -2
- package/src/features/User/UserPanel/PanelContent.tsx +9 -3
- package/src/features/User/UserPanel/useMenu.tsx +29 -29
- package/src/features/User/__tests__/PanelContent.test.tsx +7 -0
- package/src/features/User/__tests__/useMenu.test.tsx +142 -0
- package/src/layout/AuthProvider/Clerk/useAppearance.ts +5 -4
- package/src/libs/agent-runtime/azureOpenai/index.test.ts +161 -27
- package/src/libs/agent-runtime/utils/streams/openai.ts +4 -0
- package/src/locales/default/auth.ts +2 -0
- package/src/locales/default/chat.ts +1 -0
- package/src/locales/default/common.ts +1 -0
- package/src/store/user/slices/auth/selectors.ts +2 -1
- package/src/app/(auth)/profile/[[...slugs]]/PageTitle.tsx +0 -13
- package/src/app/(auth)/profile/[[...slugs]]/page.tsx +0 -14
- package/src/app/(main)/(mobile)/me/features/Cate.tsx +0 -33
- package/src/app/(main)/(mobile)/me/features/ExtraCate.tsx +0 -24
- package/src/app/(main)/(mobile)/me/features/useExtraCate.tsx +0 -62
- /package/src/app/(main)/(mobile)/me/{features → (home)/features}/Header.tsx +0 -0
- /package/src/app/(main)/(mobile)/me/{layout.tsx → (home)/layout.tsx} +0 -0
- /package/src/app/(main)/(mobile)/me/{loading.tsx → (home)/loading.tsx} +0 -0
package/.eslintignore
CHANGED
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
|
+
[](#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
|
+
[](#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
|
-
| [
|
|
228
|
-
| [
|
|
229
|
-
| [Search
|
|
230
|
-
| [
|
|
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>**
|
|
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
|
-
| [
|
|
268
|
-
| [
|
|
269
|
-
| [
|
|
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>**
|
|
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
|
-
| [
|
|
220
|
-
| [
|
|
221
|
-
| [
|
|
222
|
-
| [
|
|
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>**
|
|
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
|
-
| [
|
|
256
|
-
| [
|
|
257
|
-
| [
|
|
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>**
|
|
259
|
+
> 📊 Total agents: [<kbd>**249**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
260
260
|
|
|
261
261
|
<!-- AGENT LIST -->
|
|
262
262
|
|
package/locales/ar/auth.json
CHANGED
package/locales/ar/chat.json
CHANGED
|
@@ -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": "سيتم مسح رسائل الجلسة الحالية قريبًا، وبمجرد المسح لن يمكن استعادتها، يرجى تأكيد الإجراء الخاص بك",
|
package/locales/ar/common.json
CHANGED
package/locales/bg-BG/auth.json
CHANGED
package/locales/bg-BG/chat.json
CHANGED
|
@@ -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": "Документация",
|
package/locales/bg-BG/error.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"clerkAuth": {
|
|
3
3
|
"loginSuccess": {
|
|
4
|
-
"action": "
|
|
5
|
-
"desc": "{{greeting}}
|
|
6
|
-
"title": "
|
|
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": {
|
package/locales/de-DE/auth.json
CHANGED
package/locales/de-DE/chat.json
CHANGED
|
@@ -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.",
|
package/locales/en-US/auth.json
CHANGED
package/locales/en-US/chat.json
CHANGED
|
@@ -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.",
|
package/locales/es-ES/auth.json
CHANGED
package/locales/es-ES/chat.json
CHANGED
|
@@ -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",
|
package/locales/fr-FR/auth.json
CHANGED
package/locales/fr-FR/chat.json
CHANGED
|
@@ -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",
|
package/locales/it-IT/auth.json
CHANGED
package/locales/it-IT/chat.json
CHANGED
|
@@ -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?",
|
package/locales/ja-JP/auth.json
CHANGED
package/locales/ja-JP/chat.json
CHANGED
|
@@ -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": "現在の会話をクリアします。クリアした後は元に戻すことはできません。操作を確認してください。",
|
package/locales/ko-KR/auth.json
CHANGED
package/locales/ko-KR/chat.json
CHANGED
|
@@ -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": "현재 대화를 지우시면 되돌릴 수 없습니다. 작업을 확인하시겠습니까?",
|
package/locales/nl-NL/auth.json
CHANGED
package/locales/nl-NL/chat.json
CHANGED
|
@@ -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": "
|
|
163
|
-
"updateAgent": "
|
|
161
|
+
"temp": "tijdelijk",
|
|
162
|
+
"terms": "algemene voorwaarden",
|
|
163
|
+
"updateAgent": "update assistent",
|
|
164
164
|
"upgradeVersion": {
|
|
165
|
-
"action": "
|
|
166
|
-
"hasNew": "
|
|
167
|
-
"newVersion": "
|
|
165
|
+
"action": "upgraden",
|
|
166
|
+
"hasNew": "nieuwe versie beschikbaar",
|
|
167
|
+
"newVersion": "nieuwe versie beschikbaar: {{version}}"
|
|
168
168
|
},
|
|
169
169
|
"userPanel": {
|
|
170
|
-
"anonymousNickName": "
|
|
171
|
-
"billing": "
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
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
|
}
|