page-assist/src/assets/locale/en/knowledge.json
n4ze3m d5df8b5c5f feat: add pin/unpin functionality to chat history
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.
2024-10-26 21:10:28 +05:30

40 lines
1.2 KiB
JSON

{
"addBtn": "Add New Knowledge",
"columns": {
"title": "Title",
"status": "Status",
"embeddings": "Embedding Model",
"createdAt": "Created At",
"action": "Actions"
},
"expandedColumns": {
"name": "Name"
},
"confirm": {
"delete": "Are you sure you want to delete this knowledge?"
},
"deleteSuccess": "Knowledge deleted successfully",
"status": {
"pending": "Pending",
"finished": "Finished",
"processing": "Processing",
"failed": "Failed"
},
"addKnowledge": "Add Knowledge",
"form": {
"title": {
"label": "Knowledge Title",
"placeholder": "Enter knowledge title",
"required": "Knowledge title is required"
},
"uploadFile": {
"label": "Upload File",
"uploadText": "Drag and drop a file here or click to upload",
"uploadHint": "Supported file types: .pdf, .csv, .txt, .md, .docx",
"required": "File is required"
},
"submit": "Submit",
"success": "Knowledge added successfully"
},
"noEmbeddingModel": "Please add an embedding model from the RAG settings page first"
}