mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-10 12:38:52 +01:00
🚀 feat: Shared Links (#2772)
* ✨ feat(types): add necessary types for shared link feature * ✨ feat: add shared links functions to data service Added functions for retrieving, creating, updating, and deleting shared links and shared messages. * ✨ feat: Add useGetSharedMessages hook to fetch shared messages by shareId Adds a new hook `useGetSharedMessages` which fetches shared messages based on the provided shareId. * ✨ feat: Add share schema and data access functions to API models * ✨ feat: Add share endpoint to API The GET /api/share/${shareId} is exposed to the public, so authentication is not required. Other paths require authentication. * ♻️ refactor(utils): generalize react-query cache manipulation functions Introduces generic functions for manipulating react-query cache entries, marking a refinement in how query cache data is managed. It aims to enhance the flexibility and reusability of the cache interaction patterns within our application. - Replaced specific index names with more generic terms in queries.ts, enhancing consistency across data handling functions. - Introduced new utility functions in collection.ts for adding, updating, and deleting data entries in an InfiniteData<TCollection>. These utility functions (`addData`, `updateData`, `deleteData`, `findPage`) are designed to be re-usable across different data types and collections. - Adapted existing conversation utility functions in convos.ts to leverage these new generic utilities. * ✨ feat(shared-link): add functions to manipulate shared link cache list implemented new utility functions to handle additions, updates, and deletions in the shared link cache list. * ✨ feat: Add mutations and queries for shared links * ✨ feat(shared-link): add `Share` button to conversation list - Added a share button in each conversation in the conversation list. - Implemented functionality where clicking the share button triggers a POST request to the API. - The API checks if a share link was already created for the conversation today; if so, it returns the existing link. - If no link was created for today, the API will create a new share link and return it. - Each click on the share button results in a new API request, following the specification similar to ChatGPT's share link feature. * ♻️ refactor(hooks): generalize useNavScrolling for broader use - Modified `useNavScrolling` to accept a generic type parameter `TData`, allowing it to be used with different data structures besides `ConversationListResponse`. - Updated instances in `Nav.tsx` and `ArchivedChatsTable.tsx` to explicitly specify `ConversationListResponse` as the type argument when invoking `useNavScrolling`. * ✨ feat(settings): add shared links listing table with delete functionality in settings - Integrated a delete button for each shared link in the table, allowing users to remove links as needed. * ♻️ refactor(components): separate `EndpointIcon` from `Icon` component for standalone use * ♻️ refactor: update useGetSharedMessages to return TSharedLink - Modified the useGetSharedMessages hook to return not only a list of TMessage but also the TSharedLink itself. - This change was necessary to support displaying the title and date in the Shared Message UI, which requires data from TSharedLink. * ✨ feat(shared link): add UI for displaying shared conversations without authentication - Implemented a new UI component to display shared conversations, designed to be accessible without requiring authentication. - Reused components from the authenticated Messages module where possible. Copied and adapted components that could not be directly reused to fit the non-authenticated context. * 🔧 chore: Add translations Translate labels only. Messages remain in English as they are possibly subject to change. * ♻️ refactor: add icon and tooltip props to EditMenuButton component * moved icon and popover to arguments so that EditMenuButton can be reused. * modified so that when a ShareButton is closed, the parent DropdownMenu is also closed. * ♻️irefactor: added DropdownMenu for Export and Share * ♻️ refactor: renamed component names more intuitive * More accurate naming of the dropdown menu. * When the export button is closed, the parent dropdown menu is also closed. * 🌍 chore: updated translations * 🐞 Fix: OpenID Profile Image Download (#2757) * Add fetch requirement Fixes - error: [openidStrategy] downloadImage: Error downloading image at URL "https://graph.microsoft.com/v1.0/me/photo/$value": TypeError: response.buffer is not a function * Update openidStrategy.js --------- Co-authored-by: Danny Avila <danacordially@gmail.com> * 🚑 fix(export): Issue exporting Conversation with Assistants (#2769) * 🚑 fix(export): use content as text if content is present in the message If the endpoint is assistants, the text of the message goes into content, not message.text. * refactor(ExportModel): TypeScript, remove unused code --------- Co-authored-by: Yuichi Ohneda <ohneda@gmail.com> * 📤style: export button icon (#2752) * refactor(ShareDialog): logic and styling * refactor(ExportAndShareMenu): imports order and icon update * chore: imports * chore: imports/render logic * feat: message branching * refactor: add optional config to useGetStartupConfig * refactor: disable endpoints query * chore: fix search view styling gradient in light mode * style: ShareView gradient styling * refactor(Share): use select queries * style: shared link table buttons * localization and dark text styling * style: fix clipboard button layout shift app-wide and add localization for copy code * support assistants message content in shared links, add useCopyToClipboard, add copy buttons to Search Messages and Shared Link Messages * add localizations * comparisons --------- Co-authored-by: Yuichi Ohneda <ohneda@gmail.com> Co-authored-by: bsu3338 <bsu3338@users.noreply.github.com> Co-authored-by: Fuegovic <32828263+fuegovic@users.noreply.github.com>
This commit is contained in:
parent
38ad36c1c5
commit
f0e8cca5df
78 changed files with 4683 additions and 317 deletions
|
|
@ -51,6 +51,17 @@ 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_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_delete: 'حذف',
|
||||
com_ui_delete_conversation: 'حذف الدردشة؟',
|
||||
com_ui_delete_conversation_confirm: 'سيتم حذف هذا',
|
||||
|
|
@ -254,6 +265,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'التراجع أو التسلسل؟',
|
||||
com_nav_export_recursive: 'تكراري',
|
||||
com_nav_export_conversation: 'تصدير المحادثة',
|
||||
com_nav_export: 'تصدير',
|
||||
com_nav_shared_links: 'روابط مشتركة',
|
||||
com_nav_shared_links_manage: 'الإدارة',
|
||||
com_nav_shared_links_empty: 'ليس لديك أي روابط مشتركة.',
|
||||
com_nav_shared_links_name: 'الاسم',
|
||||
com_nav_shared_links_date_shared: 'تاريخ المشترك',
|
||||
com_nav_theme: 'المظهر',
|
||||
com_nav_theme_system: 'النظام',
|
||||
com_nav_theme_dark: 'داكن',
|
||||
|
|
@ -280,6 +297,12 @@ export default {
|
|||
com_nav_setting_general: 'عام',
|
||||
com_nav_setting_data: 'تحكم في البيانات',
|
||||
/* The following are AI translated */
|
||||
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: 'أمس',
|
||||
com_ui_date_previous_7_days: 'الأيام السبعة السابقة',
|
||||
|
|
@ -736,6 +759,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'الدردشات',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'حذف',
|
||||
|
|
@ -1456,6 +1516,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'تصدير المحادثة',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'تصدير',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'روابط مشتركة',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'الإدارة',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'ليس لديك أي روابط مشتركة.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'الاسم',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'تاريخ المشترك',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'المظهر',
|
||||
|
|
@ -1552,6 +1636,30 @@ export const comparisons = {
|
|||
english: 'Data controls',
|
||||
translated: 'تحكم في البيانات',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'تم النسخ',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: 'عرض محادثة المصدر',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'اليوم',
|
||||
|
|
|
|||
|
|
@ -135,6 +135,17 @@ export default {
|
|||
com_ui_assistants_output: 'Saída dos Assistentes',
|
||||
com_ui_delete: 'Excluir',
|
||||
com_ui_create: 'Criar',
|
||||
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_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_delete_conversation: 'Excluir conversa?',
|
||||
com_ui_delete_conversation_confirm: 'Isso excluirá',
|
||||
com_ui_delete_assistant_confirm:
|
||||
|
|
@ -417,6 +428,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Recursivo ou sequencial?',
|
||||
com_nav_export_recursive: 'Recursivo',
|
||||
com_nav_export_conversation: 'Exportar conversa',
|
||||
com_nav_export: 'Exportar',
|
||||
com_nav_shared_links: 'Links Compartilhados',
|
||||
com_nav_shared_links_manage: 'Gerenciar',
|
||||
com_nav_shared_links_empty: 'Você não tem nenhum link compartilhado.',
|
||||
com_nav_shared_links_name: 'Nome',
|
||||
com_nav_shared_links_date_shared: 'Data compartilhada',
|
||||
com_nav_my_files: 'Meus arquivos',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'Sistema',
|
||||
|
|
@ -963,6 +980,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: 'Criar',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'Excluir conversa?',
|
||||
|
|
@ -1951,6 +2005,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Exportar conversa',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exportar',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Links Compartilhados',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Gerenciar',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Você não tem nenhum link compartilhado.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Nome',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Data compartilhada',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'Meus arquivos',
|
||||
|
|
|
|||
|
|
@ -148,6 +148,17 @@ export default {
|
|||
com_ui_assistants_output: 'Assistenten Ausgabe',
|
||||
com_ui_delete: 'Löschen',
|
||||
com_ui_create: 'Erstellen',
|
||||
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_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_delete_conversation: 'Chat löschen?',
|
||||
com_ui_delete_conversation_confirm: 'Damit wird gelöscht',
|
||||
com_ui_delete_assistant_confirm:
|
||||
|
|
@ -431,6 +442,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Rekursiv oder sequentiell?',
|
||||
com_nav_export_recursive: 'Rekursiv',
|
||||
com_nav_export_conversation: 'Konversation exportieren',
|
||||
com_nav_export: 'Exportieren',
|
||||
com_nav_shared_links: 'Gemeinsame Links',
|
||||
com_nav_shared_links_manage: 'Verwalten',
|
||||
com_nav_shared_links_empty: 'Sie haben keine gemeinsam genutzten Links.',
|
||||
com_nav_shared_links_name: 'Name',
|
||||
com_nav_shared_links_date_shared: 'Datum geteilt',
|
||||
com_nav_my_files: 'Meine Dateien',
|
||||
com_nav_theme: 'Farbschema',
|
||||
com_nav_theme_system: 'System',
|
||||
|
|
@ -464,6 +481,12 @@ export default {
|
|||
com_nav_setting_account: 'Konto',
|
||||
com_nav_language: 'Sprache',
|
||||
/* The following are AI Translated */
|
||||
com_ui_copied: 'Kopiert',
|
||||
com_ui_copy_code: 'Code kopieren',
|
||||
com_ui_copy_link: 'Link kopieren',
|
||||
com_ui_update_link: 'Link aktualisieren',
|
||||
com_ui_create_link: 'Link erstellen',
|
||||
com_nav_source_chat: 'Quellchat anzeigen',
|
||||
com_ui_date_today: 'Heute',
|
||||
com_ui_date_yesterday: 'Gestern',
|
||||
com_ui_date_previous_7_days: 'Letzte 7 Tage',
|
||||
|
|
@ -1102,6 +1125,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: 'Erstellen',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'Chat löschen?',
|
||||
|
|
@ -2097,6 +2157,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Konversation exportieren',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exportieren',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Gemeinsame Links',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Verwalten',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Sie haben keine gemeinsam genutzten Links.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Name',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Datum geteilt',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'Meine Dateien',
|
||||
|
|
@ -2221,6 +2305,30 @@ export const comparisons = {
|
|||
english: 'Language',
|
||||
translated: 'Sprache',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'Kopiert',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
english: 'Copy code',
|
||||
translated: 'Code kopieren',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: 'Link kopieren',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: 'Link aktualisieren',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: 'Link erstellen',
|
||||
},
|
||||
com_nav_source_chat: {
|
||||
english: 'View source chat',
|
||||
translated: 'Quellchat anzeigen',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'Heute',
|
||||
|
|
|
|||
|
|
@ -139,6 +139,8 @@ export default {
|
|||
com_ui_save: 'Save',
|
||||
com_ui_save_submit: 'Save & Submit',
|
||||
com_user_message: 'You',
|
||||
com_ui_copied: 'Copied!',
|
||||
com_ui_copy_code: 'Copy code',
|
||||
com_ui_copy_to_clipboard: 'Copy to clipboard',
|
||||
com_ui_copied_to_clipboard: 'Copied to clipboard',
|
||||
com_ui_fork: 'Fork',
|
||||
|
|
@ -199,6 +201,20 @@ export default {
|
|||
com_ui_assistants_output: 'Assistants Output',
|
||||
com_ui_delete: 'Delete',
|
||||
com_ui_create: 'Create',
|
||||
com_ui_share: 'Share',
|
||||
com_ui_copy_link: 'Copy link',
|
||||
com_ui_update_link: 'Update link',
|
||||
com_ui_create_link: 'Create link',
|
||||
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_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_delete_conversation: 'Delete chat?',
|
||||
com_ui_delete_conversation_confirm: 'This will delete',
|
||||
com_ui_delete_assistant_confirm:
|
||||
|
|
@ -480,6 +496,13 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Recursive or sequential?',
|
||||
com_nav_export_recursive: 'Recursive',
|
||||
com_nav_export_conversation: 'Export conversation',
|
||||
com_nav_export: 'Export',
|
||||
com_nav_shared_links: 'Shared links',
|
||||
com_nav_shared_links_manage: 'Manage',
|
||||
com_nav_shared_links_empty: 'You have no shared links.',
|
||||
com_nav_shared_links_name: 'Name',
|
||||
com_nav_shared_links_date_shared: 'Date shared',
|
||||
com_nav_source_chat: 'View source chat',
|
||||
com_nav_my_files: 'My Files',
|
||||
com_nav_theme: 'Theme',
|
||||
com_nav_theme_system: 'System',
|
||||
|
|
|
|||
|
|
@ -137,6 +137,17 @@ export default {
|
|||
com_ui_assistants_output: 'Salida de Asistentes',
|
||||
com_ui_delete: 'Eliminar',
|
||||
com_ui_create: 'Crear',
|
||||
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_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_delete_conversation: '¿Eliminar Chat?',
|
||||
com_ui_delete_conversation_confirm: 'Esto eliminará',
|
||||
com_ui_delete_assistant_confirm:
|
||||
|
|
@ -423,6 +434,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: '¿Recursivo o secuencial?',
|
||||
com_nav_export_recursive: 'Recursivo',
|
||||
com_nav_export_conversation: 'Exportar conversación',
|
||||
com_nav_export: 'Exportar',
|
||||
com_nav_shared_links: 'Links Compartidos',
|
||||
com_nav_shared_links_manage: 'Gerenciar',
|
||||
com_nav_shared_links_empty: 'Você não tem nenhum link compartilhado.',
|
||||
com_nav_shared_links_name: 'Nome',
|
||||
com_nav_shared_links_date_shared: 'Data compartilhada',
|
||||
com_nav_my_files: 'Mis archivos',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'Sistema',
|
||||
|
|
@ -458,6 +475,12 @@ export default {
|
|||
com_nav_lang_auto: 'Detección automática',
|
||||
com_nav_lang_spanish: 'Español',
|
||||
/* The following are AI Translated */
|
||||
com_ui_copied: '¡Copiado!',
|
||||
com_ui_copy_code: 'Copiar código',
|
||||
com_ui_copy_link: 'Copiar enlace',
|
||||
com_ui_update_link: 'Actualizar enlace',
|
||||
com_ui_create_link: 'Crear enlace',
|
||||
com_nav_source_chat: 'Ver chat de origen',
|
||||
com_ui_date_today: 'Hoy',
|
||||
com_ui_date_yesterday: 'Ayer',
|
||||
com_ui_date_previous_7_days: 'Últimos 7 días',
|
||||
|
|
@ -1073,6 +1096,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: 'Crear',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: '¿Eliminar Chat?',
|
||||
|
|
@ -2069,6 +2129,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Exportar conversación',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exportar',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Links Compartidos',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Gerenciar',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Você não tem nenhum link compartilhado.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Nome',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Data compartilhada',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'Mis archivos',
|
||||
|
|
@ -2202,6 +2286,30 @@ export const comparisons = {
|
|||
english: 'Español',
|
||||
translated: 'Español',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: '¡Copiado!',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
english: 'Copy code',
|
||||
translated: 'Copiar código',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: 'Copiar enlace',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: 'Actualizar enlace',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: 'Crear enlace',
|
||||
},
|
||||
com_nav_source_chat: {
|
||||
english: 'View source chat',
|
||||
translated: 'Ver chat de origen',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'Hoy',
|
||||
|
|
|
|||
|
|
@ -65,6 +65,17 @@ export default {
|
|||
'Une erreur s’est produite lors de l’importation de vos conversations',
|
||||
com_ui_confirm_action: 'Confirmer l\'action',
|
||||
com_ui_chats: 'discussions',
|
||||
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_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_delete: 'Supprimer',
|
||||
com_ui_delete_conversation: 'Supprimer la discussions?',
|
||||
com_ui_delete_conversation_confirm: 'Cela supprimera',
|
||||
|
|
@ -318,6 +329,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Récursif ou séquentiel ?',
|
||||
com_nav_export_recursive: 'Récursif',
|
||||
com_nav_export_conversation: 'Exporter la conversation',
|
||||
com_nav_export: 'Exporter',
|
||||
com_nav_shared_links: 'Liens partagés',
|
||||
com_nav_shared_links_manage: 'Gerenciar',
|
||||
com_nav_shared_links_empty: 'Você não tem nenhum link compartilhado.',
|
||||
com_nav_shared_links_name: 'Nome',
|
||||
com_nav_shared_links_date_shared: 'Data compartilhada',
|
||||
com_nav_theme: 'Thème',
|
||||
com_nav_theme_system: 'Système',
|
||||
com_nav_theme_dark: 'Sombre',
|
||||
|
|
@ -347,6 +364,12 @@ export default {
|
|||
com_nav_setting_data: 'Contrôles des données',
|
||||
com_nav_setting_account: 'Compte',
|
||||
/* The following are AI Translated */
|
||||
com_ui_copied: 'Copié !',
|
||||
com_ui_copy_code: 'Copier le code',
|
||||
com_ui_copy_link: 'Copier le lien',
|
||||
com_ui_update_link: 'Mettre à jour le lien',
|
||||
com_ui_create_link: 'Créer un lien',
|
||||
com_nav_source_chat: 'Afficher la conversation source',
|
||||
com_ui_date_today: 'Aujourd\'hui',
|
||||
com_ui_date_yesterday: 'Hier',
|
||||
com_ui_date_previous_7_days: '7 derniers jours',
|
||||
|
|
@ -788,6 +811,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'discussions',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Supprimer',
|
||||
|
|
@ -1670,6 +1730,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Exporter la conversation',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exporter',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Liens partagés',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Gerenciar',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Você não tem nenhum link compartilhado.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Nome',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Data compartilhada',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Thème',
|
||||
|
|
@ -1779,6 +1863,30 @@ export const comparisons = {
|
|||
english: 'Account',
|
||||
translated: 'Compte',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'Copié !',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
english: 'Copy code',
|
||||
translated: 'Copier le code',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: 'Copier le lien',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: 'Mettre à jour le lien',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: 'Créer un lien',
|
||||
},
|
||||
com_nav_source_chat: {
|
||||
english: 'View source chat',
|
||||
translated: 'Afficher la conversation source',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'Aujourd\'hui',
|
||||
|
|
|
|||
|
|
@ -91,6 +91,17 @@ export default {
|
|||
com_ui_assistant: 'סייען',
|
||||
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_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_delete_conversation: 'למחוק את השיחה (צאט)?',
|
||||
com_ui_delete_conversation_confirm: 'זה ימחק',
|
||||
com_ui_delete_assistant_confirm:
|
||||
|
|
@ -345,6 +356,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'רקורסיבי או רציף?',
|
||||
com_nav_export_recursive: 'רקורסיבי',
|
||||
com_nav_export_conversation: 'ייצא שיחה',
|
||||
com_nav_export: 'ייצא',
|
||||
com_nav_shared_links: 'קישורים משותפים',
|
||||
com_nav_shared_links_manage: 'ניהול',
|
||||
com_nav_shared_links_empty: 'אין לך קישורים משותפים.',
|
||||
com_nav_shared_links_name: 'שם',
|
||||
com_nav_shared_links_date_shared: 'תאריך שיתוף',
|
||||
com_nav_theme: 'נושא',
|
||||
com_nav_theme_system: 'מערכת',
|
||||
com_nav_theme_dark: 'כהה',
|
||||
|
|
@ -723,6 +740,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: 'צור',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'למחוק את השיחה (צאט)?',
|
||||
|
|
@ -1659,6 +1713,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'ייצא שיחה',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'ייצא',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'קישורים משותפים',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'ניהול',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'אין לך קישורים משותפים.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'שם',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'תאריך שיתוף',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'נושא',
|
||||
|
|
|
|||
|
|
@ -61,6 +61,17 @@ export default {
|
|||
com_ui_import_conversation_error: 'Terjadi kesalahan saat mengimpor percakapan Anda',
|
||||
com_ui_confirm_action: 'Konfirmasi Aksi',
|
||||
com_ui_chats: 'chat',
|
||||
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_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_delete: 'Hapus',
|
||||
com_ui_delete_conversation: 'Hapus chat?',
|
||||
com_ui_delete_conversation_confirm: 'Ini akan menghapus',
|
||||
|
|
@ -304,6 +315,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Rekursif atau berurutan?',
|
||||
com_nav_export_recursive: 'Rekursif',
|
||||
com_nav_export_conversation: 'Ekspor percakapan',
|
||||
com_nav_export: 'Ekspor',
|
||||
com_nav_shared_links: 'Link berbagi',
|
||||
com_nav_shared_links_manage: 'Pengeluaran',
|
||||
com_nav_shared_links_empty: 'Anda tidak memiliki link berbagi.',
|
||||
com_nav_shared_links_name: 'Nama',
|
||||
com_nav_shared_links_date_shared: 'Tanggal berbagi',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'Sistem',
|
||||
com_nav_theme_dark: 'Gelap',
|
||||
|
|
@ -576,6 +593,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'chat',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Hapus',
|
||||
|
|
@ -1457,6 +1511,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Ekspor percakapan',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Ekspor',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Link berbagi',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Pengeluaran',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Anda tidak memiliki link berbagi.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Nama',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Tanggal berbagi',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Tema',
|
||||
|
|
|
|||
|
|
@ -188,6 +188,17 @@ export default {
|
|||
com_ui_assistants_output: 'Output Assistenti',
|
||||
com_ui_delete: 'Elimina',
|
||||
com_ui_create: 'Crea',
|
||||
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_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_delete_conversation: 'Eliminare la chat?',
|
||||
com_ui_delete_conversation_confirm: 'Questo eliminerà',
|
||||
com_ui_rename: 'Rinominare',
|
||||
|
|
@ -475,6 +486,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Ricorsivo o sequenziale?',
|
||||
com_nav_export_recursive: 'Ricorsivo',
|
||||
com_nav_export_conversation: 'Esporta conversazione',
|
||||
com_nav_export: 'Esporta',
|
||||
com_nav_shared_links: 'Link condivisi',
|
||||
com_nav_shared_links_manage: 'Gestisci',
|
||||
com_nav_shared_links_empty: 'Non hai link condivisi.',
|
||||
com_nav_shared_links_name: 'Nome',
|
||||
com_nav_shared_links_date_shared: 'Data condivisione',
|
||||
com_nav_my_files: 'I miei file',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'Sistema',
|
||||
|
|
@ -508,6 +525,12 @@ export default {
|
|||
com_nav_setting_data: 'Controlli dati',
|
||||
com_nav_setting_account: 'Account',
|
||||
/* The following are AI Translated */
|
||||
com_ui_copied: 'Copiato!',
|
||||
com_ui_copy_code: 'Copia codice',
|
||||
com_ui_copy_link: 'Copia link',
|
||||
com_ui_update_link: 'Aggiorna link',
|
||||
com_ui_create_link: 'Crea link',
|
||||
com_nav_source_chat: 'Visualizza chat sorgente',
|
||||
com_ui_date_today: 'Oggi',
|
||||
com_ui_date_yesterday: 'Ieri',
|
||||
com_ui_date_previous_7_days: 'Ultimi 7 giorni',
|
||||
|
|
@ -1222,6 +1245,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: 'Crea',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'Eliminare la chat?',
|
||||
|
|
@ -2234,6 +2294,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Esporta conversazione',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Esporta',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Link condivisi',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Gestisci',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Non hai link condivisi.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Nome',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Data condivisione',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'I miei file',
|
||||
|
|
@ -2359,6 +2443,30 @@ export const comparisons = {
|
|||
english: 'Account',
|
||||
translated: 'Account',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'Copiato!',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
english: 'Copy code',
|
||||
translated: 'Copia codice',
|
||||
},
|
||||
com_ui_copy_link: {
|
||||
english: 'Copy link',
|
||||
translated: 'Copia link',
|
||||
},
|
||||
com_ui_update_link: {
|
||||
english: 'Update link',
|
||||
translated: 'Aggiorna link',
|
||||
},
|
||||
com_ui_create_link: {
|
||||
english: 'Create link',
|
||||
translated: 'Crea link',
|
||||
},
|
||||
com_nav_source_chat: {
|
||||
english: 'View source chat',
|
||||
translated: 'Visualizza chat sorgente',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'Oggi',
|
||||
|
|
|
|||
|
|
@ -147,6 +147,18 @@ export default {
|
|||
com_ui_assistants_output: 'Assistantsの出力',
|
||||
com_ui_delete: '削除',
|
||||
com_ui_create: '作成',
|
||||
com_ui_share: '共有',
|
||||
com_ui_share_link_to_chat: 'チャットへの共有リンク',
|
||||
com_ui_share_error: 'チャットの共有リンクの共有中にエラーが発生しました',
|
||||
com_ui_share_create_message:
|
||||
'あなたの名前と共有リンクを作成した後のメッセージは、共有されません。',
|
||||
com_ui_share_created_message:
|
||||
'チャットへの公開された共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
||||
com_ui_share_update_message:
|
||||
'あなたの名前、カスタム指示、共有リンクを作成した後のメッセージは、共有されません。',
|
||||
com_ui_share_updated_message:
|
||||
'チャットへの公開された共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
||||
com_ui_shared_link_not_found: '共有リンクが見つかりません',
|
||||
com_ui_delete_conversation: 'チャットを削除しますか?',
|
||||
com_ui_delete_conversation_confirm: 'このチャットは削除されます。',
|
||||
com_ui_delete_assistant_confirm: 'このアシスタントを削除しますか? この操作は元に戻せません。',
|
||||
|
|
@ -422,6 +434,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: '再帰的? or 順次的?',
|
||||
com_nav_export_recursive: '再帰的',
|
||||
com_nav_export_conversation: '会話をエクスポートする',
|
||||
com_nav_export: 'エクスポート',
|
||||
com_nav_shared_links: '共有リンク',
|
||||
com_nav_shared_links_manage: '管理',
|
||||
com_nav_shared_links_empty: '共有リンクはありません。',
|
||||
com_nav_shared_links_name: 'タイトル',
|
||||
com_nav_shared_links_date_shared: '共有日',
|
||||
com_nav_my_files: 'My Files',
|
||||
com_nav_theme: 'テーマ',
|
||||
com_nav_theme_system: 'システム',
|
||||
|
|
@ -455,6 +473,12 @@ export default {
|
|||
com_nav_setting_data: 'データ管理',
|
||||
com_nav_setting_account: 'アカウント',
|
||||
/* The following are AI translated */
|
||||
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: '昨日',
|
||||
com_ui_date_previous_7_days: '過去7日間',
|
||||
|
|
@ -1098,6 +1122,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: '作成',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: '共有',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'チャットへの共有リンク',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: '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: 'あなたの名前と共有リンクを作成した後のメッセージは、共有されません。',
|
||||
},
|
||||
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:
|
||||
'チャットへの公開された共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
||||
},
|
||||
com_ui_share_update_message: {
|
||||
english: '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:
|
||||
'チャットへの公開された共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: '共有リンクが見つかりません',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'チャットを削除しますか?',
|
||||
|
|
@ -2087,6 +2148,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: '会話をエクスポートする',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'エクスポート',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: '共有リンク',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: '管理',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: '共有リンクはありません。',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'タイトル',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: '共有日',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'My Files',
|
||||
|
|
@ -2211,6 +2296,30 @@ export const comparisons = {
|
|||
english: 'Account',
|
||||
translated: 'アカウント',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'コピーしました',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: 'ソースチャットを表示する',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: '今日',
|
||||
|
|
|
|||
|
|
@ -50,6 +50,17 @@ 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_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_delete: '삭제',
|
||||
com_ui_delete_conversation: '채팅을 삭제하시겠습니까?',
|
||||
com_ui_delete_conversation_confirm: '이 채팅이 삭제됩니다',
|
||||
|
|
@ -234,6 +245,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: '재귀적 또는 순차적?',
|
||||
com_nav_export_recursive: '재귀적',
|
||||
com_nav_export_conversation: '대화 내보내기',
|
||||
com_nav_export: '내보내기',
|
||||
com_nav_shared_links: '공유 링크',
|
||||
com_nav_shared_links_manage: '관리',
|
||||
com_nav_shared_links_empty: '공유 링크가 없습니다.',
|
||||
com_nav_shared_links_name: '이름',
|
||||
com_nav_shared_links_date_shared: '공유 날짜',
|
||||
com_nav_theme: '테마',
|
||||
com_nav_theme_system: '시스템',
|
||||
com_nav_theme_dark: '다크',
|
||||
|
|
@ -261,6 +278,12 @@ export default {
|
|||
com_nav_setting_general: '일반',
|
||||
com_nav_setting_data: '데이터 제어',
|
||||
/* The following are AI Translated */
|
||||
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: '어제',
|
||||
com_ui_date_previous_7_days: '지난 7일',
|
||||
|
|
@ -729,6 +752,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: '채팅',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: '삭제',
|
||||
|
|
@ -1397,6 +1457,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: '대화 내보내기',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: '내보내기',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: '공유 링크',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: '관리',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: '공유 링크가 없습니다.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: '이름',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: '공유 날짜',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: '테마',
|
||||
|
|
@ -1497,6 +1581,30 @@ export const comparisons = {
|
|||
english: 'Data controls',
|
||||
translated: '데이터 제어',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: '복사됨',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: '소스 채팅 보기',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: '오늘',
|
||||
|
|
|
|||
|
|
@ -54,6 +54,17 @@ export default {
|
|||
'Er is een fout opgetreden bij het importeren van je gesprekken',
|
||||
com_ui_confirm_action: 'Bevestig actie',
|
||||
com_ui_chats: '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_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_delete: 'Verwijderen',
|
||||
com_ui_delete_conversation: 'Chat verwijderen?',
|
||||
com_ui_delete_conversation_confirm: 'Hiermee wordt',
|
||||
|
|
@ -261,6 +272,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Recursief of sequentieel?',
|
||||
com_nav_export_recursive: 'Recursief',
|
||||
com_nav_export_conversation: 'Conversatie exporteren',
|
||||
com_nav_export: 'Exporteren',
|
||||
com_nav_shared_links: 'Gedeelde links',
|
||||
com_nav_shared_links_manage: 'Beheren',
|
||||
com_nav_shared_links_empty: 'U hebt geen gedeeld links.',
|
||||
com_nav_shared_links_name: 'Naam',
|
||||
com_nav_shared_links_date_shared: 'Datum gedeeld',
|
||||
com_nav_theme: 'Thema',
|
||||
com_nav_theme_system: 'Systeem',
|
||||
com_nav_theme_dark: 'Donker',
|
||||
|
|
@ -494,6 +511,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'chats',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Verwijderen',
|
||||
|
|
@ -1220,6 +1274,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Conversatie exporteren',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exporteren',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Gedeelde links',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Beheren',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'U hebt geen gedeeld links.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Naam',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Datum gedeeld',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Thema',
|
||||
|
|
|
|||
|
|
@ -30,6 +30,17 @@ export default {
|
|||
com_ui_entries: 'wpisów',
|
||||
com_ui_pay_per_call:
|
||||
'Wszystkie rozmowy z AI w jednym miejscu. Płatność za połączenie, a nie za miesiąc',
|
||||
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_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_rename: 'Zmień nazwę',
|
||||
com_ui_archive: 'Archiwum',
|
||||
com_ui_archive_error: 'Nie udało się archiwizować rozmowy',
|
||||
|
|
@ -192,6 +203,11 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Rekurencyjny czy sekwencyjny?',
|
||||
com_nav_export_recursive: 'Rekurencyjny',
|
||||
com_nav_export_conversation: 'Eksportuj konwersację',
|
||||
com_nav_shared_links: 'Linki udostępnione',
|
||||
com_nav_shared_links_manage: 'Beheren',
|
||||
com_nav_shared_links_empty: 'U hebt geen gedeeld links.',
|
||||
com_nav_shared_links_name: 'Naam',
|
||||
com_nav_shared_links_date_shared: 'Datum gedeeld',
|
||||
com_nav_theme: 'Motyw',
|
||||
com_nav_theme_system: 'Domyślny',
|
||||
com_nav_theme_dark: 'Ciemny',
|
||||
|
|
@ -321,6 +337,43 @@ export const comparisons = {
|
|||
english: 'All AI conversations in one place. Pay per call and not per month',
|
||||
translated: 'Wszystkie rozmowy z AI w jednym miejscu. Płatność za połączenie, a nie za miesiąc',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_rename: {
|
||||
english: 'Rename',
|
||||
translated: 'Zmień nazwę',
|
||||
|
|
@ -898,6 +951,26 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Eksportuj konwersację',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Linki udostępnione',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Beheren',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'U hebt geen gedeeld links.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Naam',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Datum gedeeld',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Motyw',
|
||||
|
|
|
|||
|
|
@ -66,6 +66,17 @@ export default {
|
|||
com_ui_preview: 'Предпросмотр',
|
||||
com_ui_upload: 'Загрузить',
|
||||
com_ui_connect: 'Подключить',
|
||||
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_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_delete_conversation: 'Удалить чат?',
|
||||
com_ui_delete_conversation_confirm: 'Будет удален следующий чат: ',
|
||||
com_ui_rename: 'Переименовать',
|
||||
|
|
@ -302,6 +313,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Рекурсивно или последовательно?',
|
||||
com_nav_export_recursive: 'Рекурсивно',
|
||||
com_nav_export_conversation: 'Экспортировать разговор',
|
||||
com_nav_export: 'Экспорт',
|
||||
com_nav_shared_links: 'Связываемые ссылки',
|
||||
com_nav_shared_links_manage: 'Управление',
|
||||
com_nav_shared_links_empty: 'У вас нет связываемых ссылок.',
|
||||
com_nav_shared_links_name: 'Naam',
|
||||
com_nav_shared_links_date_shared: 'Datum gedeeld',
|
||||
com_nav_my_files: 'Мои файлы',
|
||||
com_nav_theme: 'Тема',
|
||||
com_nav_theme_system: 'Системная',
|
||||
|
|
@ -364,6 +381,12 @@ export default {
|
|||
com_ui_upload_error: 'Произошла ошибка при загрузке вашего файла',
|
||||
com_user_message: 'Вы',
|
||||
/* The following are AI Translated */
|
||||
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: 'Вчера',
|
||||
com_ui_date_previous_7_days: 'Предыдущие 7 дней',
|
||||
|
|
@ -800,6 +823,43 @@ export const comparisons = {
|
|||
english: 'Connect',
|
||||
translated: 'Подключить',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: 'Удалить чат?',
|
||||
|
|
@ -1635,6 +1695,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Экспортировать разговор',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Экспорт',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Связываемые ссылки',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Управление',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'У вас нет связываемых ссылок.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Naam',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Datum gedeeld',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: 'Мои файлы',
|
||||
|
|
@ -1864,6 +1948,30 @@ export const comparisons = {
|
|||
english: 'You',
|
||||
translated: 'Вы',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: 'Скопировано',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: 'Просмотреть исходный чат',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: 'Сегодня',
|
||||
|
|
|
|||
|
|
@ -51,6 +51,17 @@ export default {
|
|||
com_ui_import_conversation_error: 'Det uppstod ett fel vid import av dina konversationer',
|
||||
com_ui_confirm_action: 'Bekräfta åtgärd',
|
||||
com_ui_chats: 'chattar',
|
||||
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_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_delete: 'Radera',
|
||||
com_ui_delete_conversation: 'Radera chatt?',
|
||||
com_ui_delete_conversation_confirm: 'Detta kommer att radera',
|
||||
|
|
@ -249,6 +260,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Rekursiv eller sekventiell?',
|
||||
com_nav_export_recursive: 'Rekursiv',
|
||||
com_nav_export_conversation: 'Exportera konversation',
|
||||
com_nav_export: 'Exportera',
|
||||
com_nav_shared_links: 'Delade länkar',
|
||||
com_nav_shared_links_manage: 'Hantera',
|
||||
com_nav_shared_links_empty: 'Du har inga delade länkar.',
|
||||
com_nav_shared_links_name: 'Namn',
|
||||
com_nav_shared_links_date_shared: 'Datum delad',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'System',
|
||||
com_nav_theme_dark: 'Mörkt',
|
||||
|
|
@ -474,6 +491,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'chattar',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Radera',
|
||||
|
|
@ -1185,6 +1239,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Exportera konversation',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Exportera',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Delade länkar',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Hantera',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Du har inga delade länkar.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Namn',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Datum delad',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Tema',
|
||||
|
|
|
|||
|
|
@ -53,6 +53,17 @@ export default {
|
|||
com_ui_import_conversation_error: 'Sohbetlerinizi içe aktarırken bir hata oluştu',
|
||||
com_ui_confirm_action: 'İşlemi Onayla',
|
||||
com_ui_chats: 'sohbetler',
|
||||
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_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_delete: 'Sil',
|
||||
com_ui_delete_conversation: 'Sohbet silinecek?',
|
||||
com_ui_delete_conversation_confirm: 'Bu silinecek',
|
||||
|
|
@ -277,6 +288,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Yinelemeli mi yoksa sıralı mı?',
|
||||
com_nav_export_recursive: 'Yinelemeli',
|
||||
com_nav_export_conversation: 'Konuşmayı dışa aktar',
|
||||
com_nav_export: 'Dışa Aktar',
|
||||
com_nav_shared_links: 'Paylaşılan linkler',
|
||||
com_nav_shared_links_manage: 'Ynetmek',
|
||||
com_nav_shared_links_empty: 'Paylaşılan linkleriniz yok.',
|
||||
com_nav_shared_links_name: 'İsim',
|
||||
com_nav_shared_links_date_shared: 'Paylaşılan tarih',
|
||||
com_nav_theme: 'Tema',
|
||||
com_nav_theme_system: 'Sistem',
|
||||
com_nav_theme_dark: 'Koyu',
|
||||
|
|
@ -510,6 +527,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'sohbetler',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Sil',
|
||||
|
|
@ -1302,6 +1356,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Konuşmayı dışa aktar',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Dışa Aktar',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Paylaşılan linkler',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Ynetmek',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Paylaşılan linkleriniz yok.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'İsim',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Paylaşılan tarih',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Tema',
|
||||
|
|
|
|||
|
|
@ -53,6 +53,17 @@ export default {
|
|||
com_ui_import_conversation_error: 'Đã xảy ra lỗi khi nhập khẩu cuộc trò chuyện của bạn',
|
||||
com_ui_confirm_action: 'Xác nhận hành động',
|
||||
com_ui_chats: 'cuộc trò chuyện',
|
||||
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_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_delete: 'Xóa',
|
||||
com_ui_delete_conversation: 'Xóa cuộc trò chuyện?',
|
||||
com_ui_delete_conversation_confirm: 'Điều này sẽ xóa',
|
||||
|
|
@ -254,6 +265,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: 'Đệ quy hay tuần tự?',
|
||||
com_nav_export_recursive: 'Đệ quy',
|
||||
com_nav_export_conversation: 'Xuất cuộc trò chuyện',
|
||||
com_nav_export: 'Xuất',
|
||||
com_nav_shared_links: 'Liên kết được chia sẻ',
|
||||
com_nav_shared_links_manage: 'Quản l',
|
||||
com_nav_shared_links_empty: 'Bạn không có link được chia sẻ.',
|
||||
com_nav_shared_links_name: 'Tên',
|
||||
com_nav_shared_links_date_shared: 'Ngày chia sẻ',
|
||||
com_nav_theme: 'Chủ đề',
|
||||
com_nav_theme_system: 'Hệ thống',
|
||||
com_nav_theme_dark: 'Tối',
|
||||
|
|
@ -473,6 +490,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: 'cuộc trò chuyện',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: 'Xóa',
|
||||
|
|
@ -1193,6 +1247,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: 'Xuất cuộc trò chuyện',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: 'Xuất',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: 'Liên kết được chia sẻ',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: 'Quản l',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: 'Bạn không có link được chia sẻ.',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: 'Tên',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: 'Ngày chia sẻ',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: 'Chủ đề',
|
||||
|
|
|
|||
|
|
@ -132,6 +132,17 @@ 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_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_delete_conversation: '删除对话?',
|
||||
com_ui_delete_conversation_confirm: '这将删除',
|
||||
com_ui_delete_assistant_confirm: '确定要删除此助手吗?该操作无法撤销。',
|
||||
|
|
@ -386,6 +397,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: '递归或顺序?',
|
||||
com_nav_export_recursive: '递归',
|
||||
com_nav_export_conversation: '导出对话',
|
||||
com_nav_export: '导出',
|
||||
com_nav_shared_links: '共享链接',
|
||||
com_nav_shared_links_manage: '管理',
|
||||
com_nav_shared_links_empty: '您没有共享链接。',
|
||||
com_nav_shared_links_name: '名称',
|
||||
com_nav_shared_links_date_shared: '共享日期',
|
||||
com_nav_my_files: '我的文件',
|
||||
com_nav_theme: '主题',
|
||||
com_nav_theme_system: '跟随系统设置',
|
||||
|
|
@ -417,6 +434,15 @@ export default {
|
|||
com_nav_setting_data: '数据管理',
|
||||
com_nav_setting_account: '账户',
|
||||
/* The following are AI Translated */
|
||||
com_ui_date_october: '十月',
|
||||
com_ui_date_november: '十一月',
|
||||
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: '昨天',
|
||||
com_ui_date_previous_7_days: '过去7天',
|
||||
|
|
@ -1022,6 +1048,43 @@ export const comparisons = {
|
|||
english: 'Create',
|
||||
translated: '创建',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete_conversation: {
|
||||
english: 'Delete chat?',
|
||||
translated: '删除对话?',
|
||||
|
|
@ -1991,6 +2054,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: '导出对话',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: '导出',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: '共享链接',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: '管理',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: '您没有共享链接。',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: '名称',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: '共享日期',
|
||||
},
|
||||
com_nav_my_files: {
|
||||
english: 'My Files',
|
||||
translated: '我的文件',
|
||||
|
|
@ -2111,6 +2198,42 @@ export const comparisons = {
|
|||
english: 'Account',
|
||||
translated: '账户',
|
||||
},
|
||||
com_ui_date_october: {
|
||||
english: 'October',
|
||||
translated: '十月',
|
||||
},
|
||||
com_ui_date_november: {
|
||||
english: 'November',
|
||||
translated: '十一月',
|
||||
},
|
||||
com_ui_date_december: {
|
||||
english: 'December',
|
||||
translated: '十二月',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: '已复制!',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: '查看源代码对话',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: '今天',
|
||||
|
|
|
|||
|
|
@ -50,6 +50,17 @@ 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_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_delete: '刪除',
|
||||
com_ui_delete_conversation: '刪除對話?',
|
||||
com_ui_delete_conversation_confirm: '這將刪除',
|
||||
|
|
@ -240,6 +251,12 @@ export default {
|
|||
com_nav_export_recursive_or_sequential: '遞迴還是序列?',
|
||||
com_nav_export_recursive: '遞迴',
|
||||
com_nav_export_conversation: '匯出對話',
|
||||
com_nav_export: '匯出',
|
||||
com_nav_shared_links: '共享連結',
|
||||
com_nav_shared_links_manage: '管理',
|
||||
com_nav_shared_links_empty: '您沒有任何共享連結。',
|
||||
com_nav_shared_links_name: '名称',
|
||||
com_nav_shared_links_date_shared: '共享日期',
|
||||
com_nav_theme: '主題',
|
||||
com_nav_theme_system: '跟隨系統設定',
|
||||
com_nav_theme_dark: '深色',
|
||||
|
|
@ -266,6 +283,12 @@ export default {
|
|||
com_nav_setting_general: '一般',
|
||||
com_nav_setting_data: '資料控制',
|
||||
/* The following are AI translated */
|
||||
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: '昨天',
|
||||
com_ui_date_previous_7_days: '前 7 天',
|
||||
|
|
@ -711,6 +734,43 @@ export const comparisons = {
|
|||
english: 'chats',
|
||||
translated: '對話',
|
||||
},
|
||||
com_ui_share: {
|
||||
english: 'Share',
|
||||
translated: 'Share',
|
||||
},
|
||||
com_ui_share_link_to_chat: {
|
||||
english: 'Share link to chat',
|
||||
translated: 'Share link to chat',
|
||||
},
|
||||
com_ui_share_error: {
|
||||
english: 'There was an error sharing the chat link',
|
||||
translated: 'There was an error sharing the chat link',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
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.',
|
||||
},
|
||||
com_ui_shared_link_not_found: {
|
||||
english: 'Shared link not found',
|
||||
translated: 'Shared link not found',
|
||||
},
|
||||
com_ui_delete: {
|
||||
english: 'Delete',
|
||||
translated: '刪除',
|
||||
|
|
@ -1427,6 +1487,30 @@ export const comparisons = {
|
|||
english: 'Export conversation',
|
||||
translated: '匯出對話',
|
||||
},
|
||||
com_nav_export: {
|
||||
english: 'Export',
|
||||
translated: '匯出',
|
||||
},
|
||||
com_nav_shared_links: {
|
||||
english: 'Shared links',
|
||||
translated: '共享連結',
|
||||
},
|
||||
com_nav_shared_links_manage: {
|
||||
english: 'Manage',
|
||||
translated: '管理',
|
||||
},
|
||||
com_nav_shared_links_empty: {
|
||||
english: 'You have no shared links.',
|
||||
translated: '您沒有任何共享連結。',
|
||||
},
|
||||
com_nav_shared_links_name: {
|
||||
english: 'Name',
|
||||
translated: '名称',
|
||||
},
|
||||
com_nav_shared_links_date_shared: {
|
||||
english: 'Date shared',
|
||||
translated: '共享日期',
|
||||
},
|
||||
com_nav_theme: {
|
||||
english: 'Theme',
|
||||
translated: '主題',
|
||||
|
|
@ -1527,6 +1611,30 @@ export const comparisons = {
|
|||
english: 'Data controls',
|
||||
translated: '資料控制',
|
||||
},
|
||||
com_ui_copied: {
|
||||
english: 'Copied!',
|
||||
translated: '已複製!',
|
||||
},
|
||||
com_ui_copy_code: {
|
||||
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: '檢視原始對話',
|
||||
},
|
||||
com_ui_date_today: {
|
||||
english: 'Today',
|
||||
translated: '今天',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue