-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from josx/spanish_translation
i18n: initial spanish translation
- Loading branch information
Showing
9 changed files
with
491 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"pageAssist": "Page Assist", | ||
"selectAModel": "Selecione un Modelo", | ||
"save": "Guardar", | ||
"saved": "Guardado", | ||
"cancel": "Cancelar", | ||
"retry": "Reintentar", | ||
"share": { | ||
"tooltip": { | ||
"share": "Compartir" | ||
}, | ||
"modal": { | ||
"title": "Compartir enlace para chat" | ||
}, | ||
"form": { | ||
"defaultValue": { | ||
"name": "Anónimo", | ||
"title": "Chat sin título" | ||
}, | ||
"title": { | ||
"label": "Título del Chat", | ||
"placeholder": "Ingresar el título del Chat", | ||
"required": "El título del Chat es obligatorio" | ||
}, | ||
"name": { | ||
"label": "Tu nombre", | ||
"placeholder": "Ingresar tu nombre", | ||
"required": "Tu nombre es obligatorio" | ||
}, | ||
"btn": { | ||
"save": "Generar enlace", | ||
"saving": "Generando enlace..." | ||
} | ||
}, | ||
"notification": { | ||
"successGenerate": "Enlace copiado al Clipboard", | ||
"failGenerate": "Fallo al generar el enlace" | ||
} | ||
}, | ||
"copyToClipboard": "Copiar al clipboard", | ||
"webSearch": "Buscando en la web", | ||
"regenerate": "Regenerar", | ||
"edit": "Editar", | ||
"saveAndSubmit": "Guardar y Enviar", | ||
"editMessage": { | ||
"placeholder": "Ingresar un mensaje..." | ||
}, | ||
"submit": "Enviar", | ||
"noData": "Sin datos", | ||
"noHistory": "Chat sin histórico", | ||
"chatWithCurrentPage": "Conversar con la página actual", | ||
"beta": "Beta", | ||
"tts": "Leer en voz alta", | ||
"currentChatModelSettings": "Configuraciones del Modelo de Chat Actual", | ||
"modelSettings": { | ||
"label": "Configuraciones del Modelo", | ||
"description": "Definir las opciones del modelo globalmente para todos los chats", | ||
"form": { | ||
"keepAlive": { | ||
"label": "Mantener vivo", | ||
"help": "controlar cuanto tiempo el modelo permanecera cargado en la memoria luego de su utilización (por defecto: 5m)", | ||
"placeholder": "Ingresar duración para mantenerlo vivo (ej: 5m, 10m, 1h)" | ||
}, | ||
"temperature": { | ||
"label": "Temperatura", | ||
"placeholder": "Ingresar valor de la Temperatura (ej: 0.7, 1.0)" | ||
}, | ||
"numCtx": { | ||
"label": "Cantidad de contextos", | ||
"placeholder": "Ingresar el valor de tamaño de la ventana de contexto (por defecto: 2048)" | ||
}, | ||
"seed": { | ||
"label": "Semilla", | ||
"placeholder": "Ingresar el valor de la semilla (ej: 1234)", | ||
"help": "Reproductibilidad de la salida del modelo" | ||
}, | ||
"topK": { | ||
"label": "Top K", | ||
"placeholder": "Ingresar el valor de Top K (ej: 40, 100)" | ||
}, | ||
"topP": { | ||
"label": "Top P", | ||
"placeholder": "Ingresar el valor de Top P (ej: 0.9, 0.95)" | ||
} | ||
}, | ||
"advanced": "Más Configuraciones del Modelo" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"addBtn": "Agregar Nuevo Conocimiento", | ||
"columns": { | ||
"title": "Título", | ||
"status": "Estado", | ||
"embeddings": "Modelo de Embedding", | ||
"createdAt": "Creado", | ||
"action": "Acciones" | ||
}, | ||
"expandedColumns": { | ||
"name": "Nombre" | ||
}, | ||
"tooltip": { | ||
"delete": "Borrar" | ||
}, | ||
"confirm": { | ||
"delete": "¿Esta seguro que desea borrar este conocimiento?" | ||
}, | ||
"deleteSuccess": "Conocimiento borrado", | ||
"status": { | ||
"pending": "Pendiente", | ||
"finished": "Finalizado", | ||
"processing": "Procesando" | ||
}, | ||
"addKnowledge": "Agregar Conocimiento", | ||
"form": { | ||
"title": { | ||
"label": "Título del Conocimiento", | ||
"placeholder": "Ingresar un título de conocimiento", | ||
"required": "El Título de conocimiento es obligatorio" | ||
}, | ||
"uploadFile": { | ||
"label": "Subir un Archivo", | ||
"uploadText": "Arraste y suelte un archivo aquí o haga click para subirlo", | ||
"uploadHint": "Tipos de archivo soportados: .pdf, .csv, .txt, .md, .docx", | ||
"required": "El archivo es obligatorio" | ||
}, | ||
"submit": "Enviar", | ||
"success": "Conocimiento agregado exitosamente" | ||
}, | ||
"noEmbeddingModel": "Por favor, agregue un modelo de embedding de la página de configuraciones de RAG primero" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"newChat": "Nuevo Chat", | ||
"selectAPrompt": "Selecione un Prompt", | ||
"githubRepository": "Repositorio de GitHub", | ||
"settings": "Configuraciones", | ||
"sidebarTitle": "Histórico del Chat", | ||
"error": "Error", | ||
"somethingWentWrong": "Hubo un error", | ||
"validationSelectModel": "Selecione un modelo para continuar", | ||
"deleteHistoryConfirmation": "¿Esta seguro que quiere borrar éste histórico?", | ||
"editHistoryTitle": "Ingrese un nuevo título" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"ollamaState": { | ||
"searching": "Buscando tu Ollama 🦙", | ||
"running": "Ollama está funcionando 🦙", | ||
"notRunning": "No fue posible conectar con Ollama 🦙", | ||
"connectionError": "Hubo un error de conexión. Por favor, consulte la <anchor>documentación</anchor> para solucionar el problema." | ||
}, | ||
"formError": { | ||
"noModel": "Por favor, selecione un modelo", | ||
"noEmbeddingModel": "Por favor, defina un modelo de embedding para la página de configuraciones > RAG" | ||
}, | ||
"form": { | ||
"textarea": { | ||
"placeholder": "Ingrese un mensaje..." | ||
}, | ||
"webSearch": { | ||
"on": "On", | ||
"off": "Off" | ||
} | ||
}, | ||
"tooltip": { | ||
"searchInternet": "Buscar en Internet", | ||
"speechToText": "Voz a Texto", | ||
"uploadImage": "Subir Imagén", | ||
"stopStreaming": "Parar Transmisión", | ||
"knowledge": "Conocimiento" | ||
}, | ||
"sendWhenEnter": "Enviar cuando presione Enter" | ||
} |
Oops, something went wrong.