mirror of
https://github.com/open-webui/open-webui.git
synced 2026-06-13 19:20:05 +00:00
chore: format
This commit is contained in:
@@ -682,9 +682,7 @@ def load_oauth_providers():
|
||||
**({'timeout': int(OAUTH_TIMEOUT.value)} if OAUTH_TIMEOUT.value else {}),
|
||||
},
|
||||
redirect_uri=GOOGLE_REDIRECT_URI.value,
|
||||
**({
|
||||
'authorize_params': GOOGLE_OAUTH_AUTHORIZE_PARAMS
|
||||
} if GOOGLE_OAUTH_AUTHORIZE_PARAMS else {}),
|
||||
**({'authorize_params': GOOGLE_OAUTH_AUTHORIZE_PARAMS} if GOOGLE_OAUTH_AUTHORIZE_PARAMS else {}),
|
||||
)
|
||||
return client
|
||||
|
||||
|
||||
@@ -840,9 +840,7 @@ def get_embedding_function(
|
||||
embeddings = []
|
||||
for i, batch_embeddings in enumerate(batch_results):
|
||||
if batch_embeddings is None:
|
||||
raise Exception(
|
||||
f'Embedding generation failed for batch {i + 1}/{len(batches)}'
|
||||
)
|
||||
raise Exception(f'Embedding generation failed for batch {i + 1}/{len(batches)}')
|
||||
embeddings.extend(batch_embeddings)
|
||||
|
||||
log.debug(
|
||||
|
||||
@@ -73,15 +73,17 @@ log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
async def send_get_request(
|
||||
request: Request = None, url=None, key=None, user: UserModel = None, config=None,
|
||||
request: Request = None,
|
||||
url=None,
|
||||
key=None,
|
||||
user: UserModel = None,
|
||||
config=None,
|
||||
):
|
||||
timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST)
|
||||
try:
|
||||
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
|
||||
if request and config:
|
||||
headers, cookies = await get_headers_and_cookies(
|
||||
request, url, key, config, user=user
|
||||
)
|
||||
headers, cookies = await get_headers_and_cookies(request, url, key, config, user=user)
|
||||
else:
|
||||
headers = {
|
||||
**({'Authorization': f'Bearer {key}'} if key else {}),
|
||||
@@ -105,7 +107,11 @@ async def send_get_request(
|
||||
|
||||
|
||||
async def get_models_request(
|
||||
request: Request = None, url=None, key=None, user: UserModel = None, config=None,
|
||||
request: Request = None,
|
||||
url=None,
|
||||
key=None,
|
||||
user: UserModel = None,
|
||||
config=None,
|
||||
):
|
||||
if is_anthropic_url(url):
|
||||
return await get_anthropic_models(url, key, user=user)
|
||||
@@ -383,9 +389,7 @@ async def get_all_models_responses(request: Request, user: UserModel) -> list:
|
||||
|
||||
if enable:
|
||||
if len(model_ids) == 0:
|
||||
request_tasks.append(
|
||||
get_models_request(request, url, api_keys[idx], user=user, config=api_config)
|
||||
)
|
||||
request_tasks.append(get_models_request(request, url, api_keys[idx], user=user, config=api_config))
|
||||
else:
|
||||
model_list = {
|
||||
'object': 'list',
|
||||
|
||||
@@ -3692,9 +3692,9 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
current_response_tool_call['function']['name'] = delta_name
|
||||
|
||||
if delta_arguments:
|
||||
current_response_tool_call['function'][
|
||||
'arguments'
|
||||
] += delta_arguments
|
||||
current_response_tool_call['function']['arguments'] += (
|
||||
delta_arguments
|
||||
)
|
||||
|
||||
# Emit pending tool calls in real-time
|
||||
if response_tool_calls:
|
||||
|
||||
@@ -199,5 +199,3 @@ initNetworkProxyFromEnv();
|
||||
await downloadPackages();
|
||||
await copyPyodide();
|
||||
await downloadPyPIWheels();
|
||||
|
||||
|
||||
|
||||
@@ -410,8 +410,8 @@ export const getToolServersData = async (servers: object[]) => {
|
||||
try {
|
||||
const baseUrl = (server?.url ?? '').replace(/\/$/, '');
|
||||
const configRes = await fetch(`${baseUrl}/api/config`, {
|
||||
signal: AbortSignal.timeout(TOOL_SERVER_FETCH_TIMEOUT)
|
||||
});
|
||||
signal: AbortSignal.timeout(TOOL_SERVER_FETCH_TIMEOUT)
|
||||
});
|
||||
if (configRes.ok) {
|
||||
const config = await configRes.json();
|
||||
if (config?.features?.system) {
|
||||
@@ -420,9 +420,9 @@ export const getToolServersData = async (servers: object[]) => {
|
||||
headers['Authorization'] = `Bearer ${toolServerToken}`;
|
||||
}
|
||||
const systemRes = await fetch(`${baseUrl}/system`, {
|
||||
signal: AbortSignal.timeout(TOOL_SERVER_FETCH_TIMEOUT),
|
||||
headers
|
||||
});
|
||||
signal: AbortSignal.timeout(TOOL_SERVER_FETCH_TIMEOUT),
|
||||
headers
|
||||
});
|
||||
if (systemRes.ok) {
|
||||
const systemData = await systemRes.json();
|
||||
if (systemData?.prompt) {
|
||||
|
||||
@@ -314,7 +314,8 @@
|
||||
if (tool && tool.authenticated === false) {
|
||||
const parts = id.split(':');
|
||||
const serverId = parts.at(-1) ?? id;
|
||||
const authType = parts.length > 1 ? parts[0] === 'server' ? parts[1] : parts[0] : null;
|
||||
const authType =
|
||||
parts.length > 1 ? (parts[0] === 'server' ? parts[1] : parts[0]) : null;
|
||||
unauthed.push({ id, name: tool.name ?? id, serverId, authType });
|
||||
} else {
|
||||
authed.push(id);
|
||||
@@ -1770,9 +1771,7 @@
|
||||
}
|
||||
|
||||
if (pendingOAuthTools.length > 0) {
|
||||
toast.warning(
|
||||
$i18n.t('Please connect all required integrations before sending a message')
|
||||
);
|
||||
toast.warning($i18n.t('Please connect all required integrations before sending a message'));
|
||||
return;
|
||||
}
|
||||
if (userPrompt === '' && files.length === 0) {
|
||||
|
||||
@@ -29,9 +29,9 @@
|
||||
|
||||
$: toolCallCount = tokens.filter((t) => t?.attributes?.type === 'tool_calls').length;
|
||||
$: reasoningCount = tokens.filter((t) => t?.attributes?.type === 'reasoning').length;
|
||||
$: hasPending = !messageDone && tokens.some(
|
||||
(t) => t?.attributes?.done !== undefined && t?.attributes?.done !== 'true'
|
||||
);
|
||||
$: hasPending =
|
||||
!messageDone &&
|
||||
tokens.some((t) => t?.attributes?.done !== undefined && t?.attributes?.done !== 'true');
|
||||
|
||||
$: codeInterpreterCount = tokens.filter((t) => t?.attributes?.type === 'code_interpreter').length;
|
||||
|
||||
|
||||
@@ -367,7 +367,11 @@
|
||||
</ul>
|
||||
{/if}
|
||||
{:else if token.type === 'detail_group'}
|
||||
<ConsecutiveDetailsGroup id={`${id}-${tokenIdx}-detail-group`} tokens={token.items} messageDone={done}>
|
||||
<ConsecutiveDetailsGroup
|
||||
id={`${id}-${tokenIdx}-detail-group`}
|
||||
tokens={token.items}
|
||||
messageDone={done}
|
||||
>
|
||||
<div slot="content" class="space-y-1">
|
||||
{#each token.items as detailToken, detailIdx}
|
||||
{@const textContent = getDetailTextContent(detailToken)}
|
||||
|
||||
@@ -140,12 +140,16 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<ArchivedChatsModal bind:show={showArchivedChatsModal} onUpdate={handleArchivedChatsChange} onDelete={(id) => {
|
||||
if ($chatId === id) {
|
||||
goto('/');
|
||||
chatId.set('');
|
||||
}
|
||||
}} />
|
||||
<ArchivedChatsModal
|
||||
bind:show={showArchivedChatsModal}
|
||||
onUpdate={handleArchivedChatsChange}
|
||||
onDelete={(id) => {
|
||||
if ($chatId === id) {
|
||||
goto('/');
|
||||
chatId.set('');
|
||||
}
|
||||
}}
|
||||
/>
|
||||
<SharedChatsModal bind:show={showSharedChatsModal} />
|
||||
<FilesModal bind:show={showFilesModal} />
|
||||
|
||||
|
||||
@@ -74,7 +74,8 @@
|
||||
>
|
||||
<div
|
||||
class=" w-full flex items-center justify-between gap-2 {attributes?.done &&
|
||||
attributes?.done !== 'true' && !messageDone
|
||||
attributes?.done !== 'true' &&
|
||||
!messageDone
|
||||
? 'shimmer'
|
||||
: ''}
|
||||
"
|
||||
|
||||
@@ -118,17 +118,9 @@
|
||||
{#if open}
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<!-- Outer wrapper: positioned flush with trigger, invisible padding bridges the gap -->
|
||||
<div
|
||||
use:portal
|
||||
bind:this={contentEl}
|
||||
on:mouseleave={handleContentMouseLeave}
|
||||
>
|
||||
<div use:portal bind:this={contentEl} on:mouseleave={handleContentMouseLeave}>
|
||||
<!-- Inner content: visual styles and transition -->
|
||||
<div
|
||||
class={contentClass}
|
||||
style="max-width: {maxWidth}px;"
|
||||
transition:flyAndScale
|
||||
>
|
||||
<div class={contentClass} style="max-width: {maxWidth}px;" transition:flyAndScale>
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -452,10 +452,7 @@
|
||||
// Escape HTML entities in the line FIRST so we don't corrupt
|
||||
// user text that happens to contain < or >, then re-inject
|
||||
// the mention spans.
|
||||
const escaped = line
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>');
|
||||
const escaped = line.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
||||
// Now replace the escaped mention patterns back into real spans
|
||||
const withMentions = escaped.replace(
|
||||
/<([@#$])([\w.\-:/]+)(?:\|([^&]*?))?>/g,
|
||||
|
||||
@@ -335,7 +335,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "أضغط هنا",
|
||||
"Click on the user role button to change a user's role.": "أضغط على أسم الصلاحيات لتغيرها للمستخدم",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "استنساخ",
|
||||
"Clone Chat": "",
|
||||
@@ -823,6 +826,8 @@
|
||||
"Experimental": "تجريبي",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "تصدير",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
|
||||
@@ -1385,6 +1390,7 @@
|
||||
"November": "نوفمبر",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "اكتوبر",
|
||||
"Off": "أغلاق",
|
||||
@@ -1495,6 +1501,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1503,6 +1510,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1549,6 +1557,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG تنمبلت",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1934,6 +1944,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "شرح شامل",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1962,6 +1973,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -335,7 +335,10 @@
|
||||
"Click here to upload a workflow.json file.": "انقر هنا لتحميل ملف workflow.json.",
|
||||
"click here.": "انقر هنا.",
|
||||
"Click on the user role button to change a user's role.": "انقر على زر دور المستخدم لتغيير دور المستخدم.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "تم رفض إذن الكتابة إلى الحافظة. يرجى التحقق من إعدادات المتصفح لمنح الوصول اللازم.",
|
||||
"Clone": "استنساخ",
|
||||
"Clone Chat": "استنساخ المحادثة",
|
||||
@@ -823,6 +826,8 @@
|
||||
"Experimental": "تجريبي",
|
||||
"Explain": "شرح",
|
||||
"Explore the cosmos": "استكشف الكون",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "تصدير",
|
||||
"Export All Archived Chats": "تصدير جميع المحادثات المؤرشفة",
|
||||
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
|
||||
@@ -1385,6 +1390,7 @@
|
||||
"November": "نوفمبر",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "معرّف OAuth",
|
||||
"October": "اكتوبر",
|
||||
"Off": "أغلاق",
|
||||
@@ -1495,6 +1501,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "يرجى مراجعة التحذيرات التالية بعناية:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "الرجاء عدم إغلاق صفحة الإعدادات أثناء تحميل النموذج.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "الرجاء إدخال توجيه",
|
||||
@@ -1503,6 +1510,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "الرجاء تعبئة جميع الحقول.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1549,6 +1557,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG تنمبلت",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "التقييم",
|
||||
"Re-rank models by topic similarity": "إعادة ترتيب النماذج حسب تشابه الموضوع",
|
||||
@@ -1934,6 +1944,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "هذا سيحذف جميع النماذج بما في ذلك المخصصة ولا يمكن التراجع عن هذا الإجراء.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "هذا سيؤدي إلى إعادة تعيين قاعدة المعرفة ومزامنة جميع الملفات. هل ترغب في المتابعة؟",
|
||||
"Thorough explanation": "شرح شامل",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "فكّر لمدة {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "فكّر لمدة {{DURATION}} ثانية",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1962,6 +1973,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "workflow.json faylı yükləmək üçün bura klikləyin.",
|
||||
"click here.": "bura klikləyin.",
|
||||
"Click on the user role button to change a user's role.": "İstifadəçinin rolunu dəyişmək üçün istifadəçi rolu düyməsinə klikləyin.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "ID-ni kopyalamaq üçün klikləyin",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Mübadilə buferinə yazma icazəsi rədd edildi. Zəhmət olmasa, lazımi girişi təmin etmək üçün brauzer ayarlarınızı yoxlayın.",
|
||||
"Clone": "Klonla",
|
||||
"Clone Chat": "Çatı klonla",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Eksperimental",
|
||||
"Explain": "İzah et",
|
||||
"Explore the cosmos": "Kosmosu kəşf edin",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "İxrac et",
|
||||
"Export All Archived Chats": "Bütün arxivləşdirilmiş çatları ixrac et",
|
||||
"Export All Chats (All Users)": "Bütün çatları ixrac et (Bütün istifadəçilər)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Noyabr",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Oktyabr",
|
||||
"Off": "Bağlı",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Vaxt Aşımı (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL-i",
|
||||
"Please carefully review the following warnings:": "Zəhmət olmasa aşağıdakı xəbərdarlıqları diqqətlə nəzərdən keçirin:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Zəhmət olmasa model yüklənərkən ayarlar səhifəsini bağlamayın.",
|
||||
"Please enter a message or attach a file.": "Zəhmət olmasa mesaj daxil edin və ya fayl əlavə edin.",
|
||||
"Please enter a prompt": "Zəhmət olmasa bir göstəriş daxil edin",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Zəhmət olmasa etibarlı bir yol daxil edin",
|
||||
"Please enter a valid URL": "Zəhmət olmasa etibarlı bir URL daxil edin",
|
||||
"Please enter a valid URL.": "Zəhmət olmasa etibarlı bir URL daxil edin.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Zəhmət olmasa bütün sahələri doldurun.",
|
||||
"Please register the OAuth client": "Zəhmət olmasa OAuth klientini qeydiyyatdan keçirin",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Zəhmət olmasa OAuth klient məlumatlarını qalıcı etmək üçün bağlantını yadda saxlayın və ID-ni dəyişməyin",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Sorğulanır",
|
||||
"Quick Actions": "Sürətli əməliyyatlar",
|
||||
"RAG Template": "RAG şablonu",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "10 üzərindən {{rating}} balla qiymətləndir",
|
||||
"Rating": "Qiymətləndirmə",
|
||||
"Re-rank models by topic similarity": "Modelləri mövzu oxşarlığına görə yenidən sırala",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Bu, fərdi modellər də daxil olmaqla bütün modelləri siləcək və geri qaytarıla bilməz.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilik bazasını sıfırlayacaq və bütün faylları sinxronizasiya edəcək. Davam etmək istəyirsiniz?",
|
||||
"Thorough explanation": "Ətraflı izahat",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} müddətində düşündü",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}} saniyə düşündü",
|
||||
"Thought for less than a second": "Bir saniyədən az müddətdə düşündü",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Bu gün saat {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "{{COUNT}} mənbəni göstər/gizlə",
|
||||
"Toggle 1 source": "1 mənbəni göstər/gizlə",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Diktəni aç/bağla",
|
||||
"Toggle Sidebar": "Yan paneli aç/bağla",
|
||||
"Toggle status history": "Status tarixçəsini aç/bağla",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Натиснете тук, за да качите workflow.json файл.",
|
||||
"click here.": "натиснете тук.",
|
||||
"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Разрешението за запис в клипборда е отказано. Моля, проверете настройките на браузъра си, за да предоставите необходимия достъп.",
|
||||
"Clone": "Клонинг",
|
||||
"Clone Chat": "Клониране на чат",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Експериментално",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "Изследвайте космоса",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Износ",
|
||||
"Export All Archived Chats": "Износ на всички архивирани чатове",
|
||||
"Export All Chats (All Users)": "Експортване на всички чатове (за всички потребители)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Ноември",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID на OAuth",
|
||||
"October": "Октомври",
|
||||
"Off": "Изкл.",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Моля, внимателно прегледайте следните предупреждения:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Моля, не затваряйте страницата с настройки, докато моделът се зарежда.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Моля, въведете промпт",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Моля, попълнете всички полета.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG Шаблон",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Оценка",
|
||||
"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Това ще изтрие всички модели, включително персонализираните модели, и не може да бъде отменено.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Това ще нулира базата знания и ще синхронизира всички файлове. Желаете ли да продължите?",
|
||||
"Thorough explanation": "Подробно обяснение",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Мислил за {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Мислил за {{DURATION}} секунди",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "এখানে ক্লিক করুন",
|
||||
"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "ক্লোন",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "পরিক্ষামূলক",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "রপ্তানি",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "নভেম্বর",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "অক্টোবর",
|
||||
"Off": "বন্ধ",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG টেম্পলেট",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "workflow.json ཡིག་ཆ་ཞིག་སྤར་བར་འདིར་མནན་པ།",
|
||||
"click here.": "འདིར་མནན་པ།",
|
||||
"Click on the user role button to change a user's role.": "བེད་སྤྱོད་མཁན་གྱི་གནས་ཚད་མཐེབ་གནོན་ལ་མནན་ནས་བེད་སྤྱོད་མཁན་གྱི་གནས་ཚད་བརྗེ་བ།",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "སྦྱར་སྡེར་འབྲི་བའི་དབང་ཚད་ཁས་མ་བླངས། དགོས་ངེས་ཀྱི་འཛུལ་སྤྱོད་སྤྲོད་པར་ཁྱེད་ཀྱི་བརྡ་འཚོལ་ཆས་ཀྱི་སྒྲིག་འགོད་ཞིབ་དཔྱད་བྱེད་རོགས།",
|
||||
"Clone": "འདྲ་བཟོ།",
|
||||
"Clone Chat": "ཁ་བརྡ་འདྲ་བཟོ།",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "ཚོད་ལྟའི་རང་བཞིན།",
|
||||
"Explain": "འགྲེལ་བཤད།",
|
||||
"Explore the cosmos": "འཇིག་རྟེན་བརྟག་ཞིབ་བྱེད་པ།",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "ཕྱིར་གཏོང་།",
|
||||
"Export All Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་གཏོང་།",
|
||||
"Export All Chats (All Users)": "ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་གཏོང་། (བེད་སྤྱོད་མཁན་ཡོངས་)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "ཟླ་བ་བཅུ་གཅིག་པ།",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "ཟླ་བ་བཅུ་པ།",
|
||||
"Off": "ཁ་རྒྱག་པ།",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "གཤམ་གསལ་ཉེན་བརྡ་དག་ལ་ཞིབ་ཚགས་ངང་བལྟ་ཞིབ་བྱེད་རོགས།:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "དཔེ་དབྱིབས་ནང་འཇུག་བྱེད་སྐབས་སྒྲིག་འགོད་ཤོག་ངོས་ཁ་མ་རྒྱག་རོགས།",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "འགུལ་སློང་ཞིག་འཇུག་རོགས།",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "ཁོངས་ཡོངས་རྫོགས་ཁ་སྐོང་རོགས།",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG མ་དཔེ།",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "སྐར་མ།",
|
||||
"Re-rank models by topic similarity": "བརྗོད་གཞི་འདྲ་མཚུངས་ལྟར་དཔེ་དབྱིབས་བསྐྱར་སྒྲིག་བྱེད་པ།",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "འདིས་སྲོལ་བཟོས་དཔེ་དབྱིབས་ཚུད་པའི་དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་ངེས་པ་དང་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ།",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "འདིས་ཤེས་བྱའི་རྟེན་གཞི་སླར་སྒྲིག་བྱས་ནས་ཡིག་ཆ་ཡོངས་རྫོགས་མཉམ་སྡེབ་བྱེད་ངེས། ཁྱེད་མུ་མཐུད་འདོད་ཡོད་དམ།",
|
||||
"Thorough explanation": "འགྲེལ་བཤད་ཞིབ་ཚགས།",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} རིང་བསམས།",
|
||||
"Thought for {{DURATION}} seconds": "སྐར་ཆ་ {{DURATION}} རིང་བསམས།",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "kliknite ovdje.",
|
||||
"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "Kloniraj",
|
||||
"Clone Chat": "",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Eksperimentalno",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Izvoz",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembar",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "Oktobar",
|
||||
"Off": "Isključeno",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG predložak",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Detaljno objašnjenje",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Clica aquí per pujar un arxiu workflow.json",
|
||||
"click here.": "clica aquí.",
|
||||
"Click on the user role button to change a user's role.": "Clica sobre el botó de rol d'usuari per canviar el rol d'un usuari.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Fes clic per copiar l'ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permís d'escriptura al porta-retalls denegat. Comprova els ajustos de navegador per donar l'accés necessari.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "Clonar el xat",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "Explicar",
|
||||
"Explore the cosmos": "Explorar el cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar tots els xats arxivats",
|
||||
"Export All Chats (All Users)": "Exportar tots els xats (Tots els usuaris)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembre",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Octubre",
|
||||
"Off": "Desactivat",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Temps d'espera (ms) de Playwright",
|
||||
"Playwright WebSocket URL": "URL del WebSocket de Playwright",
|
||||
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "No tanquis la pàgina de configuració mentre carregues el model.",
|
||||
"Please enter a message or attach a file.": "Introdueix un missatge o adjunta un arxiu",
|
||||
"Please enter a prompt": "Si us plau, entra una indicació",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Si us plau, entra un camí vàlid",
|
||||
"Please enter a valid URL": "Si us plau, entra una URL vàlida",
|
||||
"Please enter a valid URL.": "Si us plau, entra una URL vàlida.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Emplena tots els camps, si us plau.",
|
||||
"Please register the OAuth client": "Si us plau, registra el client OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Si us plau, desa la connexió per conservar la informació del client OAuth i no canviïs l'ID.",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "Consultes",
|
||||
"Quick Actions": "Accions ràpides",
|
||||
"RAG Template": "Plantilla RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Nota {{rating} sobre 10",
|
||||
"Rating": "Valoració",
|
||||
"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Això eliminarà tots els models incloent els personalitzats i no es pot desfer",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
|
||||
"Thorough explanation": "Explicació en detall",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "He pensat durant {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "He pensat durant {{DURATION}} segons",
|
||||
"Thought for less than a second": "He pensat menys d'un segon",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Activa/Desactiva {{COUNT}} fonts",
|
||||
"Toggle 1 source": "Activa/Desactiva 1 font",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Activa/Desactiva el dictat",
|
||||
"Toggle Sidebar": "Activa/Desactiva la barra lateral",
|
||||
"Toggle status history": "Activa/Desactiva l'estat de l'històric",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "I-klik dinhi.",
|
||||
"Click on the user role button to change a user's role.": "I-klik ang User Role button aron usbon ang role sa user.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Eksperimento",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "I-export ang tanan nga mga chat (Tanan nga tiggamit)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "",
|
||||
"Off": "Napuo",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG nga modelo",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klikněte zde pro nahrání souboru workflow.json.",
|
||||
"click here.": "klikněte zde.",
|
||||
"Click on the user role button to change a user's role.": "Klikněte na tlačítko role uživatele pro změnu role uživatele.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Přístup k zápisu do schránky byl zamítnut. Prosím, zkontrolujte nastavení svého prohlížeče a udělte potřebný přístup.",
|
||||
"Clone": "Klonovat",
|
||||
"Clone Chat": "Klonovat konverzaci",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Experimentální",
|
||||
"Explain": "Vysvětlit",
|
||||
"Explore the cosmos": "Prozkoumejte vesmír",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportovat",
|
||||
"Export All Archived Chats": "Exportovat všechny archivované konverzace",
|
||||
"Export All Chats (All Users)": "Exportovat všechny konverzace (všichni uživatelé)",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "Listopad",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Říjen",
|
||||
"Off": "Vypnuto",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "Časový limit Playwright (ms)",
|
||||
"Playwright WebSocket URL": "WebSocket URL pro Playwright",
|
||||
"Please carefully review the following warnings:": "Prosím, pečlivě si přečtěte následující varování:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Během načítání modelu prosím nezavírejte stránku s nastavením.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Zadejte prosím instrukce.",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "Zadejte prosím platnou cestu",
|
||||
"Please enter a valid URL": "Zadejte prosím platnou URL",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Vyplňte prosím všechna pole.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "Rychlé akce",
|
||||
"RAG Template": "Šablona RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Hodnocení",
|
||||
"Re-rank models by topic similarity": "Znovu seřadit modely podle podobnosti témat",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Tím se smažou všechny modely včetně vlastních a tuto akci nelze vrátit zpět.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tím se resetuje znalostní báze a synchronizují se všechny soubory. Přejete si pokračovat?",
|
||||
"Thorough explanation": "Důkladné vysvětlení",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Přemýšlel po dobu {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Přemýšlel po dobu {{DURATION}} sekund",
|
||||
"Thought for less than a second": "Přemýšlel méně než sekundu",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klik her for at uploade en workflow.json fil",
|
||||
"click here.": "klik her.",
|
||||
"Click on the user role button to change a user's role.": "Klik på bruger ikonet for at ændre brugerens rolle.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skriveadgang til udklipsholderen ikke tilladt. Tjek venligst indstillingerne i din browser for at give adgang.",
|
||||
"Clone": "Klon",
|
||||
"Clone Chat": "Klon chat",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Eksperimentel",
|
||||
"Explain": "Forklar",
|
||||
"Explore the cosmos": "Udforsk kosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksportér",
|
||||
"Export All Archived Chats": "Eksportér alle arkiverede chats",
|
||||
"Export All Chats (All Users)": "Eksportér alle chats (alle brugere)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth-ID",
|
||||
"October": "Oktober",
|
||||
"Off": "Fra",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright timeout (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Gennemgå omhyggeligt følgende advarsler:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Luk ikke indstillingerne, mens modellen indlæses.",
|
||||
"Please enter a message or attach a file.": "Indtast en besked eller vedhæft en fil.",
|
||||
"Please enter a prompt": "Indtast en prompt",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Indtast en gyldig sti",
|
||||
"Please enter a valid URL": "Indtast en gyldig URL",
|
||||
"Please enter a valid URL.": "Indtast en gyldig URL.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Udfyld alle felter.",
|
||||
"Please register the OAuth client": "Registrer venligst OAuth-klienten",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Gem venligst forbindelsen for at bevare OAuth-klientoplysningerne og ændr ikke ID'et",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Undersøger",
|
||||
"Quick Actions": "Hurtig-handlinger",
|
||||
"RAG Template": "RAG-skabelon",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Rating",
|
||||
"Re-rank models by topic similarity": "Omarranger modeller efter emne lighed",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dette vil slette alle modeller, inklusive brugerdefinerede modeller og kan ikke fortrydes.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?",
|
||||
"Thorough explanation": "Grundig forklaring",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Tænkte i {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Tænkte i {{DURATION}} sekunder",
|
||||
"Thought for less than a second": "Tænkte i mindre end et sekund",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "Vis/skjul sidebar",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klicken Sie hier, um eine workflow.json hochzuladen.",
|
||||
"click here.": "hier klicken.",
|
||||
"Click on the user role button to change a user's role.": "Klicken Sie auf die Benutzerrolle, um sie zu ändern.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Klicke um ID zu kopieren",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Schreibzugriff auf Zwischenablage verweigert. Bitte prüfen Sie Ihre Browsereinstellungen.",
|
||||
"Clone": "Klonen",
|
||||
"Clone Chat": "Chat klonen",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Experimentell",
|
||||
"Explain": "Erklären",
|
||||
"Explore the cosmos": "Den Kosmos erkunden",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportieren",
|
||||
"Export All Archived Chats": "Alle archivierten Chats exportieren",
|
||||
"Export All Chats (All Users)": "Alle Chats exportieren (Alle Benutzer)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth-ID",
|
||||
"October": "Oktober",
|
||||
"Off": "Aus",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Timeout (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket-URL",
|
||||
"Please carefully review the following warnings:": "Bitte lesen Sie die folgenden Warnungen sorgfältig durch:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Bitte schließen Sie die Einstellungsseite nicht, während das Modell lädt.",
|
||||
"Please enter a message or attach a file.": "Bitte geben Sie eine Nachricht ein oder hängen Sie eine Datei an.",
|
||||
"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Bitte geben Sie einen gültigen Pfad ein",
|
||||
"Please enter a valid URL": "Bitte geben Sie eine gültige URL ein",
|
||||
"Please enter a valid URL.": "Bitte geben Sie eine gültige URL ein.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
|
||||
"Please register the OAuth client": "Bitte registrieren Sie den OAuth-Client",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Bitte speichern Sie die Verbindung, um die OAuth-Client-Informationen zu sichern, und ändern Sie die ID nicht.",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Frage ab...",
|
||||
"Quick Actions": "Schnellaktionen",
|
||||
"RAG Template": "RAG-Vorlage",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Bewerte {{rating}} von 10",
|
||||
"Rating": "Bewertung",
|
||||
"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dies löscht alle Modelle, einschließlich benutzerdefinierter Modelle, und kann nicht rückgängig gemacht werden.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird der Wissensspeicher zurückgesetzt und alle Dateien werden synchronisiert. Möchten Sie fortfahren?",
|
||||
"Thorough explanation": "Ausführliche Erklärung",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Nachgedacht für {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Nachgedacht für {{DURATION}} Sekunden",
|
||||
"Thought for less than a second": "Für weniger als eine Sekunde nachgedacht",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "{{COUNT}} Quellen umschalten",
|
||||
"Toggle 1 source": "Eine Quelle umschalten",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Diktieren umschalten",
|
||||
"Toggle Sidebar": "Seitenleiste umschalten",
|
||||
"Toggle status history": "Status Updates umschalten",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "click here. Such click.",
|
||||
"Click on the user role button to change a user's role.": "Click user role button to change role.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Much Experiment",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Export All Chats (All Doggos)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "",
|
||||
"Off": "Off",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG Template",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Κάντε κλικ εδώ για να ανεβάσετε ένα αρχείο workflow.json.",
|
||||
"click here.": "κλικ εδώ.",
|
||||
"Click on the user role button to change a user's role.": "Κάντε κλικ στο κουμπί ρόλου χρήστη για να αλλάξετε το ρόλο ενός χρήστη.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Άρνηση δικαιώματος εγγραφής στο πρόχειρο. Παρακαλώ ελέγξτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
|
||||
"Clone": "Κλώνος",
|
||||
"Clone Chat": "Κλωνοποίηση Συνομιλίας",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Πειραματικό",
|
||||
"Explain": "Επεξήγηση",
|
||||
"Explore the cosmos": "Εξερευνήστε το σύμπαν",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Εξαγωγή",
|
||||
"Export All Archived Chats": "Εξαγωγή Όλων των Αρχειοθετημένων Συνομιλιών",
|
||||
"Export All Chats (All Users)": "Εξαγωγή Όλων των Συνομιλιών (Όλοι οι Χρήστες)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Νοέμβριος",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Οκτώβριος",
|
||||
"Off": "Ανενεργό",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Παρακαλώ αναθεωρήστε προσεκτικά τις ακόλουθες προειδοποιήσεις:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Παρακαλώ εισάγετε μια προτροπή",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Παρακαλώ συμπληρώστε όλα τα πεδία.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Πρότυπο RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Βαθμολογία",
|
||||
"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων και δεν μπορεί να αναιρεθεί.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Αυτό θα επαναφέρει τη βάση γνώσης και θα συγχρονίσει όλα τα αρχεία. Θέλετε να συνεχίσετε;",
|
||||
"Thorough explanation": "Λεπτομερής εξήγηση",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Σκέφτηκε για {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Σκέφτηκε για {{DURATION}} δευτερόλεπτα",
|
||||
"Thought for less than a second": "Σκέφτηκε για λιγότερο από ένα δευτερόλεπτο",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "",
|
||||
"Click on the user role button to change a user's role.": "",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "",
|
||||
"Off": "",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,10 +331,11 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "",
|
||||
"Click on the user role button to change a user's role.": "",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "",
|
||||
"Clone Chat": "",
|
||||
"Clone of {{TITLE}}": "",
|
||||
@@ -821,6 +822,8 @@
|
||||
"Experimental": "",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
@@ -1494,15 +1497,16 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid ID": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please enter a valid JSON spec": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1549,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1930,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1958,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Pulsa aquí para subir un archivo workflow.json",
|
||||
"click here.": "Pulsa aquí.",
|
||||
"Click on the user role button to change a user's role.": "Pulsa en el botón rol de usuario para cambiar su rol.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Pulsa para copiar ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisos de escritura del portapapeles denegado. Por favor, comprueba la configuración de tu navegador para otorgar el permiso necesario.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "Clonar Chat",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "Explicar",
|
||||
"Explore the cosmos": "Explora el cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar Todos los Chats Archivados",
|
||||
"Export All Chats (All Users)": "Exportar Todos los Chats (Todos los Usuarios)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Noviembre",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Octubre",
|
||||
"Off": "Desactivado",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Tiempo Límite de Espera (ms) de Playwright",
|
||||
"Playwright WebSocket URL": "URL de WebSocket de Playwright",
|
||||
"Please carefully review the following warnings:": "Por favor revisar cuidadosamente los siguientes avisos:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Por favor no cerrar la página de ajustes mientras se está descargando el modelo.",
|
||||
"Please enter a message or attach a file.": "Por favor, ingresa un mensaje o adjunta un archivo.",
|
||||
"Please enter a prompt": "Por favor, ingresa un indicador",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Por favor, ingresa una ruta válida",
|
||||
"Please enter a valid URL": "Por favor, ingresa una URL válida",
|
||||
"Please enter a valid URL.": "Por favor, ingresa una URL válida.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Por favor rellenar todos los campos.",
|
||||
"Please register the OAuth client": "Por favor, registra el cliente OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Por favor, guarde la conexión para conservar la información del cliente OAuth y no cambie el ID",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "Consultando",
|
||||
"Quick Actions": "Acciones Rápida",
|
||||
"RAG Template": "Plantilla del RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Calificación de {{rating}} sobre 10",
|
||||
"Rating": "Calificación",
|
||||
"Re-rank models by topic similarity": "Reclasificar modelos por similitud temática",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Esto eliminará todos los modelos, incluidos los modelos personalizados y no se puede deshacer.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reinicializará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
|
||||
"Thorough explanation": "Explicación exhaustiva",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Pensando durante {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Pensando durante {{DURATION}} segundos",
|
||||
"Thought for less than a second": "Pensando durante menos de un segundo",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Des/Plegar {{COUNT}} fuentes",
|
||||
"Toggle 1 source": "Des/Plegar 1 fuente",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "Des/Plegar la Barra Lateral",
|
||||
"Toggle status history": "Des/Plegar historial de estado",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klõpsake siia workflow.json faili üleslaadimiseks.",
|
||||
"click here.": "klõpsake siia.",
|
||||
"Click on the user role button to change a user's role.": "Kasutaja rolli muutmiseks klõpsake kasutaja rolli nuppu.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Klõpsa ID kopeerimiseks",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Lõikelaua kirjutamisõigust ei antud. Kontrollige oma brauseri seadeid, et anda vajalik juurdepääs.",
|
||||
"Clone": "Klooni",
|
||||
"Clone Chat": "Klooni vestlus",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Katsetuslik",
|
||||
"Explain": "Selgita",
|
||||
"Explore the cosmos": "Avasta kosmost",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Ekspordi",
|
||||
"Export All Archived Chats": "Ekspordi kõik arhiveeritud vestlused",
|
||||
"Export All Chats (All Users)": "Ekspordi kõik vestlused (kõik kasutajad)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Oktoober",
|
||||
"Off": "Väljas",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Aegumine (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Palun vaadake hoolikalt läbi järgmised hoiatused:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Palun ärge sulgege seadete lehte mudeli laadimise ajal.",
|
||||
"Please enter a message or attach a file.": "Palun sisestage sõnum või lisage fail.",
|
||||
"Please enter a prompt": "Palun sisestage sisend",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Palun sisestage kehtiv tee",
|
||||
"Please enter a valid URL": "Palun sisestage kehtiv URL",
|
||||
"Please enter a valid URL.": "Palun sisestage kehtiv URL.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Palun täitke kõik väljad.",
|
||||
"Please register the OAuth client": "Palun registreerige OAuth klient",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Palun salvestage ühendus, et säilitada OAuth kliendi teave, ja ärge muutke ID-d",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Pärimine",
|
||||
"Quick Actions": "Kiirtoimingud",
|
||||
"RAG Template": "RAG mall",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Hinda {{rating}} 10-st",
|
||||
"Rating": "Hinnang",
|
||||
"Re-rank models by topic similarity": "Järjesta mudelid teema sarnasuse alusel ümber",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "See kustutab kõik mudelid, sealhulgas kohandatud mudelid, ja seda ei saa tagasi võtta.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "See lähtestab teadmiste baasi ja sünkroniseerib kõik failid. Kas soovite jätkata?",
|
||||
"Thorough explanation": "Põhjalik selgitus",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Mõtles {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Mõtles {{DURATION}} sekundit",
|
||||
"Thought for less than a second": "Mõtles vähem kui sekundi",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Täna kell {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Lülita {{COUNT}} allikat",
|
||||
"Toggle 1 source": "Lülita 1 allikas",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Lülita dikteerimine",
|
||||
"Toggle Sidebar": "Lülita külgriba",
|
||||
"Toggle status history": "Lülita olekuajalugu",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klikatu hemen workflow.json fitxategia igotzeko.",
|
||||
"click here.": "klikatu hemen.",
|
||||
"Click on the user role button to change a user's role.": "Klikatu erabiltzaile rolaren botoian erabiltzaile baten rola aldatzeko.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Arbelerako idazteko baimena ukatua. Mesedez, egiaztatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
|
||||
"Clone": "Klonatu",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Esperimentala",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "Esploratu kosmosa",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Esportatu",
|
||||
"Export All Archived Chats": "Esportatu Artxibatutako Txat Guztiak",
|
||||
"Export All Chats (All Users)": "Esportatu Txat Guztiak (Erabiltzaile Guztiak)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Azaroa",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Urria",
|
||||
"Off": "Itzalita",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Mesedez, berrikusi arretaz hurrengo oharrak:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Mesedez, sartu prompt bat",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Mesedez, bete eremu guztiak.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG txantiloia",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Balorazioa",
|
||||
"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne, eta ezin da desegin.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Honek ezagutza-basea berrezarri eta fitxategi guztiak sinkronizatuko ditu. Jarraitu nahi duzu?",
|
||||
"Thorough explanation": "Azalpen sakona",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "برای آپلود فایل workflow.json اینجا کلیک کنید.",
|
||||
"click here.": "اینجا کلیک کنید.",
|
||||
"Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "دسترسی نوشتن در کلیپ\u200cبورد رد شد. لطفاً تنظیمات مرورگر خود را برای اعطای دسترسی لازم بررسی کنید.",
|
||||
"Clone": "کلون",
|
||||
"Clone Chat": "کلون گفتگو",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "آزمایشی",
|
||||
"Explain": "توضیح",
|
||||
"Explore the cosmos": "کاوش کیهان",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "خروجی گرفتن",
|
||||
"Export All Archived Chats": "خروجی گرفتن تمام گفتگوهای بایگانی شده",
|
||||
"Export All Chats (All Users)": "خروجی گرفتن همه گفتگو\u200cها (همه کاربران)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "نوامبر",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "شناسه OAuth",
|
||||
"October": "اکتبر",
|
||||
"Off": "خاموش",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "مهلت زمانی پلی\u200cرایت (میلی\u200cثانیه)",
|
||||
"Playwright WebSocket URL": "آدرس وب\u200cسوکت پلی\u200cرایت",
|
||||
"Please carefully review the following warnings:": "لطفاً هشدارهای زیر را با دقت بررسی کنید:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "لطفاً در حین بارگیری مدل، صفحه تنظیمات را نبندید.",
|
||||
"Please enter a message or attach a file.": "لطفاً یک پیام وارد کنید یا یک فایل پیوست کنید.",
|
||||
"Please enter a prompt": "لطفاً یک پرامپت وارد کنید",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "لطفاً یک مسیر معتبر وارد کنید",
|
||||
"Please enter a valid URL": "لطفاً یک URL معتبر وارد کنید",
|
||||
"Please enter a valid URL.": "لطفاً یک آدرس URL معتبر وارد کنید.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "لطفاً همه فیلدها را پر کنید.",
|
||||
"Please register the OAuth client": "لطفاً کلاینت OAuth را ثبت کنید",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "لطفاً اتصال را ذخیره کنید تا اطلاعات کلاینت OAuth ماندگار شود و شناسه را تغییر ندهید",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "در حال پرس\u200cوجو",
|
||||
"Quick Actions": "اقدامات سریع",
|
||||
"RAG Template": "RAG الگوی",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "امتیازدهی",
|
||||
"Re-rank models by topic similarity": "رتبه\u200cبندی مجدد مدل\u200cها براساس شباهت موضوعی",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "این همه مدل\u200cها از جمله مدل\u200cهای سفارشی را حذف خواهد کرد و قابل بازگشت نیست.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "این پایگاه دانش را بازنشانی کرده و همه فایل\u200cها را همگام\u200cسازی خواهد کرد. آیا می\u200cخواهید ادامه دهید؟",
|
||||
"Thorough explanation": "توضیح کامل",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "فکر کردن برای {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "فکر کردن برای {{DURATION}} ثانیه",
|
||||
"Thought for less than a second": "کمتر از یک ثانیه فکر کرد",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "امروز در {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "تغییر وضعیت نوار کناری",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klikkaa tästä ladataksesi workflow.json-tiedosto.",
|
||||
"click here.": "klikkaa tästä.",
|
||||
"Click on the user role button to change a user's role.": "Klikkaa käyttäjän roolipainiketta vaihtaaksesi käyttäjän roolia.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Klikkaa kopioidaksesi ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Leikepöydälle kirjoitusoikeus evätty. Tarkista selaimesi asetukset ja myönnä tarvittavat käyttöoikeudet.",
|
||||
"Clone": "Kloonaa",
|
||||
"Clone Chat": "Kloonaa keskustelu",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Kokeellinen",
|
||||
"Explain": "Selitä",
|
||||
"Explore the cosmos": "Tutki avaruutta",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Vie",
|
||||
"Export All Archived Chats": "Vie kaikki arkistoidut keskustelut",
|
||||
"Export All Chats (All Users)": "Vie kaikki keskustelut (kaikki käyttäjät)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "marraskuu",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth-tunnus",
|
||||
"October": "lokakuu",
|
||||
"Off": "Pois päältä",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright aikakatkaisu (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket verkko-osoite",
|
||||
"Please carefully review the following warnings:": "Tarkista huolellisesti seuraavat varoitukset:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Älä sulje asetussivua mallin latautuessa.",
|
||||
"Please enter a message or attach a file.": "Kirjoita viesti tai liittä tiedosto.",
|
||||
"Please enter a prompt": "Kirjoita kehote",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Kirjoita kelvollinen polku",
|
||||
"Please enter a valid URL": "Kirjoita kelvollinen verkko-osoite",
|
||||
"Please enter a valid URL.": "Kirjoita kelvollinen verkko-osoite",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Täytä kaikki kentät.",
|
||||
"Please register the OAuth client": "Rekisteröi OAuth asiakasohjelma",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Tallenna yhteys, jotta OAuth-asiakastiedot säilyvät, äläkä muuta tunnusta.",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Kysely",
|
||||
"Quick Actions": "Pikatoiminnot",
|
||||
"RAG Template": "RAG-kehote",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Arvostele {{rating}}/10",
|
||||
"Rating": "Arviointi",
|
||||
"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Tämä poistaa kaikki mallit, mukaan lukien mukautetut mallit, eikä sitä voi peruuttaa.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tämä nollaa tietokannan ja synkronoi kaikki tiedostot. Haluatko jatkaa?",
|
||||
"Thorough explanation": "Perusteellinen selitys",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Ajatteli {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Ajatteli {{DURATION}} sekuntia",
|
||||
"Thought for less than a second": "Ajatteli alle sekunnin",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Näytä/piilota {{COUNT}} lähdettä",
|
||||
"Toggle 1 source": "Näytä/piilota 1 lähde",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Sanelu päälle/pois",
|
||||
"Toggle Sidebar": "Näytä/piilota sivupalkki",
|
||||
"Toggle status history": "Näytä/piilota tilahistoria",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Cliquez ici pour téléverser un fichier workflow.json.",
|
||||
"click here.": "cliquez ici.",
|
||||
"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour modifier son rôle.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
|
||||
"Clone": "Cloner",
|
||||
"Clone Chat": "Dupliquer la conversation",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Expérimental",
|
||||
"Explain": "Explique",
|
||||
"Explore the cosmos": "Explorer le cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportation",
|
||||
"Export All Archived Chats": "Exporter toutes les conversations archivées",
|
||||
"Export All Chats (All Users)": "Exporter toutes les conversations (de tous les utilisateurs)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembre",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Octobre",
|
||||
"Off": "Désactivé",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Délai d'attente Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL du websocket Playwright",
|
||||
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Veuillez ne pas fermer les réglages pendant le chargement du modèle.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Veuillez saisir un prompt",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Veuillez entrer un chemin d'accès valide",
|
||||
"Please enter a valid URL": "Veuillez entrer une URL valide",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Veuillez remplir tous les champs.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Modèle RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Note",
|
||||
"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
|
||||
"Thorough explanation": "Explication approfondie",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Réflexion de {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Réflexion pendant {{DURATION}} secondes",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Cliquez ici pour téléverser un fichier workflow.json.",
|
||||
"click here.": "cliquez ici.",
|
||||
"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour modifier son rôle.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Cliquez pour copier l'ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
|
||||
"Clone": "Cloner",
|
||||
"Clone Chat": "Dupliquer la conversation",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Expérimental",
|
||||
"Explain": "Explique",
|
||||
"Explore the cosmos": "Explorer le cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exporter",
|
||||
"Export All Archived Chats": "Exporter toutes les conversations archivées",
|
||||
"Export All Chats (All Users)": "Exporter toutes les conversations (de tous les utilisateurs)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembre",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Octobre",
|
||||
"Off": "Désactivé",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Délai d'attente Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL du websocket Playwright",
|
||||
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Veuillez ne pas fermer les réglages pendant le chargement du modèle.",
|
||||
"Please enter a message or attach a file.": "Veuillez saisir un message ou joindre un fichier.",
|
||||
"Please enter a prompt": "Veuillez saisir un prompt",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Veuillez entrer un chemin d'accès valide",
|
||||
"Please enter a valid URL": "Veuillez entrer une URL valide",
|
||||
"Please enter a valid URL.": "Veuillez entrer une URL valide.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Veuillez remplir tous les champs.",
|
||||
"Please register the OAuth client": "Veuillez enregistrer le client OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Veuillez enregistrer la connexion pour conserver les informations du client OAuth et ne modifiez pas l'ID",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "Requête en cours",
|
||||
"Quick Actions": "Actions rapide",
|
||||
"RAG Template": "Modèle RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Noter {{rating}} sur 10",
|
||||
"Rating": "Note",
|
||||
"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
|
||||
"Thorough explanation": "Explication approfondie",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Réflexion de {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Réflexion pendant {{DURATION}} secondes",
|
||||
"Thought for less than a second": "Réflexion pendant moins d'une seconde",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Afficher/masquer {{COUNT}} sources",
|
||||
"Toggle 1 source": "Afficher/masquer 1 source",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Activer/Désactiver la dictée",
|
||||
"Toggle Sidebar": "Afficher/Masquer la barre latérale",
|
||||
"Toggle status history": "Afficher/masquer l'historique des statuts",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Pica aquí para subir un arquivo workflow.json.",
|
||||
"click here.": "Pica aquí.",
|
||||
"Click on the user role button to change a user's role.": "Pica no botón de roles do usuario para cambiar su rol.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisos de escritura do portapapeles denegados. Por favor, comprueba as configuracions de tu navegador para otorgar o acceso necesario.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "Clonar chat",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "Explicar",
|
||||
"Explore the cosmos": "Explora o cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar todos os chats Arquivados",
|
||||
"Export All Chats (All Users)": "Exportar todos os chats (Todos os usuarios)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Noviembre",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Octubre",
|
||||
"Off": "Desactivado",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Por favor revise con cuidado os siguientes avisos:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Por favor ingrese un prompt",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Por favor llene todos os campos.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Plantilla de RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Calificación",
|
||||
"Re-rank models by topic similarity": "Re-clasificar modelos por similitud de tema",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Esto eliminará todos os modelos, incluidos os modelos personalizados y no se puede deshacer.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de coñecementos y sincronizará todos os arquivos. ¿Desea continuar?",
|
||||
"Thorough explanation": "Explicación exhaustiva",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Pensamiento para {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "לחץ כאן.",
|
||||
"Click on the user role button to change a user's role.": "לחץ על כפתור תפקיד המשתמש כדי לשנות את תפקיד המשתמש.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "שיבוט",
|
||||
"Clone Chat": "",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "ניסיוני",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "ייצא",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "נובמבר",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "אוקטובר",
|
||||
"Off": "כבוי",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "תבנית RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "תיאור מפורט",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "यहाँ क्लिक करें।",
|
||||
"Click on the user role button to change a user's role.": "उपयोगकर्ता की भूमिका बदलने के लिए उपयोगकर्ता भूमिका बटन पर क्लिक करें।",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "क्लोन",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "प्रयोगात्मक",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "निर्यातित माल",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "नवंबर",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "अक्टूबर",
|
||||
"Off": "बंद",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG टेम्पलेट",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "विस्तृत व्याख्या",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "kliknite ovdje.",
|
||||
"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "Kloniraj",
|
||||
"Clone Chat": "",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Eksperimentalno",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Izvoz",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Studeni",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "Listopad",
|
||||
"Off": "Isključeno",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG predložak",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Detaljno objašnjenje",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Kattints ide egy workflow.json fájl feltöltéséhez.",
|
||||
"click here.": "kattints ide.",
|
||||
"Click on the user role button to change a user's role.": "Kattints a felhasználói szerep gombra a felhasználó szerepének módosításához.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Vágólap írási engedély megtagadva. Kérjük, ellenőrizd a böngésző beállításait a szükséges hozzáférés megadásához.",
|
||||
"Clone": "Klónozás",
|
||||
"Clone Chat": "Beszélgetés klónozása",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Kísérleti",
|
||||
"Explain": "Magyarázat",
|
||||
"Explore the cosmos": "Fedezd fel a kozmoszt",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportálás",
|
||||
"Export All Archived Chats": "Minden archivált csevegés exportálása",
|
||||
"Export All Chats (All Users)": "Minden beszélgetés exportálása (minden felhasználó)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth azonosító",
|
||||
"October": "Október",
|
||||
"Off": "Ki",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Kérjük, gondosan tekintse át a következő figyelmeztetéseket:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Kérjük, ne zárja be a beállítások oldalt a modell betöltése közben.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Kérjük, adjon meg egy promptot",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Kérjük, adjon meg egy érvényes útvonalat",
|
||||
"Please enter a valid URL": "Kérjük, adjon meg egy érvényes URL-t",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Kérjük, töltse ki az összes mezőt.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG sablon",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Értékelés",
|
||||
"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Ez törölni fogja az összes modellt, beleértve az egyéni modelleket is, és nem vonható vissza.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?",
|
||||
"Thorough explanation": "Alapos magyarázat",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Gondolkodott {{DURATION}} ideig",
|
||||
"Thought for {{DURATION}} seconds": "Gondolkodott {{DURATION}} másodpercig",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "Klik di sini.",
|
||||
"Click on the user role button to change a user's role.": "Klik tombol peran pengguna untuk mengubah peran pengguna.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Izin menulis papan klip ditolak. Periksa pengaturan peramban Anda untuk memberikan akses yang diperlukan.",
|
||||
"Clone": "Kloning",
|
||||
"Clone Chat": "",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "Percobaan",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Ekspor",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Ekspor Semua Obrolan (Semua Pengguna)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Oktober",
|
||||
"Off": "Mati",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Templat RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Penjelasan menyeluruh",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Cliceáil anseo chun comhad workflow.json a uaslódáil.",
|
||||
"click here.": "cliceáil anseo.",
|
||||
"Click on the user role button to change a user's role.": "Cliceáil ar an gcnaipe ról úsáideora chun ról úsáideora a athrú.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Cliceáil chun an t-aitheantas a chóipeáil",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Diúltaíodh cead scríofa an ghearrthaisce. Seiceáil socruithe do bhrabhsálaí chun an rochtain riachtanach a dheonú.",
|
||||
"Clone": "Clón",
|
||||
"Clone Chat": "Comhrá Clón",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Turgnamhach",
|
||||
"Explain": "Mínigh",
|
||||
"Explore the cosmos": "Déan iniúchadh ar an cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Easpórtáil",
|
||||
"Export All Archived Chats": "Easpórtáil Gach Comhrá Cartlainne",
|
||||
"Export All Chats (All Users)": "Easpórtáil gach comhrá (Gach Úsáideoir)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Samhain",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "Aitheantas OAuth",
|
||||
"October": "Deireadh Fómhair",
|
||||
"Off": "As",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Teorainn Ama drámadóra (ms)",
|
||||
"Playwright WebSocket URL": "URL drámadóir WebSocket",
|
||||
"Please carefully review the following warnings:": "Déan athbhreithniú cúramach ar na rabhaidh seo a leanas le do thoil:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Ná dún leathanach na socruithe agus an tsamhail á luchtú.",
|
||||
"Please enter a message or attach a file.": "Cuir isteach teachtaireacht nó ceangail comhad le do thoil.",
|
||||
"Please enter a prompt": "Cuir isteach leid",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Cuir isteach cosán bailí",
|
||||
"Please enter a valid URL": "Cuir isteach URL bailí",
|
||||
"Please enter a valid URL.": "Cuir isteach URL bailí le do thoil.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
|
||||
"Please register the OAuth client": "Cláraigh an cliant OAuth le do thoil",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Sábháil an nasc le go gcoimeádfar faisnéis an chliaint OAuth agus ná hathraigh an ID.",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Ag fiosrú",
|
||||
"Quick Actions": "Gníomhartha Tapa",
|
||||
"RAG Template": "Teimpléad RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Rátáil {{rating}} as 10",
|
||||
"Rating": "Rátáil",
|
||||
"Re-rank models by topic similarity": "Athrangú samhlacha de réir cosúlachta topaice",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Scriosfaidh sé seo gach samhail, lena n-áirítear samhlacha saincheaptha, agus ní féidir é a chealú.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
|
||||
"Thorough explanation": "Míniú críochnúil",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Smaoineamh ar {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Smaoineamh ar feadh {{DURATION}} soicind",
|
||||
"Thought for less than a second": "Smaoinigh mé ar feadh níos lú ná soicind",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Athraigh {{COUNT}} foinsí",
|
||||
"Toggle 1 source": "Athraigh foinse amháin",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Athraigh Deachtú",
|
||||
"Toggle Sidebar": "Barra Taobh a Athraigh",
|
||||
"Toggle status history": "Athraigh stair stádais",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Clicca qui per caricare un file workflow.json.",
|
||||
"click here.": "clicca qui.",
|
||||
"Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Autorizzazione di scrittura negli appunti negata. Controlla le impostazioni del browser per concedere l'accesso necessario.",
|
||||
"Clone": "Clone",
|
||||
"Clone Chat": "Clona Chat",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Sperimentale",
|
||||
"Explain": "Spiega",
|
||||
"Explore the cosmos": "Esplora il cosmo",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Esportazione",
|
||||
"Export All Archived Chats": "Esporta Tutte le Chat Archiviate",
|
||||
"Export All Chats (All Users)": "Esporta Tutte le Chat (Tutti gli Utenti)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembre",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "Ottobre",
|
||||
"Off": "Disattivato",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Timeout per Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL WebSocket per Playwright",
|
||||
"Please carefully review the following warnings:": "Si prega di esaminare attentamente i seguenti avvisi:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Si prega di non chiudere la pagina delle impostazioni durante il caricamento del modello.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Si prega di inserire un prompt",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Si prega di inserire un percorso valido",
|
||||
"Please enter a valid URL": "Si prega di inserire un URL valido",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Si prega di compilare tutti i campi.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Modello RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Valutazione",
|
||||
"Re-rank models by topic similarity": "Riordina i modelli in base alla somiglianza degli argomenti",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Questa opzione eliminerà tutti i modelli, compresi i modelli personalizzati e non può essere annullata.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Questa opzione ripristinerà la base di conoscenza e sincronizzerà tutti i file. Vuoi continuare?",
|
||||
"Thorough explanation": "Spiegazione dettagliata",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Pensiero per {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Pensiero per {{DURATION}} secondi",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "workflow.jsonファイルをアップロードするにはここをクリックしてください。",
|
||||
"click here.": "ここをクリックしてください。",
|
||||
"Click on the user role button to change a user's role.": "ユーザーのロールを変更するには、ユーザーロールボタンをクリックしてください。",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "クリップボードへの書き込み許可がありません。ブラウザ設定を確認し許可してください。",
|
||||
"Clone": "クローン",
|
||||
"Clone Chat": "チャットをクローン",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "実験的",
|
||||
"Explain": "説明",
|
||||
"Explore the cosmos": "宇宙を探検",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "エクスポート",
|
||||
"Export All Archived Chats": "すべてのアーカイブチャットをエクスポート",
|
||||
"Export All Chats (All Users)": "すべてのチャットをエクスポート (すべてのユーザー)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "11月",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "10月",
|
||||
"Off": "オフ",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright タイムアウト (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "次の警告を慎重に確認してください:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "モデルの読み込み中に設定ページを閉じないでください。",
|
||||
"Please enter a message or attach a file.": "メッセージを入力するか、ファイルを添付してください",
|
||||
"Please enter a prompt": "プロンプトを入力してください",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "有効なパスを入力してください",
|
||||
"Please enter a valid URL": "有効なURLを入力してください",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "すべてのフィールドを入力してください。",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "照会中",
|
||||
"Quick Actions": "クイックアクション",
|
||||
"RAG Template": "RAG テンプレート",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "評価",
|
||||
"Re-rank models by topic similarity": "トピックの類似性に基づいてモデルを再ランク付け",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "これはカスタムモデルを含むすべてのモデルを削除し、元に戻すことはできません。",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "これは知識ベースをリセットし、すべてのファイルを同期します。続けますか?",
|
||||
"Thorough explanation": "詳細な説明",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}}間の思考",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}}秒間の思考",
|
||||
"Thought for less than a second": "1秒未満の思考",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "今日 {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "音声入力の切り替える",
|
||||
"Toggle Sidebar": "サイドバーを切り替える",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "დააწკაპუნეთ აქ.",
|
||||
"Click on the user role button to change a user's role.": "მომხმარებლის როლის შესაცვლელად დააწკაპუნეთ მომხმარებლის როლზე.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "კლონი",
|
||||
"Clone Chat": "ჩატის დაკლონვა",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "ექსპერიმენტული",
|
||||
"Explain": "ახსნა",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "გატანა",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ყველა ჩატის გატანა (ყველა მომხმარებელი)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "ნოემბერი",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "ოქტომბერი",
|
||||
"Off": "გამორთ",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "გთხოვთ, შეიყვანოთ სწორი URL",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "შეავსეთ ყველა ველი ბოლომდე.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "მოთხოვნა",
|
||||
"Quick Actions": "სწრაფი მოქმედებები",
|
||||
"RAG Template": "RAG შაბლონი",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "ხმის მიცემა",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "საფუძვლიანი ახსნა",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "ვიფიქრე {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "ვიფიქრე {{DURATION}} წამი",
|
||||
"Thought for less than a second": "ვიფიქრე წამზე ნაკლები",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Sit da akken ad tzedmeḍ afaylu workflow.json.",
|
||||
"click here.": "sit da.",
|
||||
"Click on the user role button to change a user's role.": "Tekki ɣef tqeffalt n temlilt n useqdac akken ad tbeddleḍ tamlilt n useqdac.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Yettwagdel unekcum ɣer tira. Ssefqed iɣewwaṛen-ik n yiminig ma ulac aɣilif akken ad tkecmeḍ ɣer wayen ilaqen.",
|
||||
"Clone": "Sleg",
|
||||
"Clone Chat": "Sleg adiwenni",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Armitan",
|
||||
"Explain": "Segzi",
|
||||
"Explore the cosmos": "Snirem akusmus",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Asifeḍ",
|
||||
"Export All Archived Chats": "Kter akk Archived Chats",
|
||||
"Export All Chats (All Users)": "Kter akk idiwenniyen (n yiseqdacen akk)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Wambeṛ",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "Asulay OAuth",
|
||||
"October": "Tubeṛ",
|
||||
"Off": "Yensa",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Tanzagt n ugani n Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL n websocket Playwright",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "Ttxil-k·m sekcem-d izen neɣ seddu afaylu.",
|
||||
"Please enter a prompt": "Ttxil-k·m, sekcem-d aneftaɣ",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Ttxil-k·m, sekcem-d abrid iṣeḥḥan",
|
||||
"Please enter a valid URL": "Ma ulac aɣilif, sekcem URL tameɣtut",
|
||||
"Please enter a valid URL.": "Ttxil, awi-d URL tameɣtut.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "Tigawin tiruradin",
|
||||
"RAG Template": "Tamudemt RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Asezmel",
|
||||
"Re-rank models by topic similarity": "Imudam i d-yettuɣalen ɣer sdat s usentel yecban wa",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Aya ad yekkes akk timudmin gar-asent timudmin tudmawanin yerna ur yezmir yiwen ad tent-id-yerr.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aya ad yales taffa n tmussni u ad yemtawi akk ifuyla. Tebɣiḍ ad tkemmleḍ?",
|
||||
"Thorough explanation": "Asegzi leqqayen",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Ixemmem {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Axemmem ɣef {{DURATION}} n tsinin",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "workflow.json 파일을 업로드하려면 여기를 클릭하세요",
|
||||
"click here.": "여기를 클릭하세요.",
|
||||
"Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "클립보드 쓰기 권한이 거부되었습니다. 브라우저 설정에서 권한을 허용해주세요.",
|
||||
"Clone": "복제",
|
||||
"Clone Chat": "채팅 복제",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "실험적",
|
||||
"Explain": "설명",
|
||||
"Explore the cosmos": "우주 탐험",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "내보내기",
|
||||
"Export All Archived Chats": "모든 보관된 채팅 내보내기",
|
||||
"Export All Chats (All Users)": "모든 채팅 내보내기(모든 사용자)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "11월",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "10월",
|
||||
"Off": "끄기",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright 시간 초과 (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "다음 주의를 조심히 확인해주십시오",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "모델을 로드하는 동안 설정 페이지를 닫지 마세요.",
|
||||
"Please enter a message or attach a file.": "메시지를 입력하거나 파일을 첨부해 주세요.",
|
||||
"Please enter a prompt": "프롬프트를 입력해주세요",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "올바른 경로를 입력하세요",
|
||||
"Please enter a valid URL": "올바른 URL을 입력하세요",
|
||||
"Please enter a valid URL.": "올바른 URL을 입력하세요.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "모두 빈칸없이 채워주세요",
|
||||
"Please register the OAuth client": "OAuth clith를 등록해주세요",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "OAuth 클라이언트 정보를 저장하려면 연결을 저장하고 ID를 변경하지 마세요.",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "쿼리 진행중",
|
||||
"Quick Actions": "빠른 작업",
|
||||
"RAG Template": "RAG 템플릿",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "평가",
|
||||
"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "이렇게 하면 사용자 지정 모델을 포함한 모든 모델이 삭제되며 실행 취소할 수 없습니다.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?",
|
||||
"Thorough explanation": "완전한 설명",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} 동안 생각함",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}}초 동안 생각함",
|
||||
"Thought for less than a second": "1초 미만 동안 생각함",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "paspauskite čia.",
|
||||
"Click on the user role button to change a user's role.": "Paspauskite ant naudotojo rolės mygtuko tam, kad pakeisti naudotojo rolę.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Iškarpinės naudojimas neleidžiamas naršyklės.",
|
||||
"Clone": "Klonuoti",
|
||||
"Clone Chat": "",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Eksperimentinis",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksportuoti",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Eksportuoti visų naudotojų visus pokalbius",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "lapkritis",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "spalis",
|
||||
"Off": "Išjungta",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Peržiūrėkite šiuos perspėjimus:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG šablonas",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Platus paaiškinimas",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Noklikšķiniet šeit, lai augšupielādētu workflow.json failu.",
|
||||
"click here.": "noklikšķiniet šeit.",
|
||||
"Click on the user role button to change a user's role.": "Noklikšķiniet uz lietotāja lomas pogas, lai mainītu lietotāja lomu.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Starpliktuves rakstīšanas atļauja liegta. Lūdzu, pārbaudiet pārlūka iestatījumus, lai piešķirtu nepieciešamo piekļuvi.",
|
||||
"Clone": "Klonēt",
|
||||
"Clone Chat": "Klonēt tērzēšanu",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Eksperimentāls",
|
||||
"Explain": "Paskaidrot",
|
||||
"Explore the cosmos": "Izpētiet cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksportēt",
|
||||
"Export All Archived Chats": "Eksportēt visas arhivētās tērzēšanas",
|
||||
"Export All Chats (All Users)": "Eksportēt visas tērzēšanas (visi lietotāji)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembris",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Oktobris",
|
||||
"Off": "Izslēgts",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright taimauts (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Lūdzu, rūpīgi pārskatiet šādus brīdinājumus:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Lūdzu, neaizveriet iestatījumu lapu, kamēr modelis tiek ielādēts.",
|
||||
"Please enter a message or attach a file.": "Lūdzu, ievadiet ziņojumu vai pievienojiet failu.",
|
||||
"Please enter a prompt": "Lūdzu, ievadiet uzvedni",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Lūdzu, ievadiet derīgu ceļu",
|
||||
"Please enter a valid URL": "Lūdzu, ievadiet derīgu URL",
|
||||
"Please enter a valid URL.": "Lūdzu, ievadiet derīgu URL.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Lūdzu, aizpildiet visus laukus.",
|
||||
"Please register the OAuth client": "Lūdzu, reģistrējiet OAuth klientu",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Lūdzu, saglabājiet savienojumu, lai saglabātu OAuth klienta informāciju, un nemainiet ID",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "Vaicā",
|
||||
"Quick Actions": "Ātrās darbības",
|
||||
"RAG Template": "RAG veidne",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Vērtējums",
|
||||
"Re-rank models by topic similarity": "Pārkārtot modeļus pēc tēmas līdzības",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Tas dzēsīs visus modeļus, ieskaitot pielāgotos modeļus, un to nevar atsaukt.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tas atiestatīs zināšanu bāzi un sinhronizēs visus failus. Vai vēlaties turpināt?",
|
||||
"Thorough explanation": "Pamatīgs skaidrojums",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Domāja {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Domāja {{DURATION}} sekundes",
|
||||
"Thought for less than a second": "Domāja mazāk par sekundi",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Šodien plkst. {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "Pārslēgt sānjoslu",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klik di sini untuk memuat naik fail workflow.json.",
|
||||
"click here.": "klik disini.",
|
||||
"Click on the user role button to change a user's role.": "Klik pada butang peranan pengguna untuk menukar peranan pengguna",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Klik untuk menyalin ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Kebenaran untuk menulis di papan klip ditolak. Sila semak tetapan pelayan web anda untuk memberikan akses yang diperlukan",
|
||||
"Clone": "Klon",
|
||||
"Clone Chat": "Klon Sembang",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "Percubaan",
|
||||
"Explain": "Jelaskan",
|
||||
"Explore the cosmos": "Jelajahi alam semesta",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "Eksport Semua Sembang Tersimpan",
|
||||
"Export All Chats (All Users)": "Eksport Semua Perbualan (Semua Pengguna)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Oktober",
|
||||
"Off": "Mati",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Masa Tamat Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL WebSocket Playwright",
|
||||
"Please carefully review the following warnings:": "Sila semak dengan teliti amaran berikut:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Sila jangan tutup halaman tetapan semasa memuat model.",
|
||||
"Please enter a message or attach a file.": "Sila masukkan mesej atau lampirkan fail.",
|
||||
"Please enter a prompt": "Sila masukkan arahan",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "Sila masukkan laluan yang sah",
|
||||
"Please enter a valid URL": "Sila masukkan URL yang sah",
|
||||
"Please enter a valid URL.": "Sila masukkan URL yang sah.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Sila isi semua medan.",
|
||||
"Please register the OAuth client": "Sila daftarkan klien OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Sila simpan sambungan untuk mengekalkan maklumat klien OAuth dan jangan ubah ID",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "Sedang Membuat Pertanyaan",
|
||||
"Quick Actions": "Tindakan Pantas",
|
||||
"RAG Template": "Templat RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Kadar {{rating}} daripada 10",
|
||||
"Rating": "Penilaian",
|
||||
"Re-rank models by topic similarity": "Susun semula model mengikut persamaan topik",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Ini akan memadam semua model termasuk model tersuai dan tidak boleh dibuat asal.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ini akan menetapkan semula pangkalan pengetahuan dan menyegerakkan semua fail. Adakah anda ingin meneruskan?",
|
||||
"Thorough explanation": "Penjelasan menyeluruh",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Berfikir selama {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Berfikir selama {{DURATION}} saat",
|
||||
"Thought for less than a second": "Berfikir selama kurang dari satu saat",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Hari ini pada {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Togol {{COUNT}} sumber",
|
||||
"Toggle 1 source": "Togol 1 sumber",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Togol Diktasi",
|
||||
"Toggle Sidebar": "Togol Sisi Bar",
|
||||
"Toggle status history": "Togol sejarah status",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klikk her for å laste opp en workflow.json-fil.",
|
||||
"click here.": "klikk her.",
|
||||
"Click on the user role button to change a user's role.": "Klikk på knappen Brukerrolle for å endre en brukers rolle.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skrivetilgang til utklippstavlen avslått. Kontroller nettleserinnstillingene for å gi den nødvendige tilgangen.",
|
||||
"Clone": "Klon",
|
||||
"Clone Chat": "Klone chat",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Eksperimentell",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "Utforsk verdensrommet",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksporter",
|
||||
"Export All Archived Chats": "Eksporter alle arkiverte chatter",
|
||||
"Export All Chats (All Users)": "Eksporter alle chatter (alle brukere)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "november",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth-ID",
|
||||
"October": "oktober",
|
||||
"Off": "Av",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Les gjennom følgende advarsler grundig:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Ikke lukk siden Innstillinger mens du laster inn modellen.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Angi en ledetekst",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Fyll i alle felter",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG-mal",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Vurdering",
|
||||
"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dette sletter alle modeller, inkludert tilpassede modeller, og kan ikke angres.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?",
|
||||
"Thorough explanation": "Grundig forklaring",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Tenkte i {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Tenkte i {{DURATION}} sekunder",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klik hier om een workflow.json-bestand te uploaden.",
|
||||
"click here.": "klik hier.",
|
||||
"Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Klembord schrijftoestemming geweigerd. Kijk je browserinstellingen na om de benodigde toestemming te geven.",
|
||||
"Clone": "Kloon",
|
||||
"Clone Chat": "Kloon chat",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Experimenteel",
|
||||
"Explain": "Leg uit",
|
||||
"Explore the cosmos": "Ontdek de kosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exporteren",
|
||||
"Export All Archived Chats": "Exporteer alle gearchiveerde chats",
|
||||
"Export All Chats (All Users)": "Exporteer alle chats (Alle gebruikers)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Oktober",
|
||||
"Off": "Uit",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Beoordeel de volgende waarschuwingen nauwkeurig:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Sluit de instellingenpagina niet terwijl het model geladen wordt.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Voer een prompt in",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Voer alle velden in",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG-sjabloon",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Beoordeling",
|
||||
"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dit zal alle modellen, ook aangepaste modellen, verwijderen en kan niet ongedaan worden gemaakt",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
|
||||
"Thorough explanation": "Grondige uitleg",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Dacht {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Dacht {{DURATION}} seconden",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
|
||||
"Click on the user role button to change a user's role.": "ਉਪਭੋਗਤਾ ਦੀ ਭੂਮਿਕਾ ਬਦਲਣ ਲਈ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "ਕਲੋਨ",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "ਨਿਰਯਾਤ",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ (ਸਾਰੇ ਉਪਭੋਗਤਾ)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "ਨਵੰਬਰ",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "ਅਕਤੂਬਰ",
|
||||
"Off": "ਬੰਦ",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG ਟੈਮਪਲੇਟ",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "Kliknij tutaj, aby przesłać plik workflow.json.",
|
||||
"click here.": "kliknij tutaj.",
|
||||
"Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby ją zmienić.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Odmowa dostępu do schowka. Sprawdź ustawienia przeglądarki.",
|
||||
"Clone": "Sklonuj",
|
||||
"Clone Chat": "Sklonuj czat",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Eksperymentalne",
|
||||
"Explain": "Wyjaśnij",
|
||||
"Explore the cosmos": "Eksploruj kosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksportuj",
|
||||
"Export All Archived Chats": "Eksportuj wszystkie zarchiwizowane czaty",
|
||||
"Export All Chats (All Users)": "Eksportuj wszystkie czaty (Wszyscy użytkownicy)",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "Listopad",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Październik",
|
||||
"Off": "Wył.",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "Timeout Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL WebSocket Playwright",
|
||||
"Please carefully review the following warnings:": "Uważnie przeczytaj poniższe ostrzeżenia:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Nie zamykaj ustawień podczas ładowania modelu.",
|
||||
"Please enter a message or attach a file.": "Wpisz wiadomość lub załącz plik.",
|
||||
"Please enter a prompt": "Wprowadź prompt",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "Wprowadź poprawną ścieżkę",
|
||||
"Please enter a valid URL": "Wprowadź poprawny URL",
|
||||
"Please enter a valid URL.": "Wprowadź poprawny URL.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Wypełnij wszystkie pola.",
|
||||
"Please register the OAuth client": "Zarejestruj klienta OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Zapisz połączenie aby zachować dane klienta OAuth i nie zmieniaj ID",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "Odpytywanie",
|
||||
"Quick Actions": "Szybkie akcje",
|
||||
"RAG Template": "Szablon RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Ocena",
|
||||
"Re-rank models by topic similarity": "Rerankowanie modeli wg podobieństwa tematycznego",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "To usunie wszystkie modele i jest nieodwracalne.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "To zresetuje bazę wiedzy i zsynchronizuje pliki. Kontynuować?",
|
||||
"Thorough explanation": "Dokładne wyjaśnienie",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Myślał przez {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Myślał przez {{DURATION}} sekund",
|
||||
"Thought for less than a second": "Myślał krócej niż sekundę",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Dzisiaj o {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "Przełącz pasek boczny",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Clique aqui para enviar um arquivo workflow.json.",
|
||||
"click here.": "clique aqui.",
|
||||
"Click on the user role button to change a user's role.": "Clique no botão de perfil do usuário para alterar o perfil de um usuário.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Clique para copiar o ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Verifique as configurações do seu navegador para conceder o acesso necessário.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "Clonar Chat",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "Explicar",
|
||||
"Explore the cosmos": "Explorar o cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar todos os chats arquivados",
|
||||
"Export All Chats (All Users)": "Exportar Todos os Chats (Todos os Usuários)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembro",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Outubro",
|
||||
"Off": "Desligado",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Tempo limite do Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL do WebSocket do Playwright",
|
||||
"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Não feche a página de configurações enquanto estiver carregando o modelo.",
|
||||
"Please enter a message or attach a file.": "Por favor, insira uma mensagem ou anexe um arquivo.",
|
||||
"Please enter a prompt": "Por favor, digite um prompt",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Por favor, insira um caminho válido",
|
||||
"Please enter a valid URL": "Por favor, insira uma URL válida",
|
||||
"Please enter a valid URL.": "Por favor, insira uma URL válida",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Por favor, preencha todos os campos.",
|
||||
"Please register the OAuth client": "Por favor, registre o cliente OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Salve a conexão para persistir as informações do cliente OAuth e não altere o ID",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "Consultando",
|
||||
"Quick Actions": "Ações rápidas",
|
||||
"RAG Template": "Modelo RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Avaliar {{rating}} de 10",
|
||||
"Rating": "Avaliação",
|
||||
"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Isto vai excluir todos os modelos, incluindo personalizados e não pode ser desfeito.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
|
||||
"Thorough explanation": "Explicação detalhada",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Pensado por {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Pensado por {{DURATION}} segundos",
|
||||
"Thought for less than a second": "Pensou por menos de um segundo",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} origens",
|
||||
"Toggle 1 source": "Alternar 1 origem",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Alternar Ditado",
|
||||
"Toggle Sidebar": "Alternar barra lateral",
|
||||
"Toggle status history": "Alternar histórico de status",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Clique aqui para carregar um ficheiro workflow.json.",
|
||||
"click here.": "clique aqui.",
|
||||
"Click on the user role button to change a user's role.": "Clique no botão de função do utilizador para alterar a função de um utilizador.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Clique para copiar o ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Por favor, verifique as configurações do seu navegador para conceder o acesso necessário.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "Clonar Conversa",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "Explicar",
|
||||
"Explore the cosmos": "Explorar o cosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportar",
|
||||
"Export All Archived Chats": "Exportar Todas as Conversas Arquivadas",
|
||||
"Export All Chats (All Users)": "Exportar Todas as Conversas (Todos os Utilizadores)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Novembro",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID do OAuth",
|
||||
"October": "Outubro",
|
||||
"Off": "Desligado",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "Tempo limite do Playwright (ms)",
|
||||
"Playwright WebSocket URL": "URL do WebSocket do Playwright",
|
||||
"Please carefully review the following warnings:": "Por favor, reveja cuidadosamente os seguintes avisos:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Por favor, não feche a página de configurações enquanto o modelo está a ser carregado.",
|
||||
"Please enter a message or attach a file.": "Por favor, insira uma mensagem ou anexe um ficheiro.",
|
||||
"Please enter a prompt": "Por favor, insira um prompt",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "Por favor, insira um caminho válido",
|
||||
"Please enter a valid URL": "Por favor, insira uma URL válida",
|
||||
"Please enter a valid URL.": "Por favor, insira uma URL válida.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Por favor, preencha todos os campos.",
|
||||
"Please register the OAuth client": "Por favor, registe o cliente OAuth",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "Por favor, guarde a ligação para persistir as informações do cliente OAuth e não altere o ID",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "A Consultar",
|
||||
"Quick Actions": "Ações Rápidas",
|
||||
"RAG Template": "Modelo RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "Avaliar {{rating}} de 10",
|
||||
"Rating": "Avaliação",
|
||||
"Re-rank models by topic similarity": "Reordenar modelos por similaridade de tópicos",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Isto irá excluir todos os modelos, incluindo os modelos personalizados, e não pode ser desfeito.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Isto irá redefinir a base de conhecimento e sincronizar todos os arquivos. Deseja continuar?",
|
||||
"Thorough explanation": "Explicação Minuciosa",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Pensou por {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Pensou por {{DURATION}} segundos",
|
||||
"Thought for less than a second": "Pensou por menos de um segundo",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} fontes",
|
||||
"Toggle 1 source": "Alternar 1 fonte",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "Alternar Ditado",
|
||||
"Toggle Sidebar": "Alternar Barra Lateral",
|
||||
"Toggle status history": "Alternar histórico de status",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "Faceți clic aici pentru a încărca un fișier workflow.json.",
|
||||
"click here.": "apasă aici.",
|
||||
"Click on the user role button to change a user's role.": "Apasă pe butonul rolului utilizatorului pentru a schimba rolul unui utilizator.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisiunea de scriere în clipboard a fost refuzată. Vă rugăm să verificați setările browserului pentru a acorda accesul necesar.",
|
||||
"Clone": "Clonează",
|
||||
"Clone Chat": "Clonează chat",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Experimental",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportă",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Exportă Toate Conversațiile (Toți Utilizatorii)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Noiembrie",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Octombrie",
|
||||
"Off": "Dezactivat",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Vă rugăm să revizuiți cu atenție următoarele avertismente:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Te rog să introduci un mesaj",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Vă rugăm să completați toate câmpurile.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Șablon RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Evaluare",
|
||||
"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?",
|
||||
"Thorough explanation": "Explicație detaliată",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "Нажмите здесь, чтобы загрузить файл workflow.json.",
|
||||
"click here.": "нажмите здесь.",
|
||||
"Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя, чтобы изменить роль пользователя.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Нажмите, чтобы скопировать ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "В разрешении на запись в буфер обмена отказано. Пожалуйста, проверьте настройки своего браузера, чтобы предоставить необходимый доступ.",
|
||||
"Clone": "Клонировать",
|
||||
"Clone Chat": "Клонировать чат",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Экспериментальное",
|
||||
"Explain": "Объяснить",
|
||||
"Explore the cosmos": "Исследуйте космос",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Экспорт",
|
||||
"Export All Archived Chats": "Экспортировать ВСЕ Архивированные Чаты",
|
||||
"Export All Chats (All Users)": "Экспортировать все чаты (всех пользователей)",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "Ноябрь",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Октябрь",
|
||||
"Off": "Выключено",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "Таймаут Playwright (мс)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Пожалуйста, внимательно ознакомьтесь со следующими предупреждениями:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Пожалуйста, не закрывайте страницу настроек во время загрузки модели.",
|
||||
"Please enter a message or attach a file.": "Пожалуйста, введите сообщение или прикрепите файл.",
|
||||
"Please enter a prompt": "Пожалуйста, введите подсказку",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "Пожалуйста, введите правильный путь",
|
||||
"Please enter a valid URL": "Пожалуйста, введите правильный URL",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Пожалуйста, заполните все поля.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "Запрос",
|
||||
"Quick Actions": "Быстрые действия",
|
||||
"RAG Template": "Шаблон RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Рейтинг",
|
||||
"Re-rank models by topic similarity": "Повторное ранжирование моделей по сходству тем",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "При этом будут удалены все модели, включая пользовательские, и это действие нельзя будет отменить.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Это сбросит базу знаний и синхронизирует все файлы. Хотите продолжить?",
|
||||
"Thorough explanation": "Подробное объяснение",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Рассуждаю {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Рассуждение заняло {{DURATION}} секунд(ы)",
|
||||
"Thought for less than a second": "Размышлял меньше секунды",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "Kliknite sem pre nahratie súboru workflow.json.",
|
||||
"click here.": "kliknite tu.",
|
||||
"Click on the user role button to change a user's role.": "Kliknite na tlačidlo role užívateľa, aby ste zmenili rolu užívateľa.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Prístup na zápis do schránky bol zamietnutý. Skontrolujte nastavenia prehliadača a udeľte potrebný prístup.",
|
||||
"Clone": "Klonovať",
|
||||
"Clone Chat": "",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Experimentálne",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Exportovať",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Exportovať všetky konverzácie (všetci užívatelia)",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "November",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Október",
|
||||
"Off": "Vypnuté",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Prosím, pozorne si prečítajte nasledujúce upozornenia:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Prosím, zadajte zadanie.",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Prosím, vyplňte všetky polia.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Šablóna RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Hodnotenie",
|
||||
"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostnú databázu a synchronizuje všetky súbory. Prajete si pokračovať?",
|
||||
"Thorough explanation": "Obsiahle vysvetlenie",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -332,7 +332,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "кликните овде.",
|
||||
"Click on the user role button to change a user's role.": "Кликните на дугме за улогу корисника да промените улогу корисника.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "Клонирај",
|
||||
"Clone Chat": "Клонирај ћаскање",
|
||||
@@ -820,6 +823,8 @@
|
||||
"Experimental": "Експериментално",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Извоз",
|
||||
"Export All Archived Chats": "Извези све архиве",
|
||||
"Export All Chats (All Users)": "Извези сва ћаскања (сви корисници)",
|
||||
@@ -1382,6 +1387,7 @@
|
||||
"November": "Новембар",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "Октобар",
|
||||
"Off": "Искључено",
|
||||
@@ -1492,6 +1498,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1500,6 +1507,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1546,6 +1554,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG шаблон",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Оцена",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1928,6 +1938,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Ово ће обрисати све моделе укључујући прилагођене моделе и не може се опозвати.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ово ће обрисати базу знања и ускладити све датотеке. Да ли желите наставити?",
|
||||
"Thorough explanation": "Детаљно објашњење",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1956,6 +1967,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Klicka här för att ladda upp en workflow.json fil",
|
||||
"click here.": "klicka här.",
|
||||
"Click on the user role button to change a user's role.": "Klicka på knappen för användarroll för att ändra en användares roll.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skrivbehörighet för urklipp nekad. Kontrollera dina webbläsarinställningar för att bevilja nödvändig åtkomst.",
|
||||
"Clone": "Duplicera",
|
||||
"Clone Chat": "Duplicera chatt",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Experimentell",
|
||||
"Explain": "Förklara",
|
||||
"Explore the cosmos": "Utforska kosmos",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Export",
|
||||
"Export All Archived Chats": "Exportera alla arkiverade chattar",
|
||||
"Export All Chats (All Users)": "Exportera alla chattar (alla användare)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "november",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "oktober",
|
||||
"Off": "Av",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Timeout (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Vänligen granska följande varningar noggrant:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Stäng inte inställningssidan medan modellen läses in.",
|
||||
"Please enter a message or attach a file.": "Vänligen skriv ett meddelande eller bifoga en fil.",
|
||||
"Please enter a prompt": "Vänligen ange en uppmaning",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Vänligen ange en giltig sökväg",
|
||||
"Please enter a valid URL": "Vänligen ange en giltig URL",
|
||||
"Please enter a valid URL.": "Vänligen ange en giltig URL.",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Vänligen fyll i alla fält.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "Frågar",
|
||||
"Quick Actions": "Snabbåtgärder",
|
||||
"RAG Template": "RAG-mall",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Betyg",
|
||||
"Re-rank models by topic similarity": "Ranka om modeller efter ämneslikhet",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Detta kommer att radera alla modeller inklusive anpassade modeller och kan inte ångras.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Detta kommer att återställa kunskapsbasen och synkronisera alla filer. Vill du fortsätta?",
|
||||
"Thorough explanation": "Djupare förklaring",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Tänkte i {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Tänkte i {{DURATION}} sekunder",
|
||||
"Thought for less than a second": "Tänkte i mindre än en sekund",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Idag kl {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "คลิกที่นี่เพื่ออัปโหลดไฟล์ workflow.json",
|
||||
"click here.": "คลิกที่นี่",
|
||||
"Click on the user role button to change a user's role.": "คลิกที่ปุ่มสิทธิ์ผู้ใช้เพื่อเปลี่ยนสิทธิ์ของผู้ใช้",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "การอนุญาตให้เขียนคลิปบอร์ดถูกปฏิเสธ โปรดตรวจสอบการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์ที่จำเป็น",
|
||||
"Clone": "โคลน",
|
||||
"Clone Chat": "โคลนแชท",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "การทดลอง",
|
||||
"Explain": "อธิบาย",
|
||||
"Explore the cosmos": "สำรวจห้วงอวกาศ",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "ส่งออก",
|
||||
"Export All Archived Chats": "ส่งออกแชทที่เก็บถาวรทั้งหมด",
|
||||
"Export All Chats (All Users)": "ส่งออกการแชททั้งหมด (ผู้ใช้ทั้งหมด)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "พฤศจิกายน",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "ตุลาคม",
|
||||
"Off": "ปิด",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Timeout (มิลลิวินาที)",
|
||||
"Playwright WebSocket URL": "URL WebSocket ของ Playwright",
|
||||
"Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "โปรดอย่าปิดหน้าการตั้งค่าขณะกำลังโหลดโมเดล",
|
||||
"Please enter a message or attach a file.": "กรุณากรอกข้อความหรือแนบไฟล์",
|
||||
"Please enter a prompt": "โปรดป้อนพรอมต์",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "โปรดป้อนพาธที่ถูกต้อง",
|
||||
"Please enter a valid URL": "กรุณากรอก URL ที่ถูกต้อง",
|
||||
"Please enter a valid URL.": "โปรดป้อน URL ที่ถูกต้อง",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "โปรดกรอกข้อมูลให้ครบทุกช่อง",
|
||||
"Please register the OAuth client": "โปรดลงทะเบียน OAuth Client",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "โปรดบันทึกการเชื่อมต่อเพื่อคงข้อมูล OAuth Client และอย่าเปลี่ยนแปลง ID",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "กำลังค้นหา",
|
||||
"Quick Actions": "การกระทำด่วน",
|
||||
"RAG Template": "แม่แบบ RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "การให้คะแนน",
|
||||
"Re-rank models by topic similarity": "จัดเรียงลำดับโมเดลใหม่ตามความคล้ายคลึงของหัวข้อ",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "การดำเนินการนี้จะลบโมเดลทั้งหมดรวมถึงโมเดลที่กำหนดเอง และไม่สามารถยกเลิกได้",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "การดำเนินการนี้จะรีเซ็ตฐานความรู้และซิงค์ไฟล์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?",
|
||||
"Thorough explanation": "คำอธิบายอย่างละเอียด",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "คิดเป็นเวลา {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "ใช้เวลาคิด {{DURATION}} วินาที",
|
||||
"Thought for less than a second": "คิดเป็นเวลาน้อยกว่าหนึ่งวินาที",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "วันนี้เวลา {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "สลับแถบด้านข้าง",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "",
|
||||
"click here.": "şu ýere basyň.",
|
||||
"Click on the user role button to change a user's role.": "Ulanyjynyň roluny üýtgetmek üçin ulanyjy roly düwmesine basyň.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
|
||||
"Clone": "Klon",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Noýabr",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "",
|
||||
"October": "Oktýabr",
|
||||
"Off": "",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "",
|
||||
"Re-rank models by topic similarity": "",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Bir workflow.json dosyası yüklemek için buraya tıklayın.",
|
||||
"click here.": "buraya tıklayın.",
|
||||
"Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "Kimliği kopyalamak için tıklayın",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Panoya yazma izni reddedildi. Tarayıcı ayarlarını kontrol ederek gerekli izinleri sağlayabilirsiniz.",
|
||||
"Clone": "Klon",
|
||||
"Clone Chat": "Sohbeti Klonla",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Deneysel",
|
||||
"Explain": "Açıkla",
|
||||
"Explore the cosmos": "Evreni keşfet",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Dışa Aktar",
|
||||
"Export All Archived Chats": "Tüm Arşivlenmiş Sohbetleri Dışa Aktar",
|
||||
"Export All Chats (All Users)": "Tüm Sohbetleri Dışa Aktar (Tüm Kullanıcılar)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "Kasım",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Ekim",
|
||||
"Off": "Kapalı",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright Zamanaşımı (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Lütfen aşağıdaki uyarıları dikkatlice inceleyin:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Lütfen model yüklenirken ayarlar sayfasını kapatmayınız.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Lütfen bir prompt girin",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Lütfen geçerli bir yol girin",
|
||||
"Please enter a valid URL": "Lütfen geçerli bir URL adresi girin",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Lütfen tüm alanları doldurun.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "Hızlı Eylemler",
|
||||
"RAG Template": "RAG Şablonu",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "{{rating}}/10 puan",
|
||||
"Rating": "Derecelendirme",
|
||||
"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek ve geri alınamaz.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilgi tabanını sıfırlayacak ve tüm dosyaları senkronize edecek. Devam etmek istiyor musunuz?",
|
||||
"Thorough explanation": "Kapsamlı açıklama",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} saniye düşünüldü",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}} saniye düşünüldü",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "Bugün saat {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "{{COUNT}} kaynağı aç/kapat",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "workflow.json ھۆججىتى يۈكلەش ئۈچۈن بۇ يەرنى چېكىڭ.",
|
||||
"click here.": "بۇ يەرنى چېكىڭ.",
|
||||
"Click on the user role button to change a user's role.": "ئىشلەتكۈچى رولىنى ئۆزگەرتىش ئۈچۈن رول كۇنۇپكىسىنى چېكىڭ.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "چاپلاش تاختىسىغا يېزىش ھوقۇقى رەت قىلىندى. لازىملىق كىرىش ھوقۇقىنى بىرىش ئۈچۈن تور كۆرگۈچ تەڭشەكلىرىنى تەكشۈرۈڭ.",
|
||||
"Clone": "كۆچۈرۈش",
|
||||
"Clone Chat": "سۆھبەتنى كۆچۈرۈش",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "تەجىربىلىك",
|
||||
"Explain": "چۈشەندۈرۈش",
|
||||
"Explore the cosmos": "كائىناتنى تەتقىق قىلىڭ",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "چىقىرىش",
|
||||
"Export All Archived Chats": "بارلىق ئارخىپلانغان سۆھبەتلەرنى چىقىرىش",
|
||||
"Export All Chats (All Users)": "بارلىق سۆھبەتلەرنى چىقىرىش (بارلىق ئىشلەتكۈچىلەر)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "نويابىر",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "ئۆكتەبىر",
|
||||
"Off": "تاقالغان",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright ۋاقىت چەكلىمىسى (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "تۆۋەندىكى ئاگاھلاندۇرۇشلاردىن دىققەت بىلەن خەۋەردار بولۇڭ:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "مودېل يۈكلەۋاتقاندا تەڭشەك بېتىنى ياپماڭ.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "تۈرتكە كىرگۈزۈڭ",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "توغرا يول كىرگۈزۈڭ",
|
||||
"Please enter a valid URL": "توغرا URL كىرگۈزۈڭ",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "بارلىق رايونلارنى تولدۇرۇڭ.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG قېلىپى",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "باھا",
|
||||
"Re-rank models by topic similarity": "مودېللارنى تېما ئوخشىشى بويىچە قايتا تەرتىپلەش",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "بۇ بارلىق مودېللارنى ئۆچۈرۈدۇ (ئۆزلۈك مودېللارنىمۇ ئۆز ئىچىگە ئالىدۇ) ۋە ئەسلىگە كەلتۈرگىلى بولمايدۇ.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "بىلىم ئاساسى قايتا تەڭشىلىپ بارلىق ھۆججەتلەر ماس-قەدەملىنىدۇ. داۋاملاشامسىز؟",
|
||||
"Thorough explanation": "تەپسىلىي چۈشەندۈرۈش",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} مىنۇت ئويلىدى",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}} سېكۇنت ئويلىدى",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -333,7 +333,10 @@
|
||||
"Click here to upload a workflow.json file.": "Натисніть тут, щоб завантажити файл workflow.json.",
|
||||
"click here.": "натисніть тут.",
|
||||
"Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Відмовлено в дозволі на запис до буфера обміну. Будь ласка, перевірте налаштування вашого браузера, щоб надати необхідний доступ.",
|
||||
"Clone": "Клонувати",
|
||||
"Clone Chat": "Клонувати чат",
|
||||
@@ -821,6 +824,8 @@
|
||||
"Experimental": "Експериментальне",
|
||||
"Explain": "Пояснити",
|
||||
"Explore the cosmos": "Досліджуйте космос",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Експорт",
|
||||
"Export All Archived Chats": "Експорт всіх архівованих чатів",
|
||||
"Export All Chats (All Users)": "Експорт всіх чатів (всіх користувачів)",
|
||||
@@ -1383,6 +1388,7 @@
|
||||
"November": "Листопад",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Жовтень",
|
||||
"Off": "Вимк",
|
||||
@@ -1493,6 +1499,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Будь ласка, уважно ознайомтеся з наступними попередженнями:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Будь ласка, не закривайте сторінку налаштувань під час завантаження моделі.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Будь ласка, введіть підказку",
|
||||
@@ -1501,6 +1508,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Будь ласка, заповніть усі поля.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1547,6 +1555,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Шаблон RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Оцінка",
|
||||
"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
|
||||
@@ -1930,6 +1940,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Це видалить усі моделі, включаючи користувацькі моделі, і не може бути скасовано.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує усі файли. Ви бажаєте продовжити?",
|
||||
"Thorough explanation": "Детальне пояснення",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Думка для {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Думав протягом {{DURATION}} секунд.",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1958,6 +1969,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "یہاں کلک کریں تاکہ ورک فلو.json فائل اپ لوڈ کریں",
|
||||
"click here.": "یہاں کلک کریں",
|
||||
"Click on the user role button to change a user's role.": "صارف کا کردار تبدیل کرنے کے لیے صارف کردار بٹن پر کلک کریں",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "کلپ بورڈ لکھنے کی اجازت نہیں دی گئی براہ کرم ضروری رسائی کی اجازت دینے کے لیے اپنے براؤزر کی سیٹنگز چیک کریں",
|
||||
"Clone": "نقل کریں",
|
||||
"Clone Chat": "",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "تجرباتی",
|
||||
"Explain": "",
|
||||
"Explore the cosmos": "",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "برآمد کریں",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "تمام چیٹس برآمد کریں (تمام صارفین)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "نومبر",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth آئی ڈی",
|
||||
"October": "اکتوبر",
|
||||
"Off": "بند",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "براہ کرم درج ذیل انتباہات کو احتیاط سے پڑھیں:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "براہ کرم تمام فیلڈز مکمل کریں",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "آر اے جی سانچہ",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "درجہ بندی",
|
||||
"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟",
|
||||
"Thorough explanation": "مکمل وضاحت",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Thought for {{DURATION}} seconds": "",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Wоркфлоw.жсон файлини юклаш учун шу ерни босинг.",
|
||||
"click here.": "бу ерни босинг.",
|
||||
"Click on the user role button to change a user's role.": "Фойдаланувчи ролини ўзгартириш учун фойдаланувчи роли тугмасини босинг.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Буферга ёзиш рухсати рад этилди. Керакли рухсат бериш учун браузер созламаларини текширинг.",
|
||||
"Clone": "Клонлаш",
|
||||
"Clone Chat": "Чатни клонлаш",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Экспериментал",
|
||||
"Explain": "Тушунтириш",
|
||||
"Explore the cosmos": "Космосни ўрганинг",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Экспорт",
|
||||
"Export All Archived Chats": "Барча архивланган суҳбатларни экспорт қилиш",
|
||||
"Export All Chats (All Users)": "Барча суҳбатларни экспорт қилиш (барча фойдаланувчилар)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "ноябр",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ОАутҳ ИД",
|
||||
"October": "октябр",
|
||||
"Off": "Ўчирилган",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Драматург таймоути (ms)",
|
||||
"Playwright WebSocket URL": "Драматург WебСоcкет УРЛ манзили",
|
||||
"Please carefully review the following warnings:": "Қуйидаги огоҳлантиришларни диққат билан кўриб чиқинг:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Моделни юклашда созламалар саҳифасини ёпманг.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Илтимос, таклиф киритинг",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Яроқли йўлни киритинг",
|
||||
"Please enter a valid URL": "Яроқли УРЛ манзилини киритинг",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Илтимос, барча майдонларни тўлдиринг.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "РАГ шаблони",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Рейтинг",
|
||||
"Re-rank models by topic similarity": "Моделларни мавзу ўхшашлиги бўйича қайта тартибланг",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Бу барча моделларни, жумладан, махсус моделларни ҳам ўчириб ташлайди ва уларни ортга қайтариб бўлмайди.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Бу билимлар базасини қайта тиклайди ва барча файлларни синхронлаштиради. Давом этишни хоҳлайсизми?",
|
||||
"Thorough explanation": "Тўлиқ тушунтириш",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} учун фикр",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}} сония ўйладим",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -331,7 +331,10 @@
|
||||
"Click here to upload a workflow.json file.": "Workflow.json faylini yuklash uchun shu yerni bosing.",
|
||||
"click here.": "bu yerni bosing.",
|
||||
"Click on the user role button to change a user's role.": "Foydalanuvchi rolini o'zgartirish uchun foydalanuvchi roli tugmasini bosing.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Buferga yozish ruxsati rad etildi. Kerakli ruxsat berish uchun brauzer sozlamalarini tekshiring.",
|
||||
"Clone": "Klonlash",
|
||||
"Clone Chat": "Chatni klonlash",
|
||||
@@ -819,6 +822,8 @@
|
||||
"Experimental": "Eksperimental",
|
||||
"Explain": "Tushuntirish",
|
||||
"Explore the cosmos": "Kosmosni o'rganing",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Eksport",
|
||||
"Export All Archived Chats": "Barcha arxivlangan suhbatlarni eksport qilish",
|
||||
"Export All Chats (All Users)": "Barcha suhbatlarni eksport qilish (barcha foydalanuvchilar)",
|
||||
@@ -1381,6 +1386,7 @@
|
||||
"November": "noyabr",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "oktyabr",
|
||||
"Off": "Oʻchirilgan",
|
||||
@@ -1491,6 +1497,7 @@
|
||||
"Playwright Timeout (ms)": "Dramaturg taymouti (ms)",
|
||||
"Playwright WebSocket URL": "Dramaturg WebSocket URL manzili",
|
||||
"Please carefully review the following warnings:": "Quyidagi ogohlantirishlarni diqqat bilan ko'rib chiqing:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Modelni yuklashda sozlamalar sahifasini yopmang.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Iltimos, taklif kiriting",
|
||||
@@ -1499,6 +1506,7 @@
|
||||
"Please enter a valid path": "Yaroqli yo‘lni kiriting",
|
||||
"Please enter a valid URL": "Yaroqli URL manzilini kiriting",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Iltimos, barcha maydonlarni toʻldiring.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1545,6 +1553,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "RAG shabloni",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Reyting",
|
||||
"Re-rank models by topic similarity": "Modellarni mavzu o'xshashligi bo'yicha qayta tartiblang",
|
||||
@@ -1926,6 +1936,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Bu barcha modellarni, jumladan, maxsus modellarni ham o‘chirib tashlaydi va ularni ortga qaytarib bo‘lmaydi.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu bilimlar bazasini qayta tiklaydi va barcha fayllarni sinxronlashtiradi. Davom etishni xohlaysizmi?",
|
||||
"Thorough explanation": "To'liq tushuntirish",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} uchun fikr",
|
||||
"Thought for {{DURATION}} seconds": "{{DURATION}} soniya oʻyladim",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1954,6 +1965,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "Bấm vào đây để upload file worklow.json",
|
||||
"click here.": "bấm vào đây.",
|
||||
"Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Quyền ghi vào clipboard bị từ chối. Vui lòng kiểm tra cài đặt trên trình duyệt của bạn để được cấp quyền truy cập cần thiết.",
|
||||
"Clone": "Nhân bản",
|
||||
"Clone Chat": "Nhân bản Chat",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "Thử nghiệm",
|
||||
"Explain": "Giải thích",
|
||||
"Explore the cosmos": "Khám phá vũ trụ",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "Xuất khẩu",
|
||||
"Export All Archived Chats": "Xuất Tất cả Chat Đã Lưu trữ",
|
||||
"Export All Chats (All Users)": "Tải về tất cả nội dung chat (tất cả mọi người)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "Tháng 11",
|
||||
"OAuth": "",
|
||||
"OAuth 2.1": "",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "ID OAuth",
|
||||
"October": "Tháng 10",
|
||||
"Off": "Tắt",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "",
|
||||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Vui lòng xem xét cẩn thận các cảnh báo sau:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "Vui lòng không đóng trang cài đặt trong khi tải mô hình.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Vui lòng nhập một prompt",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "Vui lòng nhập một đường dẫn hợp lệ",
|
||||
"Please enter a valid URL": "Vui lòng nhập một URL hợp lệ",
|
||||
"Please enter a valid URL.": "",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "Vui lòng điền vào tất cả các trường.",
|
||||
"Please register the OAuth client": "",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
"RAG Template": "Mẫu prompt cho RAG",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "",
|
||||
"Rating": "Đánh giá",
|
||||
"Re-rank models by topic similarity": "Xếp hạng lại các mô hình theo độ tương đồng chủ đề",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Hành động này sẽ xóa tất cả các mô hình bao gồm cả các mô hình tùy chỉnh và không thể hoàn tác.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Hành động này sẽ đặt lại cơ sở kiến thức và đồng bộ hóa tất cả các tệp. Bạn có muốn tiếp tục không?",
|
||||
"Thorough explanation": "Giải thích kỹ lưỡng",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "Suy nghĩ trong {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "Suy nghĩ trong {{DURATION}} giây",
|
||||
"Thought for less than a second": "",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "",
|
||||
"Toggle {{COUNT}} sources": "",
|
||||
"Toggle 1 source": "",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle status history": "",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "点击此处上传 workflow.json 文件",
|
||||
"click here.": "点击此处",
|
||||
"Click on the user role button to change a user's role.": "点击用户角色按钮以更改用户的角色",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "点击复制 ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "写入剪贴板时被拒绝。请检查浏览器设置,授予必要权限。",
|
||||
"Clone": "复制",
|
||||
"Clone Chat": "克隆对话",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "实验性",
|
||||
"Explain": "解释",
|
||||
"Explore the cosmos": "探索星辰",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "导出",
|
||||
"Export All Archived Chats": "导出所有已存档对话",
|
||||
"Export All Chats (All Users)": "导出所有用户对话",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "十一月",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "十月",
|
||||
"Off": "关闭",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright 超时时间 (ms)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket 地址",
|
||||
"Please carefully review the following warnings:": "请仔细阅读以下警告信息:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "加载模型时请不要关闭设置页面",
|
||||
"Please enter a message or attach a file.": "请输入内容或添加文件。",
|
||||
"Please enter a prompt": "请输入提示词",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "请输入有效路径",
|
||||
"Please enter a valid URL": "请输入有效的地址",
|
||||
"Please enter a valid URL.": "请输入有效的地址。",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "请填写所有字段。",
|
||||
"Please register the OAuth client": "请注册 OAuth 客户端",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "请保存连接以保留 OAuth 客户端信息,并确保不要更改 ID",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "查询中",
|
||||
"Quick Actions": "快捷操作",
|
||||
"RAG Template": "RAG 提示词模板",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "评分:{{rating}}/10",
|
||||
"Rating": "评价",
|
||||
"Re-rank models by topic similarity": "根据主题相似性对模型重新排名",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "这将删除所有模型,包括自定义模型,且无法撤销。",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并同步所有文件。确认继续?",
|
||||
"Thorough explanation": "解释详尽",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "思考用时 {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "思考用时 {{DURATION}} 秒",
|
||||
"Thought for less than a second": "思考用时小于 1 秒",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "展开/收起 {{COUNT}} 个来源",
|
||||
"Toggle 1 source": "展开/收起 1 个来源",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "切换为听写模式",
|
||||
"Toggle Sidebar": "展开或收起侧边栏",
|
||||
"Toggle status history": "展开/收起历史状态",
|
||||
|
||||
@@ -330,7 +330,10 @@
|
||||
"Click here to upload a workflow.json file.": "點選此處上傳 workflow.json 檔案。",
|
||||
"click here.": "點選此處。",
|
||||
"Click on the user role button to change a user's role.": "點選使用者角色按鈕變更使用者的角色。",
|
||||
"Click to connect": "",
|
||||
"Click to copy ID": "點擊複製 ID",
|
||||
"Client ID": "",
|
||||
"Client Secret": "",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "剪貼簿寫入權限遭拒。請檢查您的瀏覽器設定,授予必要的存取權限。",
|
||||
"Clone": "複製",
|
||||
"Clone Chat": "複製對話",
|
||||
@@ -818,6 +821,8 @@
|
||||
"Experimental": "實驗性功能",
|
||||
"Explain": "解釋",
|
||||
"Explore the cosmos": "探索宇宙",
|
||||
"Explored": "",
|
||||
"Exploring": "",
|
||||
"Export": "匯出",
|
||||
"Export All Archived Chats": "匯出所有已封存的對話",
|
||||
"Export All Chats (All Users)": "匯出所有對話紀錄(所有使用者)",
|
||||
@@ -1380,6 +1385,7 @@
|
||||
"November": "11 月",
|
||||
"OAuth": "OAuth",
|
||||
"OAuth 2.1": "OAuth 2.1",
|
||||
"OAuth 2.1 (Static)": "",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "10 月",
|
||||
"Off": "關閉",
|
||||
@@ -1490,6 +1496,7 @@
|
||||
"Playwright Timeout (ms)": "Playwright 逾時時間(毫秒)",
|
||||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "請仔細閱讀以下警告:",
|
||||
"Please connect all required integrations before sending a message": "",
|
||||
"Please do not close the settings page while loading the model.": "載入模型時,請勿關閉設定頁面。",
|
||||
"Please enter a message or attach a file.": "請輸入訊息或附加檔案。",
|
||||
"Please enter a prompt": "請輸入提示詞",
|
||||
@@ -1498,6 +1505,7 @@
|
||||
"Please enter a valid path": "請輸入有效路徑",
|
||||
"Please enter a valid URL": "請輸入有效 URL",
|
||||
"Please enter a valid URL.": "請輸入有效的 URL。",
|
||||
"Please enter Client ID and Client Secret": "",
|
||||
"Please fill in all fields.": "請填寫所有欄位。",
|
||||
"Please register the OAuth client": "請註冊 OAuth 用戶端",
|
||||
"Please save the connection to persist the OAuth client information and do not change the ID": "請儲存連線以保存 OAuth 用戶端資訊,且勿更改 ID",
|
||||
@@ -1544,6 +1552,8 @@
|
||||
"Querying": "查詢中",
|
||||
"Quick Actions": "快速操作",
|
||||
"RAG Template": "RAG 範本",
|
||||
"Ran {{COUNT}} analyses": "",
|
||||
"Ran {{COUNT}} analysis": "",
|
||||
"Rate {{rating}} out of 10": "評分:{{rating}}/10",
|
||||
"Rating": "評分",
|
||||
"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
|
||||
@@ -1924,6 +1934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "這將刪除所有模型,包括自訂模型,且無法復原。",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
|
||||
"Thorough explanation": "詳細解釋",
|
||||
"Thought": "",
|
||||
"Thought for {{DURATION}}": "思考時間 {{DURATION}}",
|
||||
"Thought for {{DURATION}} seconds": "思考時間 {{DURATION}} 秒",
|
||||
"Thought for less than a second": "思考用時小於 1 秒",
|
||||
@@ -1952,6 +1963,7 @@
|
||||
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
||||
"Toggle {{COUNT}} sources": "展開/收合 {{COUNT}} 個來源",
|
||||
"Toggle 1 source": "展開/收合 1 個來源",
|
||||
"Toggle details": "",
|
||||
"Toggle Dictation": "切換聽寫模式",
|
||||
"Toggle Sidebar": "切換側邊欄",
|
||||
"Toggle status history": "展開/收合歷史狀態",
|
||||
|
||||
Reference in New Issue
Block a user