@lobehub/chat 1.42.6 → 1.43.1

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 (140) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/changelog/v1.json +21 -0
  3. package/docs/.cdn.cache.json +1 -0
  4. package/docs/changelog/2025-01-03-user-profile.mdx +27 -0
  5. package/docs/changelog/2025-01-03-user-profile.zh-CN.mdx +26 -0
  6. package/docs/self-hosting/advanced/auth/next-auth/wechat.mdx +3 -1
  7. package/docs/self-hosting/advanced/auth/next-auth/wechat.zh-CN.mdx +2 -2
  8. package/locales/ar/auth.json +83 -4
  9. package/locales/bg-BG/auth.json +82 -3
  10. package/locales/de-DE/auth.json +85 -6
  11. package/locales/en-US/auth.json +85 -6
  12. package/locales/es-ES/auth.json +82 -3
  13. package/locales/fa-IR/auth.json +84 -5
  14. package/locales/fr-FR/auth.json +85 -6
  15. package/locales/it-IT/auth.json +83 -4
  16. package/locales/ja-JP/auth.json +83 -4
  17. package/locales/ko-KR/auth.json +82 -3
  18. package/locales/nl-NL/auth.json +83 -4
  19. package/locales/pl-PL/auth.json +83 -4
  20. package/locales/pt-BR/auth.json +83 -4
  21. package/locales/ru-RU/auth.json +82 -3
  22. package/locales/tr-TR/auth.json +82 -3
  23. package/locales/vi-VN/auth.json +82 -3
  24. package/locales/zh-CN/auth.json +82 -3
  25. package/locales/zh-TW/auth.json +82 -3
  26. package/package.json +4 -3
  27. package/src/app/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +4 -0
  28. package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +0 -46
  29. package/src/app/(main)/(mobile)/me/(home)/features/UserBanner.tsx +11 -14
  30. package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +6 -21
  31. package/src/app/(main)/(mobile)/me/profile/features/Category.tsx +38 -21
  32. package/src/app/(main)/(mobile)/me/profile/layout.tsx +0 -3
  33. package/src/app/(main)/(mobile)/me/profile/page.tsx +3 -3
  34. package/src/app/(main)/chat/loading.tsx +2 -2
  35. package/src/app/(main)/discover/loading.tsx +2 -8
  36. package/src/app/(main)/files/loading.tsx +2 -2
  37. package/src/app/(main)/profile/(home)/Client.tsx +53 -0
  38. package/src/app/(main)/profile/(home)/[[...slugs]]/page.tsx +38 -0
  39. package/src/app/(main)/profile/@category/default.tsx +9 -0
  40. package/src/app/(main)/profile/@category/features/CategoryContent.tsx +38 -0
  41. package/src/app/(main)/profile/_layout/Desktop/Header.tsx +85 -0
  42. package/src/app/(main)/profile/_layout/Desktop/SideBar.tsx +42 -0
  43. package/src/app/(main)/profile/_layout/Desktop/index.tsx +48 -0
  44. package/src/app/(main)/profile/_layout/Mobile/Header.tsx +23 -5
  45. package/src/app/(main)/profile/_layout/Mobile/index.tsx +12 -5
  46. package/src/app/(main)/profile/_layout/type.ts +6 -0
  47. package/src/app/(main)/profile/error.tsx +5 -0
  48. package/src/app/(main)/profile/features/ClerkProfile.tsx +72 -0
  49. package/src/app/(main)/profile/hooks/useCategory.tsx +51 -0
  50. package/src/app/(main)/profile/layout.tsx +7 -17
  51. package/src/app/(main)/profile/loading.tsx +2 -22
  52. package/src/app/(main)/profile/not-found.tsx +3 -0
  53. package/src/app/(main)/profile/security/page.tsx +34 -0
  54. package/src/app/(main)/profile/stats/Client.tsx +52 -0
  55. package/src/app/(main)/profile/stats/features/AiHeatmaps.tsx +130 -0
  56. package/src/app/(main)/profile/stats/features/AssistantsRank.tsx +115 -0
  57. package/src/app/(main)/profile/stats/features/ModelsRank.tsx +84 -0
  58. package/src/app/(main)/profile/stats/features/ShareButton/Preview.tsx +159 -0
  59. package/src/app/(main)/profile/stats/features/ShareButton/ShareModal.tsx +87 -0
  60. package/src/app/(main)/profile/stats/features/ShareButton/TotalCard.tsx +39 -0
  61. package/src/app/(main)/profile/stats/features/ShareButton/index.tsx +26 -0
  62. package/src/app/(main)/profile/stats/features/TimeLabel.tsx +30 -0
  63. package/src/app/(main)/profile/stats/features/TopicsRank.tsx +104 -0
  64. package/src/app/(main)/profile/stats/features/TotalAssistants.tsx +56 -0
  65. package/src/app/(main)/profile/stats/features/TotalMessages.tsx +56 -0
  66. package/src/app/(main)/profile/stats/features/TotalTopics.tsx +53 -0
  67. package/src/app/(main)/profile/stats/features/TotalWords.tsx +54 -0
  68. package/src/app/(main)/profile/stats/features/Welcome.tsx +86 -0
  69. package/src/app/(main)/profile/{[[...slugs]] → stats}/page.tsx +4 -5
  70. package/src/app/(main)/repos/[id]/evals/dataset/page.tsx +2 -2
  71. package/src/app/(main)/repos/[id]/evals/evaluation/page.tsx +2 -2
  72. package/src/app/(main)/settings/@category/features/CategoryContent.tsx +1 -1
  73. package/src/app/(main)/settings/_layout/Desktop/index.tsx +1 -1
  74. package/src/app/(main)/settings/_layout/Mobile/Header.tsx +1 -1
  75. package/src/app/(main)/settings/_layout/Mobile/index.tsx +2 -0
  76. package/src/app/(main)/settings/common/features/Theme/index.tsx +2 -17
  77. package/src/app/(main)/settings/loading.tsx +2 -2
  78. package/src/components/Loading/BrandTextLoading/index.tsx +2 -2
  79. package/src/components/Statistic/index.tsx +15 -0
  80. package/src/components/StatisticCard/TitleWithPercentage.tsx +80 -0
  81. package/src/components/StatisticCard/growthPercentage.tsx +8 -0
  82. package/src/components/StatisticCard/index.tsx +209 -0
  83. package/src/const/url.ts +3 -3
  84. package/src/database/server/models/__tests__/message.test.ts +346 -35
  85. package/src/database/server/models/__tests__/session.test.ts +185 -2
  86. package/src/database/server/models/__tests__/topic.test.ts +136 -0
  87. package/src/database/server/models/__tests__/user.test.ts +140 -1
  88. package/src/database/server/models/message.ts +109 -14
  89. package/src/database/server/models/session.ts +76 -4
  90. package/src/database/server/models/topic.ts +44 -3
  91. package/src/database/server/models/user.ts +22 -0
  92. package/src/database/utils/genWhere.ts +39 -0
  93. package/src/features/ShareModal/ShareImage/index.tsx +11 -24
  94. package/src/features/ShareModal/ShareImage/type.ts +1 -6
  95. package/src/features/User/DataStatistics.tsx +21 -14
  96. package/src/features/User/UserPanel/PanelContent.tsx +12 -16
  97. package/src/features/User/UserPanel/useMenu.tsx +4 -6
  98. package/src/features/User/__tests__/PanelContent.test.tsx +4 -0
  99. package/src/features/User/__tests__/useMenu.test.tsx +1 -21
  100. package/src/hooks/useActiveTabKey.ts +34 -1
  101. package/src/{features/ShareModal/ShareImage → hooks}/useScreenshot.ts +51 -6
  102. package/src/locales/default/auth.ts +81 -2
  103. package/src/server/ld.test.ts +1 -1
  104. package/src/server/modules/AssistantStore/index.ts +3 -2
  105. package/src/server/routers/lambda/message.ts +35 -6
  106. package/src/server/routers/lambda/session.ts +17 -3
  107. package/src/server/routers/lambda/topic.ts +17 -3
  108. package/src/server/routers/lambda/user.ts +4 -0
  109. package/src/server/services/changelog/index.ts +1 -1
  110. package/src/services/message/_deprecated.ts +16 -0
  111. package/src/services/message/client.test.ts +0 -18
  112. package/src/services/message/client.ts +12 -9
  113. package/src/services/message/server.ts +12 -4
  114. package/src/services/message/type.ts +15 -3
  115. package/src/services/session/_deprecated.ts +5 -0
  116. package/src/services/session/client.ts +6 -2
  117. package/src/services/session/server.ts +6 -2
  118. package/src/services/session/type.ts +7 -1
  119. package/src/services/topic/_deprecated.ts +5 -0
  120. package/src/services/topic/client.ts +6 -2
  121. package/src/services/topic/server.ts +7 -1
  122. package/src/services/topic/type.ts +7 -2
  123. package/src/services/user/_deprecated.ts +4 -0
  124. package/src/services/user/client.ts +4 -0
  125. package/src/services/user/server.ts +4 -0
  126. package/src/services/user/type.ts +5 -0
  127. package/src/store/global/initialState.ts +6 -0
  128. package/src/store/user/slices/auth/action.test.ts +1 -33
  129. package/src/store/user/slices/auth/action.ts +0 -9
  130. package/src/store/user/slices/common/action.test.ts +2 -2
  131. package/src/types/message/index.ts +5 -0
  132. package/src/types/session/index.ts +8 -0
  133. package/src/types/topic/topic.ts +7 -0
  134. package/src/utils/format.ts +1 -1
  135. package/src/utils/time.ts +23 -0
  136. package/src/app/(main)/profile/[[...slugs]]/Client.tsx +0 -76
  137. package/src/components/Loading/BrandTextLoading/LobeChatText/SVG.tsx +0 -44
  138. package/src/components/Loading/BrandTextLoading/LobeChatText/index.tsx +0 -6
  139. package/src/components/Loading/BrandTextLoading/LobeChatText/style.css +0 -32
  140. package/src/hooks/useActiveSettingsKey.ts +0 -20
package/CHANGELOG.md CHANGED
@@ -2,6 +2,64 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.43.1](https://github.com/lobehub/lobe-chat/compare/v1.43.0...v1.43.1)
6
+
7
+ <sup>Released on **2025-01-03**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix stats data query issue.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix stats data query issue, closes [#5283](https://github.com/lobehub/lobe-chat/issues/5283) ([f3fdee7](https://github.com/lobehub/lobe-chat/commit/f3fdee7))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ## [Version 1.43.0](https://github.com/lobehub/lobe-chat/compare/v1.42.6...v1.43.0)
31
+
32
+ <sup>Released on **2025-01-03**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Add User Stats and Refactor Profile.
37
+
38
+ #### 🐛 Bug Fixes
39
+
40
+ - **misc**: Fix chat page error.
41
+
42
+ <br/>
43
+
44
+ <details>
45
+ <summary><kbd>Improvements and Fixes</kbd></summary>
46
+
47
+ #### What's improved
48
+
49
+ - **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))
50
+
51
+ #### What's fixed
52
+
53
+ - **misc**: Fix chat page error, closes [#5280](https://github.com/lobehub/lobe-chat/issues/5280) ([315e626](https://github.com/lobehub/lobe-chat/commit/315e626))
54
+
55
+ </details>
56
+
57
+ <div align="right">
58
+
59
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
60
+
61
+ </div>
62
+
5
63
  ### [Version 1.42.6](https://github.com/lobehub/lobe-chat/compare/v1.42.5...v1.42.6)
6
64
 
7
65
  <sup>Released on **2025-01-03**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,25 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Fix stats data query issue."
6
+ ]
7
+ },
8
+ "date": "2025-01-03",
9
+ "version": "1.43.1"
10
+ },
11
+ {
12
+ "children": {
13
+ "features": [
14
+ "Add User Stats and Refactor Profile."
15
+ ],
16
+ "fixes": [
17
+ "Fix chat page error."
18
+ ]
19
+ },
20
+ "date": "2025-01-03",
21
+ "version": "1.43.0"
22
+ },
2
23
  {
3
24
  "children": {
4
25
  "improvements": [
@@ -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: Learn how to configure Wechat authentication service in LobeChat, including creating a new Wechat App, setting permissions, and environment variables.
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
@@ -2,8 +2,8 @@
2
2
  title: 在 LobeChat 中配置微信身份验证服务
3
3
  description: 学习如何在 LobeChat 中配置微信身份验证服务,包括创建新的微信网站应用、设置权限和环境变量。
4
4
  tags:
5
- -微信身份验证
6
- -微信网站应用
5
+ - 微信身份验证
6
+ - 微信网站应用
7
7
  - 环境变量配置
8
8
  - 单点登录
9
9
  - LobeChat
@@ -1,8 +1,87 @@
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
- "security": "الأمان",
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
+ "loginGuide": {
57
+ "f1": "احصل على استخدام مجاني",
58
+ "f2": "مزامنة الرسائل عبر الأجهزة المتعددة",
59
+ "f3": "تمتع بمساعدين متنوعين",
60
+ "f4": "استكشف الإضافات القوية",
61
+ "title": "بعد تسجيل الدخول يمكنك:"
62
+ },
63
+ "messages": "رسائل",
64
+ "modelsRank": {
65
+ "left": "النموذج",
66
+ "right": "الرسائل",
67
+ "title": "ترتيب استخدام النموذج"
68
+ },
69
+ "share": {
70
+ "title": "مؤشر نشاط الذكاء الاصطناعي الخاص بي"
71
+ },
72
+ "topics": "المواضيع",
73
+ "topicsRank": {
74
+ "left": "الموضوع",
75
+ "right": "الرسائل",
76
+ "title": "ترتيب محتوى الموضوع"
77
+ },
78
+ "updatedAt": "تاريخ التحديث",
79
+ "welcome": "{{username}}، هذا هو يومك <span>{{days}}</span> مع {{appName}}",
80
+ "words": "كلمات"
81
+ },
82
+ "tab": {
83
+ "profile": "الملف الشخصي",
84
+ "security": "الأمان",
85
+ "stats": "الإحصائيات"
86
+ }
8
87
  }
@@ -1,8 +1,87 @@
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
- "security": "Сигурност",
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
+ "loginGuide": {
57
+ "f1": "Получете безплатен лимит",
58
+ "f2": "Синхронизирайте съобщения на множество устройства",
59
+ "f3": "Разполагайте с богат асистент",
60
+ "f4": "Изследвайте мощни приставки",
61
+ "title": "След влизане можете да:"
62
+ },
63
+ "messages": "Съобщения",
64
+ "modelsRank": {
65
+ "left": "Модел",
66
+ "right": "Съобщения",
67
+ "title": "Ранг на използване на модели"
68
+ },
69
+ "share": {
70
+ "title": "Моят индекс на активност с ИИ"
71
+ },
72
+ "topics": "Тематики",
73
+ "topicsRank": {
74
+ "left": "Тематика",
75
+ "right": "Съобщения",
76
+ "title": "Ранг на съдържание на тематики"
77
+ },
78
+ "updatedAt": "Актуализиран на",
79
+ "welcome": "{{username}}, това е вашият <span>{{days}}</span> ден с {{appName}}",
80
+ "words": "Думи"
81
+ },
82
+ "tab": {
83
+ "profile": "Профил",
84
+ "security": "Сигурност",
85
+ "stats": "Статистика"
86
+ }
8
87
  }
@@ -1,8 +1,87 @@
1
1
  {
2
- "login": "Anmelden",
3
- "loginOrSignup": "Anmelden / Registrieren",
4
- "profile": "Profil",
5
- "security": "Sicherheit",
6
- "signout": "Abmelden",
7
- "signup": "Registrieren"
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
+ "loginGuide": {
57
+ "f1": "Kostenlose Nutzung erhalten",
58
+ "f2": "Nachrichten auf mehreren Geräten synchronisieren",
59
+ "f3": "Überreiche Assistenten nutzen",
60
+ "f4": "Mächtige Plugins erkunden",
61
+ "title": "Nach dem Login kannst du:"
62
+ },
63
+ "messages": "Nachrichten",
64
+ "modelsRank": {
65
+ "left": "Modell",
66
+ "right": "Nachrichten",
67
+ "title": "Rang der Modellenutzung"
68
+ },
69
+ "share": {
70
+ "title": "Mein AI Aktivitätsindex"
71
+ },
72
+ "topics": "Themen",
73
+ "topicsRank": {
74
+ "left": "Thema",
75
+ "right": "Nachrichten",
76
+ "title": "Rang des Themeninhalts"
77
+ },
78
+ "updatedAt": "Aktualisiert am",
79
+ "welcome": "{{username}}, dies ist Ihr <span>{{days}}</span> Tag mit {{appName}}",
80
+ "words": "Wörter"
81
+ },
82
+ "tab": {
83
+ "profile": "Profil",
84
+ "security": "Sicherheit",
85
+ "stats": "Statistiken"
86
+ }
8
87
  }
@@ -1,8 +1,87 @@
1
1
  {
2
- "login": "Login",
3
- "loginOrSignup": "Login / Sign up",
4
- "profile": "Profile",
5
- "security": "Security",
6
- "signout": "Sign out",
7
- "signup": "Sign up"
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
+ "loginGuide": {
57
+ "f1": "Get free usage",
58
+ "f2": "Sync messages across devices",
59
+ "f3": "Access a wealth of assistants",
60
+ "f4": "Explore powerful plugins",
61
+ "title": "After logging in, you can:"
62
+ },
63
+ "messages": "Messages",
64
+ "modelsRank": {
65
+ "left": "Model",
66
+ "right": "Messages",
67
+ "title": "Model Usage Rank"
68
+ },
69
+ "share": {
70
+ "title": "My AI Activity Index"
71
+ },
72
+ "topics": "Topics",
73
+ "topicsRank": {
74
+ "left": "Topic",
75
+ "right": "Messages",
76
+ "title": "Topic Content Rank"
77
+ },
78
+ "updatedAt": "Updated at",
79
+ "welcome": "{{username}}, this is your <span>{{days}}</span> day with {{appName}}",
80
+ "words": "Total Words"
81
+ },
82
+ "tab": {
83
+ "profile": "Profile",
84
+ "security": "Security",
85
+ "stats": "Statistics"
86
+ }
8
87
  }
@@ -1,8 +1,87 @@
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": "Perfil",
5
- "security": "Seguridad",
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
+ "loginGuide": {
57
+ "f1": "Obtener uso gratuito",
58
+ "f2": "Sincronizar mensajes en múltiples dispositivos",
59
+ "f3": "Tener un asistente completo",
60
+ "f4": "Explorar potentes complementos",
61
+ "title": "Después de iniciar sesión, puedes:"
62
+ },
63
+ "messages": "Mensajes",
64
+ "modelsRank": {
65
+ "left": "Modelo",
66
+ "right": "Mensajes",
67
+ "title": "Clasificación de Uso de Modelos"
68
+ },
69
+ "share": {
70
+ "title": "Mi Índice de Actividad AI"
71
+ },
72
+ "topics": "Temas",
73
+ "topicsRank": {
74
+ "left": "Tema",
75
+ "right": "Mensajes",
76
+ "title": "Clasificación de Contenido de Temas"
77
+ },
78
+ "updatedAt": "Actualizado en",
79
+ "welcome": "{{username}}, este es tu <span>{{days}}</span> día con {{appName}}",
80
+ "words": "Palabras"
81
+ },
82
+ "tab": {
83
+ "profile": "Perfil",
84
+ "security": "Seguridad",
85
+ "stats": "Estadísticas"
86
+ }
8
87
  }