@liujitcn/kratos-uni-app-system 0.0.21 → 0.0.23
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/README.md +1 -1
- package/dist/index.mjs +1232 -1245
- package/package.json +2 -2
- package/src/api/base/ai_message.ts +5 -5
- package/src/index.ts +3 -17
- package/src/locales/README.md +4 -2
- package/src/locales/en-US.json +62 -62
- package/src/locales/es-ES.json +83 -83
- package/src/locales/fr-FR.json +83 -83
- package/src/locales/generated.ts +22 -0
- package/src/locales/ja-JP.json +74 -74
- package/src/locales/ko-KR.json +78 -78
- package/src/locales/zh-CN.json +62 -62
- package/src/locales/zh-TW.json +62 -62
- package/src/rpc/base/v1/ai_session.ts +13 -2
- package/src/rpc/base/v1/ai_tool.ts +10 -1
- package/src/views/pages/my/my.vue +8 -6
- package/src/views/pagesMember/ai/components/SessionDrawer.vue +4 -4
- package/src/views/pagesMember/ai/components/WelcomePanel.vue +7 -5
- package/src/views/pagesMember/ai/index.vue +54 -51
- package/src/views/pagesMember/profile/profile.vue +10 -10
- package/src/views/pagesMember/settings/settings.vue +3 -3
- package/src/rpc/base/v1/enum.ts +0 -54
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git@github.com:liujitcn/kratos-admin.git"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.0.
|
|
10
|
+
"version": "0.0.23",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@dcloudio/uni-app": "3.0.0-5010520260709002",
|
|
31
31
|
"@dcloudio/uni-ui": "^1.4.28",
|
|
32
32
|
"vue": "^3.4.21",
|
|
33
|
-
"@liujitcn/kratos-uni-app-core": "^0.0.
|
|
33
|
+
"@liujitcn/kratos-uni-app-core": "^0.0.23"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"esbuild": "^0.20.2",
|
|
@@ -46,7 +46,7 @@ type ChunkedRequestTask = UniNamespace.RequestTask & {
|
|
|
46
46
|
|
|
47
47
|
/** 从 direct stream 错误响应中提取后端业务提示。 */
|
|
48
48
|
async function resolveStreamErrorMessage(response: Response): Promise<string> {
|
|
49
|
-
const fallbackMessage = t('system.ai.
|
|
49
|
+
const fallbackMessage = t('system.ai.request_failed_with_status', { status: response.status })
|
|
50
50
|
const contentType = response.headers.get('Content-Type') ?? ''
|
|
51
51
|
if (contentType.includes('application/json')) {
|
|
52
52
|
try {
|
|
@@ -91,7 +91,7 @@ export async function SendAiMessageStream(
|
|
|
91
91
|
// direct stream 不经过 uni.request 拦截器,需要在这里补齐登录失效处理。
|
|
92
92
|
if (response.status === 401 || response.status === 403) {
|
|
93
93
|
handleAuthExpired('required')
|
|
94
|
-
throw new Error(t('core.auth.
|
|
94
|
+
throw new Error(t('core.auth.session_expired'))
|
|
95
95
|
}
|
|
96
96
|
if (!response.ok) {
|
|
97
97
|
throw new Error(await resolveStreamErrorMessage(response))
|
|
@@ -139,7 +139,7 @@ export function StreamAiMessageByChunkedRequest(
|
|
|
139
139
|
}
|
|
140
140
|
if (res.statusCode === 401 || res.statusCode === 403) {
|
|
141
141
|
handleAuthExpired('required')
|
|
142
|
-
reject(new Error(t('core.auth.
|
|
142
|
+
reject(new Error(t('core.auth.session_expired')))
|
|
143
143
|
return
|
|
144
144
|
}
|
|
145
145
|
if (res.statusCode < 200 || res.statusCode >= 300) {
|
|
@@ -170,7 +170,7 @@ export function StreamAiMessageByChunkedRequest(
|
|
|
170
170
|
|
|
171
171
|
if (typeof requestTask.onChunkReceived !== 'function') {
|
|
172
172
|
requestTask.abort()
|
|
173
|
-
reject(new Error(t('system.ai.
|
|
173
|
+
reject(new Error(t('system.ai.stream_unsupported')))
|
|
174
174
|
return
|
|
175
175
|
}
|
|
176
176
|
|
|
@@ -270,7 +270,7 @@ export class AiMessageServiceImpl implements AiMessageService {
|
|
|
270
270
|
export const defAiMessageService = new AiMessageServiceImpl()
|
|
271
271
|
|
|
272
272
|
function resolveChunkedStreamErrorMessage(response: UniApp.RequestSuccessCallbackResult) {
|
|
273
|
-
const fallbackMessage = t('system.ai.
|
|
273
|
+
const fallbackMessage = t('system.ai.request_failed_with_status', { status: response.statusCode })
|
|
274
274
|
const text = decodeChunkedResponseData(response.data).trim()
|
|
275
275
|
if (!text) {
|
|
276
276
|
return fallbackMessage
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
import { defineKratosAppModule } from '@liujitcn/kratos-uni-app-core/module'
|
|
2
2
|
import { systemPages } from './pages'
|
|
3
3
|
|
|
4
|
-
// System
|
|
5
|
-
import
|
|
6
|
-
import jaJP from './locales/ja-JP.json'
|
|
7
|
-
import zhCN from './locales/zh-CN.json'
|
|
8
|
-
import zhTW from './locales/zh-TW.json'
|
|
9
|
-
import koKR from './locales/ko-KR.json'
|
|
10
|
-
import frFR from './locales/fr-FR.json'
|
|
11
|
-
import esES from './locales/es-ES.json'
|
|
4
|
+
// System 语言包由同步脚本生成并注册,供 uni-app System 页面、个人中心和 AI 功能使用。
|
|
5
|
+
import { LOCALE_MESSAGES } from './locales/generated'
|
|
12
6
|
|
|
13
7
|
/** system 内置模块,AI 能力也归属 system。 */
|
|
14
8
|
export const systemModule = defineKratosAppModule({
|
|
@@ -20,15 +14,7 @@ export const systemModule = defineKratosAppModule({
|
|
|
20
14
|
SETTINGS: 'pagesMember/settings/settings',
|
|
21
15
|
AI: 'pagesMember/ai/index',
|
|
22
16
|
},
|
|
23
|
-
messages:
|
|
24
|
-
'zh-CN': zhCN,
|
|
25
|
-
'zh-TW': zhTW,
|
|
26
|
-
'ko-KR': koKR,
|
|
27
|
-
'fr-FR': frFR,
|
|
28
|
-
'es-ES': esES,
|
|
29
|
-
'en-US': enUS,
|
|
30
|
-
'ja-JP': jaJP,
|
|
31
|
-
},
|
|
17
|
+
messages: LOCALE_MESSAGES,
|
|
32
18
|
})
|
|
33
19
|
|
|
34
20
|
export default systemModule
|
package/src/locales/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| 文件 | 用途 | 使用位置 |
|
|
6
6
|
| --- | --- | --- |
|
|
7
|
-
| `zh-CN.json` | System 模块简体中文固定 UI
|
|
7
|
+
| `zh-CN.json` | System 模块简体中文固定 UI 默认语言包,也是所有语言键集合和占位符校验基准。 | uni-app 固定文案默认语言及缺失翻译回退。 |
|
|
8
8
|
| `zh-TW.json` | System 模块繁体中文语言包。 | uni-app 切换为繁体中文时使用。 |
|
|
9
9
|
| `en-US.json` | System 模块英文语言包。 | uni-app 切换为英文时使用。 |
|
|
10
10
|
| `ja-JP.json` | System 模块日文语言包。 | uni-app 切换为日文时使用。 |
|
|
@@ -12,4 +12,6 @@
|
|
|
12
12
|
| `fr-FR.json` | System 模块法语语言包。 | uni-app 切换为法语时使用。 |
|
|
13
13
|
| `es-ES.json` | System 模块西班牙语语言包。 | uni-app 切换为西班牙语时使用。 |
|
|
14
14
|
|
|
15
|
-
语言键必须使用 `system.` 命名空间;语言包保持标准 JSON
|
|
15
|
+
语言键必须使用 `system.` 命名空间;语言包保持标准 JSON,不在文件内写注释。新增语言后执行仓库根目录的 `make i18n-sync`。
|
|
16
|
+
|
|
17
|
+
新增语言的完整文件清单和迁移流程见[国际化语言扩展指南](../../../../../../docs/国际化语言扩展指南.md)。
|
package/src/locales/en-US.json
CHANGED
|
@@ -2,35 +2,35 @@
|
|
|
2
2
|
"system.ai.action.copy": "Copy",
|
|
3
3
|
"system.ai.action.regenerate": "Regenerate",
|
|
4
4
|
"system.ai.attachment": "Attachment",
|
|
5
|
-
"system.ai.
|
|
6
|
-
"system.ai.
|
|
7
|
-
"system.ai.
|
|
8
|
-
"system.ai.
|
|
9
|
-
"system.ai.
|
|
10
|
-
"system.ai.
|
|
11
|
-
"system.ai.
|
|
12
|
-
"system.ai.
|
|
13
|
-
"system.ai.
|
|
14
|
-
"system.ai.
|
|
15
|
-
"system.ai.
|
|
16
|
-
"system.ai.
|
|
17
|
-
"system.ai.
|
|
18
|
-
"system.ai.
|
|
5
|
+
"system.ai.attachment_answer": "Answer my question using the attached content",
|
|
6
|
+
"system.ai.attachment_limit": "You can upload up to {count} attachments",
|
|
7
|
+
"system.ai.attachment_uploading": "Uploading attachments...",
|
|
8
|
+
"system.ai.chat_title": "AI Assistant",
|
|
9
|
+
"system.ai.copy_success": "Message copied",
|
|
10
|
+
"system.ai.current_session": "current session",
|
|
11
|
+
"system.ai.create_session_failed": "Failed to create session",
|
|
12
|
+
"system.ai.delete_message_failed": "Failed to delete message",
|
|
13
|
+
"system.ai.delete_session": "Delete session",
|
|
14
|
+
"system.ai.delete_session_confirm": "Delete \"{title}\"?",
|
|
15
|
+
"system.ai.delete_session_failed": "Failed to delete session",
|
|
16
|
+
"system.ai.efficiency_assistant": "Productivity assistant",
|
|
17
|
+
"system.ai.failed_response": "The response did not complete. You can retry your previous question.",
|
|
18
|
+
"system.ai.general_assistant": "General assistant",
|
|
19
19
|
"system.ai.greeting": "Good {period}, how can I help you today?",
|
|
20
|
-
"system.ai.
|
|
20
|
+
"system.ai.greeting_hello": "Hello, your AI assistant is ready to help.",
|
|
21
21
|
"system.ai.history": "Chat history",
|
|
22
|
-
"system.ai.
|
|
23
|
-
"system.ai.
|
|
24
|
-
"system.ai.
|
|
25
|
-
"system.ai.
|
|
26
|
-
"system.ai.
|
|
27
|
-
"system.ai.
|
|
28
|
-
"system.ai.
|
|
29
|
-
"system.ai.
|
|
30
|
-
"system.ai.
|
|
31
|
-
"system.ai.
|
|
32
|
-
"system.ai.
|
|
33
|
-
"system.ai.
|
|
22
|
+
"system.ai.image_attachment": "IMG",
|
|
23
|
+
"system.ai.image_name": "Image {index}",
|
|
24
|
+
"system.ai.load_messages": "Loading messages...",
|
|
25
|
+
"system.ai.load_messages_failed": "Failed to load messages",
|
|
26
|
+
"system.ai.load_sessions": "Loading sessions...",
|
|
27
|
+
"system.ai.load_sessions_failed": "Failed to load sessions",
|
|
28
|
+
"system.ai.load_shortcuts_failed": "Failed to load shortcuts",
|
|
29
|
+
"system.ai.model_reply": "Model response",
|
|
30
|
+
"system.ai.new_session": "New session",
|
|
31
|
+
"system.ai.no_matching_sessions": "No matching sessions",
|
|
32
|
+
"system.ai.no_shortcuts": "No shortcuts available",
|
|
33
|
+
"system.ai.no_summary": "No summary",
|
|
34
34
|
"system.ai.period.afternoon": "afternoon",
|
|
35
35
|
"system.ai.period.evening": "evening",
|
|
36
36
|
"system.ai.period.morning": "morning",
|
|
@@ -38,54 +38,54 @@
|
|
|
38
38
|
"system.ai.placeholder.continue": "Continue your question",
|
|
39
39
|
"system.ai.placeholder.default": "Ask anything",
|
|
40
40
|
"system.ai.prompt.idea": "Give me some ideas",
|
|
41
|
-
"system.ai.prompt.
|
|
41
|
+
"system.ai.prompt.idea_content": "Suggest some fresh ideas about this topic",
|
|
42
42
|
"system.ai.prompt.optimize": "Improve some writing",
|
|
43
|
-
"system.ai.prompt.
|
|
43
|
+
"system.ai.prompt.optimize_content": "Help me improve the following text",
|
|
44
44
|
"system.ai.prompt.plan": "Create a plan",
|
|
45
|
-
"system.ai.prompt.
|
|
45
|
+
"system.ai.prompt.plan_content": "Create a clear action plan for me",
|
|
46
46
|
"system.ai.prompt.summary": "Summarize content",
|
|
47
|
-
"system.ai.prompt.
|
|
48
|
-
"system.ai.
|
|
47
|
+
"system.ai.prompt.summary_content": "Summarize the following content",
|
|
48
|
+
"system.ai.quick_actions": "Quick actions",
|
|
49
49
|
"system.ai.recording": "Listening...",
|
|
50
50
|
"system.ai.recognizing": "Recognizing speech",
|
|
51
51
|
"system.ai.refresh": "Refresh",
|
|
52
|
-
"system.ai.
|
|
53
|
-
"system.ai.
|
|
54
|
-
"system.ai.
|
|
55
|
-
"system.ai.
|
|
56
|
-
"system.ai.
|
|
57
|
-
"system.ai.
|
|
58
|
-
"system.ai.
|
|
59
|
-
"system.ai.
|
|
60
|
-
"system.ai.
|
|
61
|
-
"system.ai.
|
|
62
|
-
"system.ai.
|
|
52
|
+
"system.ai.regenerate_failed": "Failed to regenerate",
|
|
53
|
+
"system.ai.request_failed": "AI assistant request failed",
|
|
54
|
+
"system.ai.request_failed_with_status": "AI assistant request failed ({status})",
|
|
55
|
+
"system.ai.response_empty": "AI assistant returned an empty response",
|
|
56
|
+
"system.ai.response_incomplete": "AI streaming response was incomplete",
|
|
57
|
+
"system.ai.search_session": "Search sessions",
|
|
58
|
+
"system.ai.shortcut_question": "Try asking",
|
|
59
|
+
"system.ai.speech_stopped": "Voice input stopped",
|
|
60
|
+
"system.ai.stream_empty": "AI streaming response was empty",
|
|
61
|
+
"system.ai.stream_unsupported": "Streaming responses are not supported on this platform",
|
|
62
|
+
"system.ai.text_assistant": "Writing assistant",
|
|
63
63
|
"system.ai.thinking": "Responding",
|
|
64
|
-
"system.ai.
|
|
65
|
-
"system.ai.
|
|
64
|
+
"system.ai.tool_called": "Tools used: {tools}",
|
|
65
|
+
"system.ai.upload_failed": "Attachment upload failed",
|
|
66
66
|
"system.profile.account": "Account",
|
|
67
|
-
"system.profile.
|
|
68
|
-
"system.profile.
|
|
69
|
-
"system.profile.
|
|
67
|
+
"system.profile.avatar_change": "Tap to change avatar",
|
|
68
|
+
"system.profile.avatar_upload_failed": "Avatar upload failed",
|
|
69
|
+
"system.profile.avatar_update": "Update avatar and name",
|
|
70
70
|
"system.profile.gender": "Gender",
|
|
71
|
-
"system.profile.
|
|
71
|
+
"system.profile.login_prompt": "Tap to log in",
|
|
72
72
|
"system.profile.mobile": "Mobile",
|
|
73
|
-
"system.profile.
|
|
74
|
-
"system.profile.
|
|
75
|
-
"system.profile.
|
|
76
|
-
"system.profile.
|
|
77
|
-
"system.profile.
|
|
78
|
-
"system.profile.
|
|
79
|
-
"system.profile.
|
|
73
|
+
"system.profile.nick_name": "Nickname",
|
|
74
|
+
"system.profile.nick_name_placeholder": "Enter nickname",
|
|
75
|
+
"system.profile.not_logged_in": "Not logged in",
|
|
76
|
+
"system.profile.phone_authorization": "Authorize mobile with WeChat",
|
|
77
|
+
"system.profile.phone_authorization_success": "Authorized",
|
|
78
|
+
"system.profile.photo_limit": "Upload a photo smaller than 1 MB",
|
|
79
|
+
"system.profile.save_success": "Saved",
|
|
80
80
|
"system.profile.title": "Profile",
|
|
81
|
-
"system.profile.
|
|
82
|
-
"system.settings.
|
|
83
|
-
"system.settings.
|
|
81
|
+
"system.profile.update_success": "Updated",
|
|
82
|
+
"system.settings.ai_description": "Organize information, answer questions, and handle everyday tasks",
|
|
83
|
+
"system.settings.ai_title": "AI Assistant",
|
|
84
84
|
"system.settings.authorization": "Authorization settings",
|
|
85
85
|
"system.settings.contact": "Contact us",
|
|
86
86
|
"system.settings.feedback": "Feedback",
|
|
87
|
-
"system.settings.
|
|
88
|
-
"system.settings.
|
|
89
|
-
"system.settings.
|
|
87
|
+
"system.settings.go_ask": "Ask now",
|
|
88
|
+
"system.settings.logout_confirm": "Log out now?",
|
|
89
|
+
"system.settings.logout_failed": "Logout failed",
|
|
90
90
|
"system.settings.title": "Settings"
|
|
91
91
|
}
|
package/src/locales/es-ES.json
CHANGED
|
@@ -1,91 +1,91 @@
|
|
|
1
1
|
{
|
|
2
2
|
"system.ai.action.copy": "Copiar",
|
|
3
3
|
"system.ai.action.regenerate": "Regenerar",
|
|
4
|
-
"system.ai.attachment": "
|
|
5
|
-
"system.ai.
|
|
6
|
-
"system.ai.
|
|
7
|
-
"system.ai.
|
|
8
|
-
"system.ai.
|
|
9
|
-
"system.ai.
|
|
10
|
-
"system.ai.
|
|
11
|
-
"system.ai.
|
|
12
|
-
"system.ai.
|
|
13
|
-
"system.ai.
|
|
14
|
-
"system.ai.
|
|
15
|
-
"system.ai.
|
|
16
|
-
"system.ai.
|
|
17
|
-
"system.ai.
|
|
18
|
-
"system.ai.
|
|
19
|
-
"system.ai.greeting": "
|
|
20
|
-
"system.ai.
|
|
21
|
-
"system.ai.history": "
|
|
22
|
-
"system.ai.
|
|
23
|
-
"system.ai.
|
|
24
|
-
"system.ai.
|
|
25
|
-
"system.ai.
|
|
26
|
-
"system.ai.
|
|
27
|
-
"system.ai.
|
|
28
|
-
"system.ai.
|
|
29
|
-
"system.ai.
|
|
30
|
-
"system.ai.
|
|
31
|
-
"system.ai.
|
|
32
|
-
"system.ai.
|
|
33
|
-
"system.ai.
|
|
34
|
-
"system.ai.period.afternoon": "
|
|
35
|
-
"system.ai.period.evening": "
|
|
36
|
-
"system.ai.period.morning": "
|
|
37
|
-
"system.ai.period.noon": "
|
|
38
|
-
"system.ai.placeholder.continue": "
|
|
39
|
-
"system.ai.placeholder.default": "
|
|
40
|
-
"system.ai.prompt.idea": "Dame
|
|
41
|
-
"system.ai.prompt.
|
|
42
|
-
"system.ai.prompt.optimize": "
|
|
43
|
-
"system.ai.prompt.
|
|
44
|
-
"system.ai.prompt.plan": "
|
|
45
|
-
"system.ai.prompt.
|
|
46
|
-
"system.ai.prompt.summary": "
|
|
47
|
-
"system.ai.prompt.
|
|
48
|
-
"system.ai.
|
|
4
|
+
"system.ai.attachment": "Archivo adjunto",
|
|
5
|
+
"system.ai.attachment_answer": "Responde a mi pregunta usando el contenido adjunto",
|
|
6
|
+
"system.ai.attachment_limit": "Puedes cargar hasta {count} archivos adjuntos",
|
|
7
|
+
"system.ai.attachment_uploading": "Cargando archivos adjuntos...",
|
|
8
|
+
"system.ai.chat_title": "Asistente de IA",
|
|
9
|
+
"system.ai.copy_success": "Mensaje copiado",
|
|
10
|
+
"system.ai.current_session": "sesión actual",
|
|
11
|
+
"system.ai.create_session_failed": "No se pudo crear la sesión",
|
|
12
|
+
"system.ai.delete_message_failed": "No se pudo eliminar el mensaje",
|
|
13
|
+
"system.ai.delete_session": "Eliminar sesión",
|
|
14
|
+
"system.ai.delete_session_confirm": "¿Eliminar «{title}»?",
|
|
15
|
+
"system.ai.delete_session_failed": "No se pudo eliminar la sesión",
|
|
16
|
+
"system.ai.efficiency_assistant": "Asistente de productividad",
|
|
17
|
+
"system.ai.failed_response": "La respuesta no se completó. Puedes volver a intentar la pregunta anterior.",
|
|
18
|
+
"system.ai.general_assistant": "Asistente general",
|
|
19
|
+
"system.ai.greeting": "Buenas {period}, ¿cómo puedo ayudarte hoy?",
|
|
20
|
+
"system.ai.greeting_hello": "Hola, tu asistente de IA está listo para ayudarte.",
|
|
21
|
+
"system.ai.history": "Historial de chats",
|
|
22
|
+
"system.ai.image_attachment": "IMG",
|
|
23
|
+
"system.ai.image_name": "Imagen {index}",
|
|
24
|
+
"system.ai.load_messages": "Cargando mensajes...",
|
|
25
|
+
"system.ai.load_messages_failed": "No se pudieron cargar los mensajes",
|
|
26
|
+
"system.ai.load_sessions": "Cargando sesiones...",
|
|
27
|
+
"system.ai.load_sessions_failed": "No se pudieron cargar las sesiones",
|
|
28
|
+
"system.ai.load_shortcuts_failed": "No se pudieron cargar las acciones rápidas",
|
|
29
|
+
"system.ai.model_reply": "Respuesta del modelo",
|
|
30
|
+
"system.ai.new_session": "Nueva sesión",
|
|
31
|
+
"system.ai.no_matching_sessions": "No hay sesiones coincidentes",
|
|
32
|
+
"system.ai.no_shortcuts": "No hay acciones rápidas disponibles",
|
|
33
|
+
"system.ai.no_summary": "No hay resumen",
|
|
34
|
+
"system.ai.period.afternoon": "tardes",
|
|
35
|
+
"system.ai.period.evening": "noches",
|
|
36
|
+
"system.ai.period.morning": "días",
|
|
37
|
+
"system.ai.period.noon": "días",
|
|
38
|
+
"system.ai.placeholder.continue": "Continúa tu pregunta",
|
|
39
|
+
"system.ai.placeholder.default": "Pregunta lo que quieras",
|
|
40
|
+
"system.ai.prompt.idea": "Dame algunas ideas",
|
|
41
|
+
"system.ai.prompt.idea_content": "Sugiere ideas nuevas sobre este tema",
|
|
42
|
+
"system.ai.prompt.optimize": "Mejora un texto",
|
|
43
|
+
"system.ai.prompt.optimize_content": "Ayúdame a mejorar el siguiente texto",
|
|
44
|
+
"system.ai.prompt.plan": "Crea un plan",
|
|
45
|
+
"system.ai.prompt.plan_content": "Crea un plan de acción claro para mí",
|
|
46
|
+
"system.ai.prompt.summary": "Resume el contenido",
|
|
47
|
+
"system.ai.prompt.summary_content": "Resume el siguiente contenido",
|
|
48
|
+
"system.ai.quick_actions": "Acciones rápidas",
|
|
49
49
|
"system.ai.recording": "Escuchando...",
|
|
50
|
-
"system.ai.recognizing": "
|
|
51
|
-
"system.ai.refresh": "
|
|
52
|
-
"system.ai.
|
|
53
|
-
"system.ai.
|
|
54
|
-
"system.ai.
|
|
55
|
-
"system.ai.
|
|
56
|
-
"system.ai.
|
|
57
|
-
"system.ai.
|
|
58
|
-
"system.ai.
|
|
59
|
-
"system.ai.
|
|
60
|
-
"system.ai.
|
|
61
|
-
"system.ai.
|
|
62
|
-
"system.ai.
|
|
63
|
-
"system.ai.thinking": "
|
|
64
|
-
"system.ai.
|
|
65
|
-
"system.ai.
|
|
50
|
+
"system.ai.recognizing": "Reconociendo la voz",
|
|
51
|
+
"system.ai.refresh": "Actualizar",
|
|
52
|
+
"system.ai.regenerate_failed": "No se pudo regenerar",
|
|
53
|
+
"system.ai.request_failed": "La solicitud al asistente de IA falló",
|
|
54
|
+
"system.ai.request_failed_with_status": "La solicitud al asistente de IA falló ({status})",
|
|
55
|
+
"system.ai.response_empty": "El asistente de IA devolvió una respuesta vacía",
|
|
56
|
+
"system.ai.response_incomplete": "La respuesta transmitida por la IA quedó incompleta",
|
|
57
|
+
"system.ai.search_session": "Buscar sesiones",
|
|
58
|
+
"system.ai.shortcut_question": "Prueba a preguntar",
|
|
59
|
+
"system.ai.speech_stopped": "Entrada de voz detenida",
|
|
60
|
+
"system.ai.stream_empty": "La respuesta transmitida por la IA estaba vacía",
|
|
61
|
+
"system.ai.stream_unsupported": "Esta plataforma no admite respuestas en streaming",
|
|
62
|
+
"system.ai.text_assistant": "Asistente de escritura",
|
|
63
|
+
"system.ai.thinking": "Respondiendo",
|
|
64
|
+
"system.ai.tool_called": "Herramientas usadas: {tools}",
|
|
65
|
+
"system.ai.upload_failed": "No se pudieron cargar los archivos adjuntos",
|
|
66
66
|
"system.profile.account": "Cuenta",
|
|
67
|
-
"system.profile.
|
|
68
|
-
"system.profile.
|
|
69
|
-
"system.profile.
|
|
67
|
+
"system.profile.avatar_change": "Toca para cambiar el avatar",
|
|
68
|
+
"system.profile.avatar_upload_failed": "No se pudo cargar el avatar",
|
|
69
|
+
"system.profile.avatar_update": "Actualizar avatar y nombre",
|
|
70
70
|
"system.profile.gender": "Género",
|
|
71
|
-
"system.profile.
|
|
72
|
-
"system.profile.mobile": "
|
|
73
|
-
"system.profile.
|
|
74
|
-
"system.profile.
|
|
75
|
-
"system.profile.
|
|
76
|
-
"system.profile.
|
|
77
|
-
"system.profile.
|
|
78
|
-
"system.profile.
|
|
79
|
-
"system.profile.
|
|
80
|
-
"system.profile.title": "
|
|
81
|
-
"system.profile.
|
|
82
|
-
"system.settings.
|
|
83
|
-
"system.settings.
|
|
84
|
-
"system.settings.authorization": "
|
|
85
|
-
"system.settings.contact": "
|
|
86
|
-
"system.settings.feedback": "Comentarios
|
|
87
|
-
"system.settings.
|
|
88
|
-
"system.settings.
|
|
89
|
-
"system.settings.
|
|
71
|
+
"system.profile.login_prompt": "Toca para iniciar sesión",
|
|
72
|
+
"system.profile.mobile": "Móvil",
|
|
73
|
+
"system.profile.nick_name": "Apodo",
|
|
74
|
+
"system.profile.nick_name_placeholder": "Introduce un apodo",
|
|
75
|
+
"system.profile.not_logged_in": "No has iniciado sesión",
|
|
76
|
+
"system.profile.phone_authorization": "Autorizar el móvil con WeChat",
|
|
77
|
+
"system.profile.phone_authorization_success": "Autorizado",
|
|
78
|
+
"system.profile.photo_limit": "Carga una foto de menos de 1 MB",
|
|
79
|
+
"system.profile.save_success": "Guardado",
|
|
80
|
+
"system.profile.title": "Perfil",
|
|
81
|
+
"system.profile.update_success": "Actualizado",
|
|
82
|
+
"system.settings.ai_description": "Organiza información, responde preguntas y gestiona tareas cotidianas",
|
|
83
|
+
"system.settings.ai_title": "Asistente de IA",
|
|
84
|
+
"system.settings.authorization": "Configuración de autorización",
|
|
85
|
+
"system.settings.contact": "Contacta con nosotros",
|
|
86
|
+
"system.settings.feedback": "Comentarios",
|
|
87
|
+
"system.settings.go_ask": "Preguntar ahora",
|
|
88
|
+
"system.settings.logout_confirm": "¿Cerrar sesión ahora?",
|
|
89
|
+
"system.settings.logout_failed": "No se pudo cerrar la sesión",
|
|
90
90
|
"system.settings.title": "Configuración"
|
|
91
91
|
}
|