🚀 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:
Yuichi Oneda 2024-06-15 08:12:03 -07:00 committed by GitHub
parent 04502e9525
commit 8d8b17e7ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 618 additions and 467 deletions

View file

@ -50,17 +50,20 @@ export default {
com_ui_import_conversation_error: '대화를 가져오는 동안 오류가 발생했습니다',
com_ui_confirm_action: '작업 확인',
com_ui_chats: '채팅',
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: '삭제',
com_ui_delete_conversation: '채팅을 삭제하시겠습니까?',
com_ui_delete_conversation_confirm: '이 채팅이 삭제됩니다',
@ -289,9 +292,6 @@ export default {
com_ui_assistant_delete_error: '어시스턴트 삭제 중 오류가 발생했습니다.',
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: '어제',
@ -764,40 +764,50 @@ 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.',
'A shared 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.',
'귀하의 채팅에 대한 공유 링크가 생성되었습니다. 설정을 통해 언제든지 이전에 공유한 채팅을 관리할 수 있습니다.',
},
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: {
english: 'Delete',
@ -1629,18 +1639,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: '소스 채팅 보기',