mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-23 11:50:14 +01:00
🚀 feat: Add Option to Disable Shared Links (#2986)
* feat: add option to disable shared links * chore: update languages --------- Co-authored-by: Danny Avila <danny@librechat.ai>
This commit is contained in:
parent
04502e9525
commit
8d8b17e7ed
26 changed files with 618 additions and 467 deletions
|
|
@ -132,17 +132,20 @@ export default {
|
|||
com_ui_assistants_output: '助手输出',
|
||||
com_ui_delete: '删除',
|
||||
com_ui_create: '创建',
|
||||
com_ui_share: 'Share',
|
||||
com_ui_share_link_to_chat: 'Share link to chat',
|
||||
com_ui_share_error: 'There was an error sharing the chat link',
|
||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
||||
com_ui_share: '分享',
|
||||
com_ui_copy_link: '复制链接',
|
||||
com_ui_update_link: '更新链接',
|
||||
com_ui_create_link: '创建链接',
|
||||
com_ui_share_link_to_chat: '分享链接到聊天',
|
||||
com_ui_share_error: '分享聊天链接时发生错误',
|
||||
com_ui_share_create_message: '您的名字及您在分享后添加的任何消息将保持私密。',
|
||||
com_ui_share_created_message:
|
||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||
'已创建到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||
com_ui_share_update_message:
|
||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||
'您的名字、定制指令及您在分享后添加的任何消息将保持私密。',
|
||||
com_ui_share_updated_message:
|
||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||
com_ui_shared_link_not_found: 'Shared link not found',
|
||||
'已更新到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||
com_ui_shared_link_not_found: '未找到共享链接',
|
||||
com_ui_delete_conversation: '删除对话?',
|
||||
com_ui_delete_conversation_confirm: '这将删除',
|
||||
com_ui_delete_assistant_confirm: '确定要删除此助手吗?该操作无法撤销。',
|
||||
|
|
@ -448,9 +451,6 @@ export default {
|
|||
com_ui_date_december: '十二月',
|
||||
com_ui_copied: '已复制!',
|
||||
com_ui_copy_code: '复制代码',
|
||||
com_ui_copy_link: '复制链接',
|
||||
com_ui_update_link: '更新链接',
|
||||
com_ui_create_link: '创建链接',
|
||||
com_nav_source_chat: '查看源代码对话',
|
||||
com_ui_date_today: '今天',
|
||||
com_ui_date_yesterday: '昨天',
|
||||
|
|
@ -1059,40 +1059,49 @@ export const comparisons = {
|
|||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
translated: '分享',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: '复制链接',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: '更新链接',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: '创建链接',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
translated: '分享链接到聊天',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
translated: '分享聊天链接时发生错误',
|
||||
},
|
||||
com_ui_share_create_message: {
|
||||
english: 'Your name and any messages you add after sharing stay private.',
|
||||
translated: 'Your name and any messages you add after sharing stay private.',
|
||||
translated: '您的名字及您在分享后添加的任何消息将保持私密。',
|
||||
},
|
||||
com_ui_share_created_message: {
|
||||
english:
|
||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||
translated:
|
||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||
translated: '已创建到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||
},
|
||||
com_ui_share_update_message: {
|
||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||
translated:
|
||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||
translated: '您的名字、定制指令及您在分享后添加的任何消息将保持私密。',
|
||||
},
|
||||
com_ui_share_updated_message: {
|
||||
english:
|
||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||
translated:
|
||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||
translated: '已更新到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
translated: '未找到共享链接',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
|
|
@ -2261,18 +2270,6 @@ export const comparisons = {
|
|||
english: 'Copy code',
|
||||
translated: '复制代码',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: '复制链接',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: '更新链接',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: '创建链接',
|
||||
},
|
||||
com_nav_source_chat: {
|
||||
english: 'View source chat',
|
||||
translated: '查看源代码对话',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue