mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-20 17:26:12 +01:00
🔖 feat: Conversation Bookmarks (#3344)
* feat: add tags property in Conversation model * feat: add ConversationTag model * feat: add the tags parameter to getConvosByPage * feat: add API route to ConversationTag * feat: add types of ConversationTag * feat: add data access functions for conversation tags * feat: add Bookmark table component * feat: Add an action to bookmark * feat: add Bookmark nav component * fix: failed test * refactor: made 'Saved' tag a constant * feat: add new bookmark to current conversation * chore: Add comment * fix: delete tag from conversations when it's deleted * fix: Update the query cache when the tag title is changed. * chore: fix typo * refactor: add description of rebuilding bookmarks * chore: remove unused variables * fix: position when adding a new bookmark * refactor: add comment, rename a function * refactor: add a unique constraint in ConversationTag * chore: add localizations
This commit is contained in:
parent
d4d56281e3
commit
e565e0faab
65 changed files with 3751 additions and 36 deletions
|
|
@ -11,6 +11,7 @@ export default {
|
|||
com_sidepanel_hide_panel: 'Ocultar Panel',
|
||||
com_sidepanel_attach_files: 'Adjuntar Archivos',
|
||||
com_sidepanel_manage_files: 'Administrar Archivos',
|
||||
com_sidepanel_conversation_tags: 'Marcadores',
|
||||
com_assistants_capabilities: 'Capacidades',
|
||||
com_assistants_knowledge: 'Conocimiento',
|
||||
com_assistants_knowledge_info:
|
||||
|
|
@ -170,6 +171,20 @@ export default {
|
|||
'La carga de "{0}" está tomando más tiempo del esperado. Espere mientras el archivo termina de indexarse para su recuperación.',
|
||||
com_ui_privacy_policy: 'Política de privacidad',
|
||||
com_ui_terms_of_service: 'Términos de servicio',
|
||||
com_ui_bookmarks: 'Marcadores',
|
||||
com_ui_bookmarks_rebuild: 'Reconstruir',
|
||||
com_ui_bookmarks_new: 'Nuevo marcador',
|
||||
com_ui_bookmark_delete_confirm: '¿Está seguro de que desea eliminar este marcador?',
|
||||
com_ui_bookmarks_title: 'Título',
|
||||
com_ui_bookmarks_count: 'Conteo',
|
||||
com_ui_bookmarks_description: 'Descripción',
|
||||
com_ui_bookmarks_create_success: 'Marcador creado con éxito',
|
||||
com_ui_bookmarks_update_success: 'Marcador actualizado con éxito',
|
||||
com_ui_bookmarks_delete_success: 'Marcador eliminado con éxito',
|
||||
com_ui_bookmarks_create_error: 'Hubo un error al crear el marcador',
|
||||
com_ui_bookmarks_update_error: 'Hubo un error al actualizar el marcador',
|
||||
com_ui_bookmarks_delete_error: 'Hubo un error al eliminar el marcador',
|
||||
com_ui_bookmarks_add_to_conversation: 'Agregar a la conversación actual',
|
||||
com_auth_error_login:
|
||||
'No se puede iniciar sesión con la información proporcionada. Verifique sus credenciales y vuelva a intentarlo.',
|
||||
com_auth_error_login_rl:
|
||||
|
|
@ -473,6 +488,8 @@ export default {
|
|||
com_nav_help_faq: 'Ayuda y preguntas frecuentes',
|
||||
com_nav_settings: 'Configuración',
|
||||
com_nav_search_placeholder: 'Buscar mensajes',
|
||||
com_nav_info_bookmarks_rebuild:
|
||||
'Si el conteo de marcadores es incorrecto, por favor reconstruya la información de los marcadores. El conteo de los marcadores se recalculará y los datos se restaurarán a su estado correcto.',
|
||||
com_nav_setting_general: 'General',
|
||||
com_nav_setting_beta: 'Funciones beta',
|
||||
com_nav_setting_data: 'Controles de datos',
|
||||
|
|
@ -631,6 +648,10 @@ export const comparisons = {
|
|||
english: 'Manage Files',
|
||||
translated: 'Administrar Archivos',
|
||||
},
|
||||
com_sidepanel_conversation_tags: {
|
||||
english: 'Bookmarks',
|
||||
translated: 'Marcadores',
|
||||
},
|
||||
com_assistants_capabilities: {
|
||||
english: 'Capabilities',
|
||||
translated: 'Capacidades',
|
||||
|
|
@ -1226,6 +1247,62 @@ export const comparisons = {
|
|||
english: 'Terms of service',
|
||||
translated: 'Términos de servicio',
|
||||
},
|
||||
com_ui_bookmarks: {
|
||||
english: 'Bookmarks',
|
||||
translated: 'Marcadores',
|
||||
},
|
||||
com_ui_bookmarks_rebuild: {
|
||||
english: 'Rebuild',
|
||||
translated: 'Reconstruir',
|
||||
},
|
||||
com_ui_bookmarks_new: {
|
||||
english: 'New Bookmark',
|
||||
translated: 'Nuevo marcador',
|
||||
},
|
||||
com_ui_bookmark_delete_confirm: {
|
||||
english: 'Are you sure you want to delete this bookmark?',
|
||||
translated: '¿Está seguro de que desea eliminar este marcador?',
|
||||
},
|
||||
com_ui_bookmarks_title: {
|
||||
english: 'Title',
|
||||
translated: 'Título',
|
||||
},
|
||||
com_ui_bookmarks_count: {
|
||||
english: 'Count',
|
||||
translated: 'Conteo',
|
||||
},
|
||||
com_ui_bookmarks_description: {
|
||||
english: 'Description',
|
||||
translated: 'Descripción',
|
||||
},
|
||||
com_ui_bookmarks_create_success: {
|
||||
english: 'Bookmark created successfully',
|
||||
translated: 'Marcador creado con éxito',
|
||||
},
|
||||
com_ui_bookmarks_update_success: {
|
||||
english: 'Bookmark updated successfully',
|
||||
translated: 'Marcador actualizado con éxito',
|
||||
},
|
||||
com_ui_bookmarks_delete_success: {
|
||||
english: 'Bookmark deleted successfully',
|
||||
translated: 'Marcador eliminado con éxito',
|
||||
},
|
||||
com_ui_bookmarks_create_error: {
|
||||
english: 'There was an error creating the bookmark',
|
||||
translated: 'Hubo un error al crear el marcador',
|
||||
},
|
||||
com_ui_bookmarks_update_error: {
|
||||
english: 'There was an error updating the bookmark',
|
||||
translated: 'Hubo un error al actualizar el marcador',
|
||||
},
|
||||
com_ui_bookmarks_delete_error: {
|
||||
english: 'There was an error deleting the bookmark',
|
||||
translated: 'Hubo un error al eliminar el marcador',
|
||||
},
|
||||
com_ui_bookmarks_add_to_conversation: {
|
||||
english: 'Add to current conversation',
|
||||
translated: 'Agregar a la conversación actual',
|
||||
},
|
||||
com_auth_error_login: {
|
||||
english:
|
||||
'Unable to login with the information provided. Please check your credentials and try again.',
|
||||
|
|
@ -2292,6 +2369,12 @@ export const comparisons = {
|
|||
english: 'Search messages',
|
||||
translated: 'Buscar mensajes',
|
||||
},
|
||||
com_nav_info_bookmarks_rebuild: {
|
||||
english:
|
||||
'If the bookmark count is incorrect, please rebuild the bookmark information. The bookmark count will be recalculated and the data will be restored to its correct state.',
|
||||
translated:
|
||||
'Si el conteo de marcadores es incorrecto, por favor reconstruya la información de los marcadores. El conteo de los marcadores se recalculará y los datos se restaurarán a su estado correcto.',
|
||||
},
|
||||
com_nav_setting_general: {
|
||||
english: 'General',
|
||||
translated: 'General',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue