@lobehub/chat 1.42.6 → 1.43.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/CHANGELOG.md +33 -0
- package/changelog/v1.json +12 -0
- package/docs/.cdn.cache.json +1 -0
- package/docs/changelog/2025-01-03-user-profile.mdx +27 -0
- package/docs/changelog/2025-01-03-user-profile.zh-CN.mdx +26 -0
- package/docs/self-hosting/advanced/auth/next-auth/wechat.mdx +3 -1
- package/docs/self-hosting/advanced/auth/next-auth/wechat.zh-CN.mdx +2 -2
- package/locales/ar/auth.json +76 -4
- package/locales/bg-BG/auth.json +75 -3
- package/locales/de-DE/auth.json +78 -6
- package/locales/en-US/auth.json +78 -6
- package/locales/es-ES/auth.json +75 -3
- package/locales/fa-IR/auth.json +77 -5
- package/locales/fr-FR/auth.json +78 -6
- package/locales/it-IT/auth.json +76 -4
- package/locales/ja-JP/auth.json +76 -4
- package/locales/ko-KR/auth.json +75 -3
- package/locales/nl-NL/auth.json +76 -4
- package/locales/pl-PL/auth.json +76 -4
- package/locales/pt-BR/auth.json +76 -4
- package/locales/ru-RU/auth.json +75 -3
- package/locales/tr-TR/auth.json +74 -3
- package/locales/vi-VN/auth.json +75 -3
- package/locales/zh-CN/auth.json +75 -3
- package/locales/zh-TW/auth.json +75 -3
- package/package.json +4 -3
- package/src/app/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +4 -0
- package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +0 -46
- package/src/app/(main)/(mobile)/me/(home)/features/UserBanner.tsx +11 -14
- package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +6 -21
- package/src/app/(main)/(mobile)/me/profile/features/Category.tsx +38 -21
- package/src/app/(main)/(mobile)/me/profile/layout.tsx +0 -3
- package/src/app/(main)/(mobile)/me/profile/page.tsx +3 -3
- package/src/app/(main)/chat/loading.tsx +2 -2
- package/src/app/(main)/discover/loading.tsx +2 -8
- package/src/app/(main)/files/loading.tsx +2 -2
- package/src/app/(main)/profile/(home)/Client.tsx +53 -0
- package/src/app/(main)/profile/(home)/[[...slugs]]/page.tsx +38 -0
- package/src/app/(main)/profile/@category/default.tsx +9 -0
- package/src/app/(main)/profile/@category/features/CategoryContent.tsx +38 -0
- package/src/app/(main)/profile/_layout/Desktop/Header.tsx +85 -0
- package/src/app/(main)/profile/_layout/Desktop/SideBar.tsx +42 -0
- package/src/app/(main)/profile/_layout/Desktop/index.tsx +48 -0
- package/src/app/(main)/profile/_layout/Mobile/Header.tsx +23 -5
- package/src/app/(main)/profile/_layout/Mobile/index.tsx +12 -5
- package/src/app/(main)/profile/_layout/type.ts +6 -0
- package/src/app/(main)/profile/error.tsx +5 -0
- package/src/app/(main)/profile/features/ClerkProfile.tsx +72 -0
- package/src/app/(main)/profile/hooks/useCategory.tsx +51 -0
- package/src/app/(main)/profile/layout.tsx +7 -17
- package/src/app/(main)/profile/loading.tsx +2 -22
- package/src/app/(main)/profile/not-found.tsx +3 -0
- package/src/app/(main)/profile/security/page.tsx +34 -0
- package/src/app/(main)/profile/stats/Client.tsx +52 -0
- package/src/app/(main)/profile/stats/features/AiHeatmaps.tsx +130 -0
- package/src/app/(main)/profile/stats/features/AssistantsRank.tsx +115 -0
- package/src/app/(main)/profile/stats/features/ModelsRank.tsx +84 -0
- package/src/app/(main)/profile/stats/features/ShareButton/Preview.tsx +159 -0
- package/src/app/(main)/profile/stats/features/ShareButton/ShareModal.tsx +87 -0
- package/src/app/(main)/profile/stats/features/ShareButton/TotalCard.tsx +39 -0
- package/src/app/(main)/profile/stats/features/ShareButton/index.tsx +26 -0
- package/src/app/(main)/profile/stats/features/TimeLabel.tsx +30 -0
- package/src/app/(main)/profile/stats/features/TopicsRank.tsx +103 -0
- package/src/app/(main)/profile/stats/features/TotalAssistants.tsx +56 -0
- package/src/app/(main)/profile/stats/features/TotalMessages.tsx +56 -0
- package/src/app/(main)/profile/stats/features/TotalTopics.tsx +53 -0
- package/src/app/(main)/profile/stats/features/TotalWords.tsx +54 -0
- package/src/app/(main)/profile/stats/features/Welcome.tsx +86 -0
- package/src/app/(main)/profile/{[[...slugs]] → stats}/page.tsx +4 -5
- package/src/app/(main)/repos/[id]/evals/dataset/page.tsx +2 -2
- package/src/app/(main)/repos/[id]/evals/evaluation/page.tsx +2 -2
- package/src/app/(main)/settings/@category/features/CategoryContent.tsx +1 -1
- package/src/app/(main)/settings/_layout/Desktop/index.tsx +1 -1
- package/src/app/(main)/settings/_layout/Mobile/Header.tsx +1 -1
- package/src/app/(main)/settings/_layout/Mobile/index.tsx +2 -0
- package/src/app/(main)/settings/common/features/Theme/index.tsx +2 -17
- package/src/app/(main)/settings/loading.tsx +2 -2
- package/src/components/Loading/BrandTextLoading/index.tsx +2 -2
- package/src/components/Statistic/index.tsx +15 -0
- package/src/components/StatisticCard/TitleWithPercentage.tsx +80 -0
- package/src/components/StatisticCard/growthPercentage.tsx +8 -0
- package/src/components/StatisticCard/index.tsx +209 -0
- package/src/const/url.ts +3 -3
- package/src/database/server/models/__tests__/message.test.ts +346 -35
- package/src/database/server/models/__tests__/session.test.ts +185 -2
- package/src/database/server/models/__tests__/topic.test.ts +136 -0
- package/src/database/server/models/__tests__/user.test.ts +140 -1
- package/src/database/server/models/message.ts +109 -14
- package/src/database/server/models/session.ts +75 -4
- package/src/database/server/models/topic.ts +43 -3
- package/src/database/server/models/user.ts +22 -0
- package/src/database/utils/genWhere.ts +39 -0
- package/src/features/ShareModal/ShareImage/index.tsx +11 -24
- package/src/features/ShareModal/ShareImage/type.ts +1 -6
- package/src/features/User/DataStatistics.tsx +21 -14
- package/src/features/User/UserPanel/PanelContent.tsx +12 -16
- package/src/features/User/UserPanel/useMenu.tsx +4 -6
- package/src/features/User/__tests__/PanelContent.test.tsx +4 -0
- package/src/features/User/__tests__/useMenu.test.tsx +1 -21
- package/src/hooks/useActiveTabKey.ts +34 -1
- package/src/{features/ShareModal/ShareImage → hooks}/useScreenshot.ts +51 -6
- package/src/locales/default/auth.ts +74 -2
- package/src/server/ld.test.ts +1 -1
- package/src/server/modules/AssistantStore/index.ts +3 -2
- package/src/server/routers/lambda/message.ts +35 -6
- package/src/server/routers/lambda/session.ts +17 -3
- package/src/server/routers/lambda/topic.ts +17 -3
- package/src/server/routers/lambda/user.ts +4 -0
- package/src/server/services/changelog/index.ts +1 -1
- package/src/services/message/_deprecated.ts +16 -0
- package/src/services/message/client.test.ts +0 -18
- package/src/services/message/client.ts +12 -9
- package/src/services/message/server.ts +12 -4
- package/src/services/message/type.ts +15 -3
- package/src/services/session/_deprecated.ts +5 -0
- package/src/services/session/client.ts +6 -2
- package/src/services/session/server.ts +6 -2
- package/src/services/session/type.ts +7 -1
- package/src/services/topic/_deprecated.ts +5 -0
- package/src/services/topic/client.ts +6 -2
- package/src/services/topic/server.ts +7 -1
- package/src/services/topic/type.ts +7 -2
- package/src/services/user/_deprecated.ts +4 -0
- package/src/services/user/client.ts +4 -0
- package/src/services/user/server.ts +4 -0
- package/src/services/user/type.ts +5 -0
- package/src/store/global/initialState.ts +6 -0
- package/src/store/user/slices/auth/action.test.ts +1 -33
- package/src/store/user/slices/auth/action.ts +0 -9
- package/src/store/user/slices/common/action.test.ts +2 -2
- package/src/types/message/index.ts +5 -0
- package/src/types/session/index.ts +8 -0
- package/src/types/topic/topic.ts +7 -0
- package/src/utils/format.ts +1 -1
- package/src/utils/time.ts +23 -0
- package/src/app/(main)/profile/[[...slugs]]/Client.tsx +0 -76
- package/src/components/Loading/BrandTextLoading/LobeChatText/SVG.tsx +0 -44
- package/src/components/Loading/BrandTextLoading/LobeChatText/index.tsx +0 -6
- package/src/components/Loading/BrandTextLoading/LobeChatText/style.css +0 -32
- package/src/hooks/useActiveSettingsKey.ts +0 -20
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,39 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
## [Version 1.43.0](https://github.com/lobehub/lobe-chat/compare/v1.42.6...v1.43.0)
|
6
|
+
|
7
|
+
<sup>Released on **2025-01-03**</sup>
|
8
|
+
|
9
|
+
#### ✨ Features
|
10
|
+
|
11
|
+
- **misc**: Add User Stats and Refactor Profile.
|
12
|
+
|
13
|
+
#### 🐛 Bug Fixes
|
14
|
+
|
15
|
+
- **misc**: Fix chat page error.
|
16
|
+
|
17
|
+
<br/>
|
18
|
+
|
19
|
+
<details>
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
21
|
+
|
22
|
+
#### What's improved
|
23
|
+
|
24
|
+
- **misc**: Add User Stats and Refactor Profile, closes [#5149](https://github.com/lobehub/lobe-chat/issues/5149) ([cbc219c](https://github.com/lobehub/lobe-chat/commit/cbc219c))
|
25
|
+
|
26
|
+
#### What's fixed
|
27
|
+
|
28
|
+
- **misc**: Fix chat page error, closes [#5280](https://github.com/lobehub/lobe-chat/issues/5280) ([315e626](https://github.com/lobehub/lobe-chat/commit/315e626))
|
29
|
+
|
30
|
+
</details>
|
31
|
+
|
32
|
+
<div align="right">
|
33
|
+
|
34
|
+
[](#readme-top)
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
5
38
|
### [Version 1.42.6](https://github.com/lobehub/lobe-chat/compare/v1.42.5...v1.42.6)
|
6
39
|
|
7
40
|
<sup>Released on **2025-01-03**</sup>
|
package/changelog/v1.json
CHANGED
package/docs/.cdn.cache.json
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
"https://github.com/user-attachments/assets/29508dda-2382-430f-bc81-fb23f02149f8": "/blog/assets/29b13dc042e3b839ad8865354afe2fac.webp",
|
8
8
|
"https://github.com/user-attachments/assets/2a4116a7-15ad-43e5-b801-cc62d8da2012": "/blog/assets/37d85fdfccff9ed56e9c6827faee01c7.webp",
|
9
9
|
"https://github.com/user-attachments/assets/385eaca6-daea-484a-9bea-ba7270b4753d": "/blog/assets/d6129350de510a62fe87b2d2f0fb9477.webp",
|
10
|
+
"https://github.com/user-attachments/assets/3d80e0f5-d32a-4412-85b2-e709731460a0": "/blog/assets2d409f43b58953ad5396c6beab8a0719.webp",
|
10
11
|
"https://github.com/user-attachments/assets/484f28f4-017c-4ed7-948b-4a8d51f0b63a": "/blog/assets/5bbb4b421d6df63780b3c7a05f5a102d.webp",
|
11
12
|
"https://github.com/user-attachments/assets/533f7a5e-8a93-4a57-a62f-8233897d72b5": "/blog/assets/9498087e85f27e692716a63cb3b58d79.webp",
|
12
13
|
"https://github.com/user-attachments/assets/6069332b-8e15-4d3c-8a77-479e8bc09c23": "/blog/assets/603fefbb944bc6761ebdab5956fc0084.webp",
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
title: LobeChat Supports User Data Statistics and Activity Sharing
|
3
|
+
description: >-
|
4
|
+
LobeChat now supports multi-dimensional user data statistics and activity
|
5
|
+
sharing
|
6
|
+
---
|
7
|
+
|
8
|
+
# User Data Statistics and Activity Sharing 💯
|
9
|
+
|
10
|
+
Want to know about your activity performance on LobeChat?
|
11
|
+
|
12
|
+
Now, you can comprehensively understand your AI data through the statistics feature, and even generate personal activity sharing images to share your LobeChat activity with friends.
|
13
|
+
|
14
|
+
## 📊 Data Statistics
|
15
|
+
|
16
|
+
- **Statistics**: Number of Assistants / Topics / Messages / Total Word Count
|
17
|
+
- **Rankings**:
|
18
|
+
- Model Usage Rate `Top 10`
|
19
|
+
- Assistant Usage Rate `Top 10`
|
20
|
+
- Topic Content Volume `Top 10`
|
21
|
+
- **Heat Map**: Activity distribution over the past year
|
22
|
+
- **User Activity Sharing**: Generate personal activity sharing images
|
23
|
+
|
24
|
+
## 👉 How to Use
|
25
|
+
|
26
|
+
1. Requires `PgLite` or `Database` mode
|
27
|
+
2. Click on your profile picture to enter "Account" - "Data Statistics" page
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
title: LobeChat 支持用户数据统计与活跃度分享
|
3
|
+
description: LobeChat 现已支持多维度用户数据统计与活跃度分享
|
4
|
+
---
|
5
|
+
|
6
|
+
# 用户数据统计与活跃度分享 💯
|
7
|
+
|
8
|
+
想要了解自己在 LobeChat 上的活跃度表现吗?
|
9
|
+
|
10
|
+
现在,您可以通过数据统计功能,全方位了解自己的 AI 数据,还可以生成个人活跃度分享图片,与好友分享您在 LobeChat 上的活跃度。
|
11
|
+
|
12
|
+
## 📊 数据统计
|
13
|
+
|
14
|
+
- **数据统计**: 助手数 / 话题数 / 消息数 / 累计字数
|
15
|
+
- **排行版**:
|
16
|
+
- 模型使用率 `Top 10`
|
17
|
+
- 助手使用率 `Top 10`
|
18
|
+
- 话题内容量 `Top 10`
|
19
|
+
- **热力图**: 过去一年内的活跃度分布
|
20
|
+
- **用户活跃度分享**: 生成个人活跃度分享图片
|
21
|
+
|
22
|
+
## 👉 使用方式
|
23
|
+
|
24
|
+
1. 需要使用 `PgLite` 或 `数据库` 模式
|
25
|
+
2. 点击个人头像进入「账户管理」-「数据统计」页面
|
26
|
+
|
@@ -1,6 +1,8 @@
|
|
1
1
|
---
|
2
2
|
title: Configure Wechat Authentication Service in LobeChat
|
3
|
-
description:
|
3
|
+
description: >-
|
4
|
+
Learn how to configure Wechat authentication service in LobeChat, including
|
5
|
+
creating a new Wechat App, setting permissions, and environment variables.
|
4
6
|
tags:
|
5
7
|
- Wechat Authentication
|
6
8
|
- Wechat App
|
package/locales/ar/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "الشهر الماضي",
|
4
|
+
"recent30Days": "آخر 30 يومًا"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "إدارة معلومات حسابك.",
|
8
|
+
"title": "الحساب"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "غير نشط",
|
13
|
+
"more": "نشط"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "أبريل",
|
17
|
+
"aug": "أغسطس",
|
18
|
+
"dec": "ديسمبر",
|
19
|
+
"feb": "فبراير",
|
20
|
+
"jan": "يناير",
|
21
|
+
"jul": "يوليو",
|
22
|
+
"jun": "يونيو",
|
23
|
+
"mar": "مارس",
|
24
|
+
"may": "مايو",
|
25
|
+
"nov": "نوفمبر",
|
26
|
+
"oct": "أكتوبر",
|
27
|
+
"sep": "سبتمبر"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} أرسل {{count}} رسائل في ذلك اليوم",
|
30
|
+
"totalCount": "إجمالي {{count}} رسائل أرسلت في العام الماضي"
|
31
|
+
},
|
2
32
|
"login": "تسجيل الدخول",
|
3
|
-
"loginOrSignup": "تسجيل الدخول /
|
4
|
-
"profile":
|
5
|
-
|
33
|
+
"loginOrSignup": "تسجيل الدخول / الاشتراك",
|
34
|
+
"profile": {
|
35
|
+
"avatar": "الصورة الشخصية",
|
36
|
+
"email": "عنوان البريد الإلكتروني",
|
37
|
+
"username": "اسم المستخدم"
|
38
|
+
},
|
6
39
|
"signout": "تسجيل الخروج",
|
7
|
-
"signup": "
|
40
|
+
"signup": "الاشتراك",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "مؤشر النشاط",
|
43
|
+
"assistants": "المساعدون",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "المساعد",
|
46
|
+
"right": "المواضيع",
|
47
|
+
"title": "ترتيب استخدام المساعد"
|
48
|
+
},
|
49
|
+
"createdAt": "تاريخ التسجيل",
|
50
|
+
"days": "أيام",
|
51
|
+
"empty": {
|
52
|
+
"desc": "يرجى تجميع المزيد من بيانات الدردشة للعرض",
|
53
|
+
"title": "لا توجد بيانات"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "النشاط في العام الماضي",
|
56
|
+
"messages": "رسائل",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "النموذج",
|
59
|
+
"right": "الرسائل",
|
60
|
+
"title": "ترتيب استخدام النموذج"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "مؤشر نشاط الذكاء الاصطناعي الخاص بي"
|
64
|
+
},
|
65
|
+
"topics": "المواضيع",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "الموضوع",
|
68
|
+
"right": "الرسائل",
|
69
|
+
"title": "ترتيب محتوى الموضوع"
|
70
|
+
},
|
71
|
+
"updatedAt": "تاريخ التحديث",
|
72
|
+
"welcome": "{{username}}، هذا هو يومك <span>{{days}}</span> مع {{appName}}",
|
73
|
+
"words": "كلمات"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "الملف الشخصي",
|
77
|
+
"security": "الأمان",
|
78
|
+
"stats": "الإحصائيات"
|
79
|
+
}
|
8
80
|
}
|
package/locales/bg-BG/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "Миналия месец",
|
4
|
+
"recent30Days": "Последните 30 дни"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "Управлявайте информацията за вашия акаунт.",
|
8
|
+
"title": "Акаунт"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "Неактивен",
|
13
|
+
"more": "Активен"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "Апр",
|
17
|
+
"aug": "Авг",
|
18
|
+
"dec": "Дек",
|
19
|
+
"feb": "Фев",
|
20
|
+
"jan": "Ян",
|
21
|
+
"jul": "Юл",
|
22
|
+
"jun": "Юн",
|
23
|
+
"mar": "Мар",
|
24
|
+
"may": "Май",
|
25
|
+
"nov": "Ное",
|
26
|
+
"oct": "Окт",
|
27
|
+
"sep": "Сеп"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} изпратил(а) {{count}} съобщения този ден",
|
30
|
+
"totalCount": "Общо {{count}} съобщения изпратени през последната година"
|
31
|
+
},
|
2
32
|
"login": "Вход",
|
3
33
|
"loginOrSignup": "Вход / Регистрация",
|
4
|
-
"profile":
|
5
|
-
|
34
|
+
"profile": {
|
35
|
+
"avatar": "Аватар",
|
36
|
+
"email": "Имейл адрес",
|
37
|
+
"username": "Потребителско име"
|
38
|
+
},
|
6
39
|
"signout": "Изход",
|
7
|
-
"signup": "Регистрация"
|
40
|
+
"signup": "Регистрация",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "Индекс на активност",
|
43
|
+
"assistants": "Асистенти",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "Асистент",
|
46
|
+
"right": "Тематики",
|
47
|
+
"title": "Ранг на използване на асистенти"
|
48
|
+
},
|
49
|
+
"createdAt": "Регистриран на",
|
50
|
+
"days": "дни",
|
51
|
+
"empty": {
|
52
|
+
"desc": "Моля, натрупайте повече данни от чат, за да видите",
|
53
|
+
"title": "Няма данни"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "активност през последната година",
|
56
|
+
"messages": "Съобщения",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "Модел",
|
59
|
+
"right": "Съобщения",
|
60
|
+
"title": "Ранг на използване на модели"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "Моят индекс на активност с ИИ"
|
64
|
+
},
|
65
|
+
"topics": "Тематики",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "Тематика",
|
68
|
+
"right": "Съобщения",
|
69
|
+
"title": "Ранг на съдържание на тематики"
|
70
|
+
},
|
71
|
+
"updatedAt": "Актуализиран на",
|
72
|
+
"welcome": "{{username}}, това е вашият <span>{{days}}</span> ден с {{appName}}",
|
73
|
+
"words": "Думи"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "Профил",
|
77
|
+
"security": "Сигурност",
|
78
|
+
"stats": "Статистика"
|
79
|
+
}
|
8
80
|
}
|
package/locales/de-DE/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "Letzter Monat",
|
4
|
+
"recent30Days": "Letzte 30 Tage"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "Verwalten Sie Ihre Kontoinformationen.",
|
8
|
+
"title": "Konto"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "Inaktiv",
|
13
|
+
"more": "Aktiv"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "Apr",
|
17
|
+
"aug": "Aug",
|
18
|
+
"dec": "Dez",
|
19
|
+
"feb": "Feb",
|
20
|
+
"jan": "Jan",
|
21
|
+
"jul": "Jul",
|
22
|
+
"jun": "Jun",
|
23
|
+
"mar": "Mär",
|
24
|
+
"may": "Mai",
|
25
|
+
"nov": "Nov",
|
26
|
+
"oct": "Okt",
|
27
|
+
"sep": "Sep"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} hat {{count}} Nachrichten an diesem Tag gesendet",
|
30
|
+
"totalCount": "Insgesamt wurden {{count}} Nachrichten im letzten Jahr gesendet"
|
31
|
+
},
|
32
|
+
"login": "Einloggen",
|
33
|
+
"loginOrSignup": "Einloggen / Registrieren",
|
34
|
+
"profile": {
|
35
|
+
"avatar": "Avatar",
|
36
|
+
"email": "E-Mail-Adresse",
|
37
|
+
"username": "Benutzername"
|
38
|
+
},
|
39
|
+
"signout": "Ausloggen",
|
40
|
+
"signup": "Registrieren",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "Aktivitätsindex",
|
43
|
+
"assistants": "Assistenten",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "Assistent",
|
46
|
+
"right": "Themen",
|
47
|
+
"title": "Rang der Assistentennutzung"
|
48
|
+
},
|
49
|
+
"createdAt": "Registriert am",
|
50
|
+
"days": "Tage",
|
51
|
+
"empty": {
|
52
|
+
"desc": "Bitte sammeln Sie mehr Chatdaten, um sie anzuzeigen",
|
53
|
+
"title": "Keine Daten"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "Aktivität im letzten Jahr",
|
56
|
+
"messages": "Nachrichten",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "Modell",
|
59
|
+
"right": "Nachrichten",
|
60
|
+
"title": "Rang der Modellenutzung"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "Mein AI Aktivitätsindex"
|
64
|
+
},
|
65
|
+
"topics": "Themen",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "Thema",
|
68
|
+
"right": "Nachrichten",
|
69
|
+
"title": "Rang des Themeninhalts"
|
70
|
+
},
|
71
|
+
"updatedAt": "Aktualisiert am",
|
72
|
+
"welcome": "{{username}}, dies ist Ihr <span>{{days}}</span> Tag mit {{appName}}",
|
73
|
+
"words": "Wörter"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "Profil",
|
77
|
+
"security": "Sicherheit",
|
78
|
+
"stats": "Statistiken"
|
79
|
+
}
|
8
80
|
}
|
package/locales/en-US/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "Last Month",
|
4
|
+
"recent30Days": "Last 30 Days"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "Manage your account information.",
|
8
|
+
"title": "Account"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "Inactive",
|
13
|
+
"more": "Active"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "Apr",
|
17
|
+
"aug": "Aug",
|
18
|
+
"dec": "Dec",
|
19
|
+
"feb": "Feb",
|
20
|
+
"jan": "Jan",
|
21
|
+
"jul": "Jul",
|
22
|
+
"jun": "Jun",
|
23
|
+
"mar": "Mar",
|
24
|
+
"may": "May",
|
25
|
+
"nov": "Nov",
|
26
|
+
"oct": "Oct",
|
27
|
+
"sep": "Sep"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} sent {{count}} messages that day",
|
30
|
+
"totalCount": "A total of {{count}} messages sent in the past year"
|
31
|
+
},
|
32
|
+
"login": "Log In",
|
33
|
+
"loginOrSignup": "Log In / Sign Up",
|
34
|
+
"profile": {
|
35
|
+
"avatar": "Avatar",
|
36
|
+
"email": "Email Address",
|
37
|
+
"username": "Username"
|
38
|
+
},
|
39
|
+
"signout": "Log Out",
|
40
|
+
"signup": "Sign Up",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "Activity Index",
|
43
|
+
"assistants": "Assistants",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "Assistant",
|
46
|
+
"right": "Topics",
|
47
|
+
"title": "Assistant Usage Rank"
|
48
|
+
},
|
49
|
+
"createdAt": "Registered at",
|
50
|
+
"days": "days",
|
51
|
+
"empty": {
|
52
|
+
"desc": "Please accumulate more chat data to view",
|
53
|
+
"title": "No Data"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "Activity in the past year",
|
56
|
+
"messages": "Messages",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "Model",
|
59
|
+
"right": "Messages",
|
60
|
+
"title": "Model Usage Rank"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "My AI Activity Index"
|
64
|
+
},
|
65
|
+
"topics": "Topics",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "Topic",
|
68
|
+
"right": "Messages",
|
69
|
+
"title": "Topic Content Rank"
|
70
|
+
},
|
71
|
+
"updatedAt": "Updated at",
|
72
|
+
"welcome": "{{username}}, this is your <span>{{days}}</span> day with {{appName}}",
|
73
|
+
"words": "Total Words"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "Profile",
|
77
|
+
"security": "Security",
|
78
|
+
"stats": "Statistics"
|
79
|
+
}
|
8
80
|
}
|
package/locales/es-ES/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "Último mes",
|
4
|
+
"recent30Days": "Últimos 30 días"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "Gestiona la información de tu cuenta.",
|
8
|
+
"title": "Cuenta"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "Inactivo",
|
13
|
+
"more": "Activo"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "Abr",
|
17
|
+
"aug": "Ago",
|
18
|
+
"dec": "Dic",
|
19
|
+
"feb": "Feb",
|
20
|
+
"jan": "Ene",
|
21
|
+
"jul": "Jul",
|
22
|
+
"jun": "Jun",
|
23
|
+
"mar": "Mar",
|
24
|
+
"may": "May",
|
25
|
+
"nov": "Nov",
|
26
|
+
"oct": "Oct",
|
27
|
+
"sep": "Sep"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} envió {{count}} mensajes ese día",
|
30
|
+
"totalCount": "Un total de {{count}} mensajes enviados en el último año"
|
31
|
+
},
|
2
32
|
"login": "Iniciar sesión",
|
3
33
|
"loginOrSignup": "Iniciar sesión / Registrarse",
|
4
|
-
"profile":
|
5
|
-
|
34
|
+
"profile": {
|
35
|
+
"avatar": "Avatar",
|
36
|
+
"email": "Dirección de correo electrónico",
|
37
|
+
"username": "Nombre de usuario"
|
38
|
+
},
|
6
39
|
"signout": "Cerrar sesión",
|
7
|
-
"signup": "Registrarse"
|
40
|
+
"signup": "Registrarse",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "Índice de Actividad",
|
43
|
+
"assistants": "Asistentes",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "Asistente",
|
46
|
+
"right": "Temas",
|
47
|
+
"title": "Clasificación de Uso de Asistentes"
|
48
|
+
},
|
49
|
+
"createdAt": "Registrado en",
|
50
|
+
"days": "días",
|
51
|
+
"empty": {
|
52
|
+
"desc": "Por favor, acumula más datos de chat para ver",
|
53
|
+
"title": "Sin datos"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "actividad en el último año",
|
56
|
+
"messages": "Mensajes",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "Modelo",
|
59
|
+
"right": "Mensajes",
|
60
|
+
"title": "Clasificación de Uso de Modelos"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "Mi Índice de Actividad AI"
|
64
|
+
},
|
65
|
+
"topics": "Temas",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "Tema",
|
68
|
+
"right": "Mensajes",
|
69
|
+
"title": "Clasificación de Contenido de Temas"
|
70
|
+
},
|
71
|
+
"updatedAt": "Actualizado en",
|
72
|
+
"welcome": "{{username}}, este es tu <span>{{days}}</span> día con {{appName}}",
|
73
|
+
"words": "Palabras"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "Perfil",
|
77
|
+
"security": "Seguridad",
|
78
|
+
"stats": "Estadísticas"
|
79
|
+
}
|
8
80
|
}
|
package/locales/fa-IR/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
+
"date": {
|
3
|
+
"prevMonth": "ماه گذشته",
|
4
|
+
"recent30Days": "۳۰ روز گذشته"
|
5
|
+
},
|
6
|
+
"header": {
|
7
|
+
"desc": "اطلاعات حساب کاربری خود را مدیریت کنید.",
|
8
|
+
"title": "حساب کاربری"
|
9
|
+
},
|
10
|
+
"heatmaps": {
|
11
|
+
"legend": {
|
12
|
+
"less": "غیرفعال",
|
13
|
+
"more": "فعال"
|
14
|
+
},
|
15
|
+
"months": {
|
16
|
+
"apr": "آوریل",
|
17
|
+
"aug": "اوت",
|
18
|
+
"dec": "دسامبر",
|
19
|
+
"feb": "فوریه",
|
20
|
+
"jan": "ژانویه",
|
21
|
+
"jul": "ژوئیه",
|
22
|
+
"jun": "ژوئن",
|
23
|
+
"mar": "مارس",
|
24
|
+
"may": "مه",
|
25
|
+
"nov": "نوامبر",
|
26
|
+
"oct": "اکتبر",
|
27
|
+
"sep": "سپتامبر"
|
28
|
+
},
|
29
|
+
"tooltip": "{{date}} در آن روز {{count}} پیام ارسال کرد",
|
30
|
+
"totalCount": "در مجموع {{count}} پیام در سال گذشته ارسال شده است"
|
31
|
+
},
|
2
32
|
"login": "ورود",
|
3
|
-
"loginOrSignup": "ورود /
|
4
|
-
"profile":
|
5
|
-
|
6
|
-
|
7
|
-
|
33
|
+
"loginOrSignup": "ورود / ثبت نام",
|
34
|
+
"profile": {
|
35
|
+
"avatar": "آواتار",
|
36
|
+
"email": "آدرس ایمیل",
|
37
|
+
"username": "نام کاربری"
|
38
|
+
},
|
39
|
+
"signout": "خروج",
|
40
|
+
"signup": "ثبت نام",
|
41
|
+
"stats": {
|
42
|
+
"aiheatmaps": "شاخص فعالیت",
|
43
|
+
"assistants": "دستیاران",
|
44
|
+
"assistantsRank": {
|
45
|
+
"left": "دستیار",
|
46
|
+
"right": "موضوعات",
|
47
|
+
"title": "رتبه استفاده از دستیار"
|
48
|
+
},
|
49
|
+
"createdAt": "تاریخ ثبت نام",
|
50
|
+
"days": "روز",
|
51
|
+
"empty": {
|
52
|
+
"desc": "لطفاً دادههای چت بیشتری جمعآوری کنید تا مشاهده کنید",
|
53
|
+
"title": "دادهای وجود ندارد"
|
54
|
+
},
|
55
|
+
"lastYearActivity": "فعالیت در سال گذشته",
|
56
|
+
"messages": "پیامها",
|
57
|
+
"modelsRank": {
|
58
|
+
"left": "مدل",
|
59
|
+
"right": "پیامها",
|
60
|
+
"title": "رتبه استفاده از مدل"
|
61
|
+
},
|
62
|
+
"share": {
|
63
|
+
"title": "شاخص فعالیت هوش مصنوعی من"
|
64
|
+
},
|
65
|
+
"topics": "موضوعات",
|
66
|
+
"topicsRank": {
|
67
|
+
"left": "موضوع",
|
68
|
+
"right": "پیامها",
|
69
|
+
"title": "رتبه محتوای موضوع"
|
70
|
+
},
|
71
|
+
"updatedAt": "تاریخ بهروزرسانی",
|
72
|
+
"welcome": "{{username}}، این {{days}} روز شما با {{appName}} است",
|
73
|
+
"words": "کلمات"
|
74
|
+
},
|
75
|
+
"tab": {
|
76
|
+
"profile": "پروفایل",
|
77
|
+
"security": "امنیت",
|
78
|
+
"stats": "آمار"
|
79
|
+
}
|
8
80
|
}
|