@lobehub/chat 1.42.5 → 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 +58 -0
- package/changelog/v1.json +21 -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 +13 -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/(workspace)/@topic/features/TopicListContent/ByTimeMode/index.tsx +1 -1
- 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/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
|
}
|
package/locales/fr-FR/auth.json
CHANGED
@@ -1,8 +1,80 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
"
|
7
|
-
|
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
|
}
|
package/locales/it-IT/auth.json
CHANGED
@@ -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":
|
5
|
-
|
6
|
-
|
7
|
-
|
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
|
}
|
package/locales/ja-JP/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": "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
|
-
|
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
|
}
|
package/locales/ko-KR/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": "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
|
-
|
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
|
}
|
package/locales/nl-NL/auth.json
CHANGED
@@ -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 /
|
4
|
-
"profile":
|
5
|
-
|
33
|
+
"loginOrSignup": "Inloggen / Aanmelden",
|
34
|
+
"profile": {
|
35
|
+
"avatar": "Avatar",
|
36
|
+
"email": "E-mailadres",
|
37
|
+
"username": "Gebruikersnaam"
|
38
|
+
},
|
6
39
|
"signout": "Uitloggen",
|
7
|
-
"signup": "
|
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
|
}
|
package/locales/pl-PL/auth.json
CHANGED
@@ -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":
|
5
|
-
|
6
|
-
|
7
|
-
|
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
|
}
|
package/locales/pt-BR/auth.json
CHANGED
@@ -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 /
|
4
|
-
"profile":
|
5
|
-
|
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": "
|
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
|
}
|