@lobehub/chat 1.135.2 → 1.135.4
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/.i18nrc.js +1 -1
- package/CHANGELOG.md +58 -0
- package/changelog/v1.json +18 -0
- package/docs/usage/features/auth.mdx +0 -5
- package/docs/usage/features/auth.zh-CN.mdx +0 -5
- package/locales/ko-KR/auth.json +35 -35
- package/locales/ko-KR/changelog.json +7 -7
- package/locales/ko-KR/chat.json +94 -94
- package/locales/ko-KR/clerk.json +74 -74
- package/locales/ko-KR/color.json +10 -10
- package/locales/ko-KR/common.json +114 -114
- package/locales/ko-KR/components.json +75 -75
- package/locales/ko-KR/discover.json +118 -118
- package/locales/ko-KR/editor.json +10 -10
- package/locales/ko-KR/file.json +25 -25
- package/locales/ko-KR/hotkey.json +21 -21
- package/locales/ko-KR/image.json +19 -19
- package/locales/ko-KR/knowledgeBase.json +3 -3
- package/locales/ko-KR/market.json +14 -14
- package/locales/ko-KR/metadata.json +19 -19
- package/locales/ko-KR/migration.json +15 -15
- package/locales/ko-KR/modelProvider.json +119 -119
- package/locales/ko-KR/oauth.json +19 -19
- package/locales/ko-KR/plugin.json +106 -106
- package/locales/ko-KR/portal.json +5 -5
- package/locales/ko-KR/providers.json +60 -60
- package/locales/ko-KR/ragEval.json +10 -10
- package/locales/ko-KR/setting.json +67 -67
- package/locales/ko-KR/subscription.json +4 -4
- package/locales/ko-KR/thread.json +3 -3
- package/locales/ko-KR/tool.json +25 -25
- package/locales/ko-KR/welcome.json +24 -24
- package/package.json +2 -2
- package/packages/const/src/index.ts +1 -0
- package/packages/const/src/settings/index.ts +1 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +25 -0
- package/packages/model-bank/src/aiModels/nvidia.ts +17 -1
- package/packages/model-bank/src/aiModels/openai.ts +80 -1
- package/packages/model-runtime/src/const/models.ts +2 -0
- package/packages/model-runtime/src/providers/openai/index.ts +15 -11
- package/packages/model-runtime/src/providers/openrouter/index.ts +7 -2
- package/packages/model-runtime/src/providers/openrouter/type.ts +4 -2
- package/packages/model-runtime/src/providers/vercelaigateway/index.ts +7 -0
- package/packages/model-runtime/src/utils/modelParse.ts +31 -3
- package/packages/prompts/promptfoo/summary-title/eval.yaml +9 -0
- package/packages/types/src/aiProvider.ts +1 -2
- package/packages/types/src/discover/models.ts +3 -2
- package/packages/types/src/discover/providers.ts +3 -2
- package/packages/types/src/message/chat.ts +13 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/index.tsx +1 -5
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/WelcomeMessage.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/CreateNewModelModal/Form.tsx +1 -2
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +1 -4
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/SortModelModal/ListItem.tsx +1 -2
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/SortModelModal/index.tsx +1 -1
- package/src/{components → features}/ChatItem/ChatItem.tsx +5 -35
- package/src/{components → features}/ChatItem/components/MessageContent.tsx +27 -7
- package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/Render/index.tsx +1 -1
- package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/getNodeContent.test.ts +1 -1
- package/src/features/Conversation/{Actions → Messages/Assistant/Actions}/Error.tsx +1 -1
- package/src/features/Conversation/{components/ChatItem/ActionsBar.tsx → Messages/Assistant/Actions/index.tsx} +71 -44
- package/src/features/Conversation/Messages/Assistant/Block.tsx +63 -0
- package/src/features/Conversation/{Extras/Assistant.test.tsx → Messages/Assistant/Extra/index.test.tsx} +36 -31
- package/src/features/Conversation/{Extras/Assistant.tsx → Messages/Assistant/Extra/index.tsx} +13 -7
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +102 -0
- package/src/features/Conversation/Messages/Assistant/index.tsx +235 -84
- package/src/features/Conversation/Messages/User/Actions.tsx +153 -0
- package/src/features/Conversation/Messages/User/BelowMessage.tsx +7 -2
- package/src/features/Conversation/{Extras/User.tsx → Messages/User/Extra.tsx} +9 -7
- package/src/features/Conversation/Messages/User/MessageContent.tsx +31 -0
- package/src/features/Conversation/Messages/User/index.tsx +127 -24
- package/src/features/Conversation/Messages/index.tsx +152 -0
- package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/ModelCard.tsx +4 -3
- package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/pricing.ts +3 -2
- package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/tokens.test.ts +2 -3
- package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/Preview.tsx +1 -1
- package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/index.tsx +1 -1
- package/src/features/Conversation/components/VirtualizedList/index.tsx +1 -0
- package/src/features/Conversation/hooks/useChatListActionsBar.tsx +29 -1
- package/src/features/Conversation/hooks/useDoubleClickEdit.ts +42 -0
- package/src/features/Conversation/index.ts +1 -1
- package/src/features/Conversation/types/{index.tsx → index.ts} +0 -7
- package/src/features/Portal/Thread/Chat/ChatItem.tsx +0 -7
- package/src/hooks/useUserAvatar.test.ts +129 -0
- package/src/hooks/useUserAvatar.ts +19 -0
- package/src/server/routers/lambda/aiModel.ts +7 -8
- package/src/store/user/slices/settings/selectors/settings.ts +6 -5
- package/src/features/ChatItem/index.tsx +0 -58
- package/src/features/Conversation/Actions/Assistant.tsx +0 -68
- package/src/features/Conversation/Actions/Fallback.tsx +0 -19
- package/src/features/Conversation/Actions/Tool.tsx +0 -33
- package/src/features/Conversation/Actions/User.tsx +0 -39
- package/src/features/Conversation/Actions/customAction.ts +0 -37
- package/src/features/Conversation/Actions/index.ts +0 -14
- package/src/features/Conversation/Extras/index.ts +0 -8
- package/src/features/Conversation/Extras/type.ts +0 -5
- package/src/features/Conversation/Messages/index.ts +0 -45
- package/src/features/Conversation/components/ChatItem/index.tsx +0 -358
- /package/src/{components → features}/ChatItem/components/Actions.tsx +0 -0
- /package/src/{components → features}/ChatItem/components/Avatar.tsx +0 -0
- /package/src/{components → features}/ChatItem/components/BorderSpacing.tsx +0 -0
- /package/src/{components → features}/ChatItem/components/ErrorContent.tsx +0 -0
- /package/src/{components → features}/ChatItem/components/Loading.tsx +0 -0
- /package/src/{components → features}/ChatItem/components/Title.tsx +0 -0
- /package/src/{components → features}/ChatItem/index.ts +0 -0
- /package/src/{components → features}/ChatItem/style.ts +0 -0
- /package/src/{components → features}/ChatItem/type.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/Render/Icon.tsx +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/index.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/rehypePlugin.test.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/rehypePlugin.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeThinking/Render.tsx +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeThinking/index.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LocalFile/Render/index.tsx +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LocalFile/index.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/Thinking/Render.tsx +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/Thinking/index.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/index.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/getNodeContent.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/type.ts +0 -0
- /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/utils.ts +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/ExtraContainer.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/TTS/FilePlayer.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/TTS/InitPlayer.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/TTS/Player.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/TTS/index.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/Translate.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/TokenProgress.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/index.tsx +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/tokens.ts +0 -0
- /package/src/features/Conversation/{Extras → components/Extras}/Usage/index.tsx +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/index.tsx +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/style.ts +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/type.ts +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/Preview.tsx +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/template.test.ts +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/template.ts +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/type.ts +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/index.tsx +0 -0
- /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/style.ts +0 -0
- /package/src/features/Conversation/{components/ChatItem → context}/InPortalThreadContext.ts +0 -0
- /package/src/features/Conversation/{components/ChatItem/utils.test.ts → utils.test.ts} +0 -0
- /package/src/features/Conversation/{components/ChatItem/utils.ts → utils.ts} +0 -0
package/.i18nrc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,64 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.135.4](https://github.com/lobehub/lobe-chat/compare/v1.135.3...v1.135.4)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-10-07**</sup>
|
|
8
|
+
|
|
9
|
+
#### ♻ Code Refactoring
|
|
10
|
+
|
|
11
|
+
- **misc**: Refactor chat item.
|
|
12
|
+
|
|
13
|
+
#### 💄 Styles
|
|
14
|
+
|
|
15
|
+
- **misc**: Add GPT-5 pro model.
|
|
16
|
+
|
|
17
|
+
<br/>
|
|
18
|
+
|
|
19
|
+
<details>
|
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
21
|
+
|
|
22
|
+
#### Code refactoring
|
|
23
|
+
|
|
24
|
+
- **misc**: Refactor chat item, closes [#9599](https://github.com/lobehub/lobe-chat/issues/9599) ([1f36158](https://github.com/lobehub/lobe-chat/commit/1f36158))
|
|
25
|
+
|
|
26
|
+
#### Styles
|
|
27
|
+
|
|
28
|
+
- **misc**: Add GPT-5 pro model, closes [#9594](https://github.com/lobehub/lobe-chat/issues/9594) ([775f30b](https://github.com/lobehub/lobe-chat/commit/775f30b))
|
|
29
|
+
|
|
30
|
+
</details>
|
|
31
|
+
|
|
32
|
+
<div align="right">
|
|
33
|
+
|
|
34
|
+
[](#readme-top)
|
|
35
|
+
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
### [Version 1.135.3](https://github.com/lobehub/lobe-chat/compare/v1.135.2...v1.135.3)
|
|
39
|
+
|
|
40
|
+
<sup>Released on **2025-10-07**</sup>
|
|
41
|
+
|
|
42
|
+
#### 💄 Styles
|
|
43
|
+
|
|
44
|
+
- **misc**: Improve Korean translate.
|
|
45
|
+
|
|
46
|
+
<br/>
|
|
47
|
+
|
|
48
|
+
<details>
|
|
49
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
50
|
+
|
|
51
|
+
#### Styles
|
|
52
|
+
|
|
53
|
+
- **misc**: Improve Korean translate, closes [#9597](https://github.com/lobehub/lobe-chat/issues/9597) ([319fbfb](https://github.com/lobehub/lobe-chat/commit/319fbfb))
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<div align="right">
|
|
58
|
+
|
|
59
|
+
[](#readme-top)
|
|
60
|
+
|
|
61
|
+
</div>
|
|
62
|
+
|
|
5
63
|
### [Version 1.135.2](https://github.com/lobehub/lobe-chat/compare/v1.135.1...v1.135.2)
|
|
6
64
|
|
|
7
65
|
<sup>Released on **2025-10-06**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"improvements": [
|
|
5
|
+
"Add GPT-5 pro model."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-10-07",
|
|
9
|
+
"version": "1.135.4"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"improvements": [
|
|
14
|
+
"Improve Korean translate."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-10-07",
|
|
18
|
+
"version": "1.135.3"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {},
|
|
4
22
|
"date": "2025-10-06",
|
|
@@ -29,11 +29,6 @@ LobeChat integrates `next-auth`, a flexible and powerful identity verification l
|
|
|
29
29
|
- **Social Login**: Support quick login via various social platforms.
|
|
30
30
|
- **Data Security**: Ensure the security and privacy of user data.
|
|
31
31
|
|
|
32
|
-
<Callout type={'warning'}>
|
|
33
|
-
Due to workload constraints, integration of next-auth with a server-side database has not been
|
|
34
|
-
implemented yet. If you need to use a server-side database, please use Clerk.
|
|
35
|
-
</Callout>
|
|
36
|
-
|
|
37
32
|
<Callout type={'info'}>
|
|
38
33
|
For information on using Next-Auth, you can refer to [Authentication Services - Next
|
|
39
34
|
Auth](/docs/self-hosting/advanced/authentication#next-auth).
|
|
@@ -25,11 +25,6 @@ LobeChat 集成了 `next-auth`,一个灵活且强大的身份验证库,支
|
|
|
25
25
|
- **社交登录**:支持多种社交平台的快捷登录。
|
|
26
26
|
- **数据安全**:保障用户数据的安全性和隐私性。
|
|
27
27
|
|
|
28
|
-
<Callout type={'warning'}>
|
|
29
|
-
由于工作量原因,目前还没有实现 next-auth 与服务端数据库的集成,如果需要使用服务端数据库,请使用
|
|
30
|
-
Clerk 。
|
|
31
|
-
</Callout>
|
|
32
|
-
|
|
33
28
|
<Callout type={'info'}>
|
|
34
29
|
关于 Next-Auth 的使用,可以查阅 [身份验证服务 - Next
|
|
35
30
|
Auth](/zh/docs/self-hosting/advanced/authentication#next-auth)。
|
package/locales/ko-KR/auth.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"apikey": {
|
|
3
3
|
"display": {
|
|
4
|
-
"autoGenerated": "자동
|
|
4
|
+
"autoGenerated": "자동 생성됨",
|
|
5
5
|
"copy": "복사",
|
|
6
6
|
"copyError": "복사 실패",
|
|
7
7
|
"copySuccess": "API 키가 클립보드에 복사되었습니다",
|
|
8
|
-
"enterPlaceholder": "
|
|
8
|
+
"enterPlaceholder": "입력해 주세요",
|
|
9
9
|
"hide": "숨기기",
|
|
10
10
|
"neverExpires": "만료되지 않음",
|
|
11
|
-
"neverUsed": "
|
|
12
|
-
"show": "
|
|
11
|
+
"neverUsed": "사용된 적 없음",
|
|
12
|
+
"show": "보기"
|
|
13
13
|
},
|
|
14
14
|
"form": {
|
|
15
15
|
"fields": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"name": {
|
|
21
21
|
"label": "이름",
|
|
22
|
-
"placeholder": "API 키 이름을
|
|
22
|
+
"placeholder": "API 키 이름을 입력해 주세요"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"submit": "생성",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"date": {
|
|
56
|
-
"prevMonth": "
|
|
56
|
+
"prevMonth": "지난달",
|
|
57
57
|
"recent30Days": "최근 30일"
|
|
58
58
|
},
|
|
59
59
|
"header": {
|
|
@@ -79,67 +79,67 @@
|
|
|
79
79
|
"oct": "10월",
|
|
80
80
|
"sep": "9월"
|
|
81
81
|
},
|
|
82
|
-
"tooltip": "{{date}}에 {{count}}개의 메시지를
|
|
83
|
-
"totalCount": "지난 1
|
|
82
|
+
"tooltip": "{{date}}에 {{count}}개의 메시지를 보냈습니다",
|
|
83
|
+
"totalCount": "지난 1년간 총 {{count}}개의 메시지를 보냈습니다"
|
|
84
84
|
},
|
|
85
85
|
"login": "로그인",
|
|
86
|
-
"loginOrSignup": "로그인 /
|
|
86
|
+
"loginOrSignup": "로그인 / 회원가입",
|
|
87
87
|
"profile": {
|
|
88
|
-
"avatar": "
|
|
88
|
+
"avatar": "프로필 사진",
|
|
89
89
|
"email": "이메일 주소",
|
|
90
90
|
"sso": {
|
|
91
|
-
"loading": "연결된 제3자 계정을
|
|
91
|
+
"loading": "연결된 제3자 계정을 불러오는 중",
|
|
92
92
|
"providers": "연결된 계정",
|
|
93
93
|
"unlink": {
|
|
94
|
-
"description": "
|
|
95
|
-
"forbidden": "최소한 하나의 제3자
|
|
96
|
-
"title": "
|
|
94
|
+
"description": "연결 해제 후에는 {{provider}} 계정 “{{providerAccountId}}”로 로그인할 수 없습니다. 현재 계정에 {{provider}} 계정을 다시 연결하려면, 해당 계정의 이메일 주소가 {{email}} 이어야 하며, 로그인 시 자동으로 현재 계정에 연결됩니다.",
|
|
95
|
+
"forbidden": "최소한 하나의 제3자 계정은 연결된 상태여야 합니다.",
|
|
96
|
+
"title": "{{provider}} 제3자 계정을 연결 해제하시겠습니까?"
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
"username": "사용자 이름"
|
|
100
100
|
},
|
|
101
101
|
"signout": "로그아웃",
|
|
102
|
-
"signup": "
|
|
102
|
+
"signup": "회원가입",
|
|
103
103
|
"stats": {
|
|
104
104
|
"aiheatmaps": "활동 지수",
|
|
105
|
-
"assistants": "어시스턴트",
|
|
105
|
+
"assistants": "어시스턴트 수",
|
|
106
106
|
"assistantsRank": {
|
|
107
107
|
"left": "어시스턴트",
|
|
108
|
-
"right": "주제",
|
|
108
|
+
"right": "주제 수",
|
|
109
109
|
"title": "어시스턴트 사용 순위"
|
|
110
110
|
},
|
|
111
|
-
"createdAt": "
|
|
111
|
+
"createdAt": "계정 생성일",
|
|
112
112
|
"days": "일",
|
|
113
113
|
"empty": {
|
|
114
|
-
"desc": "더 많은 채팅 데이터를
|
|
114
|
+
"desc": "더 많은 채팅 데이터를 쌓은 후 확인해 주세요",
|
|
115
115
|
"title": "데이터 없음"
|
|
116
116
|
},
|
|
117
|
-
"lastYearActivity": "지난 1
|
|
117
|
+
"lastYearActivity": "지난 1년간 활동",
|
|
118
118
|
"loginGuide": {
|
|
119
119
|
"f1": "무료 사용량 받기",
|
|
120
|
-
"f2": "
|
|
121
|
-
"f3": "
|
|
120
|
+
"f2": "다중 기기 간 메시지 동기화",
|
|
121
|
+
"f3": "다양한 어시스턴트 사용",
|
|
122
122
|
"f4": "강력한 플러그인 탐색",
|
|
123
|
-
"title": "로그인 후 할 수 있는
|
|
123
|
+
"title": "로그인 후 할 수 있는 것들:"
|
|
124
124
|
},
|
|
125
|
-
"messages": "메시지",
|
|
125
|
+
"messages": "메시지 수",
|
|
126
126
|
"modelsRank": {
|
|
127
|
-
"left": "모델",
|
|
128
|
-
"right": "메시지",
|
|
129
|
-
"title": "모델
|
|
127
|
+
"left": "모델 이름",
|
|
128
|
+
"right": "메시지 수",
|
|
129
|
+
"title": "모델 사용률"
|
|
130
130
|
},
|
|
131
131
|
"share": {
|
|
132
|
-
"title": "
|
|
132
|
+
"title": "나의 AI 활동 지수"
|
|
133
133
|
},
|
|
134
|
-
"topics": "주제",
|
|
134
|
+
"topics": "주제 수",
|
|
135
135
|
"topicsRank": {
|
|
136
|
-
"left": "주제",
|
|
137
|
-
"right": "메시지",
|
|
138
|
-
"title": "
|
|
136
|
+
"left": "주제 이름",
|
|
137
|
+
"right": "메시지 수",
|
|
138
|
+
"title": "주제별 메시지량"
|
|
139
139
|
},
|
|
140
|
-
"updatedAt": "
|
|
141
|
-
"welcome": "{{username}}
|
|
142
|
-
"words": "단어"
|
|
140
|
+
"updatedAt": "데이터 기준일",
|
|
141
|
+
"welcome": "{{username}}님, 오늘은 {{appName}}과 함께한 지 <span>{{days}}</span>일째 되는 날입니다",
|
|
142
|
+
"words": "누적 단어 수"
|
|
143
143
|
},
|
|
144
144
|
"tab": {
|
|
145
145
|
"apikey": "API 키 관리",
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
"actions": {
|
|
3
3
|
"followOnX": "X에서 저희를 팔로우하세요",
|
|
4
4
|
"subscribeToUpdates": "업데이트 구독하기",
|
|
5
|
-
"versions": "버전
|
|
5
|
+
"versions": "버전 상세 정보"
|
|
6
6
|
},
|
|
7
|
-
"addedWhileAway": "
|
|
8
|
-
"allChangelog": "모든
|
|
9
|
-
"description": "{{appName}}의 새로운 기능과 개선 사항을
|
|
7
|
+
"addedWhileAway": "자리를 비운 동안 새로운 기능이 추가되었습니다.",
|
|
8
|
+
"allChangelog": "모든 변경 로그 보기",
|
|
9
|
+
"description": "{{appName}}의 새로운 기능과 개선 사항을 계속 확인하세요",
|
|
10
10
|
"pagination": {
|
|
11
11
|
"next": "다음 페이지",
|
|
12
12
|
"older": "이전 변경 사항 보기"
|
|
13
13
|
},
|
|
14
|
-
"readDetails": "자세히
|
|
15
|
-
"title": "
|
|
16
|
-
"versionDetails": "버전
|
|
14
|
+
"readDetails": "자세히 보기",
|
|
15
|
+
"title": "변경 로그",
|
|
16
|
+
"versionDetails": "버전 상세 정보",
|
|
17
17
|
"welcomeBack": "다시 오신 것을 환영합니다!"
|
|
18
18
|
}
|