@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/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.21",
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.21"
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.requestFailedWithStatus', { status: response.status })
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.sessionExpired'))
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.sessionExpired')))
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.streamUnsupported')))
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.requestFailedWithStatus', { status: response.statusCode })
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 语言包随 systemModule 注册,供 uni-app System 页面、个人中心和 AI 功能使用。
5
- import enUS from './locales/en-US.json'
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
@@ -4,7 +4,7 @@
4
4
 
5
5
  | 文件 | 用途 | 使用位置 |
6
6
  | --- | --- | --- |
7
- | `zh-CN.json` | System 模块简体中文固定 UI 默认语言包,也是七语键集合和占位符校验基准。 | uni-app 固定文案默认语言及缺失翻译回退。 |
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)。
@@ -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.attachmentAnswer": "Answer my question using the attached content",
6
- "system.ai.attachmentLimit": "You can upload up to {count} attachments",
7
- "system.ai.attachmentUploading": "Uploading attachments...",
8
- "system.ai.chatTitle": "AI Assistant",
9
- "system.ai.copySuccess": "Message copied",
10
- "system.ai.currentSession": "current session",
11
- "system.ai.createSessionFailed": "Failed to create session",
12
- "system.ai.deleteMessageFailed": "Failed to delete message",
13
- "system.ai.deleteSession": "Delete session",
14
- "system.ai.deleteSessionConfirm": "Delete \"{title}\"?",
15
- "system.ai.deleteSessionFailed": "Failed to delete session",
16
- "system.ai.efficiencyAssistant": "Productivity assistant",
17
- "system.ai.failedResponse": "The response did not complete. You can retry your previous question.",
18
- "system.ai.generalAssistant": "General assistant",
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.greetingHello": "Hello, your AI assistant is ready to help.",
20
+ "system.ai.greeting_hello": "Hello, your AI assistant is ready to help.",
21
21
  "system.ai.history": "Chat history",
22
- "system.ai.imageAttachment": "IMG",
23
- "system.ai.imageName": "Image {index}",
24
- "system.ai.loadMessages": "Loading messages...",
25
- "system.ai.loadMessagesFailed": "Failed to load messages",
26
- "system.ai.loadSessions": "Loading sessions...",
27
- "system.ai.loadSessionsFailed": "Failed to load sessions",
28
- "system.ai.loadShortcutsFailed": "Failed to load shortcuts",
29
- "system.ai.modelReply": "Model response",
30
- "system.ai.newSession": "New session",
31
- "system.ai.noMatchingSessions": "No matching sessions",
32
- "system.ai.noShortcuts": "No shortcuts available",
33
- "system.ai.noSummary": "No summary",
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.ideaContent": "Suggest some fresh ideas about this topic",
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.optimizeContent": "Help me improve the following text",
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.planContent": "Create a clear action plan for me",
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.summaryContent": "Summarize the following content",
48
- "system.ai.quickActions": "Quick actions",
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.regenerateFailed": "Failed to regenerate",
53
- "system.ai.requestFailed": "AI assistant request failed",
54
- "system.ai.requestFailedWithStatus": "AI assistant request failed ({status})",
55
- "system.ai.responseEmpty": "AI assistant returned an empty response",
56
- "system.ai.responseIncomplete": "AI streaming response was incomplete",
57
- "system.ai.searchSession": "Search sessions",
58
- "system.ai.shortcutQuestion": "Try asking",
59
- "system.ai.speechStopped": "Voice input stopped",
60
- "system.ai.streamEmpty": "AI streaming response was empty",
61
- "system.ai.streamUnsupported": "Streaming responses are not supported on this platform",
62
- "system.ai.textAssistant": "Writing assistant",
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.toolCalled": "Tools used: {tools}",
65
- "system.ai.uploadFailed": "Attachment upload failed",
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.avatarChange": "Tap to change avatar",
68
- "system.profile.avatarUploadFailed": "Avatar upload failed",
69
- "system.profile.avatarUpdate": "Update avatar and name",
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.loginPrompt": "Tap to log in",
71
+ "system.profile.login_prompt": "Tap to log in",
72
72
  "system.profile.mobile": "Mobile",
73
- "system.profile.nickName": "Nickname",
74
- "system.profile.nickNamePlaceholder": "Enter nickname",
75
- "system.profile.notLoggedIn": "Not logged in",
76
- "system.profile.phoneAuthorization": "Authorize mobile with WeChat",
77
- "system.profile.phoneAuthorizationSuccess": "Authorized",
78
- "system.profile.photoLimit": "Upload a photo smaller than 1 MB",
79
- "system.profile.saveSuccess": "Saved",
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.updateSuccess": "Updated",
82
- "system.settings.aiDescription": "Organize information, answer questions, and handle everyday tasks",
83
- "system.settings.aiTitle": "AI Assistant",
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.goAsk": "Ask now",
88
- "system.settings.logoutConfirm": "Log out now?",
89
- "system.settings.logoutFailed": "Logout failed",
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
  }
@@ -1,91 +1,91 @@
1
1
  {
2
2
  "system.ai.action.copy": "Copiar",
3
3
  "system.ai.action.regenerate": "Regenerar",
4
- "system.ai.attachment": "Adjunto",
5
- "system.ai.attachmentAnswer": "Responda mi pregunta según el archivo adjunto.",
6
- "system.ai.attachmentLimit": "Cargar hasta {count} archivos adjuntos",
7
- "system.ai.attachmentUploading": "Se está cargando el archivo adjunto...",
8
- "system.ai.chatTitle": "Asistente de IA",
9
- "system.ai.copySuccess": "Mensaje copiado",
10
- "system.ai.currentSession": "Sesión actual",
11
- "system.ai.createSessionFailed": "Error al crear la sesión",
12
- "system.ai.deleteMessageFailed": "No se pudo eliminar el mensaje",
13
- "system.ai.deleteSession": "Eliminar sesión",
14
- "system.ai.deleteSessionConfirm": "¿Eliminar \"{title}\"?",
15
- "system.ai.deleteSessionFailed": "No se pudo eliminar la sesión",
16
- "system.ai.efficiencyAssistant": "Asistente de Eficiencia",
17
- "system.ai.failedResponse": "La respuesta no se devolvió correctamente esta vez. Puedes volver a intentar la pregunta directamente.",
18
- "system.ai.generalAssistant": "Asistente universal",
19
- "system.ai.greeting": "Hola, {period} ¡Hola! ¿Hay algo con lo que necesites mi ayuda hoy?",
20
- "system.ai.greetingHello": "Hola, ¡el asistente de IA está a tu servicio!",
21
- "system.ai.history": "Conversaciones históricas",
22
- "system.ai.imageAttachment": "Figura",
23
- "system.ai.imageName": "Imagen{index}",
24
- "system.ai.loadMessages": "Cargando mensajes...",
25
- "system.ai.loadMessagesFailed": "Error al cargar el mensaje",
26
- "system.ai.loadSessions": "Cargando sesión...",
27
- "system.ai.loadSessionsFailed": "Error al cargar la sesión",
28
- "system.ai.loadShortcutsFailed": "Error al cargar el asistente de acceso directo",
29
- "system.ai.modelReply": "Modelo Respuesta",
30
- "system.ai.newSession": "Nueva sesión",
31
- "system.ai.noMatchingSessions": "No hay sesión coincidente",
32
- "system.ai.noShortcuts": "Aún no hay asistente de acceso directo disponible",
33
- "system.ai.noSummary": "Aún no hay resumen",
34
- "system.ai.period.afternoon": "Tarde",
35
- "system.ai.period.evening": "Tarde",
36
- "system.ai.period.morning": "Mañana",
37
- "system.ai.period.noon": "Mediodía",
38
- "system.ai.placeholder.continue": "Continuar ingresando preguntas",
39
- "system.ai.placeholder.default": "Introduce lo que quieras saber",
40
- "system.ai.prompt.idea": "Dame algo de inspiración",
41
- "system.ai.prompt.ideaContent": "Por favor, dame algunas ideas nuevas sobre este tema.",
42
- "system.ai.prompt.optimize": "Ayúdame a optimizar un fragmento de texto",
43
- "system.ai.prompt.optimizeContent": "Por favor ayúdame a optimizar el siguiente texto",
44
- "system.ai.prompt.plan": "Ayúdame a hacer un plan",
45
- "system.ai.prompt.planContent": "Ayúdenme a desarrollar un plan de ejecución claro",
46
- "system.ai.prompt.summary": "Ayúdame a resumir un contenido",
47
- "system.ai.prompt.summaryContent": "Por favor ayúdenme a resumir lo siguiente",
48
- "system.ai.quickActions": "Operación rápida",
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": "Reconocimiento del habla",
51
- "system.ai.refresh": "Cámbialo",
52
- "system.ai.regenerateFailed": "Falló la regeneración",
53
- "system.ai.requestFailed": "Error en la solicitud del asistente de IA",
54
- "system.ai.requestFailedWithStatus": "Error en la solicitud del asistente de IA ({status})",
55
- "system.ai.responseEmpty": "La respuesta del asistente de IA está vacía",
56
- "system.ai.responseIncomplete": "La respuesta de transmisión del asistente de IA no se devuelve por completo",
57
- "system.ai.searchSession": "Sesión de búsqueda",
58
- "system.ai.shortcutQuestion": "Puedes preguntar así",
59
- "system.ai.speechStopped": "La entrada de voz se ha detenido",
60
- "system.ai.streamEmpty": "La respuesta de transmisión del asistente de IA está vacía",
61
- "system.ai.streamUnsupported": "El final actual no admite respuestas en streaming",
62
- "system.ai.textAssistant": "Asistente de texto",
63
- "system.ai.thinking": "está respondiendo",
64
- "system.ai.toolCalled": "Llamado: {tools}",
65
- "system.ai.uploadFailed": "Falló la carga del archivo adjunto",
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.avatarChange": "Haga clic para modificar avatar",
68
- "system.profile.avatarUploadFailed": "No se pudo cargar el avatar",
69
- "system.profile.avatarUpdate": "Actualizar apodo de avatar",
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.loginPrompt": "Haga clic para iniciar sesión en su cuenta",
72
- "system.profile.mobile": "Número de móvil",
73
- "system.profile.nickName": "Apodo",
74
- "system.profile.nickNamePlaceholder": "Por favor ingresa tu apodo",
75
- "system.profile.notLoggedIn": "No iniciado sesión",
76
- "system.profile.phoneAuthorization": "Número de teléfono móvil autorizado de WeChat",
77
- "system.profile.phoneAuthorizationSuccess": "Autorización exitosa",
78
- "system.profile.photoLimit": "Sube fotos de menos de 1 millón",
79
- "system.profile.saveSuccess": "Guardado exitosamente",
80
- "system.profile.title": "Información personal",
81
- "system.profile.updateSuccess": "Actualización exitosa",
82
- "system.settings.aiDescription": "te ayuda a organizar información, responder preguntas y manejar tareas diarias",
83
- "system.settings.aiTitle": "Asistente Inteligente",
84
- "system.settings.authorization": "Gestión de autorizaciones",
85
- "system.settings.contact": "Contáctenos",
86
- "system.settings.feedback": "Comentarios sobre el problema",
87
- "system.settings.goAsk": "Ir a hacer una pregunta",
88
- "system.settings.logoutConfirm": "¿Cerrar sesión?",
89
- "system.settings.logoutFailed": "No se pudo cerrar sesión",
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
  }