@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.
Files changed (147) hide show
  1. package/.i18nrc.js +1 -1
  2. package/CHANGELOG.md +58 -0
  3. package/changelog/v1.json +18 -0
  4. package/docs/usage/features/auth.mdx +0 -5
  5. package/docs/usage/features/auth.zh-CN.mdx +0 -5
  6. package/locales/ko-KR/auth.json +35 -35
  7. package/locales/ko-KR/changelog.json +7 -7
  8. package/locales/ko-KR/chat.json +94 -94
  9. package/locales/ko-KR/clerk.json +74 -74
  10. package/locales/ko-KR/color.json +10 -10
  11. package/locales/ko-KR/common.json +114 -114
  12. package/locales/ko-KR/components.json +75 -75
  13. package/locales/ko-KR/discover.json +118 -118
  14. package/locales/ko-KR/editor.json +10 -10
  15. package/locales/ko-KR/file.json +25 -25
  16. package/locales/ko-KR/hotkey.json +21 -21
  17. package/locales/ko-KR/image.json +19 -19
  18. package/locales/ko-KR/knowledgeBase.json +3 -3
  19. package/locales/ko-KR/market.json +14 -14
  20. package/locales/ko-KR/metadata.json +19 -19
  21. package/locales/ko-KR/migration.json +15 -15
  22. package/locales/ko-KR/modelProvider.json +119 -119
  23. package/locales/ko-KR/oauth.json +19 -19
  24. package/locales/ko-KR/plugin.json +106 -106
  25. package/locales/ko-KR/portal.json +5 -5
  26. package/locales/ko-KR/providers.json +60 -60
  27. package/locales/ko-KR/ragEval.json +10 -10
  28. package/locales/ko-KR/setting.json +67 -67
  29. package/locales/ko-KR/subscription.json +4 -4
  30. package/locales/ko-KR/thread.json +3 -3
  31. package/locales/ko-KR/tool.json +25 -25
  32. package/locales/ko-KR/welcome.json +24 -24
  33. package/package.json +2 -2
  34. package/packages/const/src/index.ts +1 -0
  35. package/packages/const/src/settings/index.ts +1 -0
  36. package/packages/model-bank/src/aiModels/aihubmix.ts +25 -0
  37. package/packages/model-bank/src/aiModels/nvidia.ts +17 -1
  38. package/packages/model-bank/src/aiModels/openai.ts +80 -1
  39. package/packages/model-runtime/src/const/models.ts +2 -0
  40. package/packages/model-runtime/src/providers/openai/index.ts +15 -11
  41. package/packages/model-runtime/src/providers/openrouter/index.ts +7 -2
  42. package/packages/model-runtime/src/providers/openrouter/type.ts +4 -2
  43. package/packages/model-runtime/src/providers/vercelaigateway/index.ts +7 -0
  44. package/packages/model-runtime/src/utils/modelParse.ts +31 -3
  45. package/packages/prompts/promptfoo/summary-title/eval.yaml +9 -0
  46. package/packages/types/src/aiProvider.ts +1 -2
  47. package/packages/types/src/discover/models.ts +3 -2
  48. package/packages/types/src/discover/providers.ts +3 -2
  49. package/packages/types/src/message/chat.ts +13 -0
  50. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/index.tsx +1 -5
  51. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/WelcomeMessage.tsx +1 -1
  52. package/src/app/[variants]/(main)/settings/provider/features/ModelList/CreateNewModelModal/Form.tsx +1 -2
  53. package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +1 -4
  54. package/src/app/[variants]/(main)/settings/provider/features/ModelList/SortModelModal/ListItem.tsx +1 -2
  55. package/src/app/[variants]/(main)/settings/provider/features/ModelList/SortModelModal/index.tsx +1 -1
  56. package/src/{components → features}/ChatItem/ChatItem.tsx +5 -35
  57. package/src/{components → features}/ChatItem/components/MessageContent.tsx +27 -7
  58. package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/Render/index.tsx +1 -1
  59. package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/getNodeContent.test.ts +1 -1
  60. package/src/features/Conversation/{Actions → Messages/Assistant/Actions}/Error.tsx +1 -1
  61. package/src/features/Conversation/{components/ChatItem/ActionsBar.tsx → Messages/Assistant/Actions/index.tsx} +71 -44
  62. package/src/features/Conversation/Messages/Assistant/Block.tsx +63 -0
  63. package/src/features/Conversation/{Extras/Assistant.test.tsx → Messages/Assistant/Extra/index.test.tsx} +36 -31
  64. package/src/features/Conversation/{Extras/Assistant.tsx → Messages/Assistant/Extra/index.tsx} +13 -7
  65. package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +102 -0
  66. package/src/features/Conversation/Messages/Assistant/index.tsx +235 -84
  67. package/src/features/Conversation/Messages/User/Actions.tsx +153 -0
  68. package/src/features/Conversation/Messages/User/BelowMessage.tsx +7 -2
  69. package/src/features/Conversation/{Extras/User.tsx → Messages/User/Extra.tsx} +9 -7
  70. package/src/features/Conversation/Messages/User/MessageContent.tsx +31 -0
  71. package/src/features/Conversation/Messages/User/index.tsx +127 -24
  72. package/src/features/Conversation/Messages/index.tsx +152 -0
  73. package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/ModelCard.tsx +4 -3
  74. package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/pricing.ts +3 -2
  75. package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/tokens.test.ts +2 -3
  76. package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/Preview.tsx +1 -1
  77. package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/index.tsx +1 -1
  78. package/src/features/Conversation/components/VirtualizedList/index.tsx +1 -0
  79. package/src/features/Conversation/hooks/useChatListActionsBar.tsx +29 -1
  80. package/src/features/Conversation/hooks/useDoubleClickEdit.ts +42 -0
  81. package/src/features/Conversation/index.ts +1 -1
  82. package/src/features/Conversation/types/{index.tsx → index.ts} +0 -7
  83. package/src/features/Portal/Thread/Chat/ChatItem.tsx +0 -7
  84. package/src/hooks/useUserAvatar.test.ts +129 -0
  85. package/src/hooks/useUserAvatar.ts +19 -0
  86. package/src/server/routers/lambda/aiModel.ts +7 -8
  87. package/src/store/user/slices/settings/selectors/settings.ts +6 -5
  88. package/src/features/ChatItem/index.tsx +0 -58
  89. package/src/features/Conversation/Actions/Assistant.tsx +0 -68
  90. package/src/features/Conversation/Actions/Fallback.tsx +0 -19
  91. package/src/features/Conversation/Actions/Tool.tsx +0 -33
  92. package/src/features/Conversation/Actions/User.tsx +0 -39
  93. package/src/features/Conversation/Actions/customAction.ts +0 -37
  94. package/src/features/Conversation/Actions/index.ts +0 -14
  95. package/src/features/Conversation/Extras/index.ts +0 -8
  96. package/src/features/Conversation/Extras/type.ts +0 -5
  97. package/src/features/Conversation/Messages/index.ts +0 -45
  98. package/src/features/Conversation/components/ChatItem/index.tsx +0 -358
  99. /package/src/{components → features}/ChatItem/components/Actions.tsx +0 -0
  100. /package/src/{components → features}/ChatItem/components/Avatar.tsx +0 -0
  101. /package/src/{components → features}/ChatItem/components/BorderSpacing.tsx +0 -0
  102. /package/src/{components → features}/ChatItem/components/ErrorContent.tsx +0 -0
  103. /package/src/{components → features}/ChatItem/components/Loading.tsx +0 -0
  104. /package/src/{components → features}/ChatItem/components/Title.tsx +0 -0
  105. /package/src/{components → features}/ChatItem/index.ts +0 -0
  106. /package/src/{components → features}/ChatItem/style.ts +0 -0
  107. /package/src/{components → features}/ChatItem/type.ts +0 -0
  108. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/Render/Icon.tsx +0 -0
  109. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/index.ts +0 -0
  110. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/rehypePlugin.test.ts +0 -0
  111. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeArtifact/rehypePlugin.ts +0 -0
  112. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeThinking/Render.tsx +0 -0
  113. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LobeThinking/index.ts +0 -0
  114. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LocalFile/Render/index.tsx +0 -0
  115. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/LocalFile/index.ts +0 -0
  116. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/Thinking/Render.tsx +0 -0
  117. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/Thinking/index.ts +0 -0
  118. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/index.ts +0 -0
  119. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -0
  120. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
  121. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -0
  122. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -0
  123. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/remarkPlugins/getNodeContent.ts +0 -0
  124. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/type.ts +0 -0
  125. /package/src/features/Conversation/{components/MarkdownElements → MarkdownElements}/utils.ts +0 -0
  126. /package/src/features/Conversation/{Extras → components/Extras}/ExtraContainer.tsx +0 -0
  127. /package/src/features/Conversation/{Extras → components/Extras}/TTS/FilePlayer.tsx +0 -0
  128. /package/src/features/Conversation/{Extras → components/Extras}/TTS/InitPlayer.tsx +0 -0
  129. /package/src/features/Conversation/{Extras → components/Extras}/TTS/Player.tsx +0 -0
  130. /package/src/features/Conversation/{Extras → components/Extras}/TTS/index.tsx +0 -0
  131. /package/src/features/Conversation/{Extras → components/Extras}/Translate.tsx +0 -0
  132. /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/TokenProgress.tsx +0 -0
  133. /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/index.tsx +0 -0
  134. /package/src/features/Conversation/{Extras → components/Extras}/Usage/UsageDetail/tokens.ts +0 -0
  135. /package/src/features/Conversation/{Extras → components/Extras}/Usage/index.tsx +0 -0
  136. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/index.tsx +0 -0
  137. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/style.ts +0 -0
  138. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareImage/type.ts +0 -0
  139. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/Preview.tsx +0 -0
  140. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/template.test.ts +0 -0
  141. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/template.ts +0 -0
  142. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/ShareText/type.ts +0 -0
  143. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/index.tsx +0 -0
  144. /package/src/features/Conversation/components/{ChatItem/ShareMessageModal → ShareMessageModal}/style.ts +0 -0
  145. /package/src/features/Conversation/{components/ChatItem → context}/InPortalThreadContext.ts +0 -0
  146. /package/src/features/Conversation/{components/ChatItem/utils.test.ts → utils.test.ts} +0 -0
  147. /package/src/features/Conversation/{components/ChatItem/utils.ts → utils.ts} +0 -0
package/.i18nrc.js CHANGED
@@ -25,7 +25,7 @@ module.exports = defineConfig({
25
25
  ],
26
26
  temperature: 0,
27
27
  saveImmediately: true,
28
- modelName: 'gpt-4.1-mini',
28
+ modelName: 'chatgpt-4o-latest',
29
29
  experimental: {
30
30
  jsonMode: true,
31
31
  },
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
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#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
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#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)。
@@ -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 동안 총 {{count}}개의 메시지가 전송되었습니다."
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": "연결을 해제하면 {{provider}} 계정“{{providerAccountId}}”으로 로그인할 수 없습니다. 현재 계정에 {{provider}} 계정을 다시 연결해야 하는 경우, {{provider}} 계정의 이메일 주소가 {{email}}인지 확인하십시오. 로그인 시 자동으로 현재 로그인 계정에 연결됩니다.",
95
- "forbidden": "최소한 하나의 제3자 계정 연결을 유지해야 합니다.",
96
- "title": "이 제3자 계정 {{provider}} 연결 해제하시겠습니까?"
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": " AI 활동 지수"
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}}, {{appName}} 함께한 <span>{{days}}</span>일입니다.",
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
  }