Adds pin/unpin functionality to the chat history sidebar, allowing users to keep important conversations readily accessible. This improves user experience and helps organize past interactions. This feature includes: - Pin/unpin buttons in the chat history sidebar. - Updated database schema to include `is_pinned` field for chat history items. - Localized translations for pin/unpin actions. - Updated UI to display pinned items at the top of the list.
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"addBtn": "Agregar Nuevo Conocimiento",
|
|
"columns": {
|
|
"title": "Título",
|
|
"status": "Estado",
|
|
"embeddings": "Modelo de Embedding",
|
|
"createdAt": "Creado",
|
|
"action": "Acciones"
|
|
},
|
|
"expandedColumns": {
|
|
"name": "Nombre"
|
|
},
|
|
"confirm": {
|
|
"delete": "¿Esta seguro que desea borrar este conocimiento?"
|
|
},
|
|
"deleteSuccess": "Conocimiento borrado",
|
|
"status": {
|
|
"pending": "Pendiente",
|
|
"finished": "Finalizado",
|
|
"processing": "Procesando",
|
|
"failed": "Fallido"
|
|
},
|
|
"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"
|
|
}
|