mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
🚀 feat: Add Option to Disable Shared Links (#2986)
* feat: add option to disable shared links * chore: update languages --------- Co-authored-by: Danny Avila <danny@librechat.ai>
This commit is contained in:
parent
04502e9525
commit
8d8b17e7ed
26 changed files with 618 additions and 467 deletions
|
|
@ -399,6 +399,13 @@ FIREBASE_STORAGE_BUCKET=
|
||||||
FIREBASE_MESSAGING_SENDER_ID=
|
FIREBASE_MESSAGING_SENDER_ID=
|
||||||
FIREBASE_APP_ID=
|
FIREBASE_APP_ID=
|
||||||
|
|
||||||
|
#========================#
|
||||||
|
# Shared Links #
|
||||||
|
#========================#
|
||||||
|
|
||||||
|
ALLOW_SHARED_LINKS=true
|
||||||
|
ALLOW_SHARED_LINKS_PUBLIC=true
|
||||||
|
|
||||||
#===================================================#
|
#===================================================#
|
||||||
# UI #
|
# UI #
|
||||||
#===================================================#
|
#===================================================#
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,14 @@ const emailLoginEnabled =
|
||||||
process.env.ALLOW_EMAIL_LOGIN === undefined || isEnabled(process.env.ALLOW_EMAIL_LOGIN);
|
process.env.ALLOW_EMAIL_LOGIN === undefined || isEnabled(process.env.ALLOW_EMAIL_LOGIN);
|
||||||
const passwordResetEnabled = isEnabled(process.env.ALLOW_PASSWORD_RESET);
|
const passwordResetEnabled = isEnabled(process.env.ALLOW_PASSWORD_RESET);
|
||||||
|
|
||||||
|
const sharedLinksEnabled =
|
||||||
|
process.env.ALLOW_SHARED_LINKS === undefined || isEnabled(process.env.ALLOW_SHARED_LINKS);
|
||||||
|
|
||||||
|
const publicSharedLinksEnabled =
|
||||||
|
sharedLinksEnabled &&
|
||||||
|
(process.env.ALLOW_SHARED_LINKS_PUBLIC === undefined ||
|
||||||
|
isEnabled(process.env.ALLOW_SHARED_LINKS_PUBLIC));
|
||||||
|
|
||||||
router.get('/', async function (req, res) {
|
router.get('/', async function (req, res) {
|
||||||
const isBirthday = () => {
|
const isBirthday = () => {
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
|
|
@ -52,6 +60,8 @@ router.get('/', async function (req, res) {
|
||||||
helpAndFaqURL: process.env.HELP_AND_FAQ_URL || 'https://librechat.ai',
|
helpAndFaqURL: process.env.HELP_AND_FAQ_URL || 'https://librechat.ai',
|
||||||
interface: req.app.locals.interfaceConfig,
|
interface: req.app.locals.interfaceConfig,
|
||||||
modelSpecs: req.app.locals.modelSpecs,
|
modelSpecs: req.app.locals.modelSpecs,
|
||||||
|
sharedLinksEnabled,
|
||||||
|
publicSharedLinksEnabled,
|
||||||
analyticsGtmId: process.env.ANALYTICS_GTM_ID,
|
analyticsGtmId: process.env.ANALYTICS_GTM_ID,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,21 +8,33 @@ const {
|
||||||
deleteSharedLink,
|
deleteSharedLink,
|
||||||
} = require('~/models/Share');
|
} = require('~/models/Share');
|
||||||
const requireJwtAuth = require('~/server/middleware/requireJwtAuth');
|
const requireJwtAuth = require('~/server/middleware/requireJwtAuth');
|
||||||
|
const { isEnabled } = require('~/server/utils');
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shared messages
|
* Shared messages
|
||||||
* this route does not require authentication
|
|
||||||
*/
|
*/
|
||||||
router.get('/:shareId', async (req, res) => {
|
const allowSharedLinks =
|
||||||
const share = await getSharedMessages(req.params.shareId);
|
process.env.ALLOW_SHARED_LINKS === undefined || isEnabled(process.env.ALLOW_SHARED_LINKS);
|
||||||
|
|
||||||
if (share) {
|
if (allowSharedLinks) {
|
||||||
res.status(200).json(share);
|
const allowSharedLinksPublic =
|
||||||
} else {
|
process.env.ALLOW_SHARED_LINKS_PUBLIC === undefined ||
|
||||||
res.status(404).end();
|
isEnabled(process.env.ALLOW_SHARED_LINKS_PUBLIC);
|
||||||
}
|
router.get(
|
||||||
});
|
'/:shareId',
|
||||||
|
allowSharedLinksPublic ? (req, res, next) => next() : requireJwtAuth,
|
||||||
|
async (req, res) => {
|
||||||
|
const share = await getSharedMessages(req.params.shareId);
|
||||||
|
|
||||||
|
if (share) {
|
||||||
|
res.status(200).json(share);
|
||||||
|
} else {
|
||||||
|
res.status(404).end();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shared links
|
* Shared links
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,13 @@ import useLocalize from '~/hooks/useLocalize';
|
||||||
import ExportButton from './ExportButton';
|
import ExportButton from './ExportButton';
|
||||||
import store from '~/store';
|
import store from '~/store';
|
||||||
|
|
||||||
export default function ExportAndShareMenu({ className = '' }: { className?: string }) {
|
export default function ExportAndShareMenu({
|
||||||
|
isSharedButtonEnabled,
|
||||||
|
className = '',
|
||||||
|
}: {
|
||||||
|
isSharedButtonEnabled: boolean;
|
||||||
|
className?: string;
|
||||||
|
}) {
|
||||||
const localize = useLocalize();
|
const localize = useLocalize();
|
||||||
|
|
||||||
const conversation = useRecoilValue(store.conversationByIndex(0));
|
const conversation = useRecoilValue(store.conversationByIndex(0));
|
||||||
|
|
@ -41,13 +47,15 @@ export default function ExportAndShareMenu({ className = '' }: { className?: str
|
||||||
{conversation && conversation.conversationId && (
|
{conversation && conversation.conversationId && (
|
||||||
<>
|
<>
|
||||||
<ExportButton conversation={conversation} setPopoverActive={setIsPopoverActive} />
|
<ExportButton conversation={conversation} setPopoverActive={setIsPopoverActive} />
|
||||||
<ShareButton
|
{isSharedButtonEnabled && (
|
||||||
conversationId={conversation.conversationId}
|
<ShareButton
|
||||||
title={conversation.title ?? ''}
|
conversationId={conversation.conversationId}
|
||||||
appendLabel={true}
|
title={conversation.title ?? ''}
|
||||||
className="mb-[3.5px]"
|
appendLabel={true}
|
||||||
setPopoverActive={setIsPopoverActive}
|
className="mb-[3.5px]"
|
||||||
/>
|
setPopoverActive={setIsPopoverActive}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</DropDownMenu>
|
</DropDownMenu>
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,16 @@ export default function Header() {
|
||||||
{modelSpecs?.length > 0 && <ModelSpecsMenu modelSpecs={modelSpecs} />}
|
{modelSpecs?.length > 0 && <ModelSpecsMenu modelSpecs={modelSpecs} />}
|
||||||
{<HeaderOptions interfaceConfig={interfaceConfig} />}
|
{<HeaderOptions interfaceConfig={interfaceConfig} />}
|
||||||
{interfaceConfig.presets && <PresetsMenu />}
|
{interfaceConfig.presets && <PresetsMenu />}
|
||||||
{isSmallScreen && <ExportAndShareMenu className="pl-0" />}
|
{isSmallScreen && (
|
||||||
|
<ExportAndShareMenu
|
||||||
|
isSharedButtonEnabled={startupConfig?.sharedLinksEnabled ?? false}
|
||||||
|
className="pl-0"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
{!isSmallScreen && <ExportAndShareMenu />}
|
{!isSmallScreen && (
|
||||||
|
<ExportAndShareMenu isSharedButtonEnabled={startupConfig?.sharedLinksEnabled ?? false} />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
{/* Empty div for spacing */}
|
{/* Empty div for spacing */}
|
||||||
<div />
|
<div />
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import { useRecoilValue } from 'recoil';
|
import { useRecoilValue } from 'recoil';
|
||||||
import { useParams } from 'react-router-dom';
|
import { useParams } from 'react-router-dom';
|
||||||
import { useState, useRef, useMemo } from 'react';
|
import { useState, useRef, useMemo } from 'react';
|
||||||
import { useGetEndpointsQuery } from 'librechat-data-provider/react-query';
|
import { useGetEndpointsQuery, useGetStartupConfig } from 'librechat-data-provider/react-query';
|
||||||
import type { MouseEvent, FocusEvent, KeyboardEvent } from 'react';
|
import type { MouseEvent, FocusEvent, KeyboardEvent } from 'react';
|
||||||
import { useUpdateConversationMutation } from '~/data-provider';
|
import { useUpdateConversationMutation } from '~/data-provider';
|
||||||
import EndpointIcon from '~/components/Endpoints/EndpointIcon';
|
import EndpointIcon from '~/components/Endpoints/EndpointIcon';
|
||||||
|
|
@ -27,9 +27,9 @@ export default function Conversation({ conversation, retainView, toggleNav, isLa
|
||||||
const activeConvos = useRecoilValue(store.allConversationsSelector);
|
const activeConvos = useRecoilValue(store.allConversationsSelector);
|
||||||
const { data: endpointsConfig } = useGetEndpointsQuery();
|
const { data: endpointsConfig } = useGetEndpointsQuery();
|
||||||
const { navigateWithLastTools } = useNavigateToConvo();
|
const { navigateWithLastTools } = useNavigateToConvo();
|
||||||
|
const { data: startupConfig } = useGetStartupConfig();
|
||||||
const { refreshConversations } = useConversations();
|
const { refreshConversations } = useConversations();
|
||||||
const { showToast } = useToastContext();
|
const { showToast } = useToastContext();
|
||||||
|
|
||||||
const { conversationId, title } = conversation;
|
const { conversationId, title } = conversation;
|
||||||
const inputRef = useRef<HTMLInputElement | null>(null);
|
const inputRef = useRef<HTMLInputElement | null>(null);
|
||||||
const [titleInput, setTitleInput] = useState(title);
|
const [titleInput, setTitleInput] = useState(title);
|
||||||
|
|
@ -126,13 +126,15 @@ export default function Conversation({ conversation, retainView, toggleNav, isLa
|
||||||
setIsPopoverActive={setIsPopoverActive}
|
setIsPopoverActive={setIsPopoverActive}
|
||||||
>
|
>
|
||||||
<DropDownMenu>
|
<DropDownMenu>
|
||||||
<ShareButton
|
{startupConfig && startupConfig.sharedLinksEnabled && (
|
||||||
conversationId={conversationId}
|
<ShareButton
|
||||||
title={title}
|
conversationId={conversationId}
|
||||||
appendLabel={true}
|
title={title}
|
||||||
className="mb-[3.5px]"
|
appendLabel={true}
|
||||||
setPopoverActive={setIsPopoverActive}
|
className="mb-[3.5px]"
|
||||||
/>
|
setPopoverActive={setIsPopoverActive}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
<RenameButton
|
<RenameButton
|
||||||
renaming={renaming}
|
renaming={renaming}
|
||||||
|
|
|
||||||
|
|
@ -51,17 +51,20 @@ export default {
|
||||||
com_ui_import_conversation_error: 'حدث خطأ أثناء استيراد محادثاتك',
|
com_ui_import_conversation_error: 'حدث خطأ أثناء استيراد محادثاتك',
|
||||||
com_ui_confirm_action: 'تأكيد الإجراء',
|
com_ui_confirm_action: 'تأكيد الإجراء',
|
||||||
com_ui_chats: 'الدردشات',
|
com_ui_chats: 'الدردشات',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'مشاركة',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'نسخ الرابط',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'رابط التحديث',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'إنشاء رابط',
|
||||||
|
com_ui_share_link_to_chat: 'شارك الرابط في الدردشة',
|
||||||
|
com_ui_share_error: 'حدث خطأ أثناء مشاركة رابط الدردشة',
|
||||||
|
com_ui_share_create_message: 'سيظل اسمك وأي رسائل تضيفها بعد المشاركة خاصة.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'تم إنشاء رابط مشترك للدردشة الخاصة بك. يمكنك إدارة الدردشات المشتركة مسبقًا في أي وقت عبر الإعدادات.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'سيظل اسمك والتعليمات المخصصة وأي رسائل تضيفها بعد المشاركة خاصة.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'تم تحديث رابط مشترك للدردشة الخاصة بك. يمكنك إدارة الدردشات المشتركة مسبقًا في أي وقت عبر الإعدادات.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'الرابط المشترك غير موجود',
|
||||||
com_ui_delete: 'حذف',
|
com_ui_delete: 'حذف',
|
||||||
com_ui_delete_conversation: 'حذف الدردشة؟',
|
com_ui_delete_conversation: 'حذف الدردشة؟',
|
||||||
com_ui_delete_conversation_confirm: 'سيتم حذف هذا',
|
com_ui_delete_conversation_confirm: 'سيتم حذف هذا',
|
||||||
|
|
@ -308,9 +311,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'حدث خطأ أثناء حذف المساعد',
|
com_ui_assistant_delete_error: 'حدث خطأ أثناء حذف المساعد',
|
||||||
com_ui_copied: 'تم النسخ',
|
com_ui_copied: 'تم النسخ',
|
||||||
com_ui_copy_code: 'نسخ الكود',
|
com_ui_copy_code: 'نسخ الكود',
|
||||||
com_ui_copy_link: 'نسخ الرابط',
|
|
||||||
com_ui_update_link: 'رابط التحديث',
|
|
||||||
com_ui_create_link: 'إنشاء رابط',
|
|
||||||
com_nav_source_chat: 'عرض محادثة المصدر',
|
com_nav_source_chat: 'عرض محادثة المصدر',
|
||||||
com_ui_date_today: 'اليوم',
|
com_ui_date_today: 'اليوم',
|
||||||
com_ui_date_yesterday: 'أمس',
|
com_ui_date_yesterday: 'أمس',
|
||||||
|
|
@ -771,40 +771,51 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'مشاركة',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'نسخ الرابط',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'رابط التحديث',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'إنشاء رابط',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'شارك الرابط في الدردشة',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'حدث خطأ أثناء مشاركة رابط الدردشة',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'سيظل اسمك وأي رسائل تضيفها بعد المشاركة خاصة.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'تم إنشاء رابط مشترك للدردشة الخاصة بك. يمكنك إدارة الدردشات المشتركة مسبقًا في أي وقت عبر الإعدادات.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'سيظل اسمك والتعليمات المخصصة وأي رسائل تضيفها بعد المشاركة خاصة.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
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: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'الرابط المشترك غير موجود',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
@ -1684,18 +1695,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: 'نسخ الكود',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: 'عرض محادثة المصدر',
|
translated: 'عرض محادثة المصدر',
|
||||||
|
|
|
||||||
|
|
@ -135,17 +135,20 @@ export default {
|
||||||
com_ui_assistants_output: 'Saída dos Assistentes',
|
com_ui_assistants_output: 'Saída dos Assistentes',
|
||||||
com_ui_delete: 'Excluir',
|
com_ui_delete: 'Excluir',
|
||||||
com_ui_create: 'Criar',
|
com_ui_create: 'Criar',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Compartilhar',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Copiar link',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Atualizar link',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Criar link',
|
||||||
|
com_ui_share_link_to_chat: 'Compartilhar link no chat',
|
||||||
|
com_ui_share_error: 'Ocorreu um erro ao compartilhar o link do chat',
|
||||||
|
com_ui_share_create_message: 'Seu nome e quaisquer mensagens que você adicionar após o compartilhamento permanecem privadas.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Um link compartilhado para o seu chat foi criado. Gerencie conversas compartilhadas previamente a qualquer momento via Configurações.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Seu nome, instruções personalizadas e quaisquer mensagens que você adicionar após o compartilhamento permanecem privadas.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Um link compartilhado para o seu chat foi atualizado. Gerencie conversas compartilhadas previamente a qualquer momento via Configurações.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Link compartilhado não encontrado',
|
||||||
com_ui_delete_conversation: 'Excluir conversa?',
|
com_ui_delete_conversation: 'Excluir conversa?',
|
||||||
com_ui_delete_conversation_confirm: 'Isso excluirá',
|
com_ui_delete_conversation_confirm: 'Isso excluirá',
|
||||||
com_ui_delete_assistant_confirm:
|
com_ui_delete_assistant_confirm:
|
||||||
|
|
@ -983,40 +986,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Compartilhar',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Copiar link',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Atualizar link',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Criar link',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Compartilhar link no chat',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Ocorreu um erro ao compartilhar o link do chat',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Seu nome e quaisquer mensagens que você adicionar após o compartilhamento permanecem privadas.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Um link compartilhado para o seu chat foi criado. Gerencie conversas compartilhadas previamente a qualquer momento via Configurações.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Seu nome, instruções personalizadas e quaisquer mensagens que você adicionar após o compartilhamento permanecem privadas.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Um link compartilhado para o seu chat foi atualizado. Gerencie conversas compartilhadas previamente a qualquer momento via Configurações.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Link compartilhado não encontrado',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
|
||||||
|
|
@ -148,17 +148,20 @@ export default {
|
||||||
com_ui_assistants_output: 'Assistenten Ausgabe',
|
com_ui_assistants_output: 'Assistenten Ausgabe',
|
||||||
com_ui_delete: 'Löschen',
|
com_ui_delete: 'Löschen',
|
||||||
com_ui_create: 'Erstellen',
|
com_ui_create: 'Erstellen',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Teilen',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Link kopieren',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Link aktualisieren',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Link erstellen',
|
||||||
|
com_ui_share_link_to_chat: 'Link zum Chat teilen',
|
||||||
|
com_ui_share_error: 'Beim Teilen des Chat-Links ist ein Fehler aufgetreten',
|
||||||
|
com_ui_share_create_message: 'Ihr Name und alle Nachrichten, die Sie nach dem Teilen hinzufügen, bleiben privat.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Ein geteiltes Link zu Ihrem Chat wurde erstellt. Verwalten Sie zuvor geteilte Chats jederzeit über die Einstellungen.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ihr Name, benutzerdefinierte Anweisungen und alle Nachrichten, die Sie nach dem Teilen hinzufügen, bleiben privat.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Ein geteiltes Link zu Ihrem Chat wurde aktualisiert. Verwalten Sie zuvor geteilte Chats jederzeit über die Einstellungen.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Geteilter Link nicht gefunden',
|
||||||
com_ui_delete_conversation: 'Chat löschen?',
|
com_ui_delete_conversation: 'Chat löschen?',
|
||||||
com_ui_delete_conversation_confirm: 'Damit wird gelöscht',
|
com_ui_delete_conversation_confirm: 'Damit wird gelöscht',
|
||||||
com_ui_delete_assistant_confirm:
|
com_ui_delete_assistant_confirm:
|
||||||
|
|
@ -494,9 +497,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'Beim Löschen des Assistenten ist ein Fehler aufgetreten.',
|
com_ui_assistant_delete_error: 'Beim Löschen des Assistenten ist ein Fehler aufgetreten.',
|
||||||
com_ui_copied: 'Kopiert',
|
com_ui_copied: 'Kopiert',
|
||||||
com_ui_copy_code: 'Code kopieren',
|
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_nav_source_chat: 'Quellchat anzeigen',
|
||||||
com_ui_date_today: 'Heute',
|
com_ui_date_today: 'Heute',
|
||||||
com_ui_date_yesterday: 'Gestern',
|
com_ui_date_yesterday: 'Gestern',
|
||||||
|
|
@ -1138,40 +1138,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Teilen',
|
||||||
|
},
|
||||||
|
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_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Link zum Chat teilen',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Beim Teilen des Chat-Links ist ein Fehler aufgetreten',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Ihr Name und alle Nachrichten, die Sie nach dem Teilen hinzufügen, bleiben privat.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Ein geteiltes Link zu Ihrem Chat wurde erstellt. Verwalten Sie zuvor geteilte Chats jederzeit über die Einstellungen.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ihr Name, benutzerdefinierte Anweisungen und alle Nachrichten, die Sie nach dem Teilen hinzufügen, bleiben privat.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Ein geteiltes Link zu Ihrem Chat wurde aktualisiert. Verwalten Sie zuvor geteilte Chats jederzeit über die Einstellungen.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Geteilter Link nicht gefunden',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
@ -2359,18 +2371,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: 'Code kopieren',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: 'Quellchat anzeigen',
|
translated: 'Quellchat anzeigen',
|
||||||
|
|
|
||||||
|
|
@ -219,11 +219,11 @@ export default {
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
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_create_message: 'Your name and any messages you add after sharing stay private.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Shared link not found',
|
||||||
com_ui_delete_conversation: 'Delete chat?',
|
com_ui_delete_conversation: 'Delete chat?',
|
||||||
com_ui_delete_conversation_confirm: 'This will delete',
|
com_ui_delete_conversation_confirm: 'This will delete',
|
||||||
|
|
@ -370,7 +370,7 @@ export default {
|
||||||
com_endpoint_stop: 'Stop Sequences',
|
com_endpoint_stop: 'Stop Sequences',
|
||||||
com_endpoint_stop_placeholder: 'Separate values by pressing `Enter`',
|
com_endpoint_stop_placeholder: 'Separate values by pressing `Enter`',
|
||||||
com_endpoint_openai_max_tokens: `Optional \`max_tokens\` field, representing the maximum number of tokens that can be generated in the chat completion.
|
com_endpoint_openai_max_tokens: `Optional \`max_tokens\` field, representing the maximum number of tokens that can be generated in the chat completion.
|
||||||
|
|
||||||
The total length of input tokens and generated tokens is limited by the models context length. You may experience errors if this number exceeds the max context tokens.`,
|
The total length of input tokens and generated tokens is limited by the models context length. You may experience errors if this number exceeds the max context tokens.`,
|
||||||
com_endpoint_openai_temp:
|
com_endpoint_openai_temp:
|
||||||
'Higher values = more random, while lower values = more focused and deterministic. We recommend altering this or Top P but not both.',
|
'Higher values = more random, while lower values = more focused and deterministic. We recommend altering this or Top P but not both.',
|
||||||
|
|
|
||||||
|
|
@ -137,17 +137,20 @@ export default {
|
||||||
com_ui_assistants_output: 'Salida de Asistentes',
|
com_ui_assistants_output: 'Salida de Asistentes',
|
||||||
com_ui_delete: 'Eliminar',
|
com_ui_delete: 'Eliminar',
|
||||||
com_ui_create: 'Crear',
|
com_ui_create: 'Crear',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Compartir',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Copiar enlace',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Actualizar enlace',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Crear enlace',
|
||||||
|
com_ui_share_link_to_chat: 'Compartir enlace en el chat',
|
||||||
|
com_ui_share_error: 'Hubo un error al compartir el enlace del chat',
|
||||||
|
com_ui_share_create_message: 'Tu nombre y cualquier mensaje que agregues después de compartir se mantendrán privados.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Se ha creado un enlace compartido para tu chat. Gestiona los chats compartidos anteriormente en cualquier momento a través de Configuración.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Tu nombre, instrucciones personalizadas y cualquier mensaje que agregues después de compartir se mantendrán privados.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Se ha actualizado un enlace compartido para tu chat. Gestiona los chats compartidos anteriormente en cualquier momento a través de Configuración.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Enlace compartido no encontrado',
|
||||||
com_ui_delete_conversation: '¿Eliminar Chat?',
|
com_ui_delete_conversation: '¿Eliminar Chat?',
|
||||||
com_ui_delete_conversation_confirm: 'Esto eliminará',
|
com_ui_delete_conversation_confirm: 'Esto eliminará',
|
||||||
com_ui_delete_assistant_confirm:
|
com_ui_delete_assistant_confirm:
|
||||||
|
|
@ -489,9 +492,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'Hubo un error al eliminar el asistente',
|
com_ui_assistant_delete_error: 'Hubo un error al eliminar el asistente',
|
||||||
com_ui_copied: '¡Copiado!',
|
com_ui_copied: '¡Copiado!',
|
||||||
com_ui_copy_code: 'Copiar código',
|
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_nav_source_chat: 'Ver chat de origen',
|
||||||
com_ui_date_today: 'Hoy',
|
com_ui_date_today: 'Hoy',
|
||||||
com_ui_date_yesterday: 'Ayer',
|
com_ui_date_yesterday: 'Ayer',
|
||||||
|
|
@ -1110,40 +1110,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Compartir',
|
||||||
|
},
|
||||||
|
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_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Compartir enlace en el chat',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Hubo un error al compartir el enlace del chat',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Tu nombre y cualquier mensaje que agregues después de compartir se mantendrán privados.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Se ha creado un enlace compartido para tu chat. Gestiona los chats compartidos anteriormente en cualquier momento a través de Configuración.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Tu nombre, instrucciones personalizadas y cualquier mensaje que agregues después de compartir se mantendrán privados.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Se ha actualizado un enlace compartido para tu chat. Gestiona los chats compartidos anteriormente en cualquier momento a través de Configuración.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Enlace compartido no encontrado',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
@ -2341,18 +2353,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: 'Copiar código',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: 'Ver chat de origen',
|
translated: 'Ver chat de origen',
|
||||||
|
|
|
||||||
|
|
@ -70,11 +70,11 @@ export default {
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
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_create_message: 'Your name and any messages you add after sharing stay private.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Shared link not found',
|
||||||
com_ui_delete: 'Supprimer',
|
com_ui_delete: 'Supprimer',
|
||||||
com_ui_delete_conversation: 'Supprimer la discussions?',
|
com_ui_delete_conversation: 'Supprimer la discussions?',
|
||||||
|
|
@ -840,20 +840,19 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
|
|
|
||||||
|
|
@ -91,16 +91,19 @@ export default {
|
||||||
com_ui_assistant: 'סייען',
|
com_ui_assistant: 'סייען',
|
||||||
com_ui_delete: 'מחק',
|
com_ui_delete: 'מחק',
|
||||||
com_ui_create: 'צור',
|
com_ui_create: 'צור',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'שתף',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'העתק קישור',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'עדכן קישור',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'צור קישור',
|
||||||
|
com_ui_share_link_to_chat: 'שתף קישור בצ\'אט',
|
||||||
|
com_ui_share_error: 'אירעה שגיאה בעת שיתוף קישור הצ\'אט',
|
||||||
|
com_ui_share_create_message: 'שמך וכל הודעה שתוסיף לאחר השיתוף יישארו פרטיים.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Shared link not found',
|
||||||
com_ui_delete_conversation: 'למחוק את השיחה (צאט)?',
|
com_ui_delete_conversation: 'למחוק את השיחה (צאט)?',
|
||||||
com_ui_delete_conversation_confirm: 'זה ימחק',
|
com_ui_delete_conversation_confirm: 'זה ימחק',
|
||||||
|
|
@ -743,36 +746,47 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'שתף',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'העתק קישור',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'עדכן קישור',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'צור קישור',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'שתף קישור בצ\'אט',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'אירעה שגיאה בעת שיתוף קישור הצ\'אט',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'שמך וכל הודעה שתוסיף לאחר השיתוף יישארו פרטיים.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
|
|
|
||||||
|
|
@ -61,17 +61,20 @@ export default {
|
||||||
com_ui_import_conversation_error: 'Terjadi kesalahan saat mengimpor percakapan Anda',
|
com_ui_import_conversation_error: 'Terjadi kesalahan saat mengimpor percakapan Anda',
|
||||||
com_ui_confirm_action: 'Konfirmasi Aksi',
|
com_ui_confirm_action: 'Konfirmasi Aksi',
|
||||||
com_ui_chats: 'chat',
|
com_ui_chats: 'chat',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Bagikan',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Salin tautan',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Perbarui tautan',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Buat tautan',
|
||||||
|
com_ui_share_link_to_chat: 'Bagikan tautan ke chat',
|
||||||
|
com_ui_share_error: 'Terjadi kesalahan saat membagikan tautan chat',
|
||||||
|
com_ui_share_create_message: 'Nama Anda dan pesan apa pun yang Anda tambahkan setelah berbagi tetap pribadi.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Tautan berbagi ke chat Anda telah dibuat. Kelola chat yang pernah dibagikan kapan saja melalui Pengaturan.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Nama Anda, petunjuk khusus, dan pesan apa pun yang Anda tambahkan setelah berbagi tetap pribadi.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Tautan berbagi ke chat Anda telah diperbarui. Kelola chat yang pernah dibagikan kapan saja melalui Pengaturan.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Tautan berbagi tidak ditemukan',
|
||||||
com_ui_delete: 'Hapus',
|
com_ui_delete: 'Hapus',
|
||||||
com_ui_delete_conversation: 'Hapus chat?',
|
com_ui_delete_conversation: 'Hapus chat?',
|
||||||
com_ui_delete_conversation_confirm: 'Ini akan menghapus',
|
com_ui_delete_conversation_confirm: 'Ini akan menghapus',
|
||||||
|
|
@ -596,40 +599,49 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Bagikan',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Salin tautan',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Perbarui tautan',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Buat tautan',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Bagikan tautan ke chat',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Terjadi kesalahan saat membagikan tautan chat',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Nama Anda dan pesan apa pun yang Anda tambahkan setelah berbagi tetap pribadi.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated: 'Tautan berbagi ke chat Anda telah dibuat. Kelola chat yang pernah dibagikan kapan saja melalui Pengaturan.',
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Nama Anda, petunjuk khusus, dan pesan apa pun yang Anda tambahkan setelah berbagi tetap pribadi.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated: 'Tautan berbagi ke chat Anda telah diperbarui. Kelola chat yang pernah dibagikan kapan saja melalui Pengaturan.',
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Tautan berbagi tidak ditemukan',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
|
||||||
|
|
@ -188,17 +188,20 @@ export default {
|
||||||
com_ui_assistants_output: 'Output Assistenti',
|
com_ui_assistants_output: 'Output Assistenti',
|
||||||
com_ui_delete: 'Elimina',
|
com_ui_delete: 'Elimina',
|
||||||
com_ui_create: 'Crea',
|
com_ui_create: 'Crea',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Condividi',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Copia link',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Aggiorna link',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Crea link',
|
||||||
|
com_ui_share_link_to_chat: 'Condividi link a chat',
|
||||||
|
com_ui_share_error: 'Si è verificato un errore durante la condivisione del link della chat',
|
||||||
|
com_ui_share_create_message: 'Il tuo nome e qualsiasi messaggio aggiunto dopo la condivisione rimarranno privati.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'È stato creato un link condiviso per la tua chat. Gestisci le chat condivise in precedenza in qualsiasi momento tramite Impostazioni.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Il tuo nome, istruzioni personalizzate e qualsiasi messaggio aggiunto dopo la condivisione rimarranno privati.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Il link condiviso per la tua chat è stato aggiornato. Gestisci le chat condivise in precedenza in qualsiasi momento tramite Impostazioni.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Link condiviso non trovato',
|
||||||
com_ui_delete_conversation: 'Eliminare la chat?',
|
com_ui_delete_conversation: 'Eliminare la chat?',
|
||||||
com_ui_delete_conversation_confirm: 'Questo eliminerà',
|
com_ui_delete_conversation_confirm: 'Questo eliminerà',
|
||||||
com_ui_rename: 'Rinominare',
|
com_ui_rename: 'Rinominare',
|
||||||
|
|
@ -549,9 +552,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'Si è verificato un errore durante l\'eliminazione dell\'assistente',
|
com_ui_assistant_delete_error: 'Si è verificato un errore durante l\'eliminazione dell\'assistente',
|
||||||
com_ui_copied: 'Copiato!',
|
com_ui_copied: 'Copiato!',
|
||||||
com_ui_copy_code: 'Copia codice',
|
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_nav_source_chat: 'Visualizza chat sorgente',
|
||||||
com_ui_date_today: 'Oggi',
|
com_ui_date_today: 'Oggi',
|
||||||
com_ui_date_yesterday: 'Ieri',
|
com_ui_date_yesterday: 'Ieri',
|
||||||
|
|
@ -1269,40 +1269,51 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Condividi',
|
||||||
|
},
|
||||||
|
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_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Condividi link a chat',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Si è verificato un errore durante la condivisione del link della chat',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Il tuo nome e qualsiasi messaggio aggiunto dopo la condivisione rimarranno privati.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'È stato creato un link condiviso per la tua chat. Gestisci le chat condivise in precedenza in qualsiasi momento tramite Impostazioni.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Il tuo nome, istruzioni personalizzate e qualsiasi messaggio aggiunto dopo la condivisione rimarranno privati.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Il link condiviso per la tua chat è stato aggiornato. Gestisci le chat condivise in precedenza in qualsiasi momento tramite Impostazioni.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Link condiviso non trovato',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
@ -2507,18 +2518,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: 'Copia codice',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: 'Visualizza chat sorgente',
|
translated: 'Visualizza chat sorgente',
|
||||||
|
|
|
||||||
|
|
@ -148,16 +148,19 @@ export default {
|
||||||
com_ui_delete: '削除',
|
com_ui_delete: '削除',
|
||||||
com_ui_create: '作成',
|
com_ui_create: '作成',
|
||||||
com_ui_share: '共有',
|
com_ui_share: '共有',
|
||||||
|
com_ui_copy_link: 'リンクをコピー',
|
||||||
|
com_ui_update_link: 'リンクを更新する',
|
||||||
|
com_ui_create_link: 'リンクを作成する',
|
||||||
com_ui_share_link_to_chat: 'チャットへの共有リンク',
|
com_ui_share_link_to_chat: 'チャットへの共有リンク',
|
||||||
com_ui_share_error: 'チャットの共有リンクの共有中にエラーが発生しました',
|
com_ui_share_error: 'チャットの共有リンクの共有中にエラーが発生しました',
|
||||||
com_ui_share_create_message:
|
com_ui_share_create_message:
|
||||||
'あなたの名前と共有リンクを作成した後のメッセージは、共有されません。',
|
'あなたの名前と共有リンクを作成した後のメッセージは、共有されません。',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'チャットへの公開された共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
'チャットの共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'あなたの名前、カスタム指示、共有リンクを作成した後のメッセージは、共有されません。',
|
'あなたの名前、カスタム指示、共有リンクを作成した後のメッセージは、共有されません。',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'チャットへの公開された共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
'チャットの共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
||||||
com_ui_shared_link_not_found: '共有リンクが見つかりません',
|
com_ui_shared_link_not_found: '共有リンクが見つかりません',
|
||||||
com_ui_delete_conversation: 'チャットを削除しますか?',
|
com_ui_delete_conversation: 'チャットを削除しますか?',
|
||||||
com_ui_delete_conversation_confirm: 'このチャットは削除されます。',
|
com_ui_delete_conversation_confirm: 'このチャットは削除されます。',
|
||||||
|
|
@ -486,9 +489,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'アシスタントの削除中にエラーが発生しました。',
|
com_ui_assistant_delete_error: 'アシスタントの削除中にエラーが発生しました。',
|
||||||
com_ui_copied: 'コピーしました',
|
com_ui_copied: 'コピーしました',
|
||||||
com_ui_copy_code: 'コードをコピーする',
|
com_ui_copy_code: 'コードをコピーする',
|
||||||
com_ui_copy_link: 'リンクをコピー',
|
|
||||||
com_ui_update_link: 'リンクを更新する',
|
|
||||||
com_ui_create_link: 'リンクを作成する',
|
|
||||||
com_nav_source_chat: 'ソースチャットを表示する',
|
com_nav_source_chat: 'ソースチャットを表示する',
|
||||||
com_ui_date_today: '今日',
|
com_ui_date_today: '今日',
|
||||||
com_ui_date_yesterday: '昨日',
|
com_ui_date_yesterday: '昨日',
|
||||||
|
|
@ -1151,7 +1151,7 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'チャットへの公開された共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
'チャットへの公開された共有リンクが作成されました。設定から以前共有したチャットを管理できます。',
|
||||||
},
|
},
|
||||||
|
|
@ -1162,7 +1162,7 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'チャットへの公開された共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
'チャットへの公開された共有リンクが更新されました。設定から以前共有したチャットを管理できます。',
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -50,17 +50,20 @@ export default {
|
||||||
com_ui_import_conversation_error: '대화를 가져오는 동안 오류가 발생했습니다',
|
com_ui_import_conversation_error: '대화를 가져오는 동안 오류가 발생했습니다',
|
||||||
com_ui_confirm_action: '작업 확인',
|
com_ui_confirm_action: '작업 확인',
|
||||||
com_ui_chats: '채팅',
|
com_ui_chats: '채팅',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: '공유하기',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: '링크 복사',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: '링크 업데이트',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: '링크 만들기',
|
||||||
|
com_ui_share_link_to_chat: '채팅으로 링크 공유하기',
|
||||||
|
com_ui_share_error: '채팅 링크를 공유하는 동안 오류가 발생했습니다',
|
||||||
|
com_ui_share_create_message: '이름과 공유 후에 추가하는 메시지는 비공개로 유지됩니다.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'귀하의 채팅에 대한 공유 링크가 생성되었습니다. 설정을 통해 언제든지 이전에 공유한 채팅을 관리할 수 있습니다.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'이름, 사용자 지정 지침 및 공유 후 추가하는 메시지는 비공개로 유지됩니다.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'귀하의 채팅에 대한 공유 링크가 업데이트되었습니다. 설정을 통해 언제든지 이전에 공유한 채팅을 관리할 수 있습니다.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: '공유 링크를 찾을 수 없습니다',
|
||||||
com_ui_delete: '삭제',
|
com_ui_delete: '삭제',
|
||||||
com_ui_delete_conversation: '채팅을 삭제하시겠습니까?',
|
com_ui_delete_conversation: '채팅을 삭제하시겠습니까?',
|
||||||
com_ui_delete_conversation_confirm: '이 채팅이 삭제됩니다',
|
com_ui_delete_conversation_confirm: '이 채팅이 삭제됩니다',
|
||||||
|
|
@ -289,9 +292,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: '어시스턴트 삭제 중 오류가 발생했습니다.',
|
com_ui_assistant_delete_error: '어시스턴트 삭제 중 오류가 발생했습니다.',
|
||||||
com_ui_copied: '복사됨',
|
com_ui_copied: '복사됨',
|
||||||
com_ui_copy_code: '코드 복사',
|
com_ui_copy_code: '코드 복사',
|
||||||
com_ui_copy_link: '링크 복사',
|
|
||||||
com_ui_update_link: '링크 업데이트',
|
|
||||||
com_ui_create_link: '링크 만들기',
|
|
||||||
com_nav_source_chat: '소스 채팅 보기',
|
com_nav_source_chat: '소스 채팅 보기',
|
||||||
com_ui_date_today: '오늘',
|
com_ui_date_today: '오늘',
|
||||||
com_ui_date_yesterday: '어제',
|
com_ui_date_yesterday: '어제',
|
||||||
|
|
@ -764,40 +764,50 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: '공유하기',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: '링크 복사',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: '링크 업데이트',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: '링크 만들기',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: '채팅으로 링크 공유하기',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: '채팅 링크를 공유하는 동안 오류가 발생했습니다',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: '이름과 공유 후에 추가하는 메시지는 비공개로 유지됩니다.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'귀하의 채팅에 대한 공유 링크가 생성되었습니다. 설정을 통해 언제든지 이전에 공유한 채팅을 관리할 수 있습니다.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: '이름, 사용자 지정 지침 및 공유 후 추가하는 메시지는 비공개로 유지됩니다.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
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: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: '공유 링크를 찾을 수 없습니다',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
@ -1629,18 +1639,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: '코드 복사',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: '소스 채팅 보기',
|
translated: '소스 채팅 보기',
|
||||||
|
|
|
||||||
|
|
@ -54,17 +54,20 @@ export default {
|
||||||
'Er is een fout opgetreden bij het importeren van je gesprekken',
|
'Er is een fout opgetreden bij het importeren van je gesprekken',
|
||||||
com_ui_confirm_action: 'Bevestig actie',
|
com_ui_confirm_action: 'Bevestig actie',
|
||||||
com_ui_chats: 'chats',
|
com_ui_chats: 'chats',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Delen',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Link kopiëren',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Link bijwerken',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Link aanmaken',
|
||||||
|
com_ui_share_link_to_chat: 'Deel link naar chat',
|
||||||
|
com_ui_share_error: 'Er is een fout opgetreden bij het delen van de chatlink',
|
||||||
|
com_ui_share_create_message: 'Uw naam en alle berichten die u na het delen toevoegt, blijven privé.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Een gedeelde link naar uw chat is aangemaakt. Beheer eerder gedeelde chats op elk moment via Instellingen.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Uw naam, aangepaste instructies en alle berichten die u na het delen toevoegt, blijven privé.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Een gedeelde link naar uw chat is bijgewerkt. Beheer eerder gedeelde chats op elk moment via Instellingen.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Gedeelde link niet gevonden',
|
||||||
com_ui_delete: 'Verwijderen',
|
com_ui_delete: 'Verwijderen',
|
||||||
com_ui_delete_conversation: 'Chat verwijderen?',
|
com_ui_delete_conversation: 'Chat verwijderen?',
|
||||||
com_ui_delete_conversation_confirm: 'Hiermee wordt',
|
com_ui_delete_conversation_confirm: 'Hiermee wordt',
|
||||||
|
|
@ -513,40 +516,51 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Delen',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Link kopiëren',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Link bijwerken',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Link aanmaken',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Deel link naar chat',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Er is een fout opgetreden bij het delen van de chatlink',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Uw naam en alle berichten die u na het delen toevoegt, blijven privé.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Een gedeelde link naar uw chat is aangemaakt. Beheer eerder gedeelde chats op elk moment via Instellingen.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Uw naam, aangepaste instructies en alle berichten die u na het delen toevoegt, blijven privé.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Een gedeelde link naar uw chat is bijgewerkt. Beheer eerder gedeelde chats op elk moment via Instellingen.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Gedeelde link niet gevonden',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
|
||||||
|
|
@ -30,17 +30,20 @@ export default {
|
||||||
com_ui_entries: 'wpisów',
|
com_ui_entries: 'wpisów',
|
||||||
com_ui_pay_per_call:
|
com_ui_pay_per_call:
|
||||||
'Wszystkie rozmowy z AI w jednym miejscu. Płatność za połączenie, a nie za miesiąc',
|
'Wszystkie rozmowy z AI w jednym miejscu. Płatność za połączenie, a nie za miesiąc',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Udostępnij',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Skopiuj link',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Zaktualizuj link',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Utwórz link',
|
||||||
|
com_ui_share_link_to_chat: 'Udostępnij link w czacie',
|
||||||
|
com_ui_share_error: 'Wystąpił błąd podczas udostępniania linku do czatu',
|
||||||
|
com_ui_share_create_message: 'Twoje imię i jakiekolwiek wiadomości dodane po udostępnieniu pozostaną prywatne.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Utworzono link udostępniony do Twojego czatu. Zarządzaj wcześniej udostępnionymi czatami w dowolnym momencie za pomocą Ustawień.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Twoje imię, niestandardowe instrukcje i jakiekolwiek wiadomości dodane po udostępnieniu pozostaną prywatne.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Link udostępniony do Twojego czatu został zaktualizowany. Zarządzaj wcześniej udostępnionymi czatami w dowolnym momencie za pomocą Ustawień.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Nie znaleziono linku udostępnionego',
|
||||||
com_ui_rename: 'Zmień nazwę',
|
com_ui_rename: 'Zmień nazwę',
|
||||||
com_ui_archive: 'Archiwum',
|
com_ui_archive: 'Archiwum',
|
||||||
com_ui_archive_error: 'Nie udało się archiwizować rozmowy',
|
com_ui_archive_error: 'Nie udało się archiwizować rozmowy',
|
||||||
|
|
@ -339,40 +342,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Udostępnij',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Skopiuj link',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Zaktualizuj link',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Utwórz link',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Udostępnij link w czacie',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Wystąpił błąd podczas udostępniania linku do czatu',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Twoje imię i jakiekolwiek wiadomości dodane po udostępnieniu pozostaną prywatne.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Utworzono link udostępniony do Twojego czatu. Zarządzaj wcześniej udostępnionymi czatami w dowolnym momencie za pomocą Ustawień.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Twoje imię, niestandardowe instrukcje i jakiekolwiek wiadomości dodane po udostępnieniu pozostaną prywatne.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Link udostępniony do Twojego czatu został zaktualizowany. Zarządzaj wcześniej udostępnionymi czatami w dowolnym momencie za pomocą Ustawień.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Nie znaleziono linku udostępnionego',
|
||||||
},
|
},
|
||||||
com_ui_rename: {
|
com_ui_rename: {
|
||||||
english: 'Rename',
|
english: 'Rename',
|
||||||
|
|
|
||||||
|
|
@ -66,17 +66,20 @@ export default {
|
||||||
com_ui_preview: 'Предпросмотр',
|
com_ui_preview: 'Предпросмотр',
|
||||||
com_ui_upload: 'Загрузить',
|
com_ui_upload: 'Загрузить',
|
||||||
com_ui_connect: 'Подключить',
|
com_ui_connect: 'Подключить',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Поделиться',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Скопировать ссылку',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Обновить ссылку',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Создать ссылку',
|
||||||
|
com_ui_share_link_to_chat: 'Поделиться ссылкой в чате',
|
||||||
|
com_ui_share_error: 'Произошла ошибка при попытке поделиться ссылкой на чат',
|
||||||
|
com_ui_share_create_message: 'Ваше имя и любые сообщения, которые вы добавите после обмена, останутся конфиденциальными.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Создана общая ссылка на ваш чат. Управляйте ранее общими чатами в любое время через Настройки.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ваше имя, пользовательские инструкции и любые сообщения, которые вы добавите после обмена, останутся конфиденциальными.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Обновлена общая ссылка на ваш чат. Управляйте ранее общими чатами в любое время через Настройки.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Общая ссылка не найдена',
|
||||||
com_ui_delete_conversation: 'Удалить чат?',
|
com_ui_delete_conversation: 'Удалить чат?',
|
||||||
com_ui_delete_conversation_confirm: 'Будет удален следующий чат: ',
|
com_ui_delete_conversation_confirm: 'Будет удален следующий чат: ',
|
||||||
com_ui_rename: 'Переименовать',
|
com_ui_rename: 'Переименовать',
|
||||||
|
|
@ -394,9 +397,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: 'Произошла ошибка при удалении ассистента',
|
com_ui_assistant_delete_error: 'Произошла ошибка при удалении ассистента',
|
||||||
com_ui_copied: 'Скопировано',
|
com_ui_copied: 'Скопировано',
|
||||||
com_ui_copy_code: 'Копировать код',
|
com_ui_copy_code: 'Копировать код',
|
||||||
com_ui_copy_link: 'Копировать ссылку',
|
|
||||||
com_ui_update_link: 'Обновить ссылку',
|
|
||||||
com_ui_create_link: 'Создать ссылку',
|
|
||||||
com_nav_source_chat: 'Просмотреть исходный чат',
|
com_nav_source_chat: 'Просмотреть исходный чат',
|
||||||
com_ui_date_today: 'Сегодня',
|
com_ui_date_today: 'Сегодня',
|
||||||
com_ui_date_yesterday: 'Вчера',
|
com_ui_date_yesterday: 'Вчера',
|
||||||
|
|
@ -836,40 +836,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Поделиться',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Скопировать ссылку',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Обновить ссылку',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Создать ссылку',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Поделиться ссылкой в чате',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Произошла ошибка при попытке поделиться ссылкой на чат',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Ваше имя и любые сообщения, которые вы добавите после обмена, останутся конфиденциальными.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Создана общая ссылка на ваш чат. Управляйте ранее общими чатами в любое время через Настройки.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ваше имя, пользовательские инструкции и любые сообщения, которые вы добавите после обмена, останутся конфиденциальными.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
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: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Общая ссылка не найдена',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
@ -2001,18 +2013,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: 'Копировать код',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: 'Просмотреть исходный чат',
|
translated: 'Просмотреть исходный чат',
|
||||||
|
|
|
||||||
|
|
@ -51,17 +51,20 @@ export default {
|
||||||
com_ui_import_conversation_error: 'Det uppstod ett fel vid import av dina konversationer',
|
com_ui_import_conversation_error: 'Det uppstod ett fel vid import av dina konversationer',
|
||||||
com_ui_confirm_action: 'Bekräfta åtgärd',
|
com_ui_confirm_action: 'Bekräfta åtgärd',
|
||||||
com_ui_chats: 'chattar',
|
com_ui_chats: 'chattar',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Dela',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Kopiera länk',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Uppdatera länk',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Skapa länk',
|
||||||
|
com_ui_share_link_to_chat: 'Dela länk till chatt',
|
||||||
|
com_ui_share_error: 'Ett fel uppstod vid delning av chattlänken',
|
||||||
|
com_ui_share_create_message: 'Ditt namn och alla meddelanden du lägger till efter delningen förblir privata.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'En delad länk till din chatt har skapats. Hantera tidigare delade chattar när som helst via Inställningar.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ditt namn, anpassade instruktioner och alla meddelanden du lägger till efter delningen förblir privata.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'En delad länk till din chatt har uppdaterats. Hantera tidigare delade chattar när som helst via Inställningar.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Delad länk hittades inte',
|
||||||
com_ui_delete: 'Radera',
|
com_ui_delete: 'Radera',
|
||||||
com_ui_delete_conversation: 'Radera chatt?',
|
com_ui_delete_conversation: 'Radera chatt?',
|
||||||
com_ui_delete_conversation_confirm: 'Detta kommer att radera',
|
com_ui_delete_conversation_confirm: 'Detta kommer att radera',
|
||||||
|
|
@ -493,40 +496,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Dela',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Kopiera länk',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Uppdatera länk',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Skapa länk',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Dela länk till chatt',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Ett fel uppstod vid delning av chattlänken',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Ditt namn och alla meddelanden du lägger till efter delningen förblir privata.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'En delad länk till din chatt har skapats. Hantera tidigare delade chattar när som helst via Inställningar.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Ditt namn, anpassade instruktioner och alla meddelanden du lägger till efter delningen förblir privata.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'En delad länk till din chatt har uppdaterats. Hantera tidigare delade chattar när som helst via Inställningar.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Delad länk hittades inte',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
|
||||||
|
|
@ -53,17 +53,20 @@ export default {
|
||||||
com_ui_import_conversation_error: 'Sohbetlerinizi içe aktarırken bir hata oluştu',
|
com_ui_import_conversation_error: 'Sohbetlerinizi içe aktarırken bir hata oluştu',
|
||||||
com_ui_confirm_action: 'İşlemi Onayla',
|
com_ui_confirm_action: 'İşlemi Onayla',
|
||||||
com_ui_chats: 'sohbetler',
|
com_ui_chats: 'sohbetler',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Paylaş',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Bağlantıyı kopyala',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Bağlantıyı güncelle',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Bağlantı oluştur',
|
||||||
|
com_ui_share_link_to_chat: 'Bağlantıyı sohbete paylaş',
|
||||||
|
com_ui_share_error: 'Sohbet bağlantısını paylaşırken bir hata oluştu',
|
||||||
|
com_ui_share_create_message: 'Adınız ve paylaşım sonrasında eklediğiniz herhangi bir mesaj özel kalır.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Sohbetiniz için paylaşılan bir bağlantı oluşturuldu. Ayarlar aracılığıyla önceden paylaşılan sohbetleri istediğiniz zaman yönetin.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Adınız, özel talimatlarınız ve paylaşım sonrasında eklediğiniz herhangi bir mesaj özel kalır.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Sohbetiniz için paylaşılan bir bağlantı güncellendi. Ayarlar aracılığıyla önceden paylaşılan sohbetleri istediğiniz zaman yönetin.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Paylaşılan bağlantı bulunamadı',
|
||||||
com_ui_delete: 'Sil',
|
com_ui_delete: 'Sil',
|
||||||
com_ui_delete_conversation: 'Sohbet silinecek?',
|
com_ui_delete_conversation: 'Sohbet silinecek?',
|
||||||
com_ui_delete_conversation_confirm: 'Bu silinecek',
|
com_ui_delete_conversation_confirm: 'Bu silinecek',
|
||||||
|
|
@ -529,40 +532,52 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Paylaş',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Bağlantıyı kopyala',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Bağlantıyı güncelle',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Bağlantı oluştur',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Bağlantıyı sohbete paylaş',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Sohbet bağlantısını paylaşırken bir hata oluştu',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Adınız ve paylaşım sonrasında eklediğiniz herhangi bir mesaj özel kalır.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Sohbetiniz için paylaşılan bir bağlantı oluşturuldu. Ayarlar aracılığıyla önceden paylaşılan sohbetleri istediğiniz zaman yönetin.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Adınız, özel talimatlarınız ve paylaşım sonrasında eklediğiniz herhangi bir mesaj özel kalır.',
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Sohbetiniz için paylaşılan bir bağlantı güncellendi. Ayarlar aracılığıyla önceden paylaşılan sohbetleri istediğiniz zaman yönetin.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Paylaşılan bağlantı bulunamadı',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
|
||||||
|
|
@ -53,17 +53,20 @@ 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_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_confirm_action: 'Xác nhận hành động',
|
||||||
com_ui_chats: 'cuộc trò chuyện',
|
com_ui_chats: 'cuộc trò chuyện',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: 'Chia sẻ',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: 'Sao chép liên kết',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: 'Cập nhật liên kết',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: 'Tạo liên kết',
|
||||||
|
com_ui_share_link_to_chat: 'Chia sẻ liên kết đến cuộc trò chuyện',
|
||||||
|
com_ui_share_error: 'Có lỗi xảy ra khi chia sẻ liên kết trò chuyện',
|
||||||
|
com_ui_share_create_message: 'Tên của bạn và bất kỳ tin nhắn nào bạn thêm sau khi chia sẻ sẽ được giữ kín.',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Liên kết chia sẻ đến cuộc trò chuyện của bạn đã được tạo. Quản lý các cuộc trò chuyện đã chia sẻ trước đây bất cứ lúc nào thông qua Cài đặt.',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'Tên của bạn, hướng dẫn tùy chỉnh và bất kỳ tin nhắn nào bạn thêm sau khi chia sẻ sẽ được giữ kín.',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Liên kết chia sẻ đến cuộc trò chuyện của bạn đã được cập nhật. Quản lý các cuộc trò chuyện đã chia sẻ trước đây bất cứ lúc nào thông qua Cài đặt.',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: 'Không tìm thấy liên kết chia sẻ',
|
||||||
com_ui_delete: 'Xóa',
|
com_ui_delete: 'Xóa',
|
||||||
com_ui_delete_conversation: 'Xóa cuộc trò chuyện?',
|
com_ui_delete_conversation: 'Xóa cuộc trò chuyện?',
|
||||||
com_ui_delete_conversation_confirm: 'Điều này sẽ xóa',
|
com_ui_delete_conversation_confirm: 'Điều này sẽ xóa',
|
||||||
|
|
@ -492,40 +495,51 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: 'Chia sẻ',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: 'Sao chép liên kết',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: 'Cập nhật liên kết',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: 'Tạo liên kết',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: 'Chia sẻ liên kết đến cuộc trò chuyện',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: 'Có lỗi xảy ra khi chia sẻ liên kết trò chuyện',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: 'Tên của bạn và bất kỳ tin nhắn nào bạn thêm sau khi chia sẻ sẽ được giữ kín.',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'Liên kết chia sẻ đến cuộc trò chuyện của bạn đã được tạo. Quản lý các cuộc trò chuyện đã chia sẻ trước đây bất cứ lúc nào thông qua Cài đặt.',
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: 'Tên của bạn, hướng dẫn tùy chỉnh và bất kỳ tin nhắn nào bạn thêm sau khi chia sẻ sẽ được giữ kín.',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'Liên kết chia sẻ đến cuộc trò chuyện của bạn đã được cập nhật. Quản lý các cuộc trò chuyện đã chia sẻ trước đây bất cứ lúc nào thông qua Cài đặt.',
|
||||||
},
|
},
|
||||||
com_ui_shared_link_not_found: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: 'Không tìm thấy liên kết chia sẻ',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
|
||||||
|
|
@ -132,17 +132,20 @@ export default {
|
||||||
com_ui_assistants_output: '助手输出',
|
com_ui_assistants_output: '助手输出',
|
||||||
com_ui_delete: '删除',
|
com_ui_delete: '删除',
|
||||||
com_ui_create: '创建',
|
com_ui_create: '创建',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: '分享',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: '复制链接',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: '更新链接',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: '创建链接',
|
||||||
|
com_ui_share_link_to_chat: '分享链接到聊天',
|
||||||
|
com_ui_share_error: '分享聊天链接时发生错误',
|
||||||
|
com_ui_share_create_message: '您的名字及您在分享后添加的任何消息将保持私密。',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'已创建到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'您的名字、定制指令及您在分享后添加的任何消息将保持私密。',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'已更新到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: '未找到共享链接',
|
||||||
com_ui_delete_conversation: '删除对话?',
|
com_ui_delete_conversation: '删除对话?',
|
||||||
com_ui_delete_conversation_confirm: '这将删除',
|
com_ui_delete_conversation_confirm: '这将删除',
|
||||||
com_ui_delete_assistant_confirm: '确定要删除此助手吗?该操作无法撤销。',
|
com_ui_delete_assistant_confirm: '确定要删除此助手吗?该操作无法撤销。',
|
||||||
|
|
@ -448,9 +451,6 @@ export default {
|
||||||
com_ui_date_december: '十二月',
|
com_ui_date_december: '十二月',
|
||||||
com_ui_copied: '已复制!',
|
com_ui_copied: '已复制!',
|
||||||
com_ui_copy_code: '复制代码',
|
com_ui_copy_code: '复制代码',
|
||||||
com_ui_copy_link: '复制链接',
|
|
||||||
com_ui_update_link: '更新链接',
|
|
||||||
com_ui_create_link: '创建链接',
|
|
||||||
com_nav_source_chat: '查看源代码对话',
|
com_nav_source_chat: '查看源代码对话',
|
||||||
com_ui_date_today: '今天',
|
com_ui_date_today: '今天',
|
||||||
com_ui_date_yesterday: '昨天',
|
com_ui_date_yesterday: '昨天',
|
||||||
|
|
@ -1059,40 +1059,49 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: '分享',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: '复制链接',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: '更新链接',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: '创建链接',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: '分享链接到聊天',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: '分享聊天链接时发生错误',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: '您的名字及您在分享后添加的任何消息将保持私密。',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated: '已创建到您聊天的共享链接。可以通过设置随时管理以前共享的聊天。',
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: '您的名字、定制指令及您在分享后添加的任何消息将保持私密。',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
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: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: '未找到共享链接',
|
||||||
},
|
},
|
||||||
com_ui_delete_conversation: {
|
com_ui_delete_conversation: {
|
||||||
english: 'Delete chat?',
|
english: 'Delete chat?',
|
||||||
|
|
@ -2261,18 +2270,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: '复制代码',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: '查看源代码对话',
|
translated: '查看源代码对话',
|
||||||
|
|
|
||||||
|
|
@ -50,17 +50,20 @@ export default {
|
||||||
com_ui_import_conversation_error: '導入對話時發生錯誤',
|
com_ui_import_conversation_error: '導入對話時發生錯誤',
|
||||||
com_ui_confirm_action: '確認操作',
|
com_ui_confirm_action: '確認操作',
|
||||||
com_ui_chats: '對話',
|
com_ui_chats: '對話',
|
||||||
com_ui_share: 'Share',
|
com_ui_share: '分享',
|
||||||
com_ui_share_link_to_chat: 'Share link to chat',
|
com_ui_copy_link: '複製連結',
|
||||||
com_ui_share_error: 'There was an error sharing the chat link',
|
com_ui_update_link: '更新連結',
|
||||||
com_ui_share_create_message: 'Your name and any messages you add after sharing stay private.',
|
com_ui_create_link: '創建連結',
|
||||||
|
com_ui_share_link_to_chat: '分享鏈接到聊天',
|
||||||
|
com_ui_share_error: '分享聊天鏈接時發生錯誤',
|
||||||
|
com_ui_share_create_message: '您的姓名以及您在共享後添加的任何消息都會保密。',
|
||||||
com_ui_share_created_message:
|
com_ui_share_created_message:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'已創建到您的聊天的共享鏈接。可以隨時通過設置管理以前共享的聊天。',
|
||||||
com_ui_share_update_message:
|
com_ui_share_update_message:
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
'您的姓名、自定義指示以及您在共享後添加的任何消息都會保密。',
|
||||||
com_ui_share_updated_message:
|
com_ui_share_updated_message:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'已更新到您的聊天的共享鏈接。可以隨時通過設置管理以前共享的聊天。',
|
||||||
com_ui_shared_link_not_found: 'Shared link not found',
|
com_ui_shared_link_not_found: '未找到共享鏈接',
|
||||||
com_ui_delete: '刪除',
|
com_ui_delete: '刪除',
|
||||||
com_ui_delete_conversation: '刪除對話?',
|
com_ui_delete_conversation: '刪除對話?',
|
||||||
com_ui_delete_conversation_confirm: '這將刪除',
|
com_ui_delete_conversation_confirm: '這將刪除',
|
||||||
|
|
@ -293,9 +296,6 @@ export default {
|
||||||
com_ui_assistant_delete_error: '刪除助理時發生錯誤',
|
com_ui_assistant_delete_error: '刪除助理時發生錯誤',
|
||||||
com_ui_copied: '已複製!',
|
com_ui_copied: '已複製!',
|
||||||
com_ui_copy_code: '複製程式碼',
|
com_ui_copy_code: '複製程式碼',
|
||||||
com_ui_copy_link: '複製連結',
|
|
||||||
com_ui_update_link: '更新連結',
|
|
||||||
com_ui_create_link: '創建連結',
|
|
||||||
com_nav_source_chat: '檢視原始對話',
|
com_nav_source_chat: '檢視原始對話',
|
||||||
com_ui_date_today: '今天',
|
com_ui_date_today: '今天',
|
||||||
com_ui_date_yesterday: '昨天',
|
com_ui_date_yesterday: '昨天',
|
||||||
|
|
@ -745,40 +745,49 @@ export const comparisons = {
|
||||||
},
|
},
|
||||||
com_ui_share: {
|
com_ui_share: {
|
||||||
english: 'Share',
|
english: 'Share',
|
||||||
translated: 'Share',
|
translated: '分享',
|
||||||
|
},
|
||||||
|
com_ui_copy_link: {
|
||||||
|
english: 'Copy link',
|
||||||
|
translated: '複製連結',
|
||||||
|
},
|
||||||
|
com_ui_update_link: {
|
||||||
|
english: 'Update link',
|
||||||
|
translated: '更新連結',
|
||||||
|
},
|
||||||
|
com_ui_create_link: {
|
||||||
|
english: 'Create link',
|
||||||
|
translated: '創建連結',
|
||||||
},
|
},
|
||||||
com_ui_share_link_to_chat: {
|
com_ui_share_link_to_chat: {
|
||||||
english: 'Share link to chat',
|
english: 'Share link to chat',
|
||||||
translated: 'Share link to chat',
|
translated: '分享鏈接到聊天',
|
||||||
},
|
},
|
||||||
com_ui_share_error: {
|
com_ui_share_error: {
|
||||||
english: 'There was an error sharing the chat link',
|
english: 'There was an error sharing the chat link',
|
||||||
translated: 'There was an error sharing the chat link',
|
translated: '分享聊天鏈接時發生錯誤',
|
||||||
},
|
},
|
||||||
com_ui_share_create_message: {
|
com_ui_share_create_message: {
|
||||||
english: 'Your name and any messages you add after sharing stay private.',
|
english: 'Your name and any messages you add after sharing stay private.',
|
||||||
translated: 'Your name and any messages you add after sharing stay private.',
|
translated: '您的姓名以及您在共享後添加的任何消息都會保密。',
|
||||||
},
|
},
|
||||||
com_ui_share_created_message: {
|
com_ui_share_created_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
translated: '已創建到您的聊天的共享鏈接。可以隨時通過設置管理以前共享的聊天。',
|
||||||
'A public link to your chat has been created. Manage previously shared chats at any time via Settings.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_update_message: {
|
com_ui_share_update_message: {
|
||||||
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
english: 'Your name, custom instructions, and any messages you add after sharing stay private.',
|
||||||
translated:
|
translated: '您的姓名、自定義指示以及您在共享後添加的任何消息都會保密。',
|
||||||
'Your name, custom instructions, and any messages you add after sharing stay private.',
|
|
||||||
},
|
},
|
||||||
com_ui_share_updated_message: {
|
com_ui_share_updated_message: {
|
||||||
english:
|
english:
|
||||||
'A public link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
'A shared link to your chat has been updated. Manage previously shared chats at any time via Settings.',
|
||||||
translated:
|
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: {
|
com_ui_shared_link_not_found: {
|
||||||
english: 'Shared link not found',
|
english: 'Shared link not found',
|
||||||
translated: 'Shared link not found',
|
translated: '未找到共享鏈接',
|
||||||
},
|
},
|
||||||
com_ui_delete: {
|
com_ui_delete: {
|
||||||
english: 'Delete',
|
english: 'Delete',
|
||||||
|
|
@ -1658,18 +1667,6 @@ export const comparisons = {
|
||||||
english: 'Copy code',
|
english: 'Copy code',
|
||||||
translated: '複製程式碼',
|
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: {
|
com_nav_source_chat: {
|
||||||
english: 'View source chat',
|
english: 'View source chat',
|
||||||
translated: '檢視原始對話',
|
translated: '檢視原始對話',
|
||||||
|
|
|
||||||
|
|
@ -296,6 +296,8 @@ export type TStartupConfig = {
|
||||||
helpAndFaqURL: string;
|
helpAndFaqURL: string;
|
||||||
customFooter?: string;
|
customFooter?: string;
|
||||||
modelSpecs?: TSpecsConfig;
|
modelSpecs?: TSpecsConfig;
|
||||||
|
sharedLinksEnabled: boolean;
|
||||||
|
publicSharedLinksEnabled: boolean;
|
||||||
analyticsGtmId?: string;
|
analyticsGtmId?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue