@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.
Files changed (140) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/changelog/v1.json +12 -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 +76 -4
  9. package/locales/bg-BG/auth.json +75 -3
  10. package/locales/de-DE/auth.json +78 -6
  11. package/locales/en-US/auth.json +78 -6
  12. package/locales/es-ES/auth.json +75 -3
  13. package/locales/fa-IR/auth.json +77 -5
  14. package/locales/fr-FR/auth.json +78 -6
  15. package/locales/it-IT/auth.json +76 -4
  16. package/locales/ja-JP/auth.json +76 -4
  17. package/locales/ko-KR/auth.json +75 -3
  18. package/locales/nl-NL/auth.json +76 -4
  19. package/locales/pl-PL/auth.json +76 -4
  20. package/locales/pt-BR/auth.json +76 -4
  21. package/locales/ru-RU/auth.json +75 -3
  22. package/locales/tr-TR/auth.json +74 -3
  23. package/locales/vi-VN/auth.json +75 -3
  24. package/locales/zh-CN/auth.json +75 -3
  25. package/locales/zh-TW/auth.json +75 -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 +103 -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 +75 -4
  90. package/src/database/server/models/topic.ts +43 -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 +74 -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
@@ -1,8 +1,80 @@
1
1
  {
2
- "login": "Connexion",
3
- "loginOrSignup": "Connexion / Inscription",
4
- "profile": "Profil",
5
- "security": "Sécurité",
6
- "signout": "Déconnexion",
7
- "signup": "Inscription"
2
+ "date": {
3
+ "prevMonth": "Le mois dernier",
4
+ "recent30Days": "Les 30 derniers jours"
5
+ },
6
+ "header": {
7
+ "desc": "Gérez les informations de votre compte.",
8
+ "title": "Compte"
9
+ },
10
+ "heatmaps": {
11
+ "legend": {
12
+ "less": "Inactif",
13
+ "more": "Actif"
14
+ },
15
+ "months": {
16
+ "apr": "Avr",
17
+ "aug": "Août",
18
+ "dec": "Déc",
19
+ "feb": "Fév",
20
+ "jan": "Jan",
21
+ "jul": "Juil",
22
+ "jun": "Juin",
23
+ "mar": "Mar",
24
+ "may": "Mai",
25
+ "nov": "Nov",
26
+ "oct": "Oct",
27
+ "sep": "Sep"
28
+ },
29
+ "tooltip": "{{date}} a envoyé {{count}} messages ce jour-là",
30
+ "totalCount": "Un total de {{count}} messages envoyés au cours de l'année dernière"
31
+ },
32
+ "login": "Se connecter",
33
+ "loginOrSignup": "Se connecter / S'inscrire",
34
+ "profile": {
35
+ "avatar": "Avatar",
36
+ "email": "Adresse e-mail",
37
+ "username": "Nom d'utilisateur"
38
+ },
39
+ "signout": "Se déconnecter",
40
+ "signup": "S'inscrire",
41
+ "stats": {
42
+ "aiheatmaps": "Indice d'activité",
43
+ "assistants": "Assistants",
44
+ "assistantsRank": {
45
+ "left": "Assistant",
46
+ "right": "Sujets",
47
+ "title": "Classement d'utilisation des assistants"
48
+ },
49
+ "createdAt": "Inscrit le",
50
+ "days": "jours",
51
+ "empty": {
52
+ "desc": "Veuillez accumuler plus de données de chat pour voir",
53
+ "title": "Aucune donnée"
54
+ },
55
+ "lastYearActivity": "activité au cours de l'année dernière",
56
+ "messages": "Messages",
57
+ "modelsRank": {
58
+ "left": "Modèle",
59
+ "right": "Messages",
60
+ "title": "Classement d'utilisation des modèles"
61
+ },
62
+ "share": {
63
+ "title": "Mon indice d'activité IA"
64
+ },
65
+ "topics": "Sujets",
66
+ "topicsRank": {
67
+ "left": "Sujet",
68
+ "right": "Messages",
69
+ "title": "Classement du contenu des sujets"
70
+ },
71
+ "updatedAt": "Mis à jour le",
72
+ "welcome": "{{username}}, c'est votre <span>{{days}}</span> jour avec {{appName}}",
73
+ "words": "Mots"
74
+ },
75
+ "tab": {
76
+ "profile": "Profil",
77
+ "security": "Sécurité",
78
+ "stats": "Statistiques"
79
+ }
8
80
  }
@@ -1,8 +1,80 @@
1
1
  {
2
+ "date": {
3
+ "prevMonth": "Mese Scorso",
4
+ "recent30Days": "Ultimi 30 Giorni"
5
+ },
6
+ "header": {
7
+ "desc": "Gestisci le informazioni del tuo account.",
8
+ "title": "Account"
9
+ },
10
+ "heatmaps": {
11
+ "legend": {
12
+ "less": "Inattivo",
13
+ "more": "Attivo"
14
+ },
15
+ "months": {
16
+ "apr": "Apr",
17
+ "aug": "Ago",
18
+ "dec": "Dic",
19
+ "feb": "Feb",
20
+ "jan": "Gen",
21
+ "jul": "Lug",
22
+ "jun": "Giu",
23
+ "mar": "Mar",
24
+ "may": "Mag",
25
+ "nov": "Nov",
26
+ "oct": "Ott",
27
+ "sep": "Set"
28
+ },
29
+ "tooltip": "{{date}} ha inviato {{count}} messaggi quel giorno",
30
+ "totalCount": "Un totale di {{count}} messaggi inviati nell'ultimo anno"
31
+ },
2
32
  "login": "Accedi",
3
33
  "loginOrSignup": "Accedi / Registrati",
4
- "profile": "Profilo",
5
- "security": "Sicurezza",
6
- "signout": "Esci",
7
- "signup": "Registrati"
34
+ "profile": {
35
+ "avatar": "Avatar",
36
+ "email": "Indirizzo Email",
37
+ "username": "Nome Utente"
38
+ },
39
+ "signout": "Disconnetti",
40
+ "signup": "Registrati",
41
+ "stats": {
42
+ "aiheatmaps": "Indice di Attività",
43
+ "assistants": "Assistenti",
44
+ "assistantsRank": {
45
+ "left": "Assistente",
46
+ "right": "Argomenti",
47
+ "title": "Classifica Utilizzo Assistente"
48
+ },
49
+ "createdAt": "Registrato il",
50
+ "days": "giorni",
51
+ "empty": {
52
+ "desc": "Accumula più dati di chat per visualizzare",
53
+ "title": "Nessun Dato"
54
+ },
55
+ "lastYearActivity": "attività nell'ultimo anno",
56
+ "messages": "Messaggi",
57
+ "modelsRank": {
58
+ "left": "Modello",
59
+ "right": "Messaggi",
60
+ "title": "Classifica Utilizzo Modello"
61
+ },
62
+ "share": {
63
+ "title": "Il Mio Indice di Attività AI"
64
+ },
65
+ "topics": "Argomenti",
66
+ "topicsRank": {
67
+ "left": "Argomento",
68
+ "right": "Messaggi",
69
+ "title": "Classifica Contenuti Argomento"
70
+ },
71
+ "updatedAt": "Aggiornato il",
72
+ "welcome": "{{username}}, questo è il tuo <span>{{days}}</span> giorno con {{appName}}",
73
+ "words": "Parole"
74
+ },
75
+ "tab": {
76
+ "profile": "Profilo",
77
+ "security": "Sicurezza",
78
+ "stats": "Statistiche"
79
+ }
8
80
  }
@@ -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": "4月",
17
+ "aug": "8月",
18
+ "dec": "12月",
19
+ "feb": "2月",
20
+ "jan": "1月",
21
+ "jul": "7月",
22
+ "jun": "6月",
23
+ "mar": "3月",
24
+ "may": "5月",
25
+ "nov": "11月",
26
+ "oct": "10月",
27
+ "sep": "9月"
28
+ },
29
+ "tooltip": "{{date}} に {{count}} 件のメッセージを送信しました",
30
+ "totalCount": "過去1年間に送信されたメッセージは合計で {{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": "過去1年間のアクティビティ",
56
+ "messages": "メッセージ",
57
+ "modelsRank": {
58
+ "left": "モデル",
59
+ "right": "メッセージ",
60
+ "title": "モデル使用ランク"
61
+ },
62
+ "share": {
63
+ "title": "私のAIアクティビティインデックス"
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
  }
@@ -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": "4월",
17
+ "aug": "8월",
18
+ "dec": "12월",
19
+ "feb": "2월",
20
+ "jan": "1월",
21
+ "jul": "7월",
22
+ "jun": "6월",
23
+ "mar": "3월",
24
+ "may": "5월",
25
+ "nov": "11월",
26
+ "oct": "10월",
27
+ "sep": "9월"
28
+ },
29
+ "tooltip": "{{date}}에 {{count}}개의 메시지를 보냈습니다.",
30
+ "totalCount": "지난 1년 동안 총 {{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": "지난 1년간의 활동",
56
+ "messages": "메시지",
57
+ "modelsRank": {
58
+ "left": "모델",
59
+ "right": "메시지",
60
+ "title": "모델 사용 순위"
61
+ },
62
+ "share": {
63
+ "title": "내 AI 활동 지수"
64
+ },
65
+ "topics": "주제",
66
+ "topicsRank": {
67
+ "left": "주제",
68
+ "right": "메시지",
69
+ "title": "주제 내용 순위"
70
+ },
71
+ "updatedAt": "업데이트 일",
72
+ "welcome": "{{username}}, {{appName}}와 함께한 <span>{{days}}</span>일입니다.",
73
+ "words": "단어"
74
+ },
75
+ "tab": {
76
+ "profile": "프로필",
77
+ "security": "보안",
78
+ "stats": "통계"
79
+ }
8
80
  }
@@ -1,8 +1,80 @@
1
1
  {
2
+ "date": {
3
+ "prevMonth": "Vorige maand",
4
+ "recent30Days": "Laatste 30 dagen"
5
+ },
6
+ "header": {
7
+ "desc": "Beheer uw accountinformatie.",
8
+ "title": "Account"
9
+ },
10
+ "heatmaps": {
11
+ "legend": {
12
+ "less": "Inactief",
13
+ "more": "Actief"
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": "Mei",
25
+ "nov": "Nov",
26
+ "oct": "Okt",
27
+ "sep": "Sep"
28
+ },
29
+ "tooltip": "{{date}} heeft {{count}} berichten op die dag verzonden",
30
+ "totalCount": "In totaal zijn er {{count}} berichten verzonden in het afgelopen jaar"
31
+ },
2
32
  "login": "Inloggen",
3
- "loginOrSignup": "Inloggen / Registreren",
4
- "profile": "Profiel",
5
- "security": "Veiligheid",
33
+ "loginOrSignup": "Inloggen / Aanmelden",
34
+ "profile": {
35
+ "avatar": "Avatar",
36
+ "email": "E-mailadres",
37
+ "username": "Gebruikersnaam"
38
+ },
6
39
  "signout": "Uitloggen",
7
- "signup": "Registreren"
40
+ "signup": "Aanmelden",
41
+ "stats": {
42
+ "aiheatmaps": "Activiteitsindex",
43
+ "assistants": "Assistenten",
44
+ "assistantsRank": {
45
+ "left": "Assistent",
46
+ "right": "Onderwerpen",
47
+ "title": "Ranglijst Assistentgebruik"
48
+ },
49
+ "createdAt": "Geregistreerd op",
50
+ "days": "dagen",
51
+ "empty": {
52
+ "desc": "Verzamel meer chatgegevens om te bekijken",
53
+ "title": "Geen gegevens"
54
+ },
55
+ "lastYearActivity": "activiteit in het afgelopen jaar",
56
+ "messages": "Berichten",
57
+ "modelsRank": {
58
+ "left": "Model",
59
+ "right": "Berichten",
60
+ "title": "Ranglijst Modelgebruik"
61
+ },
62
+ "share": {
63
+ "title": "Mijn AI Activiteitsindex"
64
+ },
65
+ "topics": "Onderwerpen",
66
+ "topicsRank": {
67
+ "left": "Onderwerp",
68
+ "right": "Berichten",
69
+ "title": "Ranglijst Onderwerpinhoud"
70
+ },
71
+ "updatedAt": "Bijgewerkt op",
72
+ "welcome": "{{username}}, dit is uw <span>{{days}}</span> dag met {{appName}}",
73
+ "words": "Woorden"
74
+ },
75
+ "tab": {
76
+ "profile": "Profiel",
77
+ "security": "Beveiliging",
78
+ "stats": "Statistieken"
79
+ }
8
80
  }
@@ -1,8 +1,80 @@
1
1
  {
2
+ "date": {
3
+ "prevMonth": "Poprzedni miesiąc",
4
+ "recent30Days": "Ostatnie 30 dni"
5
+ },
6
+ "header": {
7
+ "desc": "Zarządzaj informacjami o swoim koncie.",
8
+ "title": "Konto"
9
+ },
10
+ "heatmaps": {
11
+ "legend": {
12
+ "less": "Nieaktywny",
13
+ "more": "Aktywny"
14
+ },
15
+ "months": {
16
+ "apr": "Kwi",
17
+ "aug": "Sie",
18
+ "dec": "Gru",
19
+ "feb": "Lut",
20
+ "jan": "Sty",
21
+ "jul": "Lip",
22
+ "jun": "Cze",
23
+ "mar": "Mar",
24
+ "may": "Maj",
25
+ "nov": "Lis",
26
+ "oct": "Paź",
27
+ "sep": "Wrz"
28
+ },
29
+ "tooltip": "{{date}} wysłał {{count}} wiadomości tego dnia",
30
+ "totalCount": "Łącznie {{count}} wiadomości wysłanych w ciągu ostatniego roku"
31
+ },
2
32
  "login": "Zaloguj się",
3
33
  "loginOrSignup": "Zaloguj się / Zarejestruj się",
4
- "profile": "Profil użytkownika",
5
- "security": "Bezpieczeństwo",
6
- "signout": "Wyloguj",
7
- "signup": "Zarejestruj się"
34
+ "profile": {
35
+ "avatar": "Awatar",
36
+ "email": "Adres e-mail",
37
+ "username": "Nazwa użytkownika"
38
+ },
39
+ "signout": "Wyloguj się",
40
+ "signup": "Zarejestruj się",
41
+ "stats": {
42
+ "aiheatmaps": "Indeks Aktywności",
43
+ "assistants": "Asystenci",
44
+ "assistantsRank": {
45
+ "left": "Asystent",
46
+ "right": "Tematy",
47
+ "title": "Ranking Użycia Asystentów"
48
+ },
49
+ "createdAt": "Zarejestrowano",
50
+ "days": "dni",
51
+ "empty": {
52
+ "desc": "Proszę zgromadzić więcej danych czatu, aby wyświetlić",
53
+ "title": "Brak danych"
54
+ },
55
+ "lastYearActivity": "aktywność w ciągu ostatniego roku",
56
+ "messages": "Wiadomości",
57
+ "modelsRank": {
58
+ "left": "Model",
59
+ "right": "Wiadomości",
60
+ "title": "Ranking Użycia Modeli"
61
+ },
62
+ "share": {
63
+ "title": "Mój Indeks Aktywności AI"
64
+ },
65
+ "topics": "Tematy",
66
+ "topicsRank": {
67
+ "left": "Temat",
68
+ "right": "Wiadomości",
69
+ "title": "Ranking Treści Tematów"
70
+ },
71
+ "updatedAt": "Zaktualizowano",
72
+ "welcome": "{{username}}, to twój <span>{{days}}</span> dzień z {{appName}}",
73
+ "words": "Słowa"
74
+ },
75
+ "tab": {
76
+ "profile": "Profil",
77
+ "security": "Bezpieczeństwo",
78
+ "stats": "Statystyki"
79
+ }
8
80
  }
@@ -1,8 +1,80 @@
1
1
  {
2
+ "date": {
3
+ "prevMonth": "Último Mês",
4
+ "recent30Days": "Últimos 30 Dias"
5
+ },
6
+ "header": {
7
+ "desc": "Gerencie as informações da sua conta.",
8
+ "title": "Conta"
9
+ },
10
+ "heatmaps": {
11
+ "legend": {
12
+ "less": "Inativo",
13
+ "more": "Ativo"
14
+ },
15
+ "months": {
16
+ "apr": "Abr",
17
+ "aug": "Ago",
18
+ "dec": "Dez",
19
+ "feb": "Fev",
20
+ "jan": "Jan",
21
+ "jul": "Jul",
22
+ "jun": "Jun",
23
+ "mar": "Mar",
24
+ "may": "Mai",
25
+ "nov": "Nov",
26
+ "oct": "Out",
27
+ "sep": "Set"
28
+ },
29
+ "tooltip": "{{date}} enviou {{count}} mensagens naquele dia",
30
+ "totalCount": "Um total de {{count}} mensagens enviadas no último ano"
31
+ },
2
32
  "login": "Entrar",
3
- "loginOrSignup": "Entrar / Registrar",
4
- "profile": "Perfil",
5
- "security": "Segurança",
33
+ "loginOrSignup": "Entrar / Cadastrar",
34
+ "profile": {
35
+ "avatar": "Avatar",
36
+ "email": "Endereço de E-mail",
37
+ "username": "Nome de Usuário"
38
+ },
6
39
  "signout": "Sair",
7
- "signup": "Cadastre-se"
40
+ "signup": "Cadastrar",
41
+ "stats": {
42
+ "aiheatmaps": "Índice de Atividade",
43
+ "assistants": "Assistentes",
44
+ "assistantsRank": {
45
+ "left": "Assistente",
46
+ "right": "Tópicos",
47
+ "title": "Ranking de Uso do Assistente"
48
+ },
49
+ "createdAt": "Registrado em",
50
+ "days": "dias",
51
+ "empty": {
52
+ "desc": "Por favor, acumule mais dados de chat para visualizar",
53
+ "title": "Sem Dados"
54
+ },
55
+ "lastYearActivity": "atividade no último ano",
56
+ "messages": "Mensagens",
57
+ "modelsRank": {
58
+ "left": "Modelo",
59
+ "right": "Mensagens",
60
+ "title": "Ranking de Uso do Modelo"
61
+ },
62
+ "share": {
63
+ "title": "Meu Índice de Atividade de IA"
64
+ },
65
+ "topics": "Tópicos",
66
+ "topicsRank": {
67
+ "left": "Tópico",
68
+ "right": "Mensagens",
69
+ "title": "Ranking de Conteúdo do Tópico"
70
+ },
71
+ "updatedAt": "Atualizado em",
72
+ "welcome": "{{username}}, este é seu <span>{{days}}</span> dia com {{appName}}",
73
+ "words": "Palavras"
74
+ },
75
+ "tab": {
76
+ "profile": "Perfil",
77
+ "security": "Segurança",
78
+ "stats": "Estatísticas"
79
+ }
8
80
  }
@@ -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
- "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
+ "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
  }