Merge pull request #16753 from PeterDaveHello/i18n

i18n: add missing translations
This commit is contained in:
Tim Jaeryang Baek 2025-08-20 21:02:17 +04:00 committed by GitHub
commit d2d23f4abd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
82 changed files with 1417 additions and 99 deletions

View file

@ -762,7 +762,7 @@
<option value="">{$i18n.t('Default (SentenceTransformers)')}</option>
<option value="ollama">{$i18n.t('Ollama')}</option>
<option value="openai">{$i18n.t('OpenAI')}</option>
<option value="azure_openai">Azure OpenAI</option>
<option value="azure_openai">{$i18n.t('Azure OpenAI')}</option>
</select>
</div>
</div>

View file

@ -410,10 +410,10 @@
</div>
<div class="mt-2 text-xs text-gray-500">
<span class=" font-semibold dark:text-gray-200">Warning:</span> Pipelines are a plugin
system with arbitrary code execution —
<span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
{$i18n.t('Pipelines are a plugin system with arbitrary code execution —')}
<span class=" font-medium dark:text-gray-400"
>don't fetch random pipelines from sources you don't trust.</span
>{$i18n.t("don't fetch random pipelines from sources you don't trust.")}</span
>
</div>
</div>

View file

@ -213,9 +213,9 @@
{:else}
<div>
<div class=" flex items-center gap-3 justify-between text-xs uppercase px-1 font-bold">
<div class="w-full basis-3/5">Group</div>
<div class="w-full basis-3/5">{$i18n.t('Group')}</div>
<div class="w-full basis-2/5 text-right">Users</div>
<div class="w-full basis-2/5 text-right">{$i18n.t('Users')}</div>
</div>
<hr class="mt-1.5 border-gray-100 dark:border-gray-850" />

View file

@ -166,12 +166,12 @@
{#if total > $config?.license_metadata?.seats}
<span class="text-lg font-medium text-red-500"
>{total} of {$config?.license_metadata?.seats}
<span class="text-sm font-normal">available users</span></span
<span class="text-sm font-normal">{$i18n.t('available users')}</span></span
>
{:else}
<span class="text-lg font-medium text-gray-500 dark:text-gray-300"
>{total} of {$config?.license_metadata?.seats}
<span class="text-sm font-normal">available users</span></span
<span class="text-sm font-normal">{$i18n.t('available users')}</span></span
>
{/if}
{:else}

View file

@ -59,7 +59,7 @@
>
<div class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2">
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
</Loader>
{:else if !thread}
@ -84,7 +84,7 @@
</div>
{:else}
<div class="flex justify-center text-xs items-center gap-2 py-5">
<div class=" ">Start of the channel</div>
<div class=" ">{$i18n.t('Start of the channel')}</div>
</div>
{/if}

View file

@ -1,5 +1,8 @@
<script lang="ts">
import { DropdownMenu } from 'bits-ui';
import { getContext } from 'svelte';
const i18n = getContext('i18n');
import { flyAndScale } from '$lib/utils/transitions';
import { WEBUI_BASE_URL } from '$lib/constants';
@ -76,7 +79,7 @@
</div>
<div class=" -translate-y-[1px]">
<span class="text-xs"> Active </span>
<span class="text-xs"> {$i18n.t('Active')} </span>
</div>
{:else}
<div>
@ -86,7 +89,7 @@
</div>
<div class=" -translate-y-[1px]">
<span class="text-xs"> Away </span>
<span class="text-xs"> {$i18n.t('Away')} </span>
</div>
{/if}
</div>

View file

@ -132,7 +132,7 @@
<!-- Virtualized Emoji List -->
<div class="w-full flex justify-start h-96 overflow-y-auto px-3 pb-3 text-sm">
{#if emojiRows.length === 0}
<div class="text-center text-xs text-gray-500 dark:text-gray-400">No results</div>
<div class="text-center text-xs text-gray-500 dark:text-gray-400">{$i18n.t('No results')}</div>
{:else}
<div class="w-full flex ml-0.5">
<VirtualList rowHeight={ROW_HEIGHT} items={emojiRows} height={384} let:item>

View file

@ -8,9 +8,11 @@
import XMark from '$lib/components/icons/XMark.svelte';
import MessageInput from './MessageInput.svelte';
import Messages from './Messages.svelte';
import { onDestroy, onMount, tick } from 'svelte';
import { onDestroy, onMount, tick, getContext } from 'svelte';
import { toast } from 'svelte-sonner';
const i18n = getContext('i18n');
export let threadId = null;
export let channel = null;
@ -158,7 +160,7 @@
{#if channel}
<div class="flex flex-col w-full h-full bg-gray-50 dark:bg-gray-850">
<div class="flex items-center justify-between px-3.5 pt-3">
<div class=" font-medium text-lg">Thread</div>
<div class=" font-medium text-lg">{$i18n.t('Thread')}</div>
<div>
<button

View file

@ -872,7 +872,7 @@
: `${WEBUI_BASE_URL}/static/favicon.png`)}
/>
<div class="translate-y-[0.5px]">
Talking to <span class=" font-medium">{atSelectedModel.name}</span>
{$i18n.t('Talk to model')}: <span class=" font-medium">{atSelectedModel.name}</span>
</div>
</div>
<div>

View file

@ -388,7 +388,7 @@
>
<div class="flex flex-col">
<div class="line-clamp-1">{$i18n.t('Microsoft OneDrive (work/school)')}</div>
<div class="text-xs text-gray-500">Includes SharePoint</div>
<div class="text-xs text-gray-500">{$i18n.t('Includes SharePoint')}</div>
</div>
</DropdownMenu.Item>
</DropdownMenu.SubContent>

View file

@ -416,7 +416,7 @@
>
<div class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2">
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
</Loader>
{/if}

View file

@ -548,13 +548,13 @@
>
{#if executing}
<div class=" ">
<div class=" text-gray-500 text-xs mb-1">STDOUT/STDERR</div>
<div class="text-sm">Running...</div>
<div class=" text-gray-500 text-xs mb-1">{$i18n.t('STDOUT/STDERR')}</div>
<div class="text-sm">{$i18n.t('Running...')}</div>
</div>
{:else}
{#if stdout || stderr}
<div class=" ">
<div class=" text-gray-500 text-xs mb-1">STDOUT/STDERR</div>
<div class=" text-gray-500 text-xs mb-1">{$i18n.t('STDOUT/STDERR')}</div>
<div
class="text-sm {stdout?.split('\n')?.length > 100
? `max-h-96`
@ -566,7 +566,7 @@
{/if}
{#if result || files}
<div class=" ">
<div class=" text-gray-500 text-xs mb-1">RESULT</div>
<div class=" text-gray-500 text-xs mb-1">{$i18n.t('RESULT')}</div>
{#if result}
<div class="text-sm">{`${JSON.stringify(result)}`}</div>
{/if}

View file

@ -1102,7 +1102,7 @@
{#if (params?.use_mmap ?? null) !== null}
<div class="flex justify-between items-center mt-1">
<div class="text-xs text-gray-500">
{params.use_mmap ? 'Enabled' : 'Disabled'}
{params.use_mmap ? $i18n.t('Enabled') : $i18n.t('Disabled')}
</div>
<div class=" pr-2">
<Switch bind:state={params.use_mmap} />
@ -1143,7 +1143,7 @@
{#if (params?.use_mlock ?? null) !== null}
<div class="flex justify-between items-center mt-1">
<div class="text-xs text-gray-500">
{params.use_mlock ? 'Enabled' : 'Disabled'}
{params.use_mlock ? $i18n.t('Enabled') : $i18n.t('Disabled')}
</div>
<div class=" pr-2">

View file

@ -263,7 +263,7 @@
bind:value={TTSEngineConfig.dtype}
placeholder={$i18n.t('Select dtype')}
>
<option value="" disabled selected>Select dtype</option>
<option value="" disabled selected>{$i18n.t('Select dtype')}</option>
<option value="fp32">fp32</option>
<option value="fp16">fp16</option>
<option value="q8">q8</option>

View file

@ -55,7 +55,7 @@
>
<div>
<div class="text-xs flex items-center justify-between mb-2">
<div class="font-medium">Actions</div>
<div class="font-medium">{$i18n.t('Actions')}</div>
<div class="flex items-center gap-2 text-gray-700 dark:text-gray-300">
<button

View file

@ -225,7 +225,7 @@ print("${endTag}")
basicSetup,
keymap.of([{ key: 'Tab', run: acceptCompletion }, indentWithTab]),
indentUnit.of(' '),
placeholder('Enter your code here...'),
placeholder($i18n.t('Enter your code here...')),
EditorView.updateListener.of((e) => {
if (e.docChanged) {
_value = e.state.doc.toString();

View file

@ -1,6 +1,8 @@
<script lang="ts">
import { DropdownMenu } from 'bits-ui';
import { createEventDispatcher } from 'svelte';
import { createEventDispatcher, getContext } from 'svelte';
const i18n = getContext('i18n');
import { flyAndScale } from '$lib/utils/transitions';
@ -31,15 +33,15 @@
transition={flyAndScale}
>
<DropdownMenu.Item class="flex items-center px-3 py-2 text-sm font-medium">
<div class="flex items-center">Profile</div>
<div class="flex items-center">{$i18n.t('Profile')}</div>
</DropdownMenu.Item>
<DropdownMenu.Item class="flex items-center px-3 py-2 text-sm font-medium">
<div class="flex items-center">Profile</div>
<div class="flex items-center">{$i18n.t('Profile')}</div>
</DropdownMenu.Item>
<DropdownMenu.Item class="flex items-center px-3 py-2 text-sm font-medium">
<div class="flex items-center">Profile</div>
<div class="flex items-center">{$i18n.t('Profile')}</div>
</DropdownMenu.Item>
</DropdownMenu.Content>
</slot>

View file

@ -85,7 +85,7 @@
{:else}
<div>
<div class="block px-5 py-2 text-sm text-gray-700 dark:text-gray-100">
No results found
{$i18n.t('No results found')}
</div>
</div>
{/each}

View file

@ -70,7 +70,7 @@
{:else if (valvesSpec.properties[property]?.type ?? null) === 'boolean'}
<div class="flex justify-between items-center">
<div class="text-xs text-gray-500">
{valves[property] ? 'Enabled' : 'Disabled'}
{valves[property] ? $i18n.t('Enabled') : $i18n.t('Disabled')}
</div>
<div class=" pr-2">
@ -173,5 +173,5 @@
</div>
{/each}
{:else}
<div class="text-xs">No valves</div>
<div class="text-xs">{$i18n.t('No valves')}</div>
{/if}

View file

@ -317,7 +317,7 @@
class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2"
>
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
</Loader>
{/if}

View file

@ -332,7 +332,7 @@
>
<div class="w-full flex justify-center py-4 text-xs animate-pulse items-center gap-2">
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
</Loader>
{/if}

View file

@ -1094,7 +1094,7 @@
class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2"
>
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
</Loader>
{/if}
@ -1103,7 +1103,7 @@
class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2"
>
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
<div class=" ">{$i18n.t('Loading...')}</div>
</div>
{/if}
</div>

View file

@ -39,7 +39,7 @@
<div class="mt-1">
<div class="pb-10">
{#if files.length > 0}
<div class=" text-xs font-medium pb-1">Files</div>
<div class=" text-xs font-medium pb-1">{$i18n.t('Files')}</div>
<div class="flex flex-col gap-1">
{#each files.filter((file) => file.type !== 'image') as file, fileIdx}
@ -87,7 +87,7 @@
<hr class="my-2 border-gray-50 dark:border-gray-700/10" />
{/if}
<div class=" text-xs font-medium mb-1">Model</div>
<div class=" text-xs font-medium mb-1">{$i18n.t('Model')}</div>
<div class="w-full">
<select class="w-full bg-transparent text-sm outline-hidden" bind:value={selectedModelId}>

View file

@ -310,7 +310,7 @@
/>
</svg>
</div>
<div class=" self-center text-sm font-medium">{'Back'}</div>
<div class=" self-center text-sm font-medium">{$i18n.t('Back')}</div>
</button>
{/if}
@ -450,7 +450,7 @@
}}
type="button"
>
Reset Image</button
{$i18n.t('Reset Image')}</button
>
</div>
</div>
@ -699,7 +699,7 @@
</div>
{/each}
{:else}
<div class="text-xs text-center">No suggestion prompts</div>
<div class="text-xs text-center">{$i18n.t('No suggestion prompts')}</div>
{/if}
</div>
{/if}

View file

@ -31,9 +31,11 @@
"Accurate information": "معلومات دقيقة",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "إجراء مطلوب لتخزين سجل الدردشة",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "نشط",
"Active Users": "",
"Add": "أضف",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "متاح",
"available users": "المستخدمون المتاحون",
"Away": "بعيد",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "خلف",
"Bad Response": "استجابة خطاء",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "معطل",
"Discover a function": "",
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
@ -423,12 +428,14 @@
"Don't have an account?": "ليس لديك حساب؟",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
"Don't like the style": "لا أحب النمط",
"Done": "",
"Download": "تحميل",
"Download as SVG": "",
"Download canceled": "تم اللغاء التحميل",
"Download Database": "تحميل قاعدة البيانات",
"Download & Delete": "تنزيل وحذف",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
"Enabled": "",
"Enabled": "ممكّن",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "أدخل الصلاحيات",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "أدخل الكود هنا...",
"Error": "خطأ",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to save connections": "",
"Failed to save conversation": "فشل في حفظ المحادثة",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "مجموعة",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "مطالبات الاستيراد",
"Import Tools": "",
"Important Update": "تحديث مهم",
"Include": "",
"Includes SharePoint": "يتضمن SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "جارٍ التحميل...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "لا توجد نتائج",
"No results found": "لا توجد نتايج",
"No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "لا توجد مطالبات مقترحة",
"None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "خطوط الانابيب",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines عبارة عن نظام إضافات يتيح تنفيذًا عشوائيًا للتعليمات البرمجية —",
"Pipelines Not Detected": "",
"Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "أخر 7 أيام",
"Previous message": "",
"Private": "",
"Profile": "الملف الشخصي",
"Profile Image": "صورة الملف الشخصي",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "إعادة تعيين الصورة",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "النتيجة",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "من اليمين إلى اليسار",
"Run": "",
"Running": "",
"Running...": "جارٍ التنفيذ...",
"Save": "حفظ",
"Save & Create": "حفظ وإنشاء",
"Save & Update": "حفظ وتحديث",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
"Speech-to-Text": "",
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
"Start of the channel": "بداية القناة",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "وقف التسلسل",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT اعدادات",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "تحدث إلى النموذج",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "سلسلة الرسائل",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "تحذير",
"Warning:": "",
"Warning:": "تحذير:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "معلومات دقيقة",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "إجراء مطلوب لتخزين سجل الدردشة",
"Actions": "الإجراءات",
"Activate": "تفعيل",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "قم بتفعيل هذا الأمر بكتابة \"/{{COMMAND}}\" في مدخل المحادثة.",
"Active": "نشط",
"Active Users": "المستخدمون النشطون",
"Add": "إضافة",
"Add a model ID": "إضافة معرّف نموذج",
@ -156,8 +158,11 @@
"Available list": "القائمة المتاحة",
"Available Tools": "",
"available!": "متاح!",
"available users": "المستخدمون المتاحون",
"Away": "بعيد",
"Awful": "فظيع",
"Azure AI Speech": "نطق Azure AI (مايكروسوفت)",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "منطقة Azure",
"Back": "عودة",
"Bad Response": "رد سيئ",
@ -423,12 +428,14 @@
"Don't have an account?": "ليس لديك حساب؟",
"don't install random functions from sources you don't trust.": "لا تقم بتثبيت وظائف عشوائية من مصادر غير موثوقة.",
"don't install random tools from sources you don't trust.": "لا تقم بتثبيت أدوات عشوائية من مصادر غير موثوقة.",
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
"Don't like the style": "لا أحب النمط",
"Done": "تم",
"Download": "تحميل",
"Download as SVG": "تنزيل بصيغة SVG",
"Download canceled": "تم اللغاء التحميل",
"Download Database": "تحميل قاعدة البيانات",
"Download & Delete": "تنزيل وحذف",
"Drag and drop a file to upload or select a file to view": "اسحب الملف وأفلته للرفع أو اختر ملفًا للعرض",
"Draw": "ارسم",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "أدخل الصلاحيات",
"Enter Your Username": "أدخل اسم المستخدم الخاص بك",
"Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
"Enter your code here...": "أدخل الكود هنا...",
"Error": "خطأ",
"ERROR": "خطأ",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to save connections": "",
"Failed to save conversation": "فشل في حفظ المحادثة",
"Failed to save models configuration": "فشل في حفظ إعدادات النماذج",
"Failed to update settings": "فشل في تحديث الإعدادات",
"Failed to upload file.": "فشل في رفع الملف.",
@ -738,6 +747,7 @@
"Group deleted successfully": "تم حذف المجموعة بنجاح",
"Group Description": "وصف المجموعة",
"Group Name": "اسم المجموعة",
"Group": "مجموعة",
"Group updated successfully": "تم تحديث المجموعة بنجاح",
"Groups": "المجموعات",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "مطالبات الاستيراد",
"Import Tools": "استيراد الأدوات",
"Important Update": "تحديث مهم",
"Include": "تضمين",
"Includes SharePoint": "يتضمن SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "أضف الخيار `--api-auth` عند تشغيل stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "يؤثر على سرعة استجابة الخوارزمية للتغذية الراجعة من النص المُولد. معدل تعلم منخفض يؤدي إلى تعديلات أبطأ، بينما معدل أعلى يجعلها أكثر استجابة.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
"Loader": "المحمّل",
"Loading Kokoro.js...": "جارٍ تحميل Kokoro.js...",
"Loading...": "جارٍ تحميل...",
"Local": "محلي",
"Local Task Model": "",
"Location access not allowed": "لا يُسمح بالوصول إلى الموقع",
@ -986,6 +999,7 @@
"No models found": "لم يتم العثور على نماذج",
"No models selected": "لم يتم اختيار نماذج",
"No Notes": "",
"No results": "لا توجد نتائج",
"No results found": "لا توجد نتايج",
"No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "لا توجد صمامات للتحديث",
"Node Ids": "",
"No suggestion prompts": "لا توجد مطالبات مقترحة",
"None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "غير مفيد",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "تم حذف خط المعالجة بنجاح",
"Pipeline downloaded successfully": "تم تنزيل خط المعالجة بنجاح",
"Pipelines": "خطوط الانابيب",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines عبارة عن نظام إضافات يتيح تنفيذًا عشوائيًا للتعليمات البرمجية —",
"Pipelines Not Detected": "لم يتم الكشف عن خطوط المعالجة",
"Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "أخر 7 أيام",
"Previous message": "",
"Private": "",
"Profile": "الملف الشخصي",
"Profile Image": "صورة الملف الشخصي",
"Prompt": "التوجيه",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "إعادة تعيين مجلد التحميل",
"Reset Vector Storage/Knowledge": "إعادة تعيين تخزين المتجهات/المعرفة",
"Reset view": "إعادة تعيين العرض",
"Reset Image": "إعادة تعيين الصورة",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "لا يمكن تفعيل إشعارات الردود لأن صلاحيات الموقع مرفوضة. يرجى التوجه إلى إعدادات المتصفح لمنح الصلاحية اللازمة.",
"Response splitting": "تقسيم الرد",
"Response Watermark": "",
"RESULT": "النتيجة",
"Result": "النتيجة",
"Retrieval": "الاسترجاع",
"Retrieval Query Generation": "توليد استعلام الاسترجاع",
@ -1180,6 +1199,7 @@
"RTL": "من اليمين إلى اليسار",
"Run": "تنفيذ",
"Running": "جارٍ التنفيذ",
"Running...": "جارٍ التنفيذ...",
"Save": "حفظ",
"Save & Create": "حفظ وإنشاء",
"Save & Update": "حفظ وتحديث",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
"Speech-to-Text": "",
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
"Start of the channel": "بداية القناة",
"Stop": "إيقاف",
"Stop Generating": "",
"Stop Sequence": "وقف التسلسل",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "نموذج تحويل الصوت إلى نص (STT)",
"STT Settings": "STT اعدادات",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "فكّر لمدة {{DURATION}}",
"Thought for {{DURATION}} seconds": "فكّر لمدة {{DURATION}} ثانية",
"Thought for less than a second": "",
"Thread": "سلسلة الرسائل",
"Tika": "Tika",
"Tika Server URL required.": "عنوان خادم Tika مطلوب.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Точна информация",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Изисква се действие за съхраняване на дневника на чата",
"Actions": "Действия",
"Activate": "Активиране",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активирайте тази команда, като въведете \"/{{COMMAND}}\" в полето за чат.",
"Active": "Активен",
"Active Users": "Активни потребители",
"Add": "Добавяне",
"Add a model ID": "Добавете ID на модела",
@ -156,8 +158,11 @@
"Available list": "Наличен списък",
"Available Tools": "Налични инструменти",
"available!": "наличен!",
"available users": "Налични потребители",
"Away": "Отсъства",
"Awful": "Ужасно",
"Azure AI Speech": "Azure AI Реч",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure Регион",
"Back": "Назад",
"Bad Response": "Невалиден отговор от API",
@ -423,12 +428,14 @@
"Don't have an account?": "Нямате акаунт?",
"don't install random functions from sources you don't trust.": "не инсталирайте случайни функции от източници, на които не се доверявате.",
"don't install random tools from sources you don't trust.": "не инсталирайте случайни инструменти от източници, на които не се доверявате.",
"don't fetch random pipelines from sources you don't trust.": "Не извличайте произволни pipelines от източници, на които не вярвате.",
"Don't like the style": "Не харесваш стила?",
"Done": "Готово",
"Download": "Изтегляне",
"Download as SVG": "Изтегляне като SVG",
"Download canceled": "Изтегляне отменено",
"Download Database": "Сваляне на база данни",
"Download & Delete": "Изтегляне и изтриване",
"Drag and drop a file to upload or select a file to view": "Плъзнете и пуснете файл за качване или изберете файл за преглед",
"Draw": "Рисуване",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Въведете вашата роля",
"Enter Your Username": "Въведете вашето потребителско име",
"Enter your webhook URL": "Въведете вашия URL адрес на webhook",
"Enter your code here...": "Въведете кода си тук...",
"Error": "Грешка",
"ERROR": "ГРЕШКА",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
"Failed to save connections": "",
"Failed to save conversation": "Неуспешно запазване на разговора",
"Failed to save models configuration": "Неуспешно запазване на конфигурацията на моделите",
"Failed to update settings": "Неуспешно актуализиране на настройките",
"Failed to upload file.": "Неуспешно качване на файл.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Групата е изтрита успешно",
"Group Description": "Описание на групата",
"Group Name": "Име на групата",
"Group": "Група",
"Group updated successfully": "Групата е актуализирана успешно",
"Groups": "Групи",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Импортване на промптове",
"Import Tools": "Импортиране на инструменти",
"Important Update": "Важна актуализация",
"Include": "Включи",
"Includes SharePoint": "Включва SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
"Loader": "",
"Loading Kokoro.js...": "Зареждане на Kokoro.js...",
"Loading...": "Зареждане на...",
"Local": "Локално",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Не са намерени модели",
"No models selected": "Няма избрани модели",
"No Notes": "Няма бележки",
"No results": "Няма намерени резултати",
"No results found": "Няма намерени резултати",
"No search query generated": "Не е генерирана заявка за търсене",
"No source available": "Няма наличен източник",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Няма клапани за актуализиране",
"Node Ids": "",
"No suggestion prompts": "Няма предложени подсказки",
"None": "Никой",
"Not factually correct": "Не е фактологически правилно",
"Not helpful": "Не е полезно",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Пайплайнът е изтрит успешно",
"Pipeline downloaded successfully": "Пайплайнът е изтеглен успешно",
"Pipelines": "Пайплайни",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines е система от приставки с възможност за произволно изпълнение на код —",
"Pipelines Not Detected": "Не са открити пайплайни",
"Pipelines Valves": "Клапани на пайплайни",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Предишните 7 дни",
"Previous message": "",
"Private": "",
"Profile": "Профил",
"Profile Image": "Профилна снимка",
"Prompt": "Промпт",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр. Кажи ми забавен факт за Римската империя)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Нулиране на директорията за качване",
"Reset Vector Storage/Knowledge": "Нулиране на векторното хранилище/знания",
"Reset view": "Нулиране на изгледа",
"Reset Image": "Нулиране на изображението",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Известията за отговори не могат да бъдат активирани, тъй като разрешенията за уебсайта са отказани. Моля, посетете настройките на вашия браузър, за да дадете необходимия достъп.",
"Response splitting": "Разделяне на отговора",
"Response Watermark": "",
"RESULT": "Резултат",
"Result": "Резултат",
"Retrieval": "Извличане",
"Retrieval Query Generation": "Генериране на заявка за извличане",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Изпълни",
"Running": "Изпълнява се",
"Running...": "Изпълнява се...",
"Save": "Запис",
"Save & Create": "Запис & Създаване",
"Save & Update": "Запис & Актуализиране",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Грешка при разпознаване на речта: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Двигател за преобразуване на реч в текста",
"Start of the channel": "Начало на канала",
"Stop": "Спри",
"Stop Generating": "",
"Stop Sequence": "Стоп последователност",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT Модел",
"STT Settings": "STT Настройки",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "Генериране на тагове",
"Tags Generation Prompt": "Промпт за генериране на тагове",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Говорете с модела",
"Tap to interrupt": "Докоснете за прекъсване",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Мислил за {{DURATION}}",
"Thought for {{DURATION}} seconds": "Мислил за {{DURATION}} секунди",
"Thought for less than a second": "",
"Thread": "Тред",
"Tika": "Тика",
"Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "সঠিক তথ্য",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "চ্যাট লগ সংরক্ষণের জন্য পদক্ষেপ প্রয়োজন",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "সক্রিয়",
"Active Users": "",
"Add": "যোগ করুন",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "উপলব্ধ!",
"available users": "উপলব্ধ ব্যবহারকারী",
"Away": "অনুপস্থিত",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "পেছনে",
"Bad Response": "খারাপ প্রতিক্রিয়া",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "নিষ্ক্রিয়",
"Discover a function": "",
"Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
@ -423,12 +428,14 @@
"Don't have an account?": "একাউন্ট নেই?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "যে উৎসে আপনি ভরসা করেন না সেখান থেকে এলোমেলো পাইপলাইন আনবেন না।",
"Don't like the style": "স্টাইল পছন্দ করেন না",
"Done": "",
"Download": "ডাউনলোড",
"Download as SVG": "",
"Download canceled": "ডাউনলোড বাতিল করা হয়েছে",
"Download Database": "ডেটাবেজ ডাউনলোড করুন",
"Download & Delete": "ডাউনলোড ও মুছে ফেলুন",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
"Enabled": "",
"Enabled": "সক্রিয়",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "আপনার রোল লিখুন",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "এখানে আপনার কোড লিখুন...",
"Error": "ত্রুটি",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
"Failed to save connections": "",
"Failed to save conversation": "কথোপকথন সংরক্ষণ করতে ব্যর্থ",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "গ্রুপ",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন",
"Import Tools": "",
"Important Update": "গুরুত্বপূর্ণ আপডেট",
"Include": "",
"Includes SharePoint": "SharePoint অন্তর্ভুক্ত",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "লোড হচ্ছে...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "কোন ফলাফল পাওয়া যায়নি",
"No results found": "কোন ফলাফল পাওয়া যায়নি",
"No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি",
"No source available": "কোন উৎস পাওয়া যায়নি",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "কোনো প্রস্তাবিত প্রম্পট নেই",
"None": "কোনোটিই নয়",
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "পাইপলাইন",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines হলো একটি প্লাগইন সিস্টেম, যেখানে যেকোনো কোড চালানো যেতে পারে —",
"Pipelines Not Detected": "",
"Pipelines Valves": "পাইপলাইন ভালভ",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "পূর্ব দিন",
"Previous message": "",
"Private": "",
"Profile": "প্রোফাইল",
"Profile Image": "প্রোফাইল ইমেজ",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "প্রম্প্ট (উদাহরণস্বরূপ, আমি রোমান ইমপার্টের সম্পর্কে একটি উপস্থিতি জানতে বল)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "ছবি রিসেট করুন",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "ফলাফল",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "",
"Running...": "চলমান...",
"Save": "সংরক্ষণ",
"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
"Save & Update": "সংরক্ষণ এবং আপডেট করুন",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
"Start of the channel": "চ্যানেলের শুরু",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "সিকোয়েন্স থামান",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT সেটিংস",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "মডেলের সাথে কথা বলুন",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "থ্রেড",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "সতর্কীকরণ",
"Warning:": "",
"Warning:": "সতর্কতা:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "གནས་ཚུལ་ཡང་དག",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "ཁ་བསྡམས་ཟིན་ཐོ་ཉར་ཚགས་ལ་བྱ་བ་དགོས།",
"Actions": "བྱ་སྤྱོད།",
"Activate": "སྒུལ་བསྐྱོད།",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "ཁ་བརྡའི་ནང་འཇུག་ཏུ་ \"/{{COMMAND}}\" མནན་ནས་བཀའ་བརྡ་འདི་སྒུལ་བསྐྱོད་བྱེད་པ།",
"Active": "ལས་བྱེད་བཞིན་པ།",
"Active Users": "བེད་སྤྱོད་མཁན་ལས་བྱེད་བཞིན་པ།",
"Add": "སྣོན་པ།",
"Add a model ID": "དཔེ་དབྱིབས་ཀྱི་ ID ཞིག་སྣོན་པ།",
@ -156,8 +158,11 @@
"Available list": "ཡོད་པའི་ཐོ་གཞུང་།",
"Available Tools": "",
"available!": "ཡོད།",
"available users": "ཡོད་པའི་སྤྱོད་མཁན",
"Away": "མི་འདུག",
"Awful": "ཧ་ཅང་སྡུག",
"Azure AI Speech": "Azure AI སྐད་ཆ།",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure ས་ཁུལ།",
"Back": "རྒྱབ།",
"Bad Response": "ལན་ངན་པ།",
@ -423,12 +428,14 @@
"Don't have an account?": "རྩིས་ཁྲ་མེད་དམ།",
"don't install random functions from sources you don't trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་མེད་པའི་འབྱུང་ཁུངས་ནས་གང་བྱུང་གི་ལས་འགན་སྒྲིག་སྦྱོར་མ་བྱེད།",
"don't install random tools from sources you don't trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་མེད་པའི་འབྱུང་ཁུངས་ནས་གང་བྱུང་གི་ལག་ཆ་སྒྲིག་སྦྱོར་མ་བྱེད།",
"don't fetch random pipelines from sources you don't trust.": "རྟོགས་མེད་པའི་ཁུངས་ནས་ pipelines གང་འརྒྱུར་མ་འབྱོར་",
"Don't like the style": "བཟོ་ལྟ་ལ་མི་དགའ།",
"Done": "ཚར་སོང་།",
"Download": "ཕབ་ལེན།",
"Download as SVG": "SVG ཐོག་ཕབ་ལེན།",
"Download canceled": "ཕབ་ལེན་རྩིས་མེད་བཏང་།",
"Download Database": "གནས་ཚུལ་མཛོད་ཕབ་ལེན།",
"Download & Delete": "ཕབ་ལེན་དང་བསུབ་",
"Drag and drop a file to upload or select a file to view": "ཡིག་ཆ་ཞིག་འདྲུད་ནས་འཇོག་སྟེ་སྤར་བའམ། ཡང་ན་ཡིག་ཆ་ཞིག་གདམ་ག་བྱས་ནས་ལྟ་བ།",
"Draw": "རི་མོ་འབྲི་བ།",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "ཁྱེད་ཀྱི་གནས་ཚད་འཇུག་པ།",
"Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།",
"Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།",
"Enter your code here...": "ཁྱེད་ཀྱི་ཀོཌ་འདིར་འཇུག...",
"Error": "ནོར་འཁྲུལ།",
"ERROR": "ནོར་འཁྲུལ།",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
"Failed to save connections": "",
"Failed to save conversation": "གླེང་མོལ་ཉར་ཚགས་བྱེད་མ་ཐུབ།",
"Failed to save models configuration": "དཔེ་དབྱིབས་སྒྲིག་འགོད་ཉར་ཚགས་བྱེད་མ་ཐུབ།",
"Failed to update settings": "སྒྲིག་འགོད་གསར་སྒྱུར་བྱེད་མ་ཐུབ།",
"Failed to upload file.": "ཡིག་ཆ་སྤར་མ་ཐུབ།",
@ -738,6 +747,7 @@
"Group deleted successfully": "ཚོགས་པ་ལེགས་པར་བསུབས་ཟིན།",
"Group Description": "ཚོགས་པའི་འགྲེལ་བཤད།",
"Group Name": "ཚོགས་པའི་མིང་།",
"Group": "ཚོགས་པ།",
"Group updated successfully": "ཚོགས་པ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
"Groups": "ཚོགས་པ།",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "འགུལ་སློང་ནང་འདྲེན།",
"Import Tools": "ལག་ཆ་ནང་འདྲེན།",
"Important Update": "གལ་ཆེ་པའི་གསར་སྒྱུར་",
"Include": "ཚུད་པ།",
"Includes SharePoint": "SharePoint ཚུད་པ།",
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api-auth` དར་ཆ་ཚུད་པ།",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api` དར་ཆ་ཚུད་པ།",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "བཟོས་པའི་ཡིག་རྐྱང་ནས་ཐོན་པའི་བསམ་འཆར་ལ་ཨང་རྩིས་ཀྱིས་ཇི་ཙམ་མགྱོགས་པོར་ལན་འདེབས་བྱེད་པར་ཤུགས་རྐྱེན་ཐེབས་པ། སྦྱོང་ཚད་དམའ་བས་ལེགས་སྒྲིག་དལ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་སྦྱོང་ཚད་མཐོ་བས་ཨང་རྩིས་དེ་ལན་འདེབས་ཆེ་བ་བཟོ་ངེས།",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs ལ་ནོར་འཁྲུལ་ཡོང་སྲིད། གནས་ཚུལ་གལ་ཆེན་ར་སྤྲོད་བྱེད་རོགས།",
"Loader": "ནང་འཇུག་བྱེད་པོ།",
"Loading Kokoro.js...": "Kokoro.js ནང་འཇུག་བྱེད་བཞིན་པ།...",
"Loading...": "མངོན་འཁོར་འགྲེལ་འཁོད་བཞིན...",
"Local": "ས་གནས།",
"Local Task Model": "",
"Location access not allowed": "གནས་ཡུལ་འཛུལ་སྤྱོད་ལ་གནང་བ་མ་སྤྲད།",
@ -986,6 +999,7 @@
"No models found": "དཔེ་དབྱིབས་མ་རྙེད།",
"No models selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།",
"No Notes": "",
"No results": "འབྲས་བུ་མ་རྙེད།",
"No results found": "འབྲས་བུ་མ་རྙེད།",
"No search query generated": "འཚོལ་བཤེར་འདྲི་བ་བཟོས་མེད།",
"No source available": "འབྱུང་ཁུངས་མེད།",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "གསར་སྒྱུར་བྱེད་རྒྱུའི་ Valve མེད།",
"Node Ids": "",
"No suggestion prompts": "གསལ་འདེབས་མེད།",
"None": "གཅིག་ཀྱང་མེད།",
"Not factually correct": "དོན་དངོས་དང་མི་མཐུན།",
"Not helpful": "ཕན་ཐོགས་མེད།",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "རྒྱུ་ལམ་ལེགས་པར་བསུབས་ཟིན།",
"Pipeline downloaded successfully": "རྒྱུ་ལམ་ལེགས་པར་ཕབ་ལེན་བྱས་ཟིན།",
"Pipelines": "རྒྱུ་ལམ།",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ནི་ མ་སྦྱར་མའི་མ་ལག་རིམ་པའི་མུ་མཐུད་རྣམ་གྲངས་ཞིག་ཡིན་པས་ གསང་ཡིག་གང་རུང་ལག་བསྟར་བྱེད་ཐུབ —",
"Pipelines Not Detected": "རྒྱུ་ལམ་མ་རྙེད།",
"Pipelines Valves": "རྒྱུ་ལམ་གྱི་ Valve",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
"Previous message": "",
"Private": "སྒེར།",
"Profile": "སྤྱི་ཐག",
"Profile Image": "སྤྱི་ཐག་པར།",
"Prompt": "འགུལ་སློང་།",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "འགུལ་སློང་ (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར་གྱི་དགོད་བྲོ་བའི་དོན་དངོས་ཤིག་ང་ལ་ཤོད་པ།)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "སྤར་བའི་ཐོ་འཚོལ་སླར་སྒྲིག",
"Reset Vector Storage/Knowledge": "ཚད་བརྡའི་གསོག་ཆས།/ཤེས་བྱ་སླར་སྒྲིག",
"Reset view": "མཐོང་སྣང་སླར་སྒྲིག",
"Reset Image": "བརྙན་རིས་བསྐྱར་སྒྲིག",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "དྲ་ཚིགས་ཀྱི་དབང་ཚད་ཁས་མ་བླངས་པས་ལན་གྱི་བརྡ་ཁྱབ་སྒུལ་བསྐྱོད་བྱེད་མི་ཐུབ། དགོས་ངེས་ཀྱི་འཛུལ་སྤྱོད་སྤྲོད་པར་ཁྱེད་ཀྱི་བརྡ་འཚོལ་ཆས་ཀྱི་སྒྲིག་འགོད་ལ་ལྟ་རོགས།",
"Response splitting": "ལན་བགོ་བ།",
"Response Watermark": "",
"RESULT": "འབྲས་བུ།",
"Result": "འབྲས་བུ།",
"Retrieval": "ལེན་ཚུར་སྒྲུབ།",
"Retrieval Query Generation": "ལེན་ཚུར་སྒྲུབ་འདྲི་བ་བཟོ་སྐྲུན།",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "ལག་བསྟར།",
"Running": "ལག་བསྟར་བྱེད་བཞིན་པ།",
"Running...": "ལག་བསྟར་བྱེད་བཞིན་པ།...",
"Save": "ཉར་ཚགས།",
"Save & Create": "ཉར་ཚགས་ & གསར་བཟོ།",
"Save & Update": "ཉར་ཚགས་ & གསར་སྒྱུར།",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "གཏམ་བཤད་ངོས་འཛིན་ནོར་འཁྲུལ།: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།",
"Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་",
"Stop": "མཚམས་འཇོག",
"Stop Generating": "",
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT དཔེ་དབྱིབས།",
"STT Settings": "STT སྒྲིག་འགོད།",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}} རིང་བསམས།",
"Thought for {{DURATION}} seconds": "སྐར་ཆ་ {{DURATION}} རིང་བསམས།",
"Thought for less than a second": "",
"Thread": "བརྗོད་གཞི",
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL དགོས་ངེས།",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informació precisa",
"Action": "Acció",
"Action not found": "",
"Action Required for Chat Log Storage": "Cal una acció per desar el registre del xat",
"Actions": "Accions",
"Activate": "Activar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activa aquest comanda escrivint \"{{COMMAND}}\" en el xat",
"Active": "Actiu",
"Active Users": "Usuaris actius",
"Add": "Afegir",
"Add a model ID": "Afegir un ID de model",
@ -156,8 +158,11 @@
"Available list": "Llista de disponibles",
"Available Tools": "Eines disponibles",
"available!": "disponible!",
"available users": "usuaris disponibles",
"Away": "Absent",
"Awful": "Terrible",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Regió d'Azure",
"Back": "Enrere",
"Bad Response": "Resposta errònia",
@ -423,12 +428,14 @@
"Don't have an account?": "No tens un compte?",
"don't install random functions from sources you don't trust.": "no instal·lis funcions aleatòries de fonts en què no confiïs.",
"don't install random tools from sources you don't trust.": "no instal·lis eines aleatòries de fonts en què no confiïs.",
"don't fetch random pipelines from sources you don't trust.": "No obtinguis pipelines aleatòries de fonts no fiables.",
"Don't like the style": "No t'agrada l'estil?",
"Done": "Fet",
"Download": "Descarregar",
"Download as SVG": "Descarrega com a SVG",
"Download canceled": "Descàrrega cancel·lada",
"Download Database": "Descarregar la base de dades",
"Download & Delete": "Descarregar i suprimir",
"Drag and drop a file to upload or select a file to view": "Arrossega un fitxer per pujar-lo o selecciona'n un per visualitzar-lo",
"Draw": "Dibuixar",
"Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo",
@ -593,6 +600,7 @@
"Enter Your Role": "Introdueix el teu rol",
"Enter Your Username": "Introdueix el teu nom d'usuari",
"Enter your webhook URL": "Entra la URL del webhook",
"Enter your code here...": "Introduïu el vostre codi aquí...",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
"Failed to save connections": "No s'han pogut desar les connexions",
"Failed to save conversation": "No s'ha pogut desar la conversa",
"Failed to save models configuration": "No s'ha pogut desar la configuració dels models",
"Failed to update settings": "No s'han pogut actualitzar les preferències",
"Failed to upload file.": "No s'ha pogut pujar l'arxiu.",
@ -738,6 +747,7 @@
"Group deleted successfully": "El grup s'ha eliminat correctament",
"Group Description": "Descripció del grup",
"Group Name": "Nom del grup",
"Group": "Grup",
"Group updated successfully": "Grup actualitzat correctament",
"Groups": "Grups",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importar suggeriments d'indicacions",
"Import Prompts": "Importar indicacions",
"Import Tools": "Importar eines",
"Important Update": "Actualització important",
"Include": "Incloure",
"Includes SharePoint": "Inclou SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclou `--api-auth` quan executis stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inclou `--api` quan executis stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influeix amb la rapidesa amb què l'algoritme respon als comentaris del text generat. Una taxa d'aprenentatge més baixa donarà lloc a ajustos més lents, mentre que una taxa d'aprenentatge més alta farà que l'algorisme sigui més sensible.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
"Loader": "Carregador",
"Loading Kokoro.js...": "Carregant Kokoro.js",
"Loading...": "Carregant...",
"Local": "Local",
"Local Task Model": "Model local de tasques",
"Location access not allowed": "Accés a la ubicació no permesa",
@ -986,6 +999,7 @@
"No models found": "No s'han trobat models",
"No models selected": "No s'ha seleccionat cap model",
"No Notes": "No hi ha notes",
"No results": "No s'han trobat resultats",
"No results found": "No s'han trobat resultats",
"No search query generated": "No s'ha generat cap consulta",
"No source available": "Sense font disponible",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "No hi ha cap Valve per actualitzar",
"Node Ids": "",
"No suggestion prompts": "Cap prompt suggerit",
"None": "Cap",
"Not factually correct": "No és clarament correcte",
"Not helpful": "No ajuda",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline eliminada correctament",
"Pipeline downloaded successfully": "Pipeline descarregada correctament",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines és un sistema de connectors amb execució arbitrària de codi —",
"Pipelines Not Detected": "No s'ha detectat Pipelines",
"Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.md)": "Text en pla (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 dies anteriors",
"Previous message": "Missatge anterior",
"Private": "Privat",
"Profile": "Perfil",
"Profile Image": "Imatge de perfil",
"Prompt": "Indicació",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicació (p. ex. Digues-me quelcom divertit sobre l'Imperi Romà)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Restableix el directori de pujades",
"Reset Vector Storage/Knowledge": "Restableix el Repositori de vectors/Coneixement",
"Reset view": "Netejar la vista",
"Reset Image": "Restableix la imatge",
"Response": "Resposta",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
"Response splitting": "Divisió de la resposta",
"Response Watermark": "Marca d'aigua de la resposta",
"RESULT": "Resultat",
"Result": "Resultat",
"Retrieval": "Retrieval",
"Retrieval Query Generation": "Generació de consultes Retrieval",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Executar",
"Running": "S'està executant",
"Running...": "S'està executant...",
"Save": "Desar",
"Save & Create": "Desar i crear",
"Save & Update": "Desar i actualitzar",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
"Speech-to-Text": "Àudio-a-Text",
"Speech-to-Text Engine": "Motor de veu a text",
"Start of the channel": "Inici del canal",
"Stop": "Atura",
"Stop Generating": "Atura la generació",
"Stop Sequence": "Atura la seqüència",
@ -1334,6 +1355,7 @@
"Strikethrough": "Ratllat",
"Strip Existing OCR": "Eliminar OCR existent",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Elimina el text OCR existent del PDF i torna a executar l'OCR. S'ignora si Força OCR està habilitat. Per defecte és Fals.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model SST",
"STT Settings": "Preferències de STT",
"Stylized PDF Export": "Exportació en PDF estilitzat",
@ -1412,6 +1434,7 @@
"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",
"Thread": "Fil",
"Tika": "Tika",
"Tika Server URL required.": "La URL del servidor Tika és obligatòria.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Gikinahanglan ang aksyon aron matipigan ang chat log",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Aktibo",
"Active Users": "",
"Add": "",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "magamit!",
"available users": "magamit nga mga tiggamit",
"Away": "Wala",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Balik",
"Bad Response": "",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "Gipalong",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "Pagkaplag usa ka prompt",
@ -423,12 +428,14 @@
"Don't have an account?": "Wala kay account ?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Ayaw kuhaa og random nga pipelines gikan sa dili kasaligan nga mga tinubdan.",
"Don't like the style": "",
"Done": "",
"Download": "",
"Download as SVG": "",
"Download canceled": "",
"Download Database": "I-download ang database",
"Download & Delete": "I-download ug papas",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
"Enabled": "",
"Enabled": "Gipaandar",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Isulod ang imong kodigo dinhi...",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
"Failed to save connections": "",
"Failed to save conversation": "Napakyas sa pagtipig sa panag-istorya",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grupo",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Import prompt",
"Import Tools": "",
"Important Update": "Mahinungdanong update",
"Include": "",
"Includes SharePoint": "Naglakip sa SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Nagkarga...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Walay resulta",
"No results found": "",
"No search query generated": "",
"No source available": "Walay tinubdan nga anaa",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "Walay gisugyot nga prompt",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "Ang Pipelines usa ka plugin system nga makapadagan og bisan unsang kodigo —",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "I-reset ang hulagway",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "RESULTA",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "",
"Run": "",
"Running": "",
"Running...": "Nagdagan...",
"Save": "Tipigi",
"Save & Create": "I-save ug Paghimo",
"Save & Update": "I-save ug I-update",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Sayop sa pag-ila sa tingog: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Engine sa pag-ila sa tingog",
"Start of the channel": "Sinugdan sa channel",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "Mga setting sa STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Pakig-istorya sa modelo",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Hilo",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "",
"Warning:": "",
"Warning:": "Pahimangno:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Přesné informace",
"Action": "Akce",
"Action not found": "Akce nenalezena",
"Action Required for Chat Log Storage": "Je vyžadována akce pro uložení záznamu chatu",
"Actions": "Akce",
"Activate": "Aktivovat",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tento příkaz napsáním \"/{{COMMAND}}\" do vstupního pole konverzace.",
"Active": "Aktivní",
"Active Users": "Aktivní uživatelé",
"Add": "Přidat",
"Add a model ID": "Přidat ID modelu",
@ -156,8 +158,11 @@
"Available list": "Seznam dostupných",
"Available Tools": "Dostupné nástroje",
"available!": "k dispozici!",
"available users": "dostupní uživatelé",
"Away": "Nepřítomen",
"Awful": "Hrozné",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Oblast Azure",
"Back": "Zpět",
"Bad Response": "Špatná odpověď",
@ -423,12 +428,14 @@
"Don't have an account?": "Nemáte účet?",
"don't install random functions from sources you don't trust.": "neinstalujte náhodné funkce ze zdrojů, kterým nedůvěřujete.",
"don't install random tools from sources you don't trust.": "neinstalujte náhodné nástroje ze zdrojů, kterým nedůvěřujete.",
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines ze zdrojů, kterým nedůvěřujete.",
"Don't like the style": "Nelíbí se mi styl",
"Done": "Hotovo",
"Download": "Stáhnout",
"Download as SVG": "Stáhnout jako SVG",
"Download canceled": "Stahování zrušeno",
"Download Database": "Stáhnout databázi",
"Download & Delete": "Stáhnout a smazat",
"Drag and drop a file to upload or select a file to view": "Přetáhněte soubor pro nahrání nebo vyberte soubor k zobrazení",
"Draw": "Kreslit",
"Drop any files here to upload": "Přetáhněte sem soubory pro nahrání",
@ -593,6 +600,7 @@
"Enter Your Role": "Zadejte svou roli",
"Enter Your Username": "Zadejte své uživatelské jméno",
"Enter your webhook URL": "Zadejte URL svého webhooku",
"Enter your code here...": "Zadejte sem svůj kód...",
"Error": "Chyba",
"ERROR": "CHYBA",
"Error accessing directory": "Chyba při přístupu k adresáři",
@ -654,6 +662,7 @@
"Failed to load file content.": "Nepodařilo se načíst obsah souboru.",
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
"Failed to save connections": "Nepodařilo se uložit připojení",
"Failed to save conversation": "Nepodařilo se uložit konverzaci",
"Failed to save models configuration": "Nepodařilo se uložit konfiguraci modelů",
"Failed to update settings": "Nepodařilo se aktualizovat nastavení",
"Failed to upload file.": "Nepodařilo se nahrát soubor.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Skupina byla úspěšně smazána",
"Group Description": "Popis skupiny",
"Group Name": "Název skupiny",
"Group": "Skupina",
"Group updated successfully": "Skupina byla úspěšně aktualizována",
"Groups": "Skupiny",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importovat návrhy instrukcí",
"Import Prompts": "Importovat instrukce",
"Import Tools": "Importovat nástroje",
"Important Update": "Důležitá aktualizace",
"Include": "Zahrnout",
"Includes SharePoint": "Zahrnuje SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api-auth`.",
"Include `--api` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api`.",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ovlivňuje, jak rychle algoritmus reaguje na zpětnou vazbu z generovaného textu. Nižší míra učení povede k pomalejším úpravám, zatímco vyšší míra učení učiní algoritmus citlivějším.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.",
"Loader": "Zavaděč",
"Loading Kokoro.js...": "Načítám Kokoro.js...",
"Loading...": "Načítám...",
"Local": "Lokální",
"Local Task Model": "Lokální model pro úkoly",
"Location access not allowed": "Přístup k poloze nebyl povolen",
@ -986,6 +999,7 @@
"No models found": "Nebyly nalezeny žádné modely",
"No models selected": "Nebyly vybrány žádné modely",
"No Notes": "Žádné poznámky",
"No results": "Nebyly nalezeny žádné výsledky",
"No results found": "Nebyly nalezeny žádné výsledky",
"No search query generated": "Nebyl vygenerován žádný vyhledávací dotaz.",
"No source available": "Není k dispozici žádný zdroj.",
@ -993,6 +1007,7 @@
"No valves": "Žádné ventily",
"No valves to update": "Žádné ventily k aktualizaci",
"Node Ids": "ID uzlů",
"No suggestion prompts": "Žádné návrhy promptů",
"None": "Žádný",
"Not factually correct": "Fakticky nesprávné",
"Not helpful": "Nepomohlo",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Potrubí byla úspěšně smazána",
"Pipeline downloaded successfully": "Potrubí byla úspěšně stažena",
"Pipelines": "Potrubí",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines je zásuvný systém s možností libovolného spouštění kódu —",
"Pipelines Not Detected": "Nebyly detekovány žádné potrubí",
"Pipelines Valves": "Ventily potrubí",
"Plain text (.md)": "Prostý text (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Posledních 7 dní",
"Previous message": "Předchozí zpráva",
"Private": "Soukromé",
"Profile": "Profil",
"Profile Image": "Profilový obrázek",
"Prompt": "Instrukce",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instrukce (např. Řekni mi zajímavost o Římské říši)",
@ -1166,9 +1183,11 @@
"Reset Vector Storage/Knowledge": "Resetovat vektorové úložiště/znalosti",
"Reset view": "Resetovat zobrazení",
"Response": "Odpověď",
"Reset Image": "Resetovat obrázek",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámení o odpovědích nelze aktivovat, protože oprávnění webu byla zamítnuta. Navštivte nastavení svého prohlížeče a udělte potřebný přístup.",
"Response splitting": "Dělení odpovědi",
"Response Watermark": "Vodoznak odpovědi",
"RESULT": "Výsledek",
"Result": "Výsledek",
"Retrieval": "Vyhledávání",
"Retrieval Query Generation": "Generování vyhledávacího dotazu",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Spustit",
"Running": "Běží",
"Running...": "Běží...",
"Save": "Uložit",
"Save & Create": "Uložit a vytvořit",
"Save & Update": "Uložit a aktualizovat",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Chyba rozpoznávání řeči: {{error}}",
"Speech-to-Text": "Převod řeči na text",
"Speech-to-Text Engine": "Jádro pro převod řeči na text",
"Start of the channel": "Začátek kanálu",
"Stop": "Zastavit",
"Stop Generating": "Zastavit generování",
"Stop Sequence": "Ukončovací sekvence",
@ -1334,6 +1355,7 @@
"Strikethrough": "Přeškrtnutí",
"Strip Existing OCR": "Odstranit existující OCR",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Odstranit existující text OCR z PDF a znovu spustit OCR. Ignorováno, pokud je povoleno Vynutit OCR. Výchozí hodnota je False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model STT",
"STT Settings": "Nastavení STT",
"Stylized PDF Export": "Stylizovaný export do PDF",
@ -1412,6 +1434,7 @@
"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",
"Thread": "Vlákno",
"Tika": "Tika",
"Tika Server URL required.": "Je vyžadována URL serveru Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Profilinformation",
"Action": "Handling",
"Action not found": "",
"Action Required for Chat Log Storage": "Handling påkrævet for lagring af chatlog",
"Actions": "Handlinger",
"Activate": "Aktiver",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommando ved at skrive \"/{{COMMAND}}\" til chat input.",
"Active": "Aktiv",
"Active Users": "Aktive brugere",
"Add": "Tilføj",
"Add a model ID": "Tilføj et model-ID",
@ -156,8 +158,11 @@
"Available list": "Tilgængelige lister",
"Available Tools": "Tilgængelige værktøj",
"available!": "tilgængelig!",
"available users": "tilgængelige brugere",
"Away": "Fraværende",
"Awful": "Forfærdeligt",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure Region",
"Back": "Tilbage",
"Bad Response": "Problem i response",
@ -423,12 +428,14 @@
"Don't have an account?": "Har du ikke en profil?",
"don't install random functions from sources you don't trust.": "lad være med at installere tilfældige funktioner fra kilder, som du ikke stoler på.",
"don't install random tools from sources you don't trust.": "lad være med at installere tilfældige værktøjer fra kilder, som du ikke stoler på.",
"don't fetch random pipelines from sources you don't trust.": "Hent ikke tilfældige pipelines fra kilder, du ikke stoler på.",
"Don't like the style": "Kan du ikke lide stilen",
"Done": "Færdig",
"Download": "Download",
"Download as SVG": "Download som SVG",
"Download canceled": "Download afbrudt",
"Download Database": "Download database",
"Download & Delete": "Download og slet",
"Drag and drop a file to upload or select a file to view": "Træk og slip en fil for at uploade eller vælg en fil for at se",
"Draw": "Tegn",
"Drop any files here to upload": "Drop nogen filer her for at uploade",
@ -593,6 +600,7 @@
"Enter Your Role": "Indtast din rolle",
"Enter Your Username": "Indtast dit brugernavn",
"Enter your webhook URL": "Indtast din webhook URL",
"Enter your code here...": "Indtast din kode her...",
"Error": "Fejl",
"ERROR": "FEJL",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Kunne ikke indlæse filindhold.",
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
"Failed to save connections": "Kunne ikke gemme forbindelser",
"Failed to save conversation": "Kunne ikke gemme samtalen",
"Failed to save models configuration": "Kunne ikke gemme modeller konfiguration",
"Failed to update settings": "Kunne ikke opdatere indstillinger",
"Failed to upload file.": "Kunne ikke uploade fil.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Gruppe slettet.",
"Group Description": "Gruppe beskrivelse",
"Group Name": "Gruppenavn",
"Group": "Gruppe",
"Group updated successfully": "Gruppe opdateret.",
"Groups": "Grupper",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importer prompt forslag",
"Import Prompts": "Importer prompts",
"Import Tools": "Importer værktøjer",
"Important Update": "Vigtig opdatering",
"Include": "Inkluder",
"Includes SharePoint": "Inkluderer SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder `--api-auth` flag, når du kører stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inkluder `--api` flag, når du kører stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påvirker hvor hurtigt algoritmen reagerer på feedback fra den genererede tekst. En lavere indlæringshastighed vil resultere i langsommere justeringer, mens en højere indlæringshastighed vil gøre algoritmen mere responsiv.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.",
"Loader": "Loader",
"Loading Kokoro.js...": "Indlæser Kokoro.js...",
"Loading...": "Indlæser...",
"Local": "Lokal",
"Local Task Model": "Lokal opgavemodel",
"Location access not allowed": "Adgang til placering ikke tilladt",
@ -986,6 +999,7 @@
"No models found": "Ingen modeller fundet",
"No models selected": "Ingen modeller valgt",
"No Notes": "Ingen noter",
"No results": "Ingen resultater fundet",
"No results found": "Ingen resultater fundet",
"No search query generated": "Ingen søgeforespørgsel genereret",
"No source available": "Ingen kilde tilgængelig",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Ingen ventiler at opdatere",
"Node Ids": "",
"No suggestion prompts": "Ingen forslagsprompter",
"None": "Ingen",
"Not factually correct": "Ikke faktuelt korrekt",
"Not helpful": "Ikke hjælpsom",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline slettet.",
"Pipeline downloaded successfully": "Pipeline downloadet.",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines er et plugin-system med vilkårlig kodekørsel —",
"Pipelines Not Detected": "Pipelines ikke registreret",
"Pipelines Valves": "Pipelines-ventiler",
"Plain text (.md)": "Almindelig tekst (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Seneste 7 dage",
"Previous message": "Forrige besked",
"Private": "Privat",
"Profile": "Profil",
"Profile Image": "Profilbillede",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (f.eks. Fortæl mig en sjov fakta om Romerriget)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Nulstil uploadmappe",
"Reset Vector Storage/Knowledge": "Nulstil vektor lager/viden",
"Reset view": "Nulstil visning",
"Reset Image": "Nulstil billede",
"Response": "Svar",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarnotifikationer kan ikke aktiveres, da webstedets tilladelser er blevet nægtet. Besøg dine browserindstillinger for at give den nødvendige adgang.",
"Response splitting": "Svaropdeling",
"Response Watermark": "Vandmærke på svar",
"RESULT": "Resultat",
"Result": "Resultat",
"Retrieval": "Hentning",
"Retrieval Query Generation": "Hentnings forespørgsel generering",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Kør",
"Running": "Kører",
"Running...": "Kører...",
"Save": "Gem",
"Save & Create": "Gem og opret",
"Save & Update": "Gem og opdater",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Talegenkendelsesfejl: {{error}}",
"Speech-to-Text": "Tale-til-tekst",
"Speech-to-Text Engine": "Tale-til-tekst-engine",
"Start of the channel": "Kanalens start",
"Stop": "Stop",
"Stop Generating": "Stop generering",
"Stop Sequence": "Stopsekvens",
@ -1334,6 +1355,7 @@
"Strikethrough": "Gennemstreget",
"Strip Existing OCR": "Fjern eksisterende OCR",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Fjern eksisterende OCR-tekst fra PDF'en og kør OCR igen. Ignoreres hvis Force OCR er aktiveret. Standard er falsk.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT-model",
"STT Settings": "STT-indstillinger",
"Stylized PDF Export": "Stiliseret PDF eksport",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Tanker for {{DURATION}}",
"Thought for {{DURATION}} seconds": "Tanker for {{DURATION}} sekunder",
"Thought for less than a second": "",
"Thread": "Tråd",
"Tika": "Tika",
"Tika Server URL required.": "Tika-server-URL påkrævet.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Präzise Information(en)",
"Action": "Aktion",
"Action not found": "",
"Action Required for Chat Log Storage": "Aktion erforderlich für die Speicherung des Chat-Protokolls",
"Actions": "Aktionen",
"Activate": "Aktivieren",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivieren Sie diesen Befehl, indem Sie \"/{{COMMAND}}\" in die Chat-Eingabe eingeben.",
"Active": "Aktiv",
"Active Users": "Aktive Benutzer",
"Add": "Hinzufügen",
"Add a model ID": "Modell-ID hinzufügen",
@ -156,8 +158,11 @@
"Available list": "Verfügbare Liste",
"Available Tools": "Verfügbare Werkzeuge",
"available!": "Verfügbar!",
"available users": "verfügbare Benutzer",
"Away": "Abwesend",
"Awful": "Schrecklich",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure-Region",
"Back": "Zurück",
"Bad Response": "Schlechte Antwort",
@ -423,12 +428,14 @@
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?",
"don't install random functions from sources you don't trust.": "installieren Sie keine Funktionen aus Quellen, denen Sie nicht vertrauen.",
"don't install random tools from sources you don't trust.": "installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vertrauen.",
"don't fetch random pipelines from sources you don't trust.": "Rufen Sie keine zufälligen Pipelines von nicht vertrauenswürdigen Quellen ab.",
"Don't like the style": "Schlechter Schreibstil",
"Done": "Erledigt",
"Download": "Exportieren",
"Download as SVG": "Exportieren als SVG",
"Download canceled": "Exportierung abgebrochen",
"Download Database": "Datenbank exportieren",
"Download & Delete": "Herunterladen & Löschen",
"Drag and drop a file to upload or select a file to view": "Ziehen Sie eine Datei zum Hochladen oder wählen Sie eine Datei zum Anzeigen aus",
"Draw": "Zeichnen",
"Drop any files here to upload": "Dateien hierher ziehen, um sie hochzuladen",
@ -593,6 +600,7 @@
"Enter Your Role": "Geben Sie Ihre Rolle ein",
"Enter Your Username": "Geben Sie Ihren Benutzernamen ein",
"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
"Enter your code here...": "Geben Sie hier Ihren Code ein...",
"Error": "Fehler",
"ERROR": "FEHLER",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Fehler beim Laden des Dateiinhalts.",
"Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.",
"Failed to save connections": "Verbindungen konnten nicht gespeichert werden",
"Failed to save conversation": "Unterhaltung konnte nicht gespeichert werden",
"Failed to save models configuration": "Fehler beim Speichern der Modellkonfiguration",
"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
"Failed to upload file.": "Fehler beim Hochladen der Datei.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Gruppe erfolgreich gelöscht",
"Group Description": "Gruppenbeschreibung",
"Group Name": "Gruppenname",
"Group": "Gruppe",
"Group updated successfully": "Gruppe erfolgreich aktualisiert",
"Groups": "Gruppen",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Prompt Vorschläge importieren",
"Import Prompts": "Prompts importieren",
"Import Tools": "Werkzeuge importieren",
"Important Update": "Wichtiges Update",
"Include": "Einschließen",
"Includes SharePoint": "Enthält SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api-auth` hinzu",
"Include `--api` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api` hinzu",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfen Sie wichtige Informationen.",
"Loader": "",
"Loading Kokoro.js...": "Lade Kokoro.js...",
"Loading...": "Lade...",
"Local": "Lokal",
"Local Task Model": "Lokales Aufgabenmodell",
"Location access not allowed": "Standortzugriff nicht erlaubt",
@ -986,6 +999,7 @@
"No models found": "Keine Modelle gefunden",
"No models selected": "Keine Modelle ausgewählt",
"No Notes": "Keine Notizen",
"No results": "Keine Ergebnisse gefunden",
"No results found": "Keine Ergebnisse gefunden",
"No search query generated": "Keine Suchanfrage generiert",
"No source available": "Keine Quelle verfügbar",
@ -993,6 +1007,7 @@
"No valves": "Keine Valves",
"No valves to update": "Keine Valves zum Aktualisieren",
"Node Ids": "",
"No suggestion prompts": "Keine Vorschlags-Prompts",
"None": "Nichts",
"Not factually correct": "Nicht sachlich korrekt",
"Not helpful": "Nicht hilfreich",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline erfolgreich gelöscht",
"Pipeline downloaded successfully": "Pipeline erfolgreich heruntergeladen",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ist ein Plug-in-System mit beliebiger Codeausführung —",
"Pipelines Not Detected": "Pipelines nicht erkannt",
"Pipelines Valves": "Pipeline Valves",
"Plain text (.md)": "Nur Text (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Vorherige 7 Tage",
"Previous message": "Vorherige Nachricht",
"Private": "Privat",
"Profile": "Profil",
"Profile Image": "Profilbild",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z. B. \"Erzähle mir eine interessante Tatsache über das Römische Reich\")",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Upload-Verzeichnis zurücksetzen",
"Reset Vector Storage/Knowledge": "Vektorspeicher/Wissen zurücksetzen",
"Reset view": "Ansicht zurücksetzen",
"Reset Image": "Bild zurücksetzen",
"Response": "Antwort",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Benachrichtigungen können nicht aktiviert werden, da die Website-Berechtigungen abgelehnt wurden. Bitte besuchen Sie Ihre Browser-Einstellungen, um den erforderlichen Zugriff zu gewähren.",
"Response splitting": "Antwortaufteilung",
"Response Watermark": "Antwort Wasserzeichen",
"RESULT": "Ergebnis",
"Result": "Ergebnis",
"Retrieval": "",
"Retrieval Query Generation": "Abfragegenerierung",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Ausführen",
"Running": "Läuft",
"Running...": "Läuft...",
"Save": "Speichern",
"Save & Create": "Erstellen",
"Save & Update": "Aktualisieren",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
"Speech-to-Text": "Sprache-zu-Text",
"Speech-to-Text Engine": "Sprache-zu-Text-Engine",
"Start of the channel": "Beginn des Kanals",
"Stop": "Stop",
"Stop Generating": "Generierung stoppen",
"Stop Sequence": "Stop-Sequenz",
@ -1334,6 +1355,7 @@
"Strikethrough": "Durchgestrichen",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT-Modell",
"STT Settings": "STT-Einstellungen",
"Stylized PDF Export": "Stilisierter PDF-Export",
@ -1412,6 +1434,7 @@
"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",
"Thread": "Diskussionsfaden",
"Tika": "Tika",
"Tika Server URL required.": "Tika-Server-URL erforderlich.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Much action require for chat log storage",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Much active",
"Active Users": "",
"Add": "",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "available! So excite!",
"available users": "such available users",
"Away": "So away",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Back",
"Bad Response": "",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "Disabled sad",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "Discover a prompt",
@ -423,12 +428,14 @@
"Don't have an account?": "No account? Much sad.",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "don't fetch random pipelines from sources you don't trust, much wow.",
"Don't like the style": "",
"Done": "",
"Download": "",
"Download as SVG": "",
"Download canceled": "",
"Download Database": "Download Database",
"Download & Delete": "Download & delete wow",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "Enable New Bark Ups",
"Enabled": "",
"Enabled": "Enabled wow",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Enter code here... much code",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Failed to read clipboard borks",
"Failed to save connections": "",
"Failed to save conversation": "Failed to save conversation borks",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Much group",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Import Promptos",
"Import Tools": "",
"Important Update": "Very important update",
"Include": "",
"Includes SharePoint": "Includes SharePoint, much include",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Much loading...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "No results, very empty",
"No results found": "",
"No search query generated": "",
"No source available": "No source available",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "No suggestion prompts. So empty.",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines be plugin system, run code arbitrary — much wow",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "",
"Previous message": "",
"Private": "",
"Profile": "Such profile",
"Profile Image": "",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Reset image. Very wow.",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "RESULT much",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "",
"Run": "",
"Running": "",
"Running...": "Running... wow",
"Save": "Save much wow",
"Save & Create": "Save & Create much create",
"Save & Update": "Save & Update much update",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Speech-to-Text Engine much speak",
"Start of the channel": "Start of channel",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Stop Sequence much stop",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT Settings very settings",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Talk to model",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Such thread",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "",
"Warning:": "",
"Warning:": "Much warning:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Ακριβείς πληροφορίες",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Απαιτείται ενέργεια για την αποθήκευση του αρχείου συνομιλίας",
"Actions": "Ενέργειες",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ενεργοποιήστε αυτή την εντολή πληκτρολογώντας \"/{{COMMAND}}\" στο πεδίο συνομιλίας.",
"Active": "Ενεργός",
"Active Users": "Ενεργοί Χρήστες",
"Add": "Προσθήκη",
"Add a model ID": "Προσθήκη αναγνωριστικού μοντέλου",
@ -156,8 +158,11 @@
"Available list": "Διαθέσιμη λίστα",
"Available Tools": "",
"available!": "διαθέσιμο!",
"available users": "διαθέσιμοι χρήστες",
"Away": "Απών",
"Awful": "Ασχημο",
"Azure AI Speech": "Ομιλία Azure AI",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Περιοχή Azure",
"Back": "Πίσω",
"Bad Response": "Κακή Απάντηση",
@ -423,12 +428,14 @@
"Don't have an account?": "Δεν έχετε λογαριασμό;",
"don't install random functions from sources you don't trust.": "μην εγκαθιστάτε τυχαίες λειτουργίες από πηγές που δεν εμπιστεύεστε.",
"don't install random tools from sources you don't trust.": "μην εγκαθιστάτε τυχαία εργαλεία από πηγές που δεν εμπιστεύεστε.",
"don't fetch random pipelines from sources you don't trust.": "Μην ανακτάτε τυχαία pipelines από μη αξιόπιστες πηγές.",
"Don't like the style": "Δεν σας αρέσει το στυλ",
"Done": "Έτοιμο",
"Download": "Λήψη",
"Download as SVG": "",
"Download canceled": "Η λήψη ακυρώθηκε",
"Download Database": "Λήψη Βάσης Δεδομένων",
"Download & Delete": "Λήψη & Διαγραφή",
"Drag and drop a file to upload or select a file to view": "Σύρετε και αφήστε ένα αρχείο για να το ανεβάσετε ή επιλέξτε ένα αρχείο για να το δείτε",
"Draw": "Σχεδίαση",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Εισάγετε τον Ρόλο σας",
"Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας",
"Enter your webhook URL": "",
"Enter your code here...": "Εισαγάγετε τον κώδικά σας εδώ...",
"Error": "Σφάλμα",
"ERROR": "ΣΦΑΛΜΑ",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
"Failed to save connections": "",
"Failed to save conversation": "Αποτυχία αποθήκευσης συνομιλίας",
"Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων",
"Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων",
"Failed to upload file.": "Αποτυχία ανεβάσματος αρχείου.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Η ομάδα διαγράφηκε με επιτυχία",
"Group Description": "Περιγραφή Ομάδας",
"Group Name": "Όνομα Ομάδας",
"Group": "Ομάδα",
"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
"Groups": "Ομάδες",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Εισαγωγή Προτροπών",
"Import Tools": "Εισαγωγή Εργαλείων",
"Important Update": "Σημαντική ενημέρωση",
"Include": "Συμπερίληψη",
"Includes SharePoint": "Περιλαμβάνει το SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api-auth` όταν τρέχετε το stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api` όταν τρέχετε το stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Φόρτωση...",
"Local": "Τοπικό",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Δεν βρέθηκαν μοντέλα",
"No models selected": "Δεν έχουν επιλεγεί μοντέλα",
"No Notes": "",
"No results": "Δεν βρέθηκαν αποτελέσματα",
"No results found": "Δεν βρέθηκαν αποτελέσματα",
"No search query generated": "Δεν δημιουργήθηκε ερώτηση αναζήτησης",
"No source available": "Δεν υπάρχει διαθέσιμη πηγή",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Δεν υπάρχουν βαλβίδες για ενημέρωση",
"Node Ids": "",
"No suggestion prompts": "Χωρίς προτεινόμενες υποδείξεις",
"None": "Κανένα",
"Not factually correct": "Δεν είναι γεγονότα",
"Not helpful": "Δεν είναι χρήσιμο",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Η συνάρτηση διαγράφηκε με επιτυχία",
"Pipeline downloaded successfully": "Η συνάρτηση κατεβλήθηκε με επιτυχία",
"Pipelines": "Συναρτήσεις",
"Pipelines are a plugin system with arbitrary code execution —": "Το Pipelines είναι ένα σύστημα προσθέτων με αυθαίρετη εκτέλεση κώδικα —",
"Pipelines Not Detected": "Συναρτήσεις Δεν Εντοπίστηκαν",
"Pipelines Valves": "Βαλβίδες Συναρτήσεων",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Προηγούμενες 7 ημέρες",
"Previous message": "",
"Private": "",
"Profile": "Προφίλ",
"Profile Image": "Εικόνα Προφίλ",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Προτροπή (π.χ. Πες μου ένα διασκεδαστικό γεγονός για την Ρωμαϊκή Αυτοκρατορία)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Επαναφορά Καταλόγου Ανεβάσματος",
"Reset Vector Storage/Knowledge": "Επαναφορά Αποθήκευσης Διανυσμάτων/Γνώσης",
"Reset view": "",
"Reset Image": "Επαναφορά εικόνας",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Οι ειδοποιήσεις απάντησης δεν μπορούν να ενεργοποιηθούν καθώς οι άδειες του ιστότοπου έχουν αρνηθεί. Παρακαλώ επισκεφτείτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
"Response splitting": "Διαχωρισμός απάντησης",
"Response Watermark": "",
"RESULT": "Αποτέλεσμα",
"Result": "Αποτέλεσμα",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Εκτέλεση",
"Running": "Εκτέλεση",
"Running...": "Εκτέλεση...",
"Save": "Αποθήκευση",
"Save & Create": "Αποθήκευση & Δημιουργία",
"Save & Update": "Αποθήκευση & Ενημέρωση",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Σφάλμα αναγνώρισης ομιλίας: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Μηχανή Speech-to-Text",
"Start of the channel": "Αρχή του καναλιού",
"Stop": "Σταμάτημα",
"Stop Generating": "",
"Stop Sequence": "Σειρά Παύσης",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Μοντέλο STT",
"STT Settings": "Ρυθμίσεις STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "Προτροπή Γενιάς Ετικετών",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Μιλήστε στο μοντέλο",
"Tap to interrupt": "Πατήστε για παύση",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Συζήτηση",
"Tika": "Tika",
"Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "",
"Active Users": "",
"Add": "",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "",
"available users": "",
"Away": "",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "",
"Azure Region": "",
"Back": "",
"Bad Response": "",
@ -423,12 +428,14 @@
"Don't have an account?": "",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
"Download as SVG": "",
"Download canceled": "",
"Download Database": "",
"Download & Delete": "",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "",
"Failed to save connections": "",
"Failed to save conversation": "",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "",
"Import Tools": "",
"Important Update": "",
"Include": "",
"Includes SharePoint": "",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "",
"No results found": "",
"No search query generated": "",
"No source available": "",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "",
"Previous message": "",
"Private": "",
"Profile": "",
"Profile Image": "",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "",
"Run": "",
"Running": "",
"Running...": "",
"Save": "",
"Save & Create": "",
"Save & Update": "",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "",
"Speech-to-Text": "",
"Speech-to-Text Engine": "",
"Start of the channel": "",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "",
"STT Model": "",
"STT Settings": "",
"Stylized PDF Export": "Stylised PDF Export",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "",
"Active Users": "",
"Add": "",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "",
"available users": "",
"Away": "",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "",
"Azure Region": "",
"Back": "",
"Bad Response": "",
@ -423,12 +428,14 @@
"Don't have an account?": "",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
"Download as SVG": "",
"Download canceled": "",
"Download Database": "",
"Download & Delete": "",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "",
"Failed to save connections": "",
"Failed to save conversation": "",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "",
"Import Tools": "",
"Important Update": "",
"Include": "",
"Includes SharePoint": "",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "",
"No results found": "",
"No search query generated": "",
"No source available": "",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "",
"Previous message": "Previous message",
"Private": "",
"Profile": "",
"Profile Image": "",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "",
"Run": "",
"Running": "",
"Running...": "",
"Save": "",
"Save & Create": "",
"Save & Update": "",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "",
"Speech-to-Text": "",
"Speech-to-Text Engine": "",
"Start of the channel": "",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "",
"STT Model": "",
"STT Settings": "",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Información precisa",
"Action": "Acción",
"Action not found": "",
"Action Required for Chat Log Storage": "Se requiere acción para almacenar el registro del chat",
"Actions": "Acciones",
"Activate": "Activar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activar este comando escribiendo \"/{{COMMAND}}\" en el chat",
"Active": "Activo",
"Active Users": "Usuarios activos",
"Add": "Añadir",
"Add a model ID": "Añadir un ID de modelo",
@ -156,8 +158,11 @@
"Available list": "Lista disponible",
"Available Tools": "Herramientas Disponibles",
"available!": "¡disponible!",
"available users": "usuarios disponibles",
"Away": "Ausente",
"Awful": "Horrible",
"Azure AI Speech": "Voz Azure AI",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Región de Azure",
"Back": "Volver",
"Bad Response": "Mala Respuesta",
@ -423,12 +428,14 @@
"Don't have an account?": "¿No tienes una cuenta?",
"don't install random functions from sources you don't trust.": "¡no instalar funciones desconocidas de fuentes en las que no se confíe!",
"don't install random tools from sources you don't trust.": "¡no instalar herramientas desconocidas de fuentes en las que no se confíe!",
"don't fetch random pipelines from sources you don't trust.": "No obtengas pipelines aleatorias de fuentes no confiables.",
"Don't like the style": "¿No te gusta el estilo?",
"Done": "Hecho",
"Download": "Descargar",
"Download as SVG": "Descargar como SVG",
"Download canceled": "Descarga cancelada",
"Download Database": "Descargar Base de Datos",
"Download & Delete": "Descargar y eliminar",
"Drag and drop a file to upload or select a file to view": "Arrastra y suelta un archivo para subirlo o selecciona uno para verlo",
"Draw": "Dibujar",
"Drop any files here to upload": "Arrastra aquí los archivos a subir.",
@ -593,6 +600,7 @@
"Enter Your Role": "Ingresa tu rol",
"Enter Your Username": "Ingresa tu nombre de usuario",
"Enter your webhook URL": "Ingresa tu URL de webhook",
"Enter your code here...": "Introduce tu código aquí...",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Fallo al cargar el contenido del archivo",
"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
"Failed to save connections": "Fallo al grabar las conexiones",
"Failed to save conversation": "Fallo al guardar la conversación",
"Failed to save models configuration": "Fallo al guardar la configuración de los modelos",
"Failed to update settings": "Fallo al actualizar los ajustes",
"Failed to upload file.": "Fallo al subir el archivo.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grupo eliminado correctamente",
"Group Description": "Descripción del Grupo",
"Group Name": "Nombre del Grupo",
"Group": "Grupo",
"Group updated successfully": "Grupo actualizado correctamente",
"Groups": "Grupos",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importar Sugerencias de Indicador",
"Import Prompts": "Importar Indicadores",
"Import Tools": "Importar Herramientas",
"Important Update": "Actualización importante",
"Include": "Incluir",
"Includes SharePoint": "Incluye SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir el señalizador `--api-auth` al ejecutar stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Incluir el señalizador `--api` al ejecutar stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influye en la rápidez de respuesta a la realimentación desde el texto generado. Una tasa de aprendizaje más baja resulta en un ajustado más lento, mientras que una tasa de aprendizaje más alta hará que el algoritmo sea más reactivo.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Los LLMs pueden cometer errores. Verifica la información importante.",
"Loader": "Cargador",
"Loading Kokoro.js...": "Cargando Kokoro.js...",
"Loading...": "Cargando...",
"Local": "Local",
"Local Task Model": "Modelo Local para Tarea",
"Location access not allowed": "Sin acceso a la Ubicación",
@ -986,6 +999,7 @@
"No models found": "No se encontraron modelos",
"No models selected": "No se seleccionaron modelos",
"No Notes": "Sin Notas",
"No results": "No se encontraron resultados",
"No results found": "No se encontraron resultados",
"No search query generated": "No se generó ninguna consulta de búsqueda",
"No source available": "No hay fuente disponible",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "No hay válvulas para actualizar",
"Node Ids": "",
"No suggestion prompts": "Sin prompts sugeridos",
"None": "Ninguno",
"Not factually correct": "No es correcto en todos los aspectos",
"Not helpful": "No aprovechable",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Tubería borrada correctamente",
"Pipeline downloaded successfully": "Tubería descargada correctamente",
"Pipelines": "Tuberías",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines es un sistema de complementos con ejecución arbitraria de código —",
"Pipelines Not Detected": "Servicio de Tuberías (Pipelines) No Detectado",
"Pipelines Valves": "Válvulas de Tuberías",
"Plain text (.md)": "Texto plano (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 días previos",
"Previous message": "Mensaje anterior",
"Private": "Privado",
"Profile": "Perfil",
"Profile Image": "Imagen del Perfil",
"Prompt": "Indicador",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicador (p.ej. Cuéntame una cosa divertida sobre el Imperio Romano)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Reiniciar Directorio de Subidas",
"Reset Vector Storage/Knowledge": "Reiniciar Almacenamiento de Vectores/Conocimiento",
"Reset view": "Reiniciar Vista",
"Reset Image": "Restablecer imagen",
"Response": "Respuesta",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Las notificaciones de respuesta no pueden activarse ya que los permisos del sitio web han sido denegados. Por favor, comprueba la configuración de tu navegador para otorgar el permiso necesario.",
"Response splitting": "Particionado de Respuesta",
"Response Watermark": "Marca de Agua en Respuesta",
"RESULT": "Resultado",
"Result": "Resultado",
"Retrieval": "Recuperación",
"Retrieval Query Generation": "Consulta de Generación de Recuperación",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Ejecutar",
"Running": "Ejecutando",
"Running...": "Ejecutando...",
"Save": "Guardar",
"Save & Create": "Guardar y Crear",
"Save & Update": "Guardar y Actualizar",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Error en reconocimiento de voz: {{error}}",
"Speech-to-Text": "Voz a Texto",
"Speech-to-Text Engine": "Motor Voz a Texto(STT)",
"Start of the channel": "Inicio del canal",
"Stop": "Detener",
"Stop Generating": "Detener la Generación",
"Stop Sequence": "Secuencia de Parada",
@ -1334,6 +1355,7 @@
"Strikethrough": "Tachado",
"Strip Existing OCR": "Descartar OCR Existente",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Descartar OCR existente del PDF y repetirlo. Se ignora si está habilitado Forzar OCR. Valor Predeterminado: Falso",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modelo STT",
"STT Settings": "Ajustes Voz a Texto (STT)",
"Stylized PDF Export": "Exportar PDF Estilizado",
@ -1412,6 +1434,7 @@
"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",
"Thread": "Hilo",
"Tika": "Tika",
"Tika Server URL required.": "URL del Servidor Tika necesaria",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Täpne informatsioon",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Vestluse logi salvestamiseks on vaja toimingut",
"Actions": "Toimingud",
"Activate": "Aktiveeri",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiveeri see käsk, trükkides \"/{{COMMAND}}\" vestluse sisendritta.",
"Active": "Aktiivne",
"Active Users": "Aktiivsed kasutajad",
"Add": "Lisa",
"Add a model ID": "Lisa mudeli ID",
@ -156,8 +158,11 @@
"Available list": "Saadaolevate nimekiri",
"Available Tools": "",
"available!": "saadaval!",
"available users": "saadaolevad kasutajad",
"Away": "Eemal",
"Awful": "Kohutav",
"Azure AI Speech": "Azure AI Kõne",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure regioon",
"Back": "Tagasi",
"Bad Response": "Halb vastus",
@ -423,12 +428,14 @@
"Don't have an account?": "Pole kontot?",
"don't install random functions from sources you don't trust.": "ärge installige juhuslikke funktsioone allikatest, mida te ei usalda.",
"don't install random tools from sources you don't trust.": "ärge installige juhuslikke tööriistu allikatest, mida te ei usalda.",
"don't fetch random pipelines from sources you don't trust.": "Ära tõmba juhuslikke pipelines allikatest, mida sa ei usalda.",
"Don't like the style": "Stiil ei meeldi",
"Done": "Valmis",
"Download": "Laadi alla",
"Download as SVG": "Laadi alla SVG-na",
"Download canceled": "Allalaadimine tühistatud",
"Download Database": "Laadi alla andmebaas",
"Download & Delete": "Laadi alla ja kustuta",
"Drag and drop a file to upload or select a file to view": "Lohistage ja kukutage fail üleslaadimiseks või valige fail vaatamiseks",
"Draw": "Joonista",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Sisestage oma roll",
"Enter Your Username": "Sisestage oma kasutajanimi",
"Enter your webhook URL": "Sisestage oma webhook URL",
"Enter your code here...": "Sisestage oma kood siia...",
"Error": "Viga",
"ERROR": "VIGA",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
"Failed to save connections": "",
"Failed to save conversation": "Vestluse salvestamine ebaõnnestus",
"Failed to save models configuration": "Mudelite konfiguratsiooni salvestamine ebaõnnestus",
"Failed to update settings": "Seadete uuendamine ebaõnnestus",
"Failed to upload file.": "Faili üleslaadimine ebaõnnestus.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grupp edukalt kustutatud",
"Group Description": "Grupi kirjeldus",
"Group Name": "Grupi nimi",
"Group": "Rühm",
"Group updated successfully": "Grupp edukalt uuendatud",
"Groups": "Grupid",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Impordi vihjed",
"Import Tools": "Impordi tööriistad",
"Important Update": "Oluline värskendus",
"Include": "Kaasa",
"Includes SharePoint": "Sisaldab SharePointi",
"Include `--api-auth` flag when running stable-diffusion-webui": "Lisage `--api-auth` lipp stable-diffusion-webui käivitamisel",
"Include `--api` flag when running stable-diffusion-webui": "Lisage `--api` lipp stable-diffusion-webui käivitamisel",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Mõjutab, kui kiiresti algoritm reageerib genereeritud teksti tagasisidele. Madalam õppimiskiirus annab tulemuseks aeglasemad kohandused, samas kui kõrgem õppimiskiirus muudab algoritmi tundlikumaks.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM-id võivad teha vigu. Kontrollige olulist teavet.",
"Loader": "Laadija",
"Loading Kokoro.js...": "Kokoro.js laadimine...",
"Loading...": "...",
"Local": "Kohalik",
"Local Task Model": "",
"Location access not allowed": "Asukoha juurdepääs pole lubatud",
@ -986,6 +999,7 @@
"No models found": "Mudeleid ei leitud",
"No models selected": "Mudeleid pole valitud",
"No Notes": "",
"No results": "Tulemusi ei leitud",
"No results found": "Tulemusi ei leitud",
"No search query generated": "Otsingupäringut ei genereeritud",
"No source available": "Allikas pole saadaval",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Pole klappe, mida uuendada",
"Node Ids": "",
"No suggestion prompts": "Soovituslikke prompt'e pole",
"None": "Mitte ühtegi",
"Not factually correct": "Faktiliselt ebakorrektne",
"Not helpful": "Pole abistav",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Torustik edukalt kustutatud",
"Pipeline downloaded successfully": "Torustik edukalt alla laaditud",
"Pipelines": "Torustikud",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines on pluginate süsteem, mis võimaldab suvalise koodi käivitamist —",
"Pipelines Not Detected": "Torustikke ei tuvastatud",
"Pipelines Valves": "Torustike klapid",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Eelmised 7 päeva",
"Previous message": "",
"Private": "",
"Profile": "Profiil",
"Profile Image": "Profiilipilt",
"Prompt": "Vihje",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Vihje (nt Räägi mulle üks huvitav fakt Rooma impeeriumi kohta)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Lähtesta üleslaadimiste kataloog",
"Reset Vector Storage/Knowledge": "Lähtesta vektormälu/teadmised",
"Reset view": "Lähtesta vaade",
"Reset Image": "Lähtesta pilt",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastuste teavitusi ei saa aktiveerida, kuna veebisaidi õigused on keelatud. Vajalike juurdepääsude andmiseks külastage oma brauseri seadeid.",
"Response splitting": "Vastuse tükeldamine",
"Response Watermark": "",
"RESULT": "Tulemus",
"Result": "Tulemus",
"Retrieval": "Taastamine",
"Retrieval Query Generation": "Taastamise päringu genereerimine",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Käivita",
"Running": "Töötab",
"Running...": "Töötab...",
"Save": "Salvesta",
"Save & Create": "Salvesta ja loo",
"Save & Update": "Salvesta ja uuenda",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Kõnetuvastuse viga: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Kõne-tekstiks mootor",
"Start of the channel": "Kanali algus",
"Stop": "Peata",
"Stop Generating": "",
"Stop Sequence": "Lõpetamise järjestus",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT mudel",
"STT Settings": "STT seaded",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Mõtles {{DURATION}}",
"Thought for {{DURATION}} seconds": "Mõtles {{DURATION}} sekundit",
"Thought for less than a second": "",
"Thread": "Lõim",
"Tika": "Tika",
"Tika Server URL required.": "Tika serveri URL on nõutav.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informazio zehatza",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Txataren erregistroa gordetzeko ekintza behar da",
"Actions": "Ekintzak",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "\"/{{COMMAND}}\" idatziz aktibatu komando hau txataren sarreran.",
"Active": "Aktibo",
"Active Users": "Erabiltzaile Aktiboak",
"Add": "Gehitu",
"Add a model ID": "Gehitu eredu ID bat",
@ -156,8 +158,11 @@
"Available list": "Zerrenda erabilgarria",
"Available Tools": "",
"available!": "eskuragarri!",
"available users": "erabilgarri dauden erabiltzaileak",
"Away": "Kanpoan",
"Awful": "Penagarria",
"Azure AI Speech": "Azure AI Hizketa",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure Eskualdea",
"Back": "Atzera",
"Bad Response": "Erantzun Txarra",
@ -423,12 +428,14 @@
"Don't have an account?": "Ez duzu konturik?",
"don't install random functions from sources you don't trust.": "ez instalatu fidagarriak ez diren iturrietatik datozen ausazko funtzioak.",
"don't install random tools from sources you don't trust.": "ez instalatu fidagarriak ez diren iturrietatik datozen ausazko tresnak.",
"don't fetch random pipelines from sources you don't trust.": "Ez eskuratu pipelines aleatorioak iturri ez fidagarrietatik.",
"Don't like the style": "Ez zaizu estiloa gustatzen?",
"Done": "Eginda",
"Download": "Deskargatu",
"Download as SVG": "",
"Download canceled": "Deskarga bertan behera utzi da",
"Download Database": "Deskargatu Datu-basea",
"Download & Delete": "Deskargatu eta ezabatu",
"Drag and drop a file to upload or select a file to view": "Arrastatu eta jaregin fitxategi bat igotzeko edo hautatu fitxategi bat ikusteko",
"Draw": "Marraztu",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Sartu Zure Rola",
"Enter Your Username": "Sartu Zure Erabiltzaile-izena",
"Enter your webhook URL": "",
"Enter your code here...": "Sartu zure kodea hemen...",
"Error": "Errorea",
"ERROR": "ERROREA",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
"Failed to save connections": "",
"Failed to save conversation": "Huts egin du elkarrizketa gordetzean",
"Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean",
"Failed to update settings": "Huts egin du ezarpenak eguneratzean",
"Failed to upload file.": "Huts egin du fitxategia igotzean.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Taldea ongi ezabatu da",
"Group Description": "Taldearen Deskribapena",
"Group Name": "Taldearen Izena",
"Group": "Taldea",
"Group updated successfully": "Taldea ongi eguneratu da",
"Groups": "Taldeak",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Inportatu Promptak",
"Import Tools": "Inportatu Tresnak",
"Important Update": "Eguneratze garrantzitsua",
"Include": "Sartu",
"Includes SharePoint": "SharePoint barne",
"Include `--api-auth` flag when running stable-diffusion-webui": "Sartu `--api-auth` bandera stable-diffusion-webui exekutatzean",
"Include `--api` flag when running stable-diffusion-webui": "Sartu `--api` bandera stable-diffusion-webui exekutatzean",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Kargatzen...",
"Local": "Lokala",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Ez da modelorik aurkitu",
"No models selected": "Ez da modelorik hautatu",
"No Notes": "",
"No results": "Ez da emaitzarik aurkitu",
"No results found": "Ez da emaitzarik aurkitu",
"No search query generated": "Ez da bilaketa kontsultarik sortu",
"No source available": "Ez dago iturririk eskuragarri",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Ez dago balbularik eguneratzeko",
"Node Ids": "",
"No suggestion prompts": "Gomendatutako promptik ez",
"None": "Bat ere ez",
"Not factually correct": "Ez da faktikoki zuzena",
"Not helpful": "Ez da lagungarria",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline-a ongi ezabatu da",
"Pipeline downloaded successfully": "Pipeline-a ongi deskargatu da",
"Pipelines": "Pipeline-ak",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines pluginen sistema bat da, ausazko kodeexekuzioarekin —",
"Pipelines Not Detected": "Ez da Pipeline-rik detektatu",
"Pipelines Valves": "Pipeline balbulak",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Aurreko 7 egunak",
"Previous message": "",
"Private": "",
"Profile": "Profila",
"Profile Image": "Profil irudia",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt-a (adib. Kontatu datu dibertigarri bat Erromatar Inperioari buruz)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Berrezarri karga direktorioa",
"Reset Vector Storage/Knowledge": "Berrezarri bektore biltegia/ezagutza",
"Reset view": "",
"Reset Image": "Berrezarri irudia",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Erantzunen jakinarazpenak ezin dira aktibatu webgunearen baimenak ukatu direlako. Mesedez, bisitatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
"Response splitting": "Erantzun banaketa",
"Response Watermark": "",
"RESULT": "Emaitza",
"Result": "Emaitza",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Exekutatu",
"Running": "Exekutatzen",
"Running...": "Exekutatzen...",
"Save": "Gorde",
"Save & Create": "Gorde eta sortu",
"Save & Update": "Gorde eta eguneratu",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Ahots ezagutze errorea: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Ahotsetik-testura motorra",
"Start of the channel": "Kanalaren hasiera",
"Stop": "Gelditu",
"Stop Generating": "",
"Stop Sequence": "Gelditzeko sekuentzia",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT modeloa",
"STT Settings": "STT ezarpenak",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "Etiketa sortzeko prompta",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Hitz egin ereduarekin",
"Tap to interrupt": "Ukitu eteteko",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Haria",
"Tika": "Tika",
"Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "اطلاعات دقیق",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "برای ذخیره گزارش گفت‌وگو اقدام لازم است",
"Actions": "کنش\u200cها",
"Activate": "فعال کردن",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "این دستور را با تایپ \"/{{COMMAND}}\" در ورودی چت فعال کنید.",
"Active": "فعال",
"Active Users": "کاربران فعال",
"Add": "اضافه کردن",
"Add a model ID": "افزودن شناسه مدل",
@ -156,8 +158,11 @@
"Available list": "فهرست دردسترس",
"Available Tools": "ابزارهای موجود",
"available!": "در دسترس!",
"available users": "کاربران در دسترس",
"Away": "غایب",
"Awful": "وحشتناک",
"Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "منطقهٔ Azure",
"Back": "بازگشت",
"Bad Response": "پاسخ خوب نیست",
@ -423,12 +428,14 @@
"Don't have an account?": "حساب کاربری ندارید؟",
"don't install random functions from sources you don't trust.": "توابع تصادفی را از منابعی که به آنها اعتماد ندارید نصب نکنید.",
"don't install random tools from sources you don't trust.": "ابزارهای تصادفی را از منابعی که به آنها اعتماد ندارید نصب نکنید.",
"don't fetch random pipelines from sources you don't trust.": "pipelineهای تصادفی را از منابع غیرقابل اعتماد دریافت نکنید.",
"Don't like the style": "نظری ندارید؟",
"Done": "انجام شد",
"Download": "دانلود کن",
"Download as SVG": "دانلود به صورت SVG",
"Download canceled": "دانلود لغو شد",
"Download Database": "دانلود پایگاه داده",
"Download & Delete": "دانلود و حذف",
"Drag and drop a file to upload or select a file to view": "یک فایل را برای آپلود بکشید و رها کنید یا برای مشاهده یک فایل را انتخاب کنید",
"Draw": "رسم کردن",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "نقش خود را وارد کنید",
"Enter Your Username": "نام کاربری خود را وارد کنید",
"Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید",
"Enter your code here...": "کد خود را اینجا وارد کنید...",
"Error": "خطا",
"ERROR": "خطا",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
"Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات",
"Failed to save conversation": "خطا در ذخیره\u200cسازی گفت\u200cوگو",
"Failed to save models configuration": "خطا در ذخیره\u200cسازی پیکربندی مدل\u200cها",
"Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات",
"Failed to upload file.": "خطا در بارگذاری پرونده",
@ -738,6 +747,7 @@
"Group deleted successfully": "گروه با موفقیت حذف شد",
"Group Description": "توضیحات گروه",
"Group Name": "نام گروه",
"Group": "گروه",
"Group updated successfully": "گروه با موفقیت به\u200cروز شد",
"Groups": "گروه\u200cها",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "درون\u200cریزی پرامپت\u200cها",
"Import Tools": "درون\u200cریزی ابزارها",
"Important Update": "به‌روزرسانی مهم",
"Include": "شامل",
"Includes SharePoint": "شامل SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "هنگام اجرای stable-diffusion-webui پرچم `--api-auth` را اضافه کنید",
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "تأثیر می\u200cگذارد که الگوریتم چقدر سریع به بازخورد متن تولید شده پاسخ می\u200cدهد. نرخ یادگیری پایین\u200cتر منجر به تنظیمات کندتر می\u200cشود، در حالی که نرخ یادگیری بالاتر الگوریتم را پاسخگوتر می\u200cکند.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
"Loader": "بارگذار",
"Loading Kokoro.js...": "در حال بارگذاری Kokoro.js...",
"Loading...": "در حال بارگذاری...",
"Local": "محلی",
"Local Task Model": "",
"Location access not allowed": "دسترسی به موقعیت مکانی مجاز نیست",
@ -986,6 +999,7 @@
"No models found": "مدلی یافت نشد",
"No models selected": "مدلی انتخاب نشده است",
"No Notes": "",
"No results": "نتیجه\u200cای یافت نشد",
"No results found": "نتیجه\u200cای یافت نشد",
"No search query generated": "پرسوجوی جستجویی ایجاد نشده است",
"No source available": "منبعی در دسترس نیست",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "شیری برای به\u200cروزرسانی وجود ندارد",
"Node Ids": "",
"No suggestion prompts": "بدون پرامپت پیشنهادی",
"None": "هیچ کدام",
"Not factually correct": "اشتباهی فکری نیست",
"Not helpful": "مفید نیست",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "خط لوله با موفقیت حذف شد",
"Pipeline downloaded successfully": "خط لوله با موفقیت دانلود شد",
"Pipelines": "خط لوله",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines یک سیستم افزونه با امکان اجرای دلخواه کد است —",
"Pipelines Not Detected": "خطوط لوله شناسایی نشدند",
"Pipelines Valves": "شیرالات خطوط لوله",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 روز قبل",
"Previous message": "",
"Private": "خصوصی",
"Profile": "پروفایل",
"Profile Image": "تصویر پروفایل",
"Prompt": "پرامپت",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "پیشنهاد (برای مثال: به من بگوید چیزی که برای من یک کاربرد داره درباره ایران)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "بازنشانی پوشه آپلود",
"Reset Vector Storage/Knowledge": "بازنشانی ذخیره\u200cسازی برداری/دانش",
"Reset view": "بازنشانی نما",
"Reset Image": "بازنشانی تصویر",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "اعلان\u200cهای پاسخ نمی\u200cتوانند فعال شوند زیرا مجوزهای وب\u200cسایت رد شده\u200cاند. لطفاً تنظیمات مرورگر خود را برای اعطای دسترسی لازم بررسی کنید.",
"Response splitting": "تقسیم پاسخ",
"Response Watermark": "",
"RESULT": "نتیجه",
"Result": "نتیجه",
"Retrieval": "بازیابی",
"Retrieval Query Generation": "تولید کوئری بازیابی",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "اجرا",
"Running": "در حال اجرا",
"Running...": "در حال اجرا...",
"Save": "ذخیره",
"Save & Create": "ذخیره و ایجاد",
"Save & Update": "ذخیره و به\u200cروزرسانی",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "موتور گفتار به متن",
"Start of the channel": "آغاز کانال",
"Stop": "توقف",
"Stop Generating": "",
"Stop Sequence": "توقف توالی",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "مدل تبدیل صدا به متن",
"STT Settings": "تنظیمات تبدیل صدا به متن",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "فکر کردن برای {{DURATION}}",
"Thought for {{DURATION}} seconds": "فکر کردن برای {{DURATION}} ثانیه",
"Thought for less than a second": "",
"Thread": "رشته",
"Tika": "تیکا",
"Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.",
"Tiktoken": "تیک توکن",

View file

@ -31,9 +31,11 @@
"Accurate information": "Tarkkaa tietoa",
"Action": "Toiminto",
"Action not found": "",
"Action Required for Chat Log Storage": "Toiminto vaaditaan keskustelulokin tallentamiseksi",
"Actions": "Toiminnot",
"Activate": "Aktivoi",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivoi tämä komento kirjoittamalla \"/{{COMMAND}}\" chat-syötteeseen.",
"Active": "Aktiivinen",
"Active Users": "Aktiiviset käyttäjät",
"Add": "Lisää",
"Add a model ID": "Lisää mallitunnus",
@ -156,8 +158,11 @@
"Available list": "Käytettävissä oleva luettelo",
"Available Tools": "Käytettävissä olevat työkalut",
"available!": "saatavilla!",
"available users": "käytettävissä olevat käyttäjät",
"Away": "Poissa",
"Awful": "Kauhea",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure-alue",
"Back": "Takaisin",
"Bad Response": "Huono vastaus",
@ -423,12 +428,14 @@
"Don't have an account?": "Eikö sinulla ole tiliä?",
"don't install random functions from sources you don't trust.": "älä asenna satunnaisia toimintoja lähteistä, joihin et luota.",
"don't install random tools from sources you don't trust.": "älä asenna satunnaisia työkaluja lähteistä, joihin et luota.",
"don't fetch random pipelines from sources you don't trust.": "Älä hae satunnaisia pipelineja epäluotettavista lähteistä.",
"Don't like the style": "En pidä tyylistä",
"Done": "Valmis",
"Download": "Lataa",
"Download as SVG": "Lataa SVG:nä",
"Download canceled": "Lataus peruutettu",
"Download Database": "Lataa tietokanta",
"Download & Delete": "Lataa ja poista",
"Drag and drop a file to upload or select a file to view": "Raahaa ja pudota tiedosto ladattavaksi tai valitse tiedosto katseltavaksi",
"Draw": "Piirros",
"Drop any files here to upload": "Pudota tähän ladattavat tiedostot",
@ -593,6 +600,7 @@
"Enter Your Role": "Kirjoita roolisi",
"Enter Your Username": "Kirjoita käyttäjätunnuksesi",
"Enter your webhook URL": "Kirjoita webhook osoitteesi",
"Enter your code here...": "Kirjoita koodisi tähän...",
"Error": "Virhe",
"ERROR": "VIRHE",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
"Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
"Failed to save conversation": "Keskustelun tallentaminen epäonnistui",
"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
"Failed to update settings": "Asetusten päivittäminen epäonnistui",
"Failed to upload file.": "Tiedoston lataaminen epäonnistui.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Ryhmä poistettu onnistuneesti",
"Group Description": "Ryhmän kuvaus",
"Group Name": "Ryhmän nimi",
"Group": "Ryhmä",
"Group updated successfully": "Ryhmä päivitetty onnistuneesti",
"Groups": "Ryhmät",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Tuo kehote ehdotukset",
"Import Prompts": "Tuo kehotteet",
"Import Tools": "Tuo työkalut",
"Important Update": "Tärkeä päivitys",
"Include": "Sisällytä",
"Includes SharePoint": "Sisältää SharePointin",
"Include `--api-auth` flag when running stable-diffusion-webui": "Sisällytä `--api-auth`-lippu ajettaessa stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-lippu ajettaessa stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.",
"Loader": "Lataaja",
"Loading Kokoro.js...": "Ladataan Kokoro.js...",
"Loading...": "Ladataan...",
"Local": "Paikallinen",
"Local Task Model": "Paikallinen työmalli",
"Location access not allowed": "Ei pääsyä sijaintitietoihin",
@ -986,6 +999,7 @@
"No models found": "Malleja ei löytynyt",
"No models selected": "Malleja ei ole valittu",
"No Notes": "Ei muistiinpanoja",
"No results": "Ei tuloksia",
"No results found": "Ei tuloksia",
"No search query generated": "Hakukyselyä ei luotu",
"No source available": "Lähdettä ei saatavilla",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Ei venttiileitä päivitettäväksi",
"Node Ids": "",
"No suggestion prompts": "Ei ehdotettuja promptteja",
"None": "Ei mikään",
"Not factually correct": "Ei faktuaalisesti oikein",
"Not helpful": "Ei hyödyllinen",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Putki poistettu onnistuneesti",
"Pipeline downloaded successfully": "Putki ladattu onnistuneesti",
"Pipelines": "Putkistot",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines on liitännäisjärjestelmä, jossa voidaan suorittaa mielivaltaista koodia —",
"Pipelines Not Detected": "Putkistoja ei havaittu",
"Pipelines Valves": "Putkistojen venttiilit",
"Plain text (.md)": "Pelkkä teksti (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Edelliset 7 päivää",
"Previous message": "Edellinen viesti",
"Private": "Yksityinen",
"Profile": "Profiili",
"Profile Image": "Profiilikuva",
"Prompt": "Kehote",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Kehote (esim. Kerro hauska fakta Rooman valtakunnasta)",
@ -1166,9 +1183,11 @@
"Reset Vector Storage/Knowledge": "Tyhjennä vektoritallennukset/tietämys",
"Reset view": "Palauta näkymä",
"Response": "Vastaus",
"Reset Image": "Palauta kuva",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastausilmoituksia ei voida ottaa käyttöön, koska verkkosivuston käyttöoikeudet on evätty. Myönnä tarvittavat käyttöoikeudet selaimesi asetuksista.",
"Response splitting": "Vastauksen jakaminen",
"Response Watermark": "Vastauksen vesileima",
"RESULT": "Tulos",
"Result": "Tulos",
"Retrieval": "Haku",
"Retrieval Query Generation": "Hakukyselyn luominen",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Suorita",
"Running": "Käynnissä",
"Running...": "Käynnissä...",
"Save": "Tallenna",
"Save & Create": "Tallenna ja luo",
"Save & Update": "Tallenna ja päivitä",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
"Speech-to-Text": "Puheentunnistus",
"Speech-to-Text Engine": "Puheentunnistusmoottori",
"Start of the channel": "Kanavan alku",
"Stop": "Pysäytä",
"Stop Generating": "Lopeta generointi",
"Stop Sequence": "Lopetussekvenssi",
@ -1334,6 +1355,7 @@
"Strikethrough": "Yliviivaus",
"Strip Existing OCR": "Poista olemassa oleva OCR",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Poista olemassa oleva OCR-teksti PDF-tiedostosta ja suorita OCR uudelleen. Ohitetaan, jos pakota OCR -asetus on käytössä. Oletusarvo ei käytössä.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Puheentunnistusmalli",
"STT Settings": "Puheentunnistuksen asetukset",
"Stylized PDF Export": "Muotoiltun PDF-vienti",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Ajatteli {{DURATION}}",
"Thought for {{DURATION}} seconds": "Ajatteli {{DURATION}} sekunttia",
"Thought for less than a second": "Ajatteli alle sekunnin",
"Thread": "Ketju",
"Tika": "Tika",
"Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Information exacte",
"Action": "Action",
"Action not found": "",
"Action Required for Chat Log Storage": "Action requise pour lenregistrement du journal de discussion",
"Actions": "Actions",
"Activate": "Activer",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.",
"Active": "Actif",
"Active Users": "Utilisateurs connectés",
"Add": "Ajouter",
"Add a model ID": "Ajouter un identifiant de modèle",
@ -156,8 +158,11 @@
"Available list": "Liste disponible",
"Available Tools": "Outils disponibles",
"available!": "disponible !",
"available users": "utilisateurs disponibles",
"Away": "Absent",
"Awful": "Horrible",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Région Azure",
"Back": "Retour en arrière",
"Bad Response": "Mauvaise réponse",
@ -423,12 +428,14 @@
"Don't have an account?": "Vous n'avez pas de compte ?",
"don't install random functions from sources you don't trust.": "n'installez pas de fonctions aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
"don't install random tools from sources you don't trust.": "n'installez pas d'outils aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires à partir de sources non fiables.",
"Don't like the style": "N'apprécie pas le style",
"Done": "Terminé",
"Download": "Télécharger",
"Download as SVG": "Télécharger au format SVG",
"Download canceled": "Téléchargement annulé",
"Download Database": "Télécharger la base de données",
"Download & Delete": "Télécharger et supprimer",
"Drag and drop a file to upload or select a file to view": "Glissez et déposez un fichier pour le téléverser ou sélectionnez un fichier à visualiser",
"Draw": "Match nul",
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
@ -593,6 +600,7 @@
"Enter Your Role": "Entrez votre rôle",
"Enter Your Username": "Entrez votre nom d'utilisateur",
"Enter your webhook URL": "Entrez l'URL de votre webhook",
"Enter your code here...": "Saisissez votre code ici...",
"Error": "Erreur",
"ERROR": "ERREUR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to save connections": "Échec de la sauvegarde des connexions",
"Failed to save conversation": "Échec de la sauvegarde de la conversation",
"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
"Failed to update settings": "Échec de la mise à jour des réglages",
"Failed to upload file.": "Échec du téléversement du fichier.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Groupe supprimé avec succès",
"Group Description": "Description du groupe",
"Group Name": "Nom du groupe",
"Group": "Groupe",
"Group updated successfully": "Groupe mis à jour avec succès",
"Groups": "Groupes",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importer des suggestions de prompt",
"Import Prompts": "Importer des prompts",
"Import Tools": "Importer des outils",
"Important Update": "Mise à jour importante",
"Include": "Inclure",
"Includes SharePoint": "Inclut SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
"Loader": "Chargeur",
"Loading Kokoro.js...": "Chargement de Kokoro.js...",
"Loading...": "Chargement de...",
"Local": "Local",
"Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé",
@ -986,6 +999,7 @@
"No models found": "Aucun modèle trouvé",
"No models selected": "Aucun modèle sélectionné",
"No Notes": "Pas de note",
"No results": "Aucun résultat trouvé",
"No results found": "Aucun résultat trouvé",
"No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"No suggestion prompts": "Aucun prompt suggéré",
"None": "Aucun",
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Le pipeline a été supprimé avec succès",
"Pipeline downloaded successfully": "Le pipeline a été téléchargé avec succès",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines est un système de plugins permettant lexécution arbitraire de code —",
"Pipelines Not Detected": "Aucun pipelines détecté",
"Pipelines Valves": "Vannes de pipelines",
"Plain text (.md)": "Texte brut (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent",
"Private": "Privé",
"Profile": "Profil",
"Profile Image": "Image de profil",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Réinitialiser le répertoire de téléchargement",
"Reset Vector Storage/Knowledge": "Réinitialiser le stockage vectoriel/connaissances",
"Reset view": "Réinitialiser la vue",
"Reset Image": "Réinitialiser limage",
"Response": "Réponse",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
"Response splitting": "Fractionnement de la réponse",
"Response Watermark": "Filigramme de la réponse",
"RESULT": "Résultat",
"Result": "Résultat",
"Retrieval": "Récupération",
"Retrieval Query Generation": "Génération de requête de RAG",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Exécuter",
"Running": "Exécution",
"Running...": "Exécution...",
"Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer",
"Save & Update": "Enregistrer & Mettre à jour",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
"Speech-to-Text": "Reconnaissance vocale",
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
"Start of the channel": "Début du canal",
"Stop": "Stop",
"Stop Generating": "Arrêter la génération",
"Stop Sequence": "Séquence d'arrêt",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Supprimer l'OCR existant",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modèle de Speech-to-Text",
"STT Settings": "Réglages de Speech-to-Text",
"Stylized PDF Export": "Export de PDF stylisés",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Réflexion de {{DURATION}}",
"Thought for {{DURATION}} seconds": "Réflexion pendant {{DURATION}} secondes",
"Thought for less than a second": "",
"Thread": "Fil de discussion",
"Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Information exacte",
"Action": "Action",
"Action not found": "",
"Action Required for Chat Log Storage": "Action requise pour lenregistrement du journal de discussion",
"Actions": "Actions",
"Activate": "Activer",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.",
"Active": "Actif",
"Active Users": "Utilisateurs connectés",
"Add": "Ajouter",
"Add a model ID": "Ajouter un identifiant de modèle",
@ -156,8 +158,11 @@
"Available list": "Liste disponible",
"Available Tools": "Outils disponibles",
"available!": "disponible !",
"available users": "utilisateurs disponibles",
"Away": "Absent",
"Awful": "Horrible",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Région Azure",
"Back": "Retour en arrière",
"Bad Response": "Mauvaise réponse",
@ -423,12 +428,14 @@
"Don't have an account?": "Vous n'avez pas de compte ?",
"don't install random functions from sources you don't trust.": "n'installez pas de fonctions aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
"don't install random tools from sources you don't trust.": "n'installez pas d'outils aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires depuis des sources non fiables.",
"Don't like the style": "N'apprécie pas le style",
"Done": "Terminé",
"Download": "Télécharger",
"Download as SVG": "Télécharger au format SVG",
"Download canceled": "Téléchargement annulé",
"Download Database": "Télécharger la base de données",
"Download & Delete": "Télécharger et supprimer",
"Drag and drop a file to upload or select a file to view": "Glissez et déposez un fichier pour le téléverser ou sélectionnez un fichier à visualiser",
"Draw": "Match nul",
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
@ -593,6 +600,7 @@
"Enter Your Role": "Entrez votre rôle",
"Enter Your Username": "Entrez votre nom d'utilisateur",
"Enter your webhook URL": "Entrez l'URL de votre webhook",
"Enter your code here...": "Saisissez votre code ici...",
"Error": "Erreur",
"ERROR": "ERREUR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to save connections": "Échec de la sauvegarde des connexions",
"Failed to save conversation": "Échec de la sauvegarde de la conversation",
"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
"Failed to update settings": "Échec de la mise à jour des réglages",
"Failed to upload file.": "Échec du téléversement du fichier.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Groupe supprimé avec succès",
"Group Description": "Description du groupe",
"Group Name": "Nom du groupe",
"Group": "Groupe",
"Group updated successfully": "Groupe mis à jour avec succès",
"Groups": "Groupes",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importer des suggestions de prompt",
"Import Prompts": "Importer des prompts",
"Import Tools": "Importer des outils",
"Important Update": "Mise à jour importante",
"Include": "Inclure",
"Includes SharePoint": "Inclut SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
"Loader": "Chargeur",
"Loading Kokoro.js...": "Chargement de Kokoro.js...",
"Loading...": "Chargement de...",
"Local": "Local",
"Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé",
@ -986,6 +999,7 @@
"No models found": "Aucun modèle trouvé",
"No models selected": "Aucun modèle sélectionné",
"No Notes": "Pas de note",
"No results": "Aucun résultat trouvé",
"No results found": "Aucun résultat trouvé",
"No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"No suggestion prompts": "Aucun prompt suggéré",
"None": "Aucun",
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Le pipeline a été supprimé avec succès",
"Pipeline downloaded successfully": "Le pipeline a été téléchargé avec succès",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines est un système de plugins permettant lexécution arbitraire de code —",
"Pipelines Not Detected": "Aucun pipelines détecté",
"Pipelines Valves": "Vannes de pipelines",
"Plain text (.md)": "Texte brut (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent",
"Private": "Privé",
"Profile": "Profil",
"Profile Image": "Image de profil",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Réinitialiser le répertoire de téléchargement",
"Reset Vector Storage/Knowledge": "Réinitialiser le stockage vectoriel/connaissances",
"Reset view": "Réinitialiser la vue",
"Reset Image": "Réinitialiser limage",
"Response": "Réponse",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
"Response splitting": "Fractionnement de la réponse",
"Response Watermark": "Filigramme de la réponse",
"RESULT": "Résultat",
"Result": "Résultat",
"Retrieval": "Récupération",
"Retrieval Query Generation": "Génération de requête de RAG",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Exécuter",
"Running": "Exécution",
"Running...": "Exécution...",
"Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer",
"Save & Update": "Enregistrer & Mettre à jour",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
"Speech-to-Text": "Reconnaissance vocale",
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
"Start of the channel": "Début du canal",
"Stop": "Stop",
"Stop Generating": "Arrêter la génération",
"Stop Sequence": "Séquence d'arrêt",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Supprimer l'OCR existant",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modèle de Speech-to-Text",
"STT Settings": "Réglages de Speech-to-Text",
"Stylized PDF Export": "Export de PDF stylisés",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Réflexion de {{DURATION}}",
"Thought for {{DURATION}} seconds": "Réflexion pendant {{DURATION}} secondes",
"Thought for less than a second": "",
"Thread": "Fil de discussion",
"Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Información precisa",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Requírese unha acción para gardar o rexistro do chat",
"Actions": "Accións",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Active este comando escribindo \"/{{COMMAND}}\" no chat",
"Active": "Activo",
"Active Users": "Usuarios activos",
"Add": "Agregar",
"Add a model ID": "Agregado ID do modelo",
@ -156,8 +158,11 @@
"Available list": "Lista dispoñible",
"Available Tools": "",
"available!": "¡dispoñible!",
"available users": "usuarios dispoñibles",
"Away": "Ausente",
"Awful": "Horrible",
"Azure AI Speech": "Voz de Azure AI",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Rexión de Azure",
"Back": "Volver",
"Bad Response": "Resposta incorrecta",
@ -423,12 +428,14 @@
"Don't have an account?": "¿Non tes unha conta?",
"don't install random functions from sources you don't trust.": "Non instale funcións aleatorias desde fontes nas que non confíe.",
"don't install random tools from sources you don't trust.": "Non instale ferramentas aleatorias desde fontes nas que non confíe.",
"don't fetch random pipelines from sources you don't trust.": "Non obteñas pipelines aleatorias de fontes non fiables.",
"Don't like the style": "Non che gusta o estilo?",
"Done": "Feito",
"Download": "Descargar",
"Download as SVG": "",
"Download canceled": "Descarga cancelada",
"Download Database": "Descarga a Base de Datos",
"Download & Delete": "Descargar e eliminar",
"Drag and drop a file to upload or select a file to view": "Arrastra y suelta un Arquivo para subirlo o selecciona un Arquivo para verlo",
"Draw": "Dibujar",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Ingrese o seu rol",
"Enter Your Username": "Ingrese o seu nome de usuario",
"Enter your webhook URL": "Ingrese a sua URL de webhook",
"Enter your code here...": "Introduce o teu código aquí...",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
"Failed to save connections": "",
"Failed to save conversation": "Non puido gardarse a conversa",
"Failed to save models configuration": "Non pudogardarse a configuración de os modelos",
"Failed to update settings": "Falla al actualizar os ajustes",
"Failed to upload file.": "Falla al subir o Arquivo.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grupo eliminado correctamente",
"Group Description": "Descripción do grupo",
"Group Name": "Nome do grupo",
"Group": "Grupo",
"Group updated successfully": "Grupo actualizado correctamente",
"Groups": "Grupos",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importar Prompts",
"Import Tools": "Importar ferramentas",
"Important Update": "Actualización importante",
"Include": "Incluir",
"Includes SharePoint": "Inclúe SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir o indicador `--api-auth` al ejecutar stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Incluir o indicador `--api` al ejecutar stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Os LLM poden cometer erros. Verifica a información importante.",
"Loader": "Cargador",
"Loading Kokoro.js...": "Cargando Kokoro.js...",
"Loading...": "Cargando...",
"Local": "Local",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "No se encontraron modelos",
"No models selected": "No se seleccionaron modelos",
"No Notes": "",
"No results": "No se han encontrado resultados",
"No results found": "No se han encontrado resultados",
"No search query generated": "No se ha generado ninguna consulta de búsqueda",
"No source available": "Non ten fuente disponible",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Non ten válvulas para actualizar",
"Node Ids": "",
"No suggestion prompts": "Sen prompts suxeridos",
"None": "Ninguno",
"Not factually correct": "No es correcto en todos os aspectos",
"Not helpful": "No útil",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline borrada exitosamente",
"Pipeline downloaded successfully": "Pipeline descargada exitosamente",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines é un sistema de complementos con execución arbitraria de código —",
"Pipelines Not Detected": "Pipeline No Detectada",
"Pipelines Valves": "Tuberías Válvulas",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Últimos 7 días",
"Previous message": "",
"Private": "",
"Profile": "Perfil",
"Profile Image": "imaxen de perfil",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por Exemplo, cuéntame unha cosa divertida sobre o Imperio Romano)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Reiniciar Directorio de carga",
"Reset Vector Storage/Knowledge": "Reiniciar almacenamiento de vectores/coñecemento",
"Reset view": "Reiniciar vista",
"Reset Image": "Restablecer imaxe",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "As notificacions de resposta non poden activarse debido a que os permisos do sitio web han sido denegados. Por favor, visite as configuracions da sua navegador para otorgar o acceso necesario.",
"Response splitting": "División de respostas",
"Response Watermark": "",
"RESULT": "Resultado",
"Result": "Resultado",
"Retrieval": "recuperación",
"Retrieval Query Generation": "xeneración de consulta de recuperación",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Executar",
"Running": "Executando",
"Running...": "Executando...",
"Save": "Gardar",
"Save & Create": "Gardar y xerar",
"Save & Update": "Gardar y Actualizar",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Error de recoñecemento de voz: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motor de voz a texto",
"Start of the channel": "Inicio da canle",
"Stop": "Detener",
"Stop Generating": "",
"Stop Sequence": "Detener secuencia",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modelo STT",
"STT Settings": "Configuracions de STT",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Pensamiento para {{DURATION}}",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Fío",
"Tika": "Tika",
"Tika Server URL required.": "URL do servidor de Tika",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "מידע מדויק",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "נדרשת פעולה לשמירת יומן הצ'אט",
"Actions": "פעולה",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "פעיל",
"Active Users": "משתמשים מחוברים",
"Add": "הוסף",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "כלים זמינים",
"available!": "זמין!",
"available users": "משתמשים זמינים",
"Away": "נעדר",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "חזור",
"Bad Response": "תגובה שגויה",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "מושבת",
"Discover a function": "",
"Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה",
@ -423,12 +428,14 @@
"Don't have an account?": "אין לך חשבון?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "אל תמשוך pipelines אקראיים ממקורות שאינך סומך עליהם.",
"Don't like the style": "לא אוהב את הסגנון",
"Done": "",
"Download": "הורד",
"Download as SVG": "",
"Download canceled": "ההורדה בוטלה",
"Download Database": "הורד מסד נתונים",
"Download & Delete": "הורדה ומחיקה",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "אפשר הרשמות חדשות",
"Enabled": "",
"Enabled": "מופעל",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "הזן את התפקיד שלך",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "הזן את הקוד שלך כאן...",
"Error": "שגיאה",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
"Failed to save connections": "",
"Failed to save conversation": "שמירת השיחה נכשלה",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "קבוצה",
"Group updated successfully": "",
"Groups": "קבוצות",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "ייבוא פקודות",
"Import Tools": "ייבוא כלים",
"Important Update": "עדכון חשוב",
"Include": "",
"Includes SharePoint": "כולל SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "טוען...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "לא נמצאו תוצאות",
"No results found": "לא נמצאו תוצאות",
"No search query generated": "לא נוצרה שאילתת חיפוש",
"No source available": "אין מקור זמין",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "אין פרומפטים מוצעים",
"None": "ללא",
"Not factually correct": "לא נכון מבחינה עובדתית",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "צינורות",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines הוא מערכת תוספים עם יכולת להריץ קוד שרירותי —",
"Pipelines Not Detected": "",
"Pipelines Valves": "צינורות שסתומים",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 הימים הקודמים",
"Previous message": "",
"Private": "",
"Profile": "פרופיל",
"Profile Image": "תמונת פרופיל",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "פקודה (למשל, ספר לי עובדה מעניינת על האימפריה הרומית)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "איפוס תמונה",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "תוצאה",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "",
"Running...": "פועל...",
"Save": "שמור",
"Save & Create": "שמור וצור",
"Save & Update": "שמור ועדכן",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "מנוע תחקור שמע",
"Start of the channel": "תחילת הערוץ",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "סידור עצירה",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "הגדרות חקירה של TTS",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "דברו עם המודל",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "שרשור",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "אזהרה",
"Warning:": "",
"Warning:": "אזהרה:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "सटीक जानकारी",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "चैट लॉग सहेजने के लिए कार्रवाई आवश्यक है",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "सक्रिय",
"Active Users": "",
"Add": "जोड़ें",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "उपलब्ध!",
"available users": "उपलब्ध उपयोगकर्ता",
"Away": "अनुपस्थित",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "पीछे",
"Bad Response": "ख़राब प्रतिक्रिया",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "अक्षम",
"Discover a function": "",
"Discover a model": "एक मॉडल की खोज करें",
"Discover a prompt": "प्रॉम्प्ट खोजें",
@ -423,12 +428,14 @@
"Don't have an account?": "कोई खाता नहीं है?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "अविश्वसनीय स्रोतों से यादृच्छिक पाइपलाइन न लें।",
"Don't like the style": "शैली पसंद नहीं है",
"Done": "",
"Download": "डाउनलोड",
"Download as SVG": "",
"Download canceled": "डाउनलोड रद्द किया गया",
"Download Database": "डेटाबेस डाउनलोड करें",
"Download & Delete": "डाउनलोड और हटाएँ",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
"Enabled": "",
"Enabled": "सक्षम",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "अपनी भूमिका दर्ज करें",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "अपना कोड यहाँ दर्ज करें...",
"Error": "चूक",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
"Failed to save connections": "",
"Failed to save conversation": "वार्तालाप सहेजने में विफल",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "समूह",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "प्रॉम्प्ट आयात करें",
"Import Tools": "",
"Important Update": "महत्वपूर्ण अपडेट",
"Include": "",
"Includes SharePoint": "SharePoint शामिल है",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "लोड हो रहा है...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "कोई परिणाम नहीं मिला",
"No results found": "कोई परिणाम नहीं मिला",
"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
"No source available": "कोई स्रोत उपलब्ध नहीं है",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "कोई सुझावित प्रॉम्प्ट नहीं",
"None": "कोई नहीं",
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "पाइपलाइनों",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines एक प्लगइन सिस्टम है जिसमें मनमाना कोड चलाया जा सकता है —",
"Pipelines Not Detected": "",
"Pipelines Valves": "पाइपलाइन वाल्व",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "पिछले 7 दिन",
"Previous message": "",
"Private": "",
"Profile": "प्रोफ़ाइल",
"Profile Image": "प्रोफ़ाइल छवि",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "प्रॉम्प्ट (उदाहरण के लिए मुझे रोमन साम्राज्य के बारे में एक मजेदार तथ्य बताएं)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "छवि रीसेट करें",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "परिणाम",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "",
"Running...": "चल रहा है...",
"Save": "सहेजें",
"Save & Create": "सहेजें और बनाएं",
"Save & Update": "सहेजें और अपडेट करें",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
"Start of the channel": "चैनल की शुरुआत",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "अनुक्रम रोकें",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT सेटिंग्स ",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "मॉडल से बात करें",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "थ्रेड",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "चेतावनी",
"Warning:": "",
"Warning:": "चेतावनी:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Točne informacije",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Potrebna je radnja za pohranu zapisnika chata",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Aktivan",
"Active Users": "Aktivni korisnici",
"Add": "Dodaj",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "dostupno!",
"available users": "dostupni korisnici",
"Away": "Odsutan",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Natrag",
"Bad Response": "Loš odgovor",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "Onemogućeno",
"Discover a function": "",
"Discover a model": "Otkrijte model",
"Discover a prompt": "Otkrijte prompt",
@ -423,12 +428,14 @@
"Don't have an account?": "Nemate račun?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Ne preuzimajte nasumične pipelines iz izvora kojima ne vjerujete.",
"Don't like the style": "Ne sviđa mi se stil",
"Done": "",
"Download": "Preuzimanje",
"Download as SVG": "",
"Download canceled": "Preuzimanje otkazano",
"Download Database": "Preuzmi bazu podataka",
"Download & Delete": "Preuzmi i izbriši",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "Omogući nove prijave",
"Enabled": "",
"Enabled": "Omogućeno",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Unesite svoju ulogu",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Unesite svoj kod ovdje...",
"Error": "Greška",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"Failed to save connections": "",
"Failed to save conversation": "Neuspješno spremanje razgovora",
"Failed to save models configuration": "",
"Failed to update settings": "Greška kod ažuriranja postavki",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grupa",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Uvoz prompta",
"Import Tools": "Uvoz alata",
"Important Update": "Važno ažuriranje",
"Include": "",
"Includes SharePoint": "Uključuje SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Učitavanje...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Nema rezultata",
"No results found": "Nema rezultata",
"No search query generated": "Nije generiran upit za pretraživanje",
"No source available": "Nema dostupnog izvora",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "Nema predloženih prompta",
"None": "Ništa",
"Not factually correct": "Nije činjenično točno",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "Cjevovodi",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines je sustav dodataka s proizvoljnim izvršavanjem koda —",
"Pipelines Not Detected": "",
"Pipelines Valves": "Ventili za cjevovode",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Prethodnih 7 dana",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Profilna slika",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Poništi upload direktorij",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Resetiraj sliku",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "REZULTAT",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "Pokrenuto",
"Running...": "Pokrenuto...",
"Save": "Spremi",
"Save & Create": "Spremi i stvori",
"Save & Update": "Spremi i ažuriraj",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
"Start of the channel": "Početak kanala",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Zaustavi sekvencu",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT model",
"STT Settings": "STT postavke",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Razgovarajte s modelom",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Tema",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "Upozorenje",
"Warning:": "",
"Warning:": "Upozorenje:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Pontos információ",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Művelet szükséges a csevegési napló mentéséhez",
"Actions": "Műveletek",
"Activate": "Aktiválás",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiváld ezt a parancsot a \"/{{COMMAND}}\" beírásával a csevegőmezőbe.",
"Active": "Aktív",
"Active Users": "Aktív felhasználók",
"Add": "Hozzáadás",
"Add a model ID": "Modell azonosító hozzáadása",
@ -156,8 +158,11 @@
"Available list": "Elérhető lista",
"Available Tools": "Elérhető eszközök",
"available!": "elérhető!",
"available users": "elérhető felhasználók",
"Away": "Távol",
"Awful": "Szörnyű",
"Azure AI Speech": "Azure AI beszéd",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure régió",
"Back": "Vissza",
"Bad Response": "Rossz válasz",
@ -423,12 +428,14 @@
"Don't have an account?": "Nincs még fiókod?",
"don't install random functions from sources you don't trust.": "ne telepíts véletlenszerű funkciókat olyan forrásokból, amelyekben nem bízol.",
"don't install random tools from sources you don't trust.": "ne telepíts véletlenszerű eszközöket olyan forrásokból, amelyekben nem bízol.",
"don't fetch random pipelines from sources you don't trust.": "Ne tölts le véletlenszerű pipeline-okat megbízhatatlan forrásokból.",
"Don't like the style": "Nem tetszik a stílus",
"Done": "Kész",
"Download": "Letöltés",
"Download as SVG": "Letöltés SVG-ként",
"Download canceled": "Letöltés megszakítva",
"Download Database": "Adatbázis letöltése",
"Download & Delete": "Letöltés és törlés",
"Drag and drop a file to upload or select a file to view": "Húzz ide egy fájlt a feltöltéshez vagy válassz fájlt a megtekintéshez",
"Draw": "Rajzolás",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Add meg a szereped",
"Enter Your Username": "Add meg a felhasználóneved",
"Enter your webhook URL": "Add meg a webhook URL-t",
"Enter your code here...": "Írd be ide a kódod...",
"Error": "Hiba",
"ERROR": "HIBA",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
"Failed to save connections": "Nem sikerült menteni a kapcsolatokat",
"Failed to save conversation": "Nem sikerült menteni a beszélgetést",
"Failed to save models configuration": "Nem sikerült menteni a modellek konfigurációját",
"Failed to update settings": "Nem sikerült frissíteni a beállításokat",
"Failed to upload file.": "Nem sikerült feltölteni a fájlt.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Csoport sikeresen törölve",
"Group Description": "Csoport leírása",
"Group Name": "Csoport neve",
"Group": "Csoport",
"Group updated successfully": "Csoport sikeresen frissítve",
"Groups": "Csoportok",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Promptok importálása",
"Import Tools": "Eszközök importálása",
"Important Update": "Fontos frissítés",
"Include": "Tartalmaz",
"Includes SharePoint": "Tartalmazza a SharePointot",
"Include `--api-auth` flag when running stable-diffusion-webui": "Add hozzá a `--api-auth` kapcsolót a stable-diffusion-webui futtatásakor",
"Include `--api` flag when running stable-diffusion-webui": "Add hozzá a `--api` kapcsolót a stable-diffusion-webui futtatásakor",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Befolyásolja, hogy az algoritmus milyen gyorsan reagál a generált szöveg visszajelzéseire. Alacsonyabb tanulási ráta lassabb调整okat eredményez, míg magasabb ráta gyorsabb reagálást biztosít.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.",
"Loader": "Betöltő",
"Loading Kokoro.js...": "Kokoro.js betöltése...",
"Loading...": "...",
"Local": "Helyi",
"Local Task Model": "",
"Location access not allowed": "Helyhozzáférés nem engedélyezett",
@ -986,6 +999,7 @@
"No models found": "Nem található modell",
"No models selected": "Nincs kiválasztott modell",
"No Notes": "",
"No results": "Nincs találat",
"No results found": "Nincs találat",
"No search query generated": "Nem generálódott keresési lekérdezés",
"No source available": "Nincs elérhető forrás",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Nincs frissítendő szelep",
"Node Ids": "",
"No suggestion prompts": "Nincsenek javasolt promptok",
"None": "Nincs",
"Not factually correct": "Tényszerűen nem helyes",
"Not helpful": "Nem segítőkész",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Folyamat sikeresen törölve",
"Pipeline downloaded successfully": "Folyamat sikeresen letöltve",
"Pipelines": "Folyamatok",
"Pipelines are a plugin system with arbitrary code execution —": "A Pipelines egy bővítményrendszer tetszőleges kódvégrehajtással —",
"Pipelines Not Detected": "Folyamatok nem észlelhetők",
"Pipelines Valves": "Folyamat szelepek",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Előző 7 nap",
"Previous message": "",
"Private": "Privát",
"Profile": "Profil",
"Profile Image": "Profilkép",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (pl. Mondj egy érdekes tényt a Római Birodalomról)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Feltöltési könyvtár visszaállítása",
"Reset Vector Storage/Knowledge": "Vektor tárhely/tudásbázis visszaállítása",
"Reset view": "Nézet visszaállítása",
"Reset Image": "Kép visszaállítása",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "A válasz értesítések nem aktiválhatók, mert a weboldal engedélyei meg lettek tagadva. Kérjük, látogasson el a böngésző beállításaihoz a szükséges hozzáférés megadásához.",
"Response splitting": "Válasz felosztás",
"Response Watermark": "",
"RESULT": "Eredmény",
"Result": "Eredmény",
"Retrieval": "Visszakeresés",
"Retrieval Query Generation": "Visszakeresési lekérdezés generálása",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Futtatás",
"Running": "Fut",
"Running...": "Fut...",
"Save": "Mentés",
"Save & Create": "Mentés és létrehozás",
"Save & Update": "Mentés és frissítés",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Beszédfelismerési hiba: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Beszéd-szöveg motor",
"Start of the channel": "A csatorna eleje",
"Stop": "Leállítás",
"Stop Generating": "",
"Stop Sequence": "Leállítási szekvencia",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT modell",
"STT Settings": "STT beállítások",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Gondolkodott {{DURATION}} ideig",
"Thought for {{DURATION}} seconds": "Gondolkodott {{DURATION}} másodpercig",
"Thought for less than a second": "",
"Thread": "Szál",
"Tika": "Tika",
"Tika Server URL required.": "Tika szerver URL szükséges.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informasi yang akurat",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Diperlukan tindakan untuk menyimpan log obrolan",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Aktif",
"Active Users": "Pengguna Aktif",
"Add": "Tambah",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "tersedia!",
"available users": "pengguna yang tersedia",
"Away": "Tidak di tempat",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Kembali",
"Bad Response": "Respons Buruk",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "Dinonaktifkan",
"Discover a function": "Menemukan sebuah fungsi",
"Discover a model": "Menemukan sebuah model",
"Discover a prompt": "Temukan petunjuk",
@ -423,12 +428,14 @@
"Don't have an account?": "Tidak memiliki akun?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Jangan mengambil pipeline acak dari sumber yang tidak Anda percayai.",
"Don't like the style": "Tidak suka gayanya",
"Done": "Selesai",
"Download": "Unduh",
"Download as SVG": "",
"Download canceled": "Unduh dibatalkan",
"Download Database": "Unduh Basis Data",
"Download & Delete": "Unduh & Hapus",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
"Enabled": "",
"Enabled": "Diaktifkan",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Masukkan Peran Anda",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Masukkan kode Anda di sini...",
"Error": "Kesalahan",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to save connections": "",
"Failed to save conversation": "Gagal menyimpan percakapan",
"Failed to save models configuration": "",
"Failed to update settings": "Gagal memperbarui pengaturan",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grup",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Petunjuk Impor",
"Import Tools": "Alat Impor",
"Important Update": "Pembaruan penting",
"Include": "",
"Includes SharePoint": "Mencakup SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `--api-auth` saat menjalankan stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `--api` saat menjalankan stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Memuat...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Tidak ada hasil yang ditemukan",
"No results found": "Tidak ada hasil yang ditemukan",
"No search query generated": "Tidak ada permintaan pencarian yang dibuat",
"No source available": "Tidak ada sumber yang tersedia",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Tidak ada katup untuk diperbarui",
"Node Ids": "",
"No suggestion prompts": "Tidak ada prompt saran",
"None": "Tidak ada",
"Not factually correct": "Tidak benar secara faktual",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline berhasil dihapus",
"Pipeline downloaded successfully": "Saluran pipa berhasil diunduh",
"Pipelines": "Saluran pipa",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines adalah sistem plugin dengan eksekusi kode sewenangwenang —",
"Pipelines Not Detected": "Saluran Pipa Tidak Terdeteksi",
"Pipelines Valves": "Katup Saluran Pipa",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 hari sebelumnya",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Gambar Profil",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Permintaan (mis. Ceritakan sebuah fakta menarik tentang Kekaisaran Romawi)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Setel Ulang Direktori Unggahan",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Atur Ulang Gambar",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notifikasi respons tidak dapat diaktifkan karena izin situs web telah ditolak. Silakan kunjungi pengaturan browser Anda untuk memberikan akses yang diperlukan.",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "HASIL",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "Berjalan",
"Running...": "Berjalan...",
"Save": "Simpan",
"Save & Create": "Simpan & Buat",
"Save & Update": "Simpan & Perbarui",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Kesalahan pengenalan suara: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Mesin Pengenal Ucapan ke Teks",
"Start of the channel": "Awal saluran",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Hentikan Urutan",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model STT",
"STT Settings": "Pengaturan STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Bicara dengan model",
"Tap to interrupt": "Ketuk untuk menyela",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Utas",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "Peringatan",
"Warning:": "",
"Warning:": "Peringatan:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Peringatan: Jika Anda memperbarui atau mengubah model penyematan, Anda harus mengimpor ulang semua dokumen.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Faisnéis chruinn",
"Action": "Gníomh",
"Action not found": "",
"Action Required for Chat Log Storage": "Gníomh riachtanach chun logáil comhrá a shábháil",
"Actions": "Gníomhartha",
"Activate": "Gníomhachtaigh",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Gníomhachtaigh an t-ordú seo trí \"/{{COMMAND}}\" a chlóscríobh chun ionchur comhrá a dhéanamh.",
"Active": "Gníomhach",
"Active Users": "Úsáideoirí Gníomhacha",
"Add": "Cuir",
"Add a model ID": "Cuir aitheantas samhail leis",
@ -156,8 +158,11 @@
"Available list": "Liosta atá ar fáil",
"Available Tools": "Uirlisí ar Fáil",
"available!": "ar fáil!",
"available users": "úsáideoirí ar fáil",
"Away": "As láthair",
"Awful": "Uafásach",
"Azure AI Speech": "Óráid Azure AI",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Réigiún Azure",
"Back": "Ar ais",
"Bad Response": "Droch-fhreagra",
@ -423,12 +428,14 @@
"Don't have an account?": "Níl cuntas agat?",
"don't install random functions from sources you don't trust.": "ná suiteáil feidhmeanna randamacha ó fhoinsí nach bhfuil muinín agat.",
"don't install random tools from sources you don't trust.": "ná suiteáil uirlisí randamacha ó fhoinsí nach bhfuil muinín agat.",
"don't fetch random pipelines from sources you don't trust.": "Ná faigh pipelines randamacha ó fhoinsí nach bhfuil muinín agat iontu.",
"Don't like the style": "Ná thaitníonn an stíl",
"Done": "Déanta",
"Download": "Íoslódáil",
"Download as SVG": "Íoslódáil i SVG",
"Download canceled": "Íoslódáil cealaithe",
"Download Database": "Íoslódáil Bunachair",
"Download & Delete": "Íoslódáil agus scrios",
"Drag and drop a file to upload or select a file to view": "Tarraing agus scaoil comhad le huaslódáil nó roghnaigh comhad le féachaint air",
"Draw": "Tarraing",
"Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil",
@ -593,6 +600,7 @@
"Enter Your Role": "Cuir isteach do Ról",
"Enter Your Username": "Cuir isteach D'Ainm Úsáideora",
"Enter your webhook URL": "Cuir isteach URL do webhook",
"Enter your code here...": "Iontráil do chód anseo...",
"Error": "Earráid",
"ERROR": "EARRÁID",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
"Failed to save connections": "Theip ar na naisc a shábháil",
"Failed to save conversation": "Theip ar an gcomhrá a shábháil",
"Failed to save models configuration": "Theip ar chumraíocht na samhlacha a shábháil",
"Failed to update settings": "Theip ar shocruithe a nuashonrú",
"Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
@ -738,6 +747,7 @@
"Group deleted successfully": "D'éirigh le scriosadh an ghrúpa",
"Group Description": "Cur síos ar an nGrúpa",
"Group Name": "Ainm an Ghrúpa",
"Group": "Grúpa",
"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
"Groups": "Grúpaí",
"H1": "H1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Moltaí Pras Iompórtála",
"Import Prompts": "Leideanna Iompórtála",
"Import Tools": "Uirlisí Iomp",
"Important Update": "Nuashonrú tábhachtach",
"Include": "Cuir san áireamh",
"Includes SharePoint": "Áirítear SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d'aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
"Loader": "Lódóir",
"Loading Kokoro.js...": "Kokoro.js á lódáil...",
"Loading...": "...",
"Local": "Áitiúil",
"Local Task Model": "Samhail Tasc Áitiúil",
"Location access not allowed": "Ní cheadaítear rochtain suímh",
@ -986,6 +999,7 @@
"No models found": "Níor aimsíodh samhlacha",
"No models selected": "Uimh samhlacha roghnaithe",
"No Notes": "Gan Nótaí",
"No results": "Níl aon torthaí le fáil",
"No results found": "Níl aon torthaí le fáil",
"No search query generated": "Ní ghintear aon cheist cuardaigh",
"No source available": "Níl aon fhoinse ar fáil",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Gan comhlaí le nuashonrú",
"Node Ids": "",
"No suggestion prompts": "Gan leideanna molta",
"None": "Dada",
"Not factually correct": "Níl sé ceart go fírineach",
"Not helpful": "Gan a bheith cabhrach",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Scriosta píblíne go rathúil",
"Pipeline downloaded successfully": "Íoslódáilte píblíne",
"Pipelines": "Píblínte",
"Pipelines are a plugin system with arbitrary code execution —": "Is córas breiseán é Pipelines a ligeann cód a rith go treallach —",
"Pipelines Not Detected": "Níor aimsíodh píblínte",
"Pipelines Valves": "Comhlaí Píblíne",
"Plain text (.md)": "Téacs simplí (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 lá roimhe seo",
"Previous message": "Teachtaireacht roimhe seo",
"Private": "Príobháideach",
"Profile": "Próifíl",
"Profile Image": "Íomhá Próifíl",
"Prompt": "Leid",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Leid (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Athshocraigh Eolaire Uas",
"Reset Vector Storage/Knowledge": "Athshocraigh Stóráil/Eolas Veicteoir",
"Reset view": "Athshocraigh amharc",
"Reset Image": "Athshocraigh Íomhá",
"Response": "Freagra",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ní féidir fógraí freagartha a ghníomhachtú toisc gur diúltaíodh ceadanna an tsuímh Ghréasáin. Tabhair cuairt ar do shocruithe brabhsálaí chun an rochtain riachtanach a dheonú.",
"Response splitting": "Scoilt freagartha",
"Response Watermark": "Comhartha Uisce Freagartha",
"RESULT": "Toradh",
"Result": "Toradh",
"Retrieval": "Aisghabháil",
"Retrieval Query Generation": "Aisghabháil Giniúint Ceist",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Rith",
"Running": "Ag rith",
"Running...": "Ag rith...",
"Save": "Sábháil",
"Save & Create": "Sábháil & Cruthaigh",
"Save & Update": "Sábháil & Nuashonraigh",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}",
"Speech-to-Text": "Urlabhra-go-Téacs",
"Speech-to-Text Engine": "Inneall Cainte-go-Téacs",
"Start of the channel": "Tús an chainéil",
"Stop": "Stad",
"Stop Generating": "Stop a Ghiniúint",
"Stop Sequence": "Stop Seicheamh",
@ -1334,6 +1355,7 @@
"Strikethrough": "Stríoc tríd",
"Strip Existing OCR": "Bain OCR atá ann cheana",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Bain an téacs OCR atá ann cheana féin as an PDF agus athrith OCR. Déantar neamhaird de má tá OCR Fórsála cumasaithe. Is é Bréag an rogha réamhshocraithe.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Samhail STT",
"STT Settings": "Socruithe STT",
"Stylized PDF Export": "Easpórtáil PDF Stílithe",
@ -1412,6 +1434,7 @@
"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",
"Thread": "Snáithe",
"Tika": "Tika",
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informazioni accurate",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Azione richiesta per salvare il registro chat",
"Actions": "Azioni",
"Activate": "Attiva",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Attiva questo comando digitando \"/{{COMMAND}}\" nell'input della chat.",
"Active": "Attivo",
"Active Users": "Utenti attivi",
"Add": "Aggiungi",
"Add a model ID": "Aggiungi un ID modello",
@ -156,8 +158,11 @@
"Available list": "Elenco disponibile",
"Available Tools": "Strumenti disponibili",
"available!": "disponibile!",
"available users": "utenti disponibili",
"Away": "Assente",
"Awful": "Terribile",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Regione di Azure",
"Back": "Indietro",
"Bad Response": "Risposta non valida",
@ -423,12 +428,14 @@
"Don't have an account?": "Non hai un account?",
"don't install random functions from sources you don't trust.": "non installare funzioni da fonti di cui non ti fidi.",
"don't install random tools from sources you don't trust.": "non installare strumenti da fonti di cui non ti fidi.",
"don't fetch random pipelines from sources you don't trust.": "Non recuperare pipeline casuali da fonti non affidabili.",
"Don't like the style": "Non ti piace lo stile",
"Done": "Fatto",
"Download": "Scarica",
"Download as SVG": "Scarica come SVG",
"Download canceled": "Scaricamento annullato",
"Download Database": "Scarica database",
"Download & Delete": "Scarica e elimina",
"Drag and drop a file to upload or select a file to view": "Trascina e rilascia un file per caricarlo o seleziona un file da visualizzare",
"Draw": "Disegna",
"Drop any files here to upload": "Rilascia qui i file per caricarli",
@ -593,6 +600,7 @@
"Enter Your Role": "Inserisci il Tuo Ruolo",
"Enter Your Username": "Inserisci il Tuo Nome Utente",
"Enter your webhook URL": "Inserisci l'URL del tuo webhook",
"Enter your code here...": "Inserisci qui il tuo codice...",
"Error": "Errore",
"ERROR": "ERRORE",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Impossibile caricare il contenuto del file.",
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
"Failed to save connections": "Impossibile salvare le connessioni",
"Failed to save conversation": "Impossibile salvare la conversazione",
"Failed to save models configuration": "Impossibile salvare la configurazione dei modelli",
"Failed to update settings": "Impossibile aggiornare le impostazioni",
"Failed to upload file.": "Impossibile caricare il file.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Gruppo eliminato con successo",
"Group Description": "Descrizione Gruppo",
"Group Name": "Nome Gruppo",
"Group": "Gruppo",
"Group updated successfully": "Gruppo aggiornato con successo",
"Groups": "Gruppi",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importa suggerimenti Prompt",
"Import Prompts": "Importa Prompt",
"Import Tools": "Importa Tool",
"Important Update": "Aggiornamento importante",
"Include": "Includi",
"Includes SharePoint": "Include SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Includi il flag `--api-auth` quando esegui stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influenza la velocità con cui l'algoritmo risponde al feedback del testo generato. Un tasso di apprendimento più basso comporterà aggiustamenti più lenti, mentre un tasso di apprendimento più alto renderà l'algoritmo più reattivo.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
"Loader": "Caricatore",
"Loading Kokoro.js...": "Caricamento Kokoro.js...",
"Loading...": "Caricamento...",
"Local": "Locale",
"Local Task Model": "Modello Task locale",
"Location access not allowed": "Accesso alla posizione non consentito",
@ -986,6 +999,7 @@
"No models found": "Nessun modello trovato",
"No models selected": "Nessun modello selezionato",
"No Notes": "Nessuna nota",
"No results": "Nessun risultato trovato",
"No results found": "Nessun risultato trovato",
"No search query generated": "Nessuna query di ricerca generata",
"No source available": "Nessuna fonte disponibile",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Nessuna valvola da aggiornare",
"Node Ids": "",
"No suggestion prompts": "Nessun prompt suggerito",
"None": "Nessuno",
"Not factually correct": "Non corretto dal punto di vista fattuale",
"Not helpful": "Non utile",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline rimossa con successo",
"Pipeline downloaded successfully": "Pipeline scaricata con successo",
"Pipelines": "Pipeline",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines è un sistema di plugin con esecuzione arbitraria di codice —",
"Pipelines Not Detected": "Pipeline Non Rilevate",
"Pipelines Valves": "Valvole per pipelines",
"Plain text (.md)": "Testo normale (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Ultimi 7 giorni",
"Previous message": "",
"Private": "Privato",
"Profile": "Profilo",
"Profile Image": "Immagine del Profilo",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ad esempio Dimmi un fatto divertente sull'Impero Romano)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Ripristina Directory di Caricamento",
"Reset Vector Storage/Knowledge": "Ripristina Archiviazione Vettoriale/Conoscenza",
"Reset view": "Ripristina visualizzazione",
"Reset Image": "Reimposta immagine",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Le notifiche di risposta non possono essere attivate poiché i permessi del sito web sono stati negati. Si prega di visitare le impostazioni del browser per concedere l'accesso necessario.",
"Response splitting": "Divisione della risposta",
"Response Watermark": "Watermark della richiesta",
"RESULT": "Risultato",
"Result": "Risultato",
"Retrieval": "Recupero ricordo",
"Retrieval Query Generation": "Generazione di query di recupero ricordo",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Esegui",
"Running": "In esecuzione",
"Running...": "In esecuzione...",
"Save": "Salva",
"Save & Create": "Salva e crea",
"Save & Update": "Salva e aggiorna",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motore da voce a testo",
"Start of the channel": "Inizio del canale",
"Stop": "Arresta",
"Stop Generating": "Ferma generazione",
"Stop Sequence": "Sequenza di arresto",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Rimuovi OCR esistente",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Rimuovi il testo OCR esistente dal PDF e rilancia OCR. Ignorato se Forza OCR è attivo. Predefinito a Falso",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modello STT",
"STT Settings": "Impostazioni STT",
"Stylized PDF Export": "Esportazione PDF Stilizzata",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Pensiero per {{DURATION}}",
"Thought for {{DURATION}} seconds": "Pensiero per {{DURATION}} secondi",
"Thought for less than a second": "",
"Thread": "Discussione",
"Tika": "Tika",
"Tika Server URL required.": "L'URL del server Tika è obbligatorio.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "情報が正確",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "チャットログの保存には操作が必要です",
"Actions": "アクション",
"Activate": "アクティブ化",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "このコマンド \"/{{COMMAND}}\" をチャットに入力してアクティブ化します",
"Active": "アクティブ",
"Active Users": "アクティブユーザー",
"Add": "追加",
"Add a model ID": "モデルIDを追加",
@ -156,8 +158,11 @@
"Available list": "利用可能リスト",
"Available Tools": "利用可能ツール",
"available!": "利用可能!",
"available users": "利用可能なユーザー",
"Away": "離席中",
"Awful": "",
"Azure AI Speech": "AzureAIスピーチ",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azureリージョン",
"Back": "戻る",
"Bad Response": "応答が悪い",
@ -423,12 +428,14 @@
"Don't have an account?": "アカウントをお持ちではありませんか?",
"don't install random functions from sources you don't trust.": "信頼出来ないソースからランダムFunctionをインストールしないでください。",
"don't install random tools from sources you don't trust.": "信頼出来ないソースからランダムツールをインストールしないでください。",
"don't fetch random pipelines from sources you don't trust.": "信頼できないソースからランダムなパイプラインを取得しないでください。",
"Don't like the style": "デザインが好きでない",
"Done": "完了",
"Download": "ダウンロード",
"Download as SVG": "SVGとしてダウンロード",
"Download canceled": "ダウンロードをキャンセルしました",
"Download Database": "データベースをダウンロード",
"Download & Delete": "ダウンロードして削除",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "ロールを入力してください",
"Enter Your Username": "ユーザー名を入力してください",
"Enter your webhook URL": "Webhook URLを入力してください",
"Enter your code here...": "ここにコードを入力してください...",
"Error": "エラー",
"ERROR": "エラー",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "ファイルの内容を読み込めませんでした。",
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
"Failed to save connections": "接続の保存に失敗しました。",
"Failed to save conversation": "会話の保存に失敗しました。",
"Failed to save models configuration": "モデルの設定の保存に失敗しました。",
"Failed to update settings": "設定アップデート失敗",
"Failed to upload file.": "ファイルアップロード失敗",
@ -738,6 +747,7 @@
"Group deleted successfully": "グループの削除が成功しました。",
"Group Description": "グループの説明",
"Group Name": "グループ名",
"Group": "グループ",
"Group updated successfully": "グループの更新が成功しました。",
"Groups": "グループ",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "プロンプトをインポート",
"Import Tools": "ツールのインポート",
"Important Update": "重要な更新",
"Include": "含める",
"Includes SharePoint": "SharePoint を含む",
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api-auth`フラグを含める",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含める",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "生成されたテキストからのフィードバックに対するアルゴリズムの応答速度を影響します。低い学習率はより遅い調整をもたらし、高い学習率はアルゴリズムをより反応的にします。",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
"Loader": "ローダー",
"Loading Kokoro.js...": "Kokoro.js を読み込んでいます...",
"Loading...": "読み込み中...",
"Local": "ローカル",
"Local Task Model": "",
"Location access not allowed": "位置情報のアクセスが許可されていません",
@ -986,6 +999,7 @@
"No models found": "モデルが見つかりません",
"No models selected": "モデルが選択されていません",
"No Notes": "ノートがありません",
"No results": "結果が見つかりません",
"No results found": "結果が見つかりません",
"No search query generated": "検索クエリは生成されません",
"No source available": "使用可能なソースがありません",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "更新するバルブがありません",
"Node Ids": "",
"No suggestion prompts": "提案プロンプトはありません",
"None": "何一つ",
"Not factually correct": "実事上正しくない",
"Not helpful": "役に立たない",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "パイプラインが正常に削除されました",
"Pipeline downloaded successfully": "パイプラインが正常にダウンロードされました",
"Pipelines": "パイプライン",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines は任意のコード実行が可能なプラグインシステムです —",
"Pipelines Not Detected": "パイプラインは検出されませんでした",
"Pipelines Valves": "パイプラインバルブ",
"Plain text (.md)": "プレーンテキスト (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "前の7日間",
"Previous message": "",
"Private": "プライベート",
"Profile": "プロフィール",
"Profile Image": "プロフィール画像",
"Prompt": "プロンプト",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "プロンプト(例:ローマ帝国についての楽しい事を教えてください)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "アップロードディレクトリをリセット",
"Reset Vector Storage/Knowledge": "ベクターストレージとナレッジベースをリセット",
"Reset view": "表示をリセット",
"Reset Image": "画像をリセット",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ウェブサイトの許可が拒否されたため、応答通知をアクティブ化できません。必要なアクセスを許可するためにブラウザの設定を訪問してください。",
"Response splitting": "応答の分割",
"Response Watermark": "",
"RESULT": "結果",
"Result": "結果",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "実行",
"Running": "実行中",
"Running...": "実行中...",
"Save": "保存",
"Save & Create": "保存して作成",
"Save & Update": "保存して更新",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "音声テキスト変換エンジン",
"Start of the channel": "チャンネルの開始",
"Stop": "停止",
"Stop Generating": "",
"Stop Sequence": "ストップシーケンス",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STTモデル",
"STT Settings": "STT設定",
"Stylized PDF Export": "スタイル付きPDFエクスポート",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}}秒間の思考",
"Thought for {{DURATION}} seconds": "{{DURATION}}秒間の思考",
"Thought for less than a second": "",
"Thread": "スレッド",
"Tika": "",
"Tika Server URL required.": "Tika Server URLが必要です。",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "სწორი ინფორმაცია",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "საჭიროა მოქმედება ჩატის ჟურნალის შესანახად",
"Actions": "ქმედებები",
"Activate": "აქტივაცია",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "აქტიური",
"Active Users": "აქტიური მომხმარებლები",
"Add": "დამატება",
"Add a model ID": "მოდელის ID-ის დამატება",
@ -156,8 +158,11 @@
"Available list": "ხელმისაწვდომი სია",
"Available Tools": "",
"available!": "ხელმისაწვდომია!",
"available users": "ხელმისაწვდომი მომხმარებლები",
"Away": "გაცდენილი",
"Awful": "საშინელი",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure-ის რეგიონი",
"Back": "უკან",
"Bad Response": "არასწორი პასუხი",
@ -423,12 +428,14 @@
"Don't have an account?": "არ გაქვთ ანგარიში?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "არ ჩამოტვირთოთ შემთხვევითი pipelines არასანდო წყაროებიდან.",
"Don't like the style": "არ მომწონს სტილი",
"Done": "დასრულებული",
"Download": "გადმოწერა",
"Download as SVG": "",
"Download canceled": "გადმოწერა გაუქმდა",
"Download Database": "მონაცემთა ბაზის გადმოწერა",
"Download & Delete": "ჩამოტვირთვა და წაშლა",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "ხატვა",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "შეიყვანეთ თქვენი როლი",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "შეიყვანეთ თქვენი კოდი აქ...",
"Error": "შეცდომა",
"ERROR": "ERROR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
"Failed to save connections": "",
"Failed to save conversation": "საუბრის შენახვა ვერ მოხერხდა",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "ჯგუფის სახელი",
"Group": "ჯგუფი",
"Group updated successfully": "",
"Groups": "ჯგუფები",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "მოთხოვნების შემოტანა",
"Import Tools": "",
"Important Update": "მნიშვნელოვანი განახლება",
"Include": "ჩართვა",
"Includes SharePoint": "შეიცავს SharePoint-ს",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "`--api` ალმის ჩასმა stable-diffusion-webui-ის გამოყენებისას",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM-ებმა, შეიძლება, შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "იტვირთება...",
"Local": "ლოკალური",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "მოდელები აღმოჩენილი არაა",
"No models selected": "მოდელები არჩეული არაა",
"No Notes": "",
"No results": "შედეგების გარეშე",
"No results found": "შედეგების გარეშე",
"No search query generated": "ძებნის მოთხოვნა არ შექმნილა",
"No source available": "წყარო ხელმისაწვდომი არაა",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "არ არის შემოთავაზებული პრომპტები",
"None": "არცერთი",
"Not factually correct": "მთლად სწორი არაა",
"Not helpful": "სასარგებლო არაა",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "მილსადენები",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines არის პლაგინების სისტემა თვითნებური კოდის გაშვებით —",
"Pipelines Not Detected": "",
"Pipelines Valves": "მილსადენის სარქველები",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "წინა 7 დღე",
"Previous message": "",
"Private": "",
"Profile": "პროფილი",
"Profile Image": "პროფილის სურათი",
"Prompt": "ბრძანების შეყვანის შეხსენება",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (მაგ. მითხარი სახალისო ფაქტი რომის იმპერიის შესახებ)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "სურათის აღდგენა",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "შედეგი",
"Result": "შედეგი",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "გაშვება",
"Running": "გაშვებულია",
"Running...": "გაშვებულია...",
"Save": "შენახვა",
"Save & Create": "შენახვა და შექმნა",
"Save & Update": "შენახვა და განახლება",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "საუბრის ამოცნობის შეცდომა: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი",
"Start of the channel": "არხის დასაწყისი",
"Stop": "გაჩერება",
"Stop Generating": "",
"Stop Sequence": "შეჩერების მიმდევრობა",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT-ის მორგება",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "ესაუბრეთ მოდელს",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "ნაკადი",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",

View file

@ -29,9 +29,11 @@
"Account Activation Pending": "Armad n umiḍan deg uṛaǧu",
"Accurate information": "Talɣut tusdidt",
"Action": "Tigawt",
"Action Required for Chat Log Storage": "Isefk tigawt i usekles n uɣmis n udiwenni",
"Actions": "Tigawin",
"Activate": "Sermed",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Xdem lameṛ-a s tira n \"/{COMMAND}}\" akken ad tqeṣṣreḍ asekcem.",
"Active": "Urmid",
"Active Users": "Iseqdacen urmiden",
"Add": "Rnu",
"Add a model ID": "Rnu asulay n timudemt",
@ -152,8 +154,11 @@
"Available list": "Tabdart i yellan",
"Available Tools": "Ifecka i yellan",
"available!": "yella!",
"available users": "Iseqdacen yellan",
"Away": "Ulac",
"Awful": "D tawaɣit",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Tamnaḍṭ n Azure",
"Back": "Tuɣalin",
"Bad Response": "Yir tiririt",
@ -411,12 +416,14 @@
"Don't have an account?": "Ur tesɛiḍ ara amiḍan?",
"don't install random functions from sources you don't trust.": "ur sebdad ara timahilin tigacuranin i d-yekkan seg yiɣbula ur tettamneḍ ara.",
"don't install random tools from sources you don't trust.": "ur srusuy ara ifecka igacuranen seg yiɣbula ur tettamneḍ ara.",
"don't fetch random pipelines from sources you don't trust.": "ur d-awi ara pipelines igacuranen seg yiɣbula ur tettamneḍ ara.",
"Don't like the style": "Ur tḥemmleḍ ara aɣanib",
"Done": "Immed",
"Download": "Zdem",
"Download as SVG": "Zdem am SVG",
"Download canceled": "Ittwasefsex usider",
"Download Database": "Zdem-d tafa n isefka",
"Download & Delete": "Zdem & Kkes",
"Drag and drop a file to upload or select a file to view": "Zuɣer sakin ssers afaylu akken ad saliḍṭ neɣ fren afaylu akken ad twaliḍṭ",
"Draw": "Suneɣ",
"Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ",
@ -577,6 +584,7 @@
"Enter Your Role": "Sekcem tamlilt-ik⋅im",
"Enter Your Username": "Sekcem-d isem-ik·im n useqdac",
"Enter your webhook URL": "Sekcem tansa URL n webhook-ik",
"Enter your code here...": "Sekcem tangalt-ik dagi...",
"Error": "Tuccḍa",
"ERROR": "TUCCḌA",
"Error accessing Google Drive: {{error}}": "Tuccḍa Google Drive: {{error}}",
@ -635,6 +643,7 @@
"Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.",
"Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit",
"Failed to save connections": "Yecceḍ uklas n tuqqniwin",
"Failed to save conversation": "Yecceḍ uklas n udiwenni",
"Failed to save models configuration": "Ur yessaweḍ ara ad d-yessukkes tamudemt n usneftaɣ",
"Failed to update settings": "Yecceḍ uleqqem n yiɣewwaren",
"Failed to upload file.": "Yecceḍ uzdam n ufaylu.",
@ -719,6 +728,7 @@
"Group deleted successfully": "Agraw yettwakkes akken iwata",
"Group Description": "Aglam n ugraw",
"Group Name": "Isem n ugraw",
"Group": "Agraw",
"Group updated successfully": "Agraw yettwaleqqem akken iwata",
"Groups": "Igrawen",
"H1": "H1",
@ -770,7 +780,9 @@
"Import Prompt Suggestions": "Kter isumar n uneftaɣ",
"Import Prompts": "Kter ineftaɣen",
"Import Tools": "Kter ifecka",
"Important Update": "Aleqqem ahemmu",
"Include": "Seddu",
"Includes SharePoint": "Igber SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Seddu annay `--api-auth` lawan n uselkem n stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Seddu takbabt ''-api' mi ara teslekmeḍ stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -848,6 +860,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs yezmer ad yecceḍ. Senqed talɣut yesɛan azal.",
"Loader": "Asalay",
"Loading Kokoro.js...": "Aêbbi n Kokoro.js…",
"Loading...": "Aêbbi n...",
"Local": "Adigan",
"Local Task Model": "Tamudemt n temsekrit tadigant",
"Location access not allowed": "Anekcum ɣer tuddna",
@ -956,11 +969,13 @@
"No models found": "Ulac timudmiwin yettwafen",
"No models selected": "Ulac timudmin yettwafernen",
"No Notes": "Ulac tizmilin",
"No results": "Ulac igmaḍ yettwafen",
"No results found": "Ulac igmaḍ yettwafen",
"No search query generated": "Ulac tuttra n unadi yettusirwen",
"No source available": "Ulac aɣbalu yettwafen",
"No users were found.": "Ulac aqeddac i yettwafen.",
"No valves to update": "",
"No suggestion prompts": "Ulac isumar n prompt",
"None": "Ula d yiwen",
"Not factually correct": "",
"Not helpful": "Ur infiɛ ara",
@ -1050,6 +1065,7 @@
"Pipeline deleted successfully": "Aselda yettwakkes akken iwata",
"Pipeline downloaded successfully": "Aselda yettuzdem-d akken iwata",
"Pipelines": "Iseldayen",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines d unagraw n izegrar s uselkem n tengalt awurman —",
"Pipelines Not Detected": "Ulac aselda i yettwafen",
"Pipelines Valves": "",
"Plain text (.md)": "Aḍris aččuran (.md)",
@ -1077,6 +1093,7 @@
"Previous 7 days": "7 n wussan yezrin",
"Previous message": "Izen udfir",
"Private": "Uslig",
"Profile": "Amaɣnu",
"Profile Image": "Tugna n umaɣnu",
"Prompt": "Aneftaɣ",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Aneftaɣ (amedya. Ini-yi-d kra yessedhayen ɣef Temnekda Tarumanit)",
@ -1133,10 +1150,12 @@
"Reset Upload Directory": "Wennez akaram n uzdam",
"Reset Vector Storage/Knowledge": "",
"Reset view": "Wennez askan",
"Reset Image": "Ales awennez n tugna",
"Response": "Tiririt",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ilɣa n tririt ur zmiren ara ad ttwasremden imi ugin ttesriḥat n usmel web. Ttxil-k, rzu ɣef yiɣewwaren-ik n yiminig akken ad tkecmeḍ ɣer wayen ilaqen.",
"Response splitting": "Beṭṭu n tririt",
"Response Watermark": "Ticreḍt tafrawant n tririt",
"RESULT": "Agmuḍ",
"Result": "Agmuḍ",
"Retrieval": "Anadi",
"Retrieval Query Generation": "Asirew n tuttra n RAG",
@ -1148,6 +1167,7 @@
"RTL": "RTL",
"Run": "Selkem",
"Running": "Aselkem",
"Running...": "Aselkem...",
"Save": "Sekles",
"Save & Create": "Sekles rnu snulfu-d",
"Save & Update": "Sekles rnu leqqem",
@ -1272,6 +1292,7 @@
"Speech recognition error: {{error}}": "Tuccḍa n uɛqal n wawal: {{error}}",
"Speech-to-Text": "Aɛqal n taɣect",
"Speech-to-Text Engine": "Amsadday n uɛqal n taɣect",
"Start of the channel": "Tazwara n wabadu",
"Stop": "Seḥbes",
"Stop Generating": "Seḥbes asirew",
"Stop Sequence": "Tagzemt n uḥbas",
@ -1280,6 +1301,7 @@
"Strikethrough": "Yettujerreḍ",
"Strip Existing OCR": "Kkes ORC i yellan",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Sfeḍ aḍris OCR yellan yakan seg PDF akked OCR i d-yettuɣalen. Ur ttettu ara ma yella Force OCR tettwarmed. Imezwura ɣer False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Tamudemt n uɛqal n taɣect",
"STT Settings": "Iɣewwaren n uɛqal n tavect",
"Stylized PDF Export": "",
@ -1356,6 +1378,7 @@
"Thought for {{DURATION}}": "Ixemmem {{DURATION}}",
"Thought for {{DURATION}} seconds": "Axemmem ɣef {{DURATION}} n tsinin",
"Thought for less than a second": "",
"Thread": "Agzul",
"Tika": "Tika",
"Tika Server URL required.": "Tansa URL n Tika Server tettwasra.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "정확한 정보",
"Action": "액션",
"Action not found": "",
"Action Required for Chat Log Storage": "채팅 로그 저장을 위해 조치가 필요합니다",
"Actions": "작업",
"Activate": "활성화",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "채팅 입력창에 \"{{COMMAND}}\"을 입력해 명령을 실행하세요.",
"Active": "활성",
"Active Users": "활성 사용자",
"Add": "추가",
"Add a model ID": "모델 ID 추가",
@ -156,8 +158,11 @@
"Available list": "가능한 목록",
"Available Tools": "사용 가능한 도구",
"available!": "사용 가능!",
"available users": "사용 가능 사용자",
"Away": "자리 비움",
"Awful": "형편없음",
"Azure AI Speech": "Azure AI 음성",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure 지역",
"Back": "뒤로",
"Bad Response": "잘못된 응답",
@ -423,12 +428,14 @@
"Don't have an account?": "계정이 없으신가요?",
"don't install random functions from sources you don't trust.": "불분명한 출처를 가진 임의의 함수를 설치하지마세요",
"don't install random tools from sources you don't trust.": "불분명한 출처를 가진 임의의 도구를 설치하지마세요",
"don't fetch random pipelines from sources you don't trust.": "신뢰하지 않는 출처에서 임의의 파이프라인을 가져오지 마세요.",
"Don't like the style": "스타일이 마음에 안 드시나요?",
"Done": "완료됨",
"Download": "다운로드",
"Download as SVG": "SVG로 다운로드",
"Download canceled": "다운로드 취소",
"Download Database": "데이터베이스 다운로드",
"Download & Delete": "다운로드 및 삭제",
"Drag and drop a file to upload or select a file to view": "파일을 끌어다 놓아 업로드하거나 파일을 선택하여 보기",
"Draw": "그리기",
"Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요",
@ -593,6 +600,7 @@
"Enter Your Role": "역할 입력",
"Enter Your Username": "사용자 이름 입력",
"Enter your webhook URL": "웹훅 URL을 입력해 주세요",
"Enter your code here...": "여기에 코드를 입력하세요...",
"Error": "오류",
"ERROR": "오류",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "파일 내용 로드 실패.",
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
"Failed to save connections": "연결 저장 실패",
"Failed to save conversation": "대화 저장 실패",
"Failed to save models configuration": "모델 구성 저장 실패",
"Failed to update settings": "설정 업데이트에 실패하였습니다.",
"Failed to upload file.": "파일 업로드에 실패했습니다",
@ -738,6 +747,7 @@
"Group deleted successfully": "성공적으로 그룹을 삭제했습니다",
"Group Description": "그룹 설명",
"Group Name": "그룹 명",
"Group": "그룹",
"Group updated successfully": "성공적으로 그룹을 수정했습니다",
"Groups": "그룹",
"H1": "제목 1",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "프롬프트 제안 가져오기",
"Import Prompts": "프롬프트 가져오기",
"Import Tools": "도구 가져오기",
"Important Update": "중요 업데이트",
"Include": "포함",
"Includes SharePoint": "SharePoint 포함",
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api-auth` 플래그를 포함하세요",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api` 플래그를 포함하세요",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "생성된 텍스트의 피드백에 알고리즘이 얼마나 빨리 반응하는지에 영향을 미칩니다. 학습률이 낮을수록 조정 속도가 느려지고 학습률이 높아지면 알고리즘의 반응 속도가 빨라집니다.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.",
"Loader": "로더",
"Loading Kokoro.js...": "Kokoro.js 로딩 중...",
"Loading...": "로딩 중...",
"Local": "로컬",
"Local Task Model": "로컬 작업 모델",
"Location access not allowed": "위치 접근이 허용되지 않음",
@ -986,6 +999,7 @@
"No models found": "모델 없음",
"No models selected": "모델 선택 안됨",
"No Notes": "노트 없음",
"No results": "결과 없음",
"No results found": "결과 없음",
"No search query generated": "검색어가 생성되지 않았습니다.",
"No source available": "사용 가능한 소스가 없습니다.",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "업데이트 할 밸브가 없습니다.",
"Node Ids": "",
"No suggestion prompts": "추천 프롬프트가 없습니다",
"None": "없음",
"Not factually correct": "사실상 맞지 않음",
"Not helpful": "도움이 되지않음",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "성공적으로 파이프라인이 삭제되었습니다.",
"Pipeline downloaded successfully": "성공적으로 파이프라인이 설치되었습니다.",
"Pipelines": "파이프라인",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines는 임의 코드 실행이 가능한 플러그인 시스템입니다 —",
"Pipelines Not Detected": "파이프라인이 발견되지 않았습니다.",
"Pipelines Valves": "파이프라인 밸브",
"Plain text (.md)": "일반 텍스트(.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "이전 7일",
"Previous message": "이전 메시지",
"Private": "비공개",
"Profile": "프로필",
"Profile Image": "프로필 이미지",
"Prompt": "프롬프트",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "프롬프트 (예: 로마 황제에 대해 재미있는 사실을 알려주세요)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "업로드 디렉토리 초기화",
"Reset Vector Storage/Knowledge": "벡터 저장 공간/지식 기반 초기화",
"Reset view": "보기 초기화",
"Reset Image": "이미지 초기화",
"Response": "응답",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "웹사이트 권한이 거부되어 응답 알림을 활성화할 수 없습니다. 필요한 접근 권한을 부여하려면 브라우저 설정을 확인해 주세요.",
"Response splitting": "응답 나누기",
"Response Watermark": "응답 워터마크",
"RESULT": "결과",
"Result": "결과",
"Retrieval": "검색",
"Retrieval Query Generation": "검색 쿼리 생성",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "실행시키기",
"Running": "실행 중",
"Running...": "실행 중...",
"Save": "저장",
"Save & Create": "저장 및 생성",
"Save & Update": "저장 및 업데이트",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
"Speech-to-Text": "음성-텍스트 변환",
"Speech-to-Text Engine": "음성-텍스트 변환 엔진",
"Start of the channel": "채널 시작",
"Stop": "정지",
"Stop Generating": "생성 중지",
"Stop Sequence": "중지 시퀀스",
@ -1334,6 +1355,7 @@
"Strikethrough": "취소선",
"Strip Existing OCR": "기존 OCR 제거",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDF에서 기존 OCR 텍스트를 제거하고 OCR을 다시 실행합니다. Force OCR이 활성화된 경우 무시됩니다. 기본값은 False입니다.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT 모델",
"STT Settings": "STT 설정",
"Stylized PDF Export": "서식이 적용된 PDF 내보내기",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}} 동안 생각함",
"Thought for {{DURATION}} seconds": "{{DURATION}}초 동안 생각함",
"Thought for less than a second": "1초 미만 동안 생각함",
"Thread": "스레드",
"Tika": "티카(Tika)",
"Tika Server URL required.": "티카 서버 URL이 필요합니다.",
"Tiktoken": "틱토큰 (Tiktoken)",

View file

@ -31,9 +31,11 @@
"Accurate information": "Tiksli informacija",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Reikia veiksmo, kad būtų išsaugotas pokalbių žurnalas",
"Actions": "Veiksmai",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Aktyvus",
"Active Users": "Aktyvūs naudotojai",
"Add": "Pridėti",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "prieinama!",
"available users": "galimi naudotojai",
"Away": "Išvykęs",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Atgal",
"Bad Response": "Neteisingas atsakymas",
@ -423,12 +428,14 @@
"Don't have an account?": "Neturite paskyros?",
"don't install random functions from sources you don't trust.": "neinstaliuokite funkcijų iš nepatikimų šaltinių",
"don't install random tools from sources you don't trust.": "neinstaliuokite įrankių iš nepatikimų šaltinių",
"don't fetch random pipelines from sources you don't trust.": "Neatsisiųskite atsitiktinių pipelines iš nepatikimų šaltinių.",
"Don't like the style": "Nepatinka stilius",
"Done": "Atlikta",
"Download": "Parsisiųsti",
"Download as SVG": "",
"Download canceled": "Parsisiuntimas atšauktas",
"Download Database": "Parsisiųsti duomenų bazę",
"Download & Delete": "Atsisiųsti ir ištrinti",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Įveskite savo rolę",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Įveskite savo kodą čia...",
"Error": "Klaida",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
"Failed to save connections": "",
"Failed to save conversation": "Nepavyko išsaugoti pokalbio",
"Failed to save models configuration": "",
"Failed to update settings": "Nepavyko atnaujinti nustatymų",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grupė",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importuoti užklausas",
"Import Tools": "Importuoti įrankius",
"Important Update": "Svarbus atnaujinimas",
"Include": "",
"Includes SharePoint": "Įtraukiamas SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Įtraukti `--api-auth` flag when running stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Pridėti `--api` kai vykdomas stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Įkeliama...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Rezultatų nerasta",
"No results found": "Rezultatų nerasta",
"No search query generated": "Paieškos užklausa nesugeneruota",
"No source available": "Šaltinių nerasta",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Nėra atnaujinamų įeičių",
"Node Ids": "",
"No suggestion prompts": "Nėra siūlomų raginimų",
"None": "Nėra",
"Not factually correct": "Faktiškai netikslu",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Procesas ištrintas sėkmingai",
"Pipeline downloaded successfully": "Procesas atsisiųstas sėkmingai",
"Pipelines": "Procesai",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines yra papildinių sistema, leidžianti vykdyti bet kokį kodą —",
"Pipelines Not Detected": "Procesai neaptikti",
"Pipelines Valves": "Procesų įeitys",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Paskutinės 7 dienos",
"Previous message": "",
"Private": "",
"Profile": "Profilis",
"Profile Image": "Profilio nuotrauka",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Užklausa (pvz. supaprastink šį laišką)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Atkurti įkėlimų direktoiją",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Atstatyti vaizdą",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Naršyklė neleidžia siųsti pranešimų",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "REZULTATAS",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "Veikia",
"Running...": "Veikia...",
"Save": "Išsaugoti",
"Save & Create": "Išsaugoti ir sukurti",
"Save & Update": "Išsaugoti ir atnaujinti",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Balso atpažinimo problema: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Balso atpažinimo modelis",
"Start of the channel": "Kanalo pradžia",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Baigt sekvenciją",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT modelis",
"STT Settings": "STT nustatymai",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Kalbėkite su modeliu",
"Tap to interrupt": "Paspauskite norėdami pertraukti",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Tema",
"Tika": "Tika",
"Tika Server URL required.": "Reiklainga Tika serverio nuorodą",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informasi tepat",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Tindakan diperlukan untuk menyimpan log sembang",
"Actions": "Tindakan",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Aktif",
"Active Users": "Pengguna Aktif",
"Add": "Tambah",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "tersedia!",
"available users": "pengguna tersedia",
"Away": "Tiada di tempat",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Kembali",
"Bad Response": "Maklumbalas Salah",
@ -423,12 +428,14 @@
"Don't have an account?": "Anda tidak mempunyai akaun?",
"don't install random functions from sources you don't trust.": "jangan pasang mana-mana fungsi daripada sumber yang anda tidak percayai.",
"don't install random tools from sources you don't trust.": "jangan pasang mana-mana alat daripada sumber yang anda tidak percayai.",
"don't fetch random pipelines from sources you don't trust.": "Jangan ambil pipeline rawak daripada sumber yang anda tidak percayai.",
"Don't like the style": "Tidak suka gaya ini",
"Done": "Selesai",
"Download": "Muat Turun",
"Download as SVG": "",
"Download canceled": "Muat Turun dibatalkan",
"Download Database": "Muat turun Pangkalan Data",
"Download & Delete": "Muat turun & Padam",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Masukkan Peranan Anda",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Masukkan kod anda di sini...",
"Error": "Ralat",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to save connections": "",
"Failed to save conversation": "Gagal menyimpan perbualan",
"Failed to save models configuration": "",
"Failed to update settings": "Gagal mengemaskini tetapan",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Kumpulan",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Import Gesaan",
"Import Tools": "Import Alat",
"Important Update": "Kemas kini penting",
"Include": "",
"Includes SharePoint": "Termasuk SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `-- api -auth` semasa menjalankan stable-diffusion-webui ",
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `-- api ` semasa menjalankan stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Memuatkan...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Tiada keputusan dijumpai",
"No results found": "Tiada keputusan dijumpai",
"No search query generated": "Tiada pertanyaan carian dijana",
"No source available": "Tiada sumber tersedia",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Tiada 'valve' untuk dikemas kini",
"Node Ids": "",
"No suggestion prompts": "Tiada prompt cadangan",
"None": "Tiada",
"Not factually correct": "Tidak tepat secara fakta",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "'Pipeline' berjaya dipadam",
"Pipeline downloaded successfully": "'Pipeline' berjaya dimuat turun",
"Pipelines": "'Pipeline'",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ialah sistem pemalam dengan pelaksanaan kod sewenangwenangnya —",
"Pipelines Not Detected": "'Pipeline' tidak ditemui",
"Pipelines Valves": "'Pipeline Valves'",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 hari sebelumnya",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Imej Profail",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Gesaan (cth Beritahu saya fakta yang menyeronokkan tentang Kesultanan Melaka)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Tetapkan Semula Direktori Muat Naik",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Tetapkan Semula Imej",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Pemberitahuan respons tidak boleh diaktifkan kerana kebenaran tapak web tidak diberi. Sila lawati tetapan pelayar web anda untuk memberikan akses yang diperlukan.",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "KEPUTUSAN",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Jalankan",
"Running": "Sedang dijalankan",
"Running...": "Sedang dijalankan...",
"Save": "Simpan",
"Save & Create": "Simpan & Cipta",
"Save & Update": "Simpan & Kemas Kini",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Ralat pengecaman pertuturan: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Enjin Ucapan-ke-Teks",
"Start of the channel": "Permulaan saluran",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Jujukan Henti",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model STT",
"STT Settings": "Tetapan STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Bercakap dengan model",
"Tap to interrupt": "Sentuh untuk mengganggu",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Utas",
"Tika": "Tika",
"Tika Server URL required.": "URL Pelayan Tika diperlukan.",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Nøyaktig informasjon",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Handling kreves for å lagre chatlogg",
"Actions": "Handlinger",
"Activate": "Aktiver",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommandoen ved å skrive inn \"/{{COMMAND}}\" i chattens inntastingsfelt.",
"Active": "Aktiv",
"Active Users": "Aktive brukere",
"Add": "Legg til",
"Add a model ID": "Legg til en modell-ID",
@ -156,8 +158,11 @@
"Available list": "Tilgjengelig liste",
"Available Tools": "",
"available!": "tilgjengelig!",
"available users": "tilgjengelige brukere",
"Away": "Borte",
"Awful": "Fælt",
"Azure AI Speech": "Azure AI-tale",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure område",
"Back": "Tilbake",
"Bad Response": "Dårlig svar",
@ -423,12 +428,14 @@
"Don't have an account?": "Har du ingen konto?",
"don't install random functions from sources you don't trust.": "ikke installer tilfeldige funksjoner fra kilder du ikke stoler på.",
"don't install random tools from sources you don't trust.": "ikke installer tilfeldige verktøy fra kilder du ikke stoler på.",
"don't fetch random pipelines from sources you don't trust.": "Ikke hent tilfeldige pipelines fra kilder du ikke stoler på.",
"Don't like the style": "Liker ikke stilen",
"Done": "Ferdig",
"Download": "Last ned",
"Download as SVG": "Last ned som SVG",
"Download canceled": "Nedlasting avbrutt",
"Download Database": "Last ned database",
"Download & Delete": "Last ned og slett",
"Drag and drop a file to upload or select a file to view": "Dra og slipp en fil for å laste den opp, eller velg en fil å vise den",
"Draw": "Tegne",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Skriv inn rollen din",
"Enter Your Username": "Skriv inn brukernavnet ditt",
"Enter your webhook URL": "Angi URL for webhook",
"Enter your code here...": "Skriv inn koden din her...",
"Error": "Feil",
"ERROR": "FEIL",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
"Failed to save connections": "",
"Failed to save conversation": "Kan ikke lagre samtalen",
"Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller",
"Failed to update settings": "Kan ikke oppdatere innstillinger",
"Failed to upload file.": "Kan ikke laste opp filen.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Gruppe slettet",
"Group Description": "Beskrivelse av gruppe",
"Group Name": "Navn på gruppe",
"Group": "Gruppe",
"Group updated successfully": "Gruppe oppdatert",
"Groups": "Grupper",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importer ledetekster",
"Import Tools": "Importer verktøy",
"Important Update": "Viktig oppdatering",
"Include": "Inkluder",
"Includes SharePoint": "Inkluderer SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder flagget --api-auth når du kjører stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inkluder flagget --api når du kjører stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.",
"Loader": "",
"Loading Kokoro.js...": "Laster Kokoro.js ...",
"Loading...": "Laster...",
"Local": "Lokal",
"Local Task Model": "",
"Location access not allowed": "Tilgang til lokasjon er ikke tillatt",
@ -986,6 +999,7 @@
"No models found": "Finner ingen modeller",
"No models selected": "Ingen modeller er valgt",
"No Notes": "",
"No results": "Finner ingen resultater",
"No results found": "Finner ingen resultater",
"No search query generated": "Ingen søkespørringer er generert",
"No source available": "Ingen kilde tilgjengelig",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Ingen ventiler å oppdatere",
"Node Ids": "",
"No suggestion prompts": "Ingen forslagsprompter",
"None": "Ingen",
"Not factually correct": "Uriktig informasjon",
"Not helpful": "Ikke nyttig",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline slettet",
"Pipeline downloaded successfully": "Pipeline lastet ned",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines er et programtilleggssystem med vilkårlig kodekjøring —",
"Pipelines Not Detected": "Ingen pipelines oppdaget",
"Pipelines Valves": "Pipeline-ventiler",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Siste 7 dager",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Profilbilde",
"Prompt": "Ledetekst",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Ledetekst (f.eks. Fortell meg noe morsomt om romerriket)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Tilbakestill opplastingskatalog",
"Reset Vector Storage/Knowledge": "Tilbakestill Vector-lagring/kunnskap",
"Reset view": "Tilbakestill visning",
"Reset Image": "Tilbakestill bilde",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svar-varsler kan ikke aktiveres fordi tilgang til nettstedet er nektet. Gå til nettleserinnstillingene dine for å gi den nødvendige tilgangen.",
"Response splitting": "Oppdeling av svar",
"Response Watermark": "",
"RESULT": "Resultat",
"Result": "Resultat",
"Retrieval": "",
"Retrieval Query Generation": "Generering av spørsmål om henting",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Kjør",
"Running": "Kjører",
"Running...": "Kjører...",
"Save": "Lagre",
"Save & Create": "Lagre og opprett",
"Save & Update": "Lagre og oppdater",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motor for Tale-til-tekst",
"Start of the channel": "Starten av kanalen",
"Stop": "Stopp",
"Stop Generating": "",
"Stop Sequence": "Stoppsekvens",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT-modell",
"STT Settings": "STT-innstillinger",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Tenkte i {{DURATION}}",
"Thought for {{DURATION}} seconds": "Tenkte i {{DURATION}} sekunder",
"Thought for less than a second": "",
"Thread": "Tråd",
"Tika": "Tika",
"Tika Server URL required.": "Server-URL for Tika kreves.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Accurate informatie",
"Action": "Actie",
"Action not found": "",
"Action Required for Chat Log Storage": "Actie vereist voor het opslaan van het chatlog",
"Actions": "Acties",
"Activate": "Activeren",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activeer dit commando door \"/{{COMMAND}}\" in de chat te typen",
"Active": "Actief",
"Active Users": "Actieve gebruikers",
"Add": "Toevoegen",
"Add a model ID": "Voeg een model-ID toe",
@ -156,8 +158,11 @@
"Available list": "Beschikbare lijst",
"Available Tools": "",
"available!": "beschikbaar!",
"available users": "beschikbare gebruikers",
"Away": "Afwezig",
"Awful": "Verschrikkelijk",
"Azure AI Speech": "Azure AI-spraak",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure regio",
"Back": "Terug",
"Bad Response": "Ongeldig antwoord",
@ -423,12 +428,14 @@
"Don't have an account?": "Heb je geen account?",
"don't install random functions from sources you don't trust.": "installeer geen willekeurige functies van bronnen die je niet vertrouwd",
"don't install random tools from sources you don't trust.": "installeer geen willekeurige gereedschappen van bronnen die je niet vertrouwd",
"don't fetch random pipelines from sources you don't trust.": "Haal geen willekeurige pipelines op van onbetrouwbare bronnen.",
"Don't like the style": "Vind je de stijl niet mooi?",
"Done": "Voltooid",
"Download": "Download",
"Download as SVG": "Download als SVG",
"Download canceled": "Download geannuleerd",
"Download Database": "Download database",
"Download & Delete": "Downloaden en verwijderen",
"Drag and drop a file to upload or select a file to view": "Sleep een bestand om te uploaden of selecteer een bestand om te bekijken",
"Draw": "Teken",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Voer je rol in",
"Enter Your Username": "Voer je gebruikersnaam in",
"Enter your webhook URL": "Voer je webhook-URL in",
"Enter your code here...": "Voer hier je code in...",
"Error": "Fout",
"ERROR": "ERROR",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
"Failed to save connections": "",
"Failed to save conversation": "Het is niet gelukt om het gesprek op te slaan",
"Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan",
"Failed to update settings": "Instellingen konden niet worden bijgewerkt.",
"Failed to upload file.": "Bestand kon niet worden geüpload.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Groep succesvol verwijderd",
"Group Description": "Groepsbeschrijving",
"Group Name": "Groepsnaam",
"Group": "Groep",
"Group updated successfully": "Groep succesvol bijgewerkt",
"Groups": "Groepen",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importeer Prompts",
"Import Tools": "Importeer Gereedschappen",
"Important Update": "Belangrijke update",
"Include": "Voeg toe",
"Includes SharePoint": "Inclusief SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme responsiever maakt.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
"Loader": "Lader",
"Loading Kokoro.js...": "Kokoro.js aan het laden",
"Loading...": "...",
"Local": "Lokaal",
"Local Task Model": "",
"Location access not allowed": "Locatietoegang niet toegestaan",
@ -986,6 +999,7 @@
"No models found": "Geen modellen gevonden",
"No models selected": "Geen modellen geselecteerd",
"No Notes": "",
"No results": "Geen resultaten gevonden",
"No results found": "Geen resultaten gevonden",
"No search query generated": "Geen zoekopdracht gegenereerd",
"No source available": "Geen bron beschikbaar",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Geen kleppen om bij te werken",
"Node Ids": "",
"No suggestion prompts": "Geen voorgestelde prompts",
"None": "Geen",
"Not factually correct": "Niet feitelijk juist",
"Not helpful": "Niet nuttig",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pijpleiding succesvol verwijderd",
"Pipeline downloaded successfully": "Pijpleiding succesvol gedownload",
"Pipelines": "Pijpleidingen",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines is een pluginsysteem met willekeurige codeuitvoering —",
"Pipelines Not Detected": "Pijpleiding niet gedetecteerd",
"Pipelines Valves": "Pijpleidingen Kleppen",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Afgelopen 7 dagen",
"Previous message": "",
"Private": "Privé",
"Profile": "Profiel",
"Profile Image": "Profielafbeelding",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Herstel Uploadmap",
"Reset Vector Storage/Knowledge": "Herstel Vectoropslag/-kennis",
"Reset view": "Herstel zicht",
"Reset Image": "Afbeelding resetten",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Antwoordmeldingen kunnen niet worden geactiveerd omdat de rechten voor de website zijn geweigerd. Ga naar de instellingen van uw browser om de benodigde toegang te verlenen.",
"Response splitting": "Antwoord splitsing",
"Response Watermark": "",
"RESULT": "Resultaat",
"Result": "Resultaat",
"Retrieval": "Ophalen",
"Retrieval Query Generation": "Ophaalqueriegeneratie",
@ -1180,6 +1199,7 @@
"RTL": "RNL",
"Run": "Uitvoeren",
"Running": "Aan het uitvoeren",
"Running...": "Aan het uitvoeren...",
"Save": "Opslaan",
"Save & Create": "Opslaan & Creëren",
"Save & Update": "Opslaan & Bijwerken",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Spraak-naar-tekst Engine",
"Start of the channel": "Begin van het kanaal",
"Stop": "Stop",
"Stop Generating": "",
"Stop Sequence": "Stopsequentie",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT Model",
"STT Settings": "STT Instellingen",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Dacht {{DURATION}}",
"Thought for {{DURATION}} seconds": "Dacht {{DURATION}} seconden",
"Thought for less than a second": "",
"Thread": "Draad",
"Tika": "Tika",
"Tika Server URL required.": "Tika Server-URL vereist",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "ਸਹੀ ਜਾਣਕਾਰੀ",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "ਚੈਟ ਲਾਗ ਸੰਭਾਲਣ ਲਈ ਕਾਰਵਾਈ ਲੋੜੀਂਦੀ ਹੈ",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "ਸਕ੍ਰਿਆ",
"Active Users": "",
"Add": "ਸ਼ਾਮਲ ਕਰੋ",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "ਉਪਲਬਧ ਹੈ!",
"available users": "ਉਪਲਬਧ ਯੂਜ਼ਰ",
"Away": "ਗੈਰਹਾਜ਼ਿਰ",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "ਵਾਪਸ",
"Bad Response": "ਖਰਾਬ ਜਵਾਬ",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "ਬੰਦ",
"Discover a function": "",
"Discover a model": "ਇੱਕ ਮਾਡਲ ਲੱਭੋ",
"Discover a prompt": "ਇੱਕ ਪ੍ਰੰਪਟ ਖੋਜੋ",
@ -423,12 +428,14 @@
"Don't have an account?": "ਖਾਤਾ ਨਹੀਂ ਹੈ?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "ਅਣਵਿਸ਼ਵਾਸਯੋਗ ਸਰੋਤਾਂ ਤੋਂ ਰੈਂਡਮ ਪਾਈਪਲਾਈਨ ਨਾ ਲਓ।",
"Don't like the style": "ਸਟਾਈਲ ਪਸੰਦ ਨਹੀਂ ਹੈ",
"Done": "",
"Download": "ਡਾਊਨਲੋਡ",
"Download as SVG": "",
"Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ",
"Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ",
"Download & Delete": "ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਓ",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
"Enabled": "",
"Enabled": "ਚਾਲੂ",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "ਆਪਣਾ ਕੋਡ ਇੱਥੇ ਦਰਜ ਕਰੋ...",
"Error": "ਗਲਤੀ",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
"Failed to save connections": "",
"Failed to save conversation": "ਗੱਲਬਾਤ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "ਗਰੁੱਪ",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "ਪ੍ਰੰਪਟ ਆਯਾਤ ਕਰੋ",
"Import Tools": "",
"Important Update": "ਮਹੱਤਵਪੂਰਨ ਅੱਪਡੇਟ",
"Include": "",
"Includes SharePoint": "SharePoint ਸ਼ਾਮਲ ਹੈ",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
"No results found": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
"No search query generated": "ਕੋਈ ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਨਹੀਂ ਕੀਤੀ ਗਈ",
"No source available": "ਕੋਈ ਸਰੋਤ ਉਪਲਬਧ ਨਹੀਂ",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "ਕੋਈ ਸੁਝਾਏ ਪ੍ਰਾਂਪਟ ਨਹੀਂ",
"None": "ਕੋਈ ਨਹੀਂ",
"Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "ਪਾਈਪਲਾਈਨਾਂ",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ਇੱਕ ਪਲੱਗਇਨ ਸਿਸਟਮ ਹੈ ਜਿਸ ਵਿੱਚ ਮਨਚਾਹਾ ਕੋਡ ਚੱਲ ਸਕਦਾ ਹੈ —",
"Pipelines Not Detected": "",
"Pipelines Valves": "ਪਾਈਪਲਾਈਨਾਂ ਵਾਲਵ",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
"Previous message": "",
"Private": "",
"Profile": "ਪ੍ਰੋਫ਼ਾਈਲ",
"Profile Image": "ਪ੍ਰੋਫਾਈਲ ਚਿੱਤਰ",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "ਪ੍ਰੰਪਟ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "ਚਿੱਤਰ ਰੀਸੈਟ ਕਰੋ",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "ਨਤੀਜਾ",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "",
"Running...": "ਚੱਲ ਰਿਹਾ ਹੈ...",
"Save": "ਸੰਭਾਲੋ",
"Save & Create": "ਸੰਭਾਲੋ ਅਤੇ ਬਣਾਓ",
"Save & Update": "ਸੰਭਾਲੋ ਅਤੇ ਅੱਪਡੇਟ ਕਰੋ",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
"Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "STT ਸੈਟਿੰਗਾਂ",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "ਮਾਡਲ ਨਾਲ ਗੱਲਬਾਤ ਕਰੋ",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "ਥ੍ਰੇਡ",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "ਚੇਤਾਵਨੀ",
"Warning:": "",
"Warning:": "ਚੇਤਾਵਨੀ:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Precyzyjna informacja",
"Action": "Akcja",
"Action not found": "",
"Action Required for Chat Log Storage": "Wymagane działanie, aby zapisać dziennik czatu",
"Actions": "Akcje",
"Activate": "Włącz",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktywuj tę komendę, wpisując \"/{{COMMAND}}\" do pola wprowadzania czatu.",
"Active": "Aktywny",
"Active Users": "Aktywni użytkownicy",
"Add": "Dodaj",
"Add a model ID": "Dodaj identyfikator modelu",
@ -156,8 +158,11 @@
"Available list": "Dostępna lista",
"Available Tools": "Dostępne narzędzia",
"available!": "dostępny!",
"available users": "dostępni użytkownicy",
"Away": "Nieobecny",
"Awful": "Okropne",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Region Azure",
"Back": "Wstecz",
"Bad Response": "Nieprawidłowa odpowiedź",
@ -423,12 +428,14 @@
"Don't have an account?": "Nie masz konta?",
"don't install random functions from sources you don't trust.": "Nie instaluj losowych funkcji z niezaufanych źródeł.",
"don't install random tools from sources you don't trust.": "Nie instaluj przypadkowych narzędzi z niezaufanych źródeł.",
"don't fetch random pipelines from sources you don't trust.": "Nie pobieraj losowych pipelines ze źródeł, którym nie ufasz.",
"Don't like the style": "Nie przypadł mi do gustu styl",
"Done": "Wykonano",
"Download": "Pobieranie",
"Download as SVG": "Pobierz jako SVG",
"Download canceled": "Pobieranie anulowane",
"Download Database": "Pobierz bazę danych",
"Download & Delete": "Pobierz i usuń",
"Drag and drop a file to upload or select a file to view": "Przeciągnij i upuść plik, aby go przesłać lub wybierz plik, aby go wyświetlić.",
"Draw": "Rysuj",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Podaj swoją rolę",
"Enter Your Username": "Podaj swoją nazwę użytkownika",
"Enter your webhook URL": "Podaj adres URL swojego webhooka",
"Enter your code here...": "Wpisz tutaj swój kod...",
"Error": "Błąd",
"ERROR": "BŁĄD",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Nie udało się załadować zawartości pliku.",
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
"Failed to save connections": "Nie udałio się zapisać połączeń",
"Failed to save conversation": "Nie udało się zapisać rozmowy",
"Failed to save models configuration": "Nie udało się zapisać konfiguracji modelu",
"Failed to update settings": "Nie udało się zaktualizować ustawień",
"Failed to upload file.": "Nie udało się przesłać pliku.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grupa została usunięta pomyślnie",
"Group Description": "Opis grupy",
"Group Name": "Nazwa grupy",
"Group": "Grupa",
"Group updated successfully": "Grupa zaktualizowana pomyślnie",
"Groups": "Grupy",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importuj prompty",
"Import Tools": "Importuj narzędzia",
"Important Update": "Ważna aktualizacja",
"Include": "Włączyć",
"Includes SharePoint": "Zawiera SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Użyj flagi `--api-auth` podczas uruchamiania stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Użyj flagi `--api` podczas uruchamiania stable-diffusion-webui.",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Upewnij się, że ważne informacje są poprawne.",
"Loader": "",
"Loading Kokoro.js...": "Wczytywanie Kokoro.js...",
"Loading...": "Wczytywanie...",
"Local": "Lokalny",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Nie znaleziono modeli",
"No models selected": "Brak wybranych modeli",
"No Notes": "Brak notatek",
"No results": "Brak wyników",
"No results found": "Brak wyników",
"No search query generated": "Nie wygenerowano żadnego zapytania wyszukiwania",
"No source available": "Źródło nie jest dostępne.",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Brak zaworów do aktualizacji",
"Node Ids": "",
"No suggestion prompts": "Brak sugerowanych promptów",
"None": "Brak",
"Not factually correct": "Niezgodne z rzeczywistością",
"Not helpful": "Nieprzydatne",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Przepływ usunięty pomyślnie",
"Pipeline downloaded successfully": "Przepływ pobrany pomyślnie",
"Pipelines": "Przepływy",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines to system wtyczek umożliwiający dowolne wykonywanie kodu —",
"Pipelines Not Detected": "Przepływ nie wykryty",
"Pipelines Valves": "Przepływy i Zawory",
"Plain text (.md)": "Zwykły tekst (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Ostatnie 7 dni",
"Previous message": "Poprzednia wiadomość",
"Private": "Prywatne",
"Profile": "Profil",
"Profile Image": "Zdjęcie profilowe",
"Prompt": "Wprowadź prompt: ",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (np. podaj ciekawostkę o Imperium Rzymskim)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Resetuj katalog pobierania",
"Reset Vector Storage/Knowledge": "Reset magazynu wektorowego/wiedzy",
"Reset view": "Resetuj widok",
"Reset Image": "Resetuj obraz",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Powiadomienia o odpowiedziach nie mogą zostać aktywowane, ponieważ uprawnienia strony zostały odrzucone. Proszę odwiedzić ustawienia przeglądarki, aby przyznać wymagany dostęp.",
"Response splitting": "Rozdzielanie odpowiedzi",
"Response Watermark": "",
"RESULT": "Wynik",
"Result": "Wynik",
"Retrieval": "",
"Retrieval Query Generation": "Generowanie zapytań pobierania",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Uruchom",
"Running": "Uruchomiono",
"Running...": "Uruchomiono...",
"Save": "Zapisz",
"Save & Create": "Zapisz i stwórz",
"Save & Update": "Zapisz i odśwież",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Silnik konwersji mowy na tekst",
"Start of the channel": "Początek kanału",
"Stop": "Zatrzymaj",
"Stop Generating": "",
"Stop Sequence": "Zatrzymaj sekwencję",
@ -1334,6 +1355,7 @@
"Strikethrough": "Przekreślenie",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model STT",
"STT Settings": "Ustawienia STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "Generowanie tagów",
"Tags Generation Prompt": "Prompt do generowania tagów",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Porozmawiaj z modelem",
"Tap to interrupt": "Kliknij, aby przerwać",
"Task List": "Lista zadań",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Myślenie przez {{DURATION}}",
"Thought for {{DURATION}} seconds": "Myślenie przez {{DURATION}} sekund",
"Thought for less than a second": "",
"Thread": "Wątek",
"Tika": "Tika",
"Tika Server URL required.": "Wymagany jest adres URL serwera Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informações precisas",
"Action": "Ação",
"Action not found": "",
"Action Required for Chat Log Storage": "Ação necessária para salvar o registro do chat",
"Actions": "Ações",
"Activate": "Ativar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ativar esse comando no chat digitando \"/{{COMMAND}}\"",
"Active": "Ativo",
"Active Users": "Usuários Ativos",
"Add": "Adicionar",
"Add a model ID": "Adicione um ID de modelo",
@ -156,8 +158,11 @@
"Available list": "Lista disponível",
"Available Tools": "Ferramentas disponíveis",
"available!": "disponível!",
"available users": "usuários disponíveis",
"Away": "Ausente",
"Awful": "Horrível",
"Azure AI Speech": "Fala de IA do Azure",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Região Azure",
"Back": "Voltar",
"Bad Response": "Resposta Ruim",
@ -423,12 +428,14 @@
"Don't have an account?": "Não tem uma conta?",
"don't install random functions from sources you don't trust.": "não instale funções aleatórias de origens que você não confia.",
"don't install random tools from sources you don't trust.": "não instale ferramentas aleatórias de origens que você não confia.",
"don't fetch random pipelines from sources you don't trust.": "Não busque pipelines aleatórios de fontes não confiáveis.",
"Don't like the style": "Não gosta do estilo",
"Done": "Concluído",
"Download": "Baixar",
"Download as SVG": "Baixar como SVG",
"Download canceled": "Download cancelado",
"Download Database": "Download do Banco de Dados",
"Download & Delete": "Baixar e excluir",
"Drag and drop a file to upload or select a file to view": "Arraste e solte um arquivo para enviar ou selecione um arquivo para visualizar",
"Draw": "Empate",
"Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload",
@ -593,6 +600,7 @@
"Enter Your Role": "Digite Sua Função",
"Enter Your Username": "Digite seu usuário",
"Enter your webhook URL": "Insira a URL do seu webhook",
"Enter your code here...": "Insira seu código aqui...",
"Error": "Erro",
"ERROR": "ERRO",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Failed to save connections": "Falha ao salvar conexões",
"Failed to save conversation": "Falha ao salvar a conversa",
"Failed to save models configuration": "Falha ao salvar a configuração dos modelos",
"Failed to update settings": "Falha ao atualizar as configurações",
"Failed to upload file.": "Falha ao carregar o arquivo.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grupo excluído com sucesso",
"Group Description": "Descrição do Grupo",
"Group Name": "Nome do Grupo",
"Group": "Grupo",
"Group updated successfully": "Grupo atualizado com sucesso",
"Groups": "Grupos",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importar Sugestões de Prompt",
"Import Prompts": "Importar Prompts",
"Import Tools": "Importar Ferramentas",
"Important Update": "Atualização importante",
"Include": "Incluir",
"Includes SharePoint": "Inclui o SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influencia a rapidez com que o algoritmo responde ao feedback do texto gerado. Uma taxa de aprendizado menor resultará em ajustes mais lentos, enquanto uma taxa de aprendizado maior tornará o algoritmo mais responsivo.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
"Loader": "Carregador",
"Loading Kokoro.js...": "",
"Loading...": "Carregando...",
"Local": "",
"Local Task Model": "Modelo de Tarefa Local",
"Location access not allowed": "Acesso ao local não permitido",
@ -986,6 +999,7 @@
"No models found": "Nenhum modelo encontrado",
"No models selected": "Nenhum modelo selecionado",
"No Notes": "Sem Notas",
"No results": "Nenhum resultado encontrado",
"No results found": "Nenhum resultado encontrado",
"No search query generated": "Nenhuma consulta de pesquisa gerada",
"No source available": "Nenhuma fonte disponível",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Nenhuma válvula para atualizar",
"Node Ids": "",
"No suggestion prompts": "Sem prompts sugeridos",
"None": "Nenhum",
"Not factually correct": "Não está factualmente correto",
"Not helpful": "Não é útil",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline excluído com sucesso",
"Pipeline downloaded successfully": "Pipeline baixado com sucesso",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines é um sistema de plugins com execução arbitrária de código —",
"Pipelines Not Detected": "Pipelines Não Detectados",
"Pipelines Valves": "Válvulas de Pipelines",
"Plain text (.md)": "Texto simples (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Últimos 7 dias",
"Previous message": "Mensagem anterior",
"Private": "Privado",
"Profile": "Perfil",
"Profile Image": "Imagem de Perfil",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por exemplo, Diga-me um fato divertido sobre o Império Romano)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Redefinir Diretório de Upload",
"Reset Vector Storage/Knowledge": "Redefinir Armazenamento de Vetores/Conhecimento",
"Reset view": "Redefinir visualização",
"Reset Image": "Redefinir imagem",
"Response": "Resposta",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
"Response splitting": "Divisão da Resposta",
"Response Watermark": "Marca d'água de resposta",
"RESULT": "Resultado",
"Result": "Resultado",
"Retrieval": "Recuperação",
"Retrieval Query Generation": "Geração de Consulta de Recuperação",
@ -1180,6 +1199,7 @@
"RTL": "Direita para Esquerda",
"Run": "Executar",
"Running": "Executando",
"Running...": "Executando...",
"Save": "Salvar",
"Save & Create": "Salvar e Criar",
"Save & Update": "Salvar e Atualizar",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
"Speech-to-Text": "Fala-para-Texto",
"Speech-to-Text Engine": "Motor de Transcrição de Fala",
"Start of the channel": "Início do canal",
"Stop": "Parar",
"Stop Generating": "Pare de gerar",
"Stop Sequence": "Sequência de Parada",
@ -1334,6 +1355,7 @@
"Strikethrough": "Tachado",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Remove o texto OCR existente do PDF e executa o OCR novamente. Ignorado se a opção Forçar OCR estiver habilitada. O padrão é Falso.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modelo STT",
"STT Settings": "Configurações STT",
"Stylized PDF Export": "Exportação de PDF estilizado",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Pensado por {{DURATION}}",
"Thought for {{DURATION}} seconds": "Pensado por {{DURATION}} segundos",
"Thought for less than a second": "Pensei por menos de um segundo",
"Thread": "Tópico",
"Tika": "Tika",
"Tika Server URL required.": "URL do servidor Tika necessária.",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informações precisas",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "É necessária uma ação para guardar o registo do chat",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Ativo",
"Active Users": "Utilizadores Ativos",
"Add": "Adicionar",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "disponível!",
"available users": "utilizadores disponíveis",
"Away": "Ausente",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Voltar",
"Bad Response": "Resposta má",
@ -392,7 +397,7 @@
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
"Disabled": "",
"Disabled": "Desativado",
"Discover a function": "",
"Discover a model": "Descubra um modelo",
"Discover a prompt": "Descobrir um prompt",
@ -423,12 +428,14 @@
"Don't have an account?": "Não tem uma conta?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Não obtenha pipelines aleatórias de fontes não confiáveis.",
"Don't like the style": "Não gosta do estilo",
"Done": "",
"Download": "Descarregar",
"Download as SVG": "",
"Download canceled": "Download cancelado",
"Download Database": "Descarregar Base de Dados",
"Download & Delete": "Transferir e eliminar",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -477,7 +484,7 @@
"Enable Message Rating": "",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable New Sign Ups": "Ativar Novas Inscrições",
"Enabled": "",
"Enabled": "Ativado",
"Endpoint URL": "",
"Enforce Temporary Chat": "",
"Enhance": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Escreva a sua Função",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Introduza o seu código aqui...",
"Error": "Erro",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Failed to save connections": "",
"Failed to save conversation": "Falha ao guardar a conversa",
"Failed to save models configuration": "",
"Failed to update settings": "Falha ao atualizar as definições",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grupo",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importar Prompts",
"Import Tools": "",
"Important Update": "Atualização importante",
"Include": "",
"Includes SharePoint": "Inclui o SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "A carregar...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Não foram encontrados resultados",
"No results found": "Não foram encontrados resultados",
"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
"No source available": "Nenhuma fonte disponível",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "Sem prompts sugeridos",
"None": "Nenhum",
"Not factually correct": "Não é correto em termos factuais",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "Condutas",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines é um sistema de plugins com execução arbitrária de código —",
"Pipelines Not Detected": "",
"Pipelines Valves": "Válvulas de Condutas",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Últimos 7 dias",
"Previous message": "",
"Private": "",
"Profile": "Perfil",
"Profile Image": "Imagem de Perfil",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ex.: Dê-me um facto divertido sobre o Império Romano)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Limpar Pasta de Carregamento",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Repor imagem",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "RESULTADO",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "A correr",
"Running...": "A correr...",
"Save": "Guardar",
"Save & Create": "Guardar e Criar",
"Save & Update": "Guardar e Atualizar",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motor de Fala para Texto",
"Start of the channel": "Início do canal",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "Sequência de Paragem",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Modelo STT",
"STT Settings": "Configurações STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Falar com o modelo",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Tópico",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "",
"Voice mode": "",
"Warning": "Aviso",
"Warning:": "",
"Warning:": "Aviso:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar o seu modelo de vetorização, você tem de reimportar todos os documentos.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Informații precise",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Este necesară o acțiune pentru salvarea jurnalului de chat",
"Actions": "Acțiuni",
"Activate": "Activează",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activează această comandă tastând \"/{{COMMAND}}\" în chat.",
"Active": "Activ",
"Active Users": "Utilizatori activi",
"Add": "Adaugă",
"Add a model ID": "Adaugă un ID de model",
@ -156,8 +158,11 @@
"Available list": "Listă disponibilă",
"Available Tools": "Instrumente disponibile",
"available!": "disponibil!",
"available users": "utilizatori disponibili",
"Away": "Plecat",
"Awful": "",
"Azure AI Speech": "Azure AI Speech este un serviciu care face parte din suita de servicii cognitive oferite de Microsoft Azure. Acesta permite integrarea capabilităților de recunoaștere vocală, generare a vorbirii și transcriere automată în aplicații. Serviciul oferă dezvoltatorilor posibilitatea de a crea aplicații care pot converti vorbirea în text, genera vorbire naturală din text sau traduce între limbi. Azure AI Speech este util în diverse scenarii, cum ar fi asistenți vocali, aplicații de servicii pentru clienți sau instrumente de accesibilitate, facilitând o interacțiune mai naturală între utilizatori și tehnologie.",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Regiune Azure",
"Back": "Înapoi",
"Bad Response": "Răspuns Greșit",
@ -423,12 +428,14 @@
"Don't have an account?": "Nu ai un cont?",
"don't install random functions from sources you don't trust.": "nu instala funcții aleatorii din surse în care nu ai încredere.",
"don't install random tools from sources you don't trust.": "nu instala instrumente aleatorii din surse în care nu ai încredere.",
"don't fetch random pipelines from sources you don't trust.": "Nu prelua pipelines aleatoare din surse în care nu ai încredere.",
"Don't like the style": "Nu îți place stilul",
"Done": "Gata",
"Download": "Descarcă",
"Download as SVG": "",
"Download canceled": "Descărcare anulată",
"Download Database": "Descarcă Baza de Date",
"Download & Delete": "Descărcare și ștergere",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Desenează",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Introduceți Rolul Dvs.",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Introduceți codul aici...",
"Error": "Eroare",
"ERROR": "EROARE",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
"Failed to save connections": "",
"Failed to save conversation": "Nu s-a putut salva conversația",
"Failed to save models configuration": "",
"Failed to update settings": "Actualizarea setărilor a eșuat",
"Failed to upload file.": "Încărcarea fișierului a eșuat.",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Grup",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importă Prompturile",
"Import Tools": "Importă Instrumentele",
"Important Update": "Actualizare importantă",
"Include": "Include",
"Includes SharePoint": "Include SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Includeți flag-ul `--api-auth` când rulați stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Includeți flag-ul `--api` când rulați stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Se încarcă...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Nu s-au găsit modele",
"No models selected": "",
"No Notes": "",
"No results": "Nu au fost găsite rezultate",
"No results found": "Nu au fost găsite rezultate",
"No search query generated": "Nu a fost generată nicio interogare de căutare",
"No source available": "Nicio sursă disponibilă",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Nu există valve de actualizat",
"Node Ids": "",
"No suggestion prompts": "Fără prompturi sugerate",
"None": "Niciunul",
"Not factually correct": "Nu este corect din punct de vedere factual",
"Not helpful": "Nu este de ajutor",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Conducta a fost ștearsă cu succes",
"Pipeline downloaded successfully": "Conducta a fost descărcată cu succes",
"Pipelines": "Conducte",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines este un sistem de pluginuri cu execuție arbitrară de cod —",
"Pipelines Not Detected": "Conducte Nedetectate",
"Pipelines Valves": "Valvele Conductelor",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Ultimele 7 zile",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Imagine de Profil",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (de ex. Spune-mi un fapt amuzant despre Imperiul Roman)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Resetează Directorul de Încărcare",
"Reset Vector Storage/Knowledge": "Resetarea Stocării/Vectoului de Cunoștințe",
"Reset view": "",
"Reset Image": "Resetați imaginea",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificările de răspuns nu pot fi activate deoarece permisiunile site-ului au fost refuzate. Vă rugăm să vizitați setările browserului pentru a acorda accesul necesar.",
"Response splitting": "Împărțirea răspunsurilor",
"Response Watermark": "",
"RESULT": "Rezultat",
"Result": "Rezultat",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Execută",
"Running": "Rulează",
"Running...": "Rulează...",
"Save": "Salvează",
"Save & Create": "Salvează & Creează",
"Save & Update": "Salvează & Actualizează",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Eroare de recunoaștere vocală: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motor de Conversie a Vocii în Text",
"Start of the channel": "Începutul canalului",
"Stop": "Oprire",
"Stop Generating": "",
"Stop Sequence": "Oprește Secvența",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model STT",
"STT Settings": "Setări STT",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "Generarea de Etichete Prompt",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Vorbește cu modelul",
"Tap to interrupt": "Apasă pentru a întrerupe",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Fir",
"Tika": "Tika",
"Tika Server URL required.": "Este necesar URL-ul serverului Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Точная информация",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Требуется действие для сохранения журнала чата",
"Actions": "Действия",
"Activate": "Активировать",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активируйте эту команду, набрав \"/{{COMMAND}}\" для ввода в чате.",
"Active": "Активен",
"Active Users": "Активные пользователи",
"Add": "Добавить",
"Add a model ID": "Добавить ID модели",
@ -156,8 +158,11 @@
"Available list": "Список доступных",
"Available Tools": "Доступные инструменты",
"available!": "доступно!",
"available users": "доступные пользователи",
"Away": "Отошел",
"Awful": "Ужасно",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Регион Azure",
"Back": "Назад",
"Bad Response": "Плохой ответ",
@ -423,12 +428,14 @@
"Don't have an account?": "У вас нет аккаунта?",
"don't install random functions from sources you don't trust.": "не устанавливайте случайные функции из источников, которым вы не доверяете.",
"don't install random tools from sources you don't trust.": "не устанавливайте случайные инструменты из источников, которым вы не доверяете.",
"don't fetch random pipelines from sources you don't trust.": "Не получайте случайные pipelines из источников, которым вы не доверяете.",
"Don't like the style": "Не нравится стиль",
"Done": "Готово",
"Download": "Загрузить",
"Download as SVG": "Загрузить как SVG",
"Download canceled": "Загрузка отменена",
"Download Database": "Загрузить базу данных",
"Download & Delete": "Скачать и удалить",
"Drag and drop a file to upload or select a file to view": "Перетащите файл для загрузки или выберите файл для просмотра.",
"Draw": "Рисовать",
"Drop any files here to upload": "Переместите сюда любые файлы для загрузки",
@ -593,6 +600,7 @@
"Enter Your Role": "Введите вашу роль",
"Enter Your Username": "Введите свое имя пользователя",
"Enter your webhook URL": "Введите URL вашего веб-хука",
"Enter your code here...": "Введите здесь свой код...",
"Error": "Ошибка",
"ERROR": "ОШИБКА",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Не удалось загрузить содержимое файла.",
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
"Failed to save connections": "Не удалось сохранить подключения",
"Failed to save conversation": "Не удалось сохранить беседу",
"Failed to save models configuration": "Не удалось сохранить конфигурацию моделей",
"Failed to update settings": "Не удалось обновить настройки",
"Failed to upload file.": "Не удалось загрузить файл.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Группа успешно удалена",
"Group Description": "Описание группы",
"Group Name": "Название группы",
"Group": "Группа",
"Group updated successfully": "Группа успешно обновлена",
"Groups": "Группы",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Импортировать Предложения промптов",
"Import Prompts": "Импортировать Промпты",
"Import Tools": "Импортировать Инструменты",
"Important Update": "Важное обновление",
"Include": "Включать",
"Includes SharePoint": "Включает SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Добавьте флаг '--api-auth' при запуске stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Влияет на то, насколько быстро алгоритм реагирует на обратную связь из сгенерированного текста. Более низкая скорость обучения приведет к более медленной корректировке, в то время как более высокая скорость обучения сделает алгоритм более отзывчивым.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
"Loader": "Загрузчик",
"Loading Kokoro.js...": "Загрузка Kokoro.js",
"Loading...": "Загрузка...",
"Local": "Локально",
"Local Task Model": "Модель локальной задачи",
"Location access not allowed": "Доступ к местоположению запрещен",
@ -986,6 +999,7 @@
"No models found": "Модели не найдены",
"No models selected": "Модели не выбраны",
"No Notes": "Нет заметок",
"No results": "Результатов не найдено",
"No results found": "Результатов не найдено",
"No search query generated": "Поисковый запрос не сгенерирован",
"No source available": "Нет доступных источников",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Нет вентилей для обновления",
"Node Ids": "",
"No suggestion prompts": "Нет предложенных подсказок",
"None": "Нет",
"Not factually correct": "Не соответствует действительности",
"Not helpful": "Бесполезно",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Конвейер успешно удален",
"Pipeline downloaded successfully": "Конвейер успешно загружен",
"Pipelines": "Конвейеры",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines — это система плагинов с произвольным выполнением кода —",
"Pipelines Not Detected": "Конвейеры не обнаружены",
"Pipelines Valves": "Вентили конвейеров",
"Plain text (.md)": "Обычный текст (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Предыдущие 7 дней",
"Previous message": "Предыдущее сообщение",
"Private": "Частное",
"Profile": "Профиль",
"Profile Image": "Изображение профиля",
"Prompt": "Промпт",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр., Расскажи мне интересный факт о Римской империи)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Сбросить каталог загрузок",
"Reset Vector Storage/Knowledge": "Сброс векторного хранилища/знаний",
"Reset view": "Сбросить вид",
"Reset Image": "Сбросить изображение",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Уведомления об ответах не могут быть активированы, поскольку доступ к веб-сайту был заблокирован. Пожалуйста, перейдите к настройкам своего браузера, чтобы предоставить необходимый доступ.",
"Response splitting": "Разделение ответов",
"Response Watermark": "Водяной знак ответа",
"RESULT": "Результат",
"Result": "Результат",
"Retrieval": "Поиск",
"Retrieval Query Generation": "Генерация поискового запроса",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Запустить",
"Running": "Выполняется",
"Running...": "Выполняется...",
"Save": "Сохранить",
"Save & Create": "Сохранить и создать",
"Save & Update": "Сохранить и обновить",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Система распознавания речи",
"Start of the channel": "Начало канала",
"Stop": "Остановить",
"Stop Generating": "",
"Stop Sequence": "",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Удалять существующие OCR",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Удалять существующий текст OCR из PDF и перезапустить OCR. Игнорируется если Принудительное OCR включено. По умолчанию установлено значение Выкл.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Модель распознавания речи",
"STT Settings": "Настройки распознавания речи",
"Stylized PDF Export": "Стилизованный экспорт в формате PDF",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Рассуждаю {{DURATION}}",
"Thought for {{DURATION}} seconds": "Рассуждение заняло {{DURATION}} секунд(ы)",
"Thought for less than a second": "",
"Thread": "Обсуждение",
"Tika": "Tika",
"Tika Server URL required.": "Требуется URL-адрес сервера Tika.",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Presné informácie",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Na uloženie záznamu chatu je potrebná akcia",
"Actions": "Akcie",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tento príkaz napísaním \"/{{COMMAND}}\" do chatového vstupu",
"Active": "Aktívny",
"Active Users": "Aktívni užívatelia",
"Add": "Pridať",
"Add a model ID": "Pridať ID modelu",
@ -156,8 +158,11 @@
"Available list": "Dostupný zoznam",
"Available Tools": "",
"available!": "k dispozícii!",
"available users": "dostupní používatelia",
"Away": "Neprítomný",
"Awful": "",
"Azure AI Speech": "Azure AI syntéza reči",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure oblasť",
"Back": "Späť",
"Bad Response": "Zlá odozva",
@ -423,12 +428,14 @@
"Don't have an account?": "Nemáte účet?",
"don't install random functions from sources you don't trust.": "Neinštalujte náhodné funkcie zo zdrojov, ktorým nedôverujete.",
"don't install random tools from sources you don't trust.": "Neinštalujte náhodné nástroje zo zdrojov, ktorým nedôverujete.",
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines zo zdrojov, ktorým nedôverujete.",
"Don't like the style": "Nepáči sa mi tento štýl.",
"Done": "Hotovo.",
"Download": "Stiahnuť",
"Download as SVG": "",
"Download canceled": "Sťahovanie zrušené",
"Download Database": "Stiahnuť databázu",
"Download & Delete": "Stiahnuť a odstrániť",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Nakresliť",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Zadajte svoju rolu",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Zadajte sem svoj kód...",
"Error": "Chyba",
"ERROR": "Chyba",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
"Failed to save connections": "",
"Failed to save conversation": "Nepodarilo sa uložiť konverzáciu",
"Failed to save models configuration": "",
"Failed to update settings": "Nepodarilo sa aktualizovať nastavenia",
"Failed to upload file.": "Nepodarilo sa nahrať súbor.",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Skupina",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Importovať Prompty",
"Import Tools": "Importovať nástroje",
"Important Update": "Dôležitá aktualizácia",
"Include": "Zahrnúť",
"Includes SharePoint": "Zahŕňa SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Zahrňte prepínač `--api-auth` pri spustení stable-diffusion-webui.",
"Include `--api` flag when running stable-diffusion-webui": "Pri spustení stable-diffusion-webui zahrňte príznak `--api`.",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Načítava sa...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Neboli nájdené žiadne modely",
"No models selected": "",
"No Notes": "",
"No results": "Neboli nájdené žiadne výsledky",
"No results found": "Neboli nájdené žiadne výsledky",
"No search query generated": "Nebola vygenerovaná žiadna vyhľadávacia otázka.",
"No source available": "Nie je dostupný žiadny zdroj.",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Žiadne ventily na aktualizáciu",
"Node Ids": "",
"No suggestion prompts": "Žiadne navrhované prompty",
"None": "Žiadny",
"Not factually correct": "Nie je fakticky správne",
"Not helpful": "Nepomocné",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline bola úspešne odstránená",
"Pipeline downloaded successfully": "Kanál bol úspešne stiahnutý",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines je systém zásuvných modulov s ľubovoľným spúšťaním kódu —",
"Pipelines Not Detected": "Prenosové kanály neboli detekované",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Predchádzajúcich 7 dní",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "Profilový obrázok",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (napr. Povedz mi zábavnú skutočnosť o Rímskej ríši)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Resetovať adresár nahrávania",
"Reset Vector Storage/Knowledge": "Resetovanie úložiska vektorov/znalostí",
"Reset view": "",
"Reset Image": "Resetovať obrázok",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámenia o odpovediach nie je možné aktivovať, pretože povolenia webu boli zamietnuté. Navštívte nastavenia svojho prehliadača a povoľte potrebný prístup.",
"Response splitting": "Rozdelenie odpovede",
"Response Watermark": "",
"RESULT": "Výsledok",
"Result": "Výsledok",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Spustiť",
"Running": "Spúšťanie",
"Running...": "Spúšťanie...",
"Save": "Uložiť",
"Save & Create": "Uložiť a Vytvoriť",
"Save & Update": "Uložiť a aktualizovať",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Chyba rozpoznávania reči: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Motor prevodu reči na text",
"Start of the channel": "Začiatok kanála",
"Stop": "Zastaviť",
"Stop Generating": "",
"Stop Sequence": "Sekvencia zastavenia",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Model rozpoznávania reči na text (STT)",
"STT Settings": "Nastavenia STT (Rozpoznávanie reči)",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "Prompt na generovanie značiek",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Rozprávajte sa s modelom",
"Tap to interrupt": "Klepnite na prerušenie",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Vlákno",
"Tika": "Tika",
"Tika Server URL required.": "Je vyžadovaná URL adresa servera Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Прецизне информације",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Потребна је радња за чување дневника ћаскања",
"Actions": "Радње",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Покрените ову наредбу куцањем \"/{{COMMAND}}\" у ћаскање.",
"Active": "Активан",
"Active Users": "Активни корисници",
"Add": "Додај",
"Add a model ID": "Додај ИБ модела",
@ -156,8 +158,11 @@
"Available list": "Списак доступног",
"Available Tools": "",
"available!": "доступно!",
"available users": "доступни корисници",
"Away": "Одсутан",
"Awful": "Грозно",
"Azure AI Speech": "Azure AI говор",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure област",
"Back": "Назад",
"Bad Response": "Лош одговор",
@ -423,12 +428,14 @@
"Don't have an account?": "Немате налог?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Не преузимајте насумичне pipelines са извора којима не верујете.",
"Don't like the style": "Не свиђа ми се стил",
"Done": "Готово",
"Download": "Преузми",
"Download as SVG": "",
"Download canceled": "Преузимање отказано",
"Download Database": "Преузми базу података",
"Download & Delete": "Преузми и избриши",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Нацртај",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Унесите вашу улогу",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Унесите свој код овде...",
"Error": "Грешка",
"ERROR": "ГРЕШКА",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
"Failed to save connections": "",
"Failed to save conversation": "Неуспешно чување разговора",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "Група обрисана успешно",
"Group Description": "Опис групе",
"Group Name": "Назив групе",
"Group": "Група",
"Group updated successfully": "Група измењена успешно",
"Groups": "Групе",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Увези упите",
"Import Tools": "",
"Important Update": "Важно ажурирање",
"Include": "",
"Includes SharePoint": "Укључује SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Учитавање...",
"Local": "Локално",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Нема резултата",
"No results found": "Нема резултата",
"No search query generated": "Није генерисан упит за претрагу",
"No source available": "Нема доступног извора",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "Нема предложених промптова",
"None": "Нико",
"Not factually correct": "Није чињенично тачно",
"Not helpful": "Није од помоћи",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Цевовод успешно обрисан",
"Pipeline downloaded successfully": "Цевовод успешно преузет",
"Pipelines": "Цевоводи",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines је систем прикључака са произвољним извршавањем кода —",
"Pipelines Not Detected": "Цевоводи нису уочени",
"Pipelines Valves": "Вентили за цевоводе",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Претходних 7 дана",
"Previous message": "",
"Private": "",
"Profile": "Профил",
"Profile Image": "Слика профила",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Упит (нпр. „подели занимљивост о Римском царству“)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Ресетуј слику",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "Исход",
"Result": "Исход",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "ДНЛ",
"Run": "Покрени",
"Running": "Покрећем",
"Running...": "Покрећем...",
"Save": "Сачувај",
"Save & Create": "Сачувај и направи",
"Save & Update": "Сачувај и ажурирај",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Мотор за говор у текст",
"Start of the channel": "Почетак канала",
"Stop": "Заустави",
"Stop Generating": "",
"Stop Sequence": "Секвенца заустављања",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT модел",
"STT Settings": "STT подешавања",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "Стварање ознака",
"Tags Generation Prompt": "Упит стварања ознака",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Разговарајте са моделом",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Тема",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Exakt information",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Åtgärd krävs för att spara chattloggen",
"Actions": "Åtgärder",
"Activate": "Aktivera",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivera detta kommando genom att skriva \"/{{COMMAND}}\" i chattrutan.",
"Active": "Aktiv",
"Active Users": "Aktiva användare",
"Add": "Lägg till",
"Add a model ID": "Lägg till ett modell-ID",
@ -156,8 +158,11 @@
"Available list": "Tillgänglig lista",
"Available Tools": "Tillgängliga verktyg",
"available!": "tillgänglig!",
"available users": "tillgängliga användare",
"Away": "Borta",
"Awful": "Hemsk",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure-region",
"Back": "Tillbaka",
"Bad Response": "Dåligt svar",
@ -423,12 +428,14 @@
"Don't have an account?": "Har du inget konto?",
"don't install random functions from sources you don't trust.": "installera inte slumpmässiga funktioner från källor du inte litar på.",
"don't install random tools from sources you don't trust.": "installera inte slumpmässiga verktyg från källor du inte litar på.",
"don't fetch random pipelines from sources you don't trust.": "Hämta inte slumpmässiga pipelines från källor du inte litar på.",
"Don't like the style": "Tycker inte om utseendet",
"Done": "Klar",
"Download": "Ladda ner",
"Download as SVG": "Ladda ner som SVG",
"Download canceled": "Nedladdning avbruten",
"Download Database": "Ladda ner databas",
"Download & Delete": "Ladda ned och ta bort",
"Drag and drop a file to upload or select a file to view": "Dra och släpp en fil för att ladda upp eller välj en fil för att visa",
"Draw": "Rita",
"Drop any files here to upload": "Släpp alla filer här för att ladda upp",
@ -593,6 +600,7 @@
"Enter Your Role": "Ange din roll",
"Enter Your Username": "Ange ditt användarnamn",
"Enter your webhook URL": "Ange din webhook-URL",
"Enter your code here...": "Ange din kod här...",
"Error": "Fel",
"ERROR": "FEL",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Misslyckades med att läsa in filinnehåll.",
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
"Failed to save connections": "Misslyckades med att spara anslutningar",
"Failed to save conversation": "Misslyckades med att spara konversationen",
"Failed to save models configuration": "Misslyckades med att spara modellkonfiguration",
"Failed to update settings": "Misslyckades med att uppdatera inställningarna",
"Failed to upload file.": "Misslyckades med att ladda upp fil.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Gruppen har tagits bort",
"Group Description": "Gruppbeskrivning",
"Group Name": "Gruppnamn",
"Group": "Grupp",
"Group updated successfully": "Gruppen har uppdaterats",
"Groups": "Grupper",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Importera promptförslag",
"Import Prompts": "Importera instruktioner",
"Import Tools": "Importera verktyg",
"Important Update": "Viktig uppdatering",
"Include": "Inkludera",
"Includes SharePoint": "Inkluderar SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkludera flaggan `--api-auth` när du kör stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Inkludera flaggan `--api` när du kör stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påverkar hur snabbt algoritmen svarar på feedback från den genererade texten. En lägre inlärningshastighet resulterar i långsammare justeringar, medan en högre inlärningshastighet gör algoritmen mer responsiv.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.",
"Loader": "Inläsare",
"Loading Kokoro.js...": "Läser in Kokoro.js...",
"Loading...": "Läser in...",
"Local": "Lokal",
"Local Task Model": "Lokal uppgiftsmodell",
"Location access not allowed": "Åtkomst till platsen är inte tillåten",
@ -986,6 +999,7 @@
"No models found": "Inga modeller hittades",
"No models selected": "Inga modeller valda",
"No Notes": "Inga anteckningar",
"No results": "Inga resultat hittades",
"No results found": "Inga resultat hittades",
"No search query generated": "Ingen sökfråga genererad",
"No source available": "Ingen tillgänglig källa",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Inga ventiler att uppdatera",
"Node Ids": "",
"No suggestion prompts": "Inga föreslagna promptar",
"None": "Ingen",
"Not factually correct": "Inte faktiskt korrekt",
"Not helpful": "Inte hjälpsam",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Rörledningen har tagits bort",
"Pipeline downloaded successfully": "Rörledningen har laddats ner",
"Pipelines": "Rörledningar",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines är ett insticksmodulsystem med godtycklig kodkörning —",
"Pipelines Not Detected": "Inga rörledningar hittades",
"Pipelines Valves": "Ventiler för rörledningar",
"Plain text (.md)": "Ren text (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Föregående 7 dagar",
"Previous message": "Föregående meddelande",
"Private": "Privat",
"Profile": "Profil",
"Profile Image": "Profilbild",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instruktion (t.ex. Berätta en kuriosa om Romerska Imperiet)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Återställ uppladdningskatalog",
"Reset Vector Storage/Knowledge": "Återställ vektorlagring/kunskap",
"Reset view": "Återställ vy",
"Reset Image": "Återställ bild",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarsaviseringar kan inte aktiveras eftersom webbplatsens behörigheter har nekats. Besök dina webbläsarinställningar för att ge nödvändig åtkomst.",
"Response splitting": "Svarsdelning",
"Response Watermark": "Svarsvattenstämpel",
"RESULT": "Resultat",
"Result": "Resultat",
"Retrieval": "Hämtning",
"Retrieval Query Generation": "Generering av hämtningsfrågor",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Kör",
"Running": "Kör",
"Running...": "Kör...",
"Save": "Spara",
"Save & Create": "Spara och skapa",
"Save & Update": "Spara och uppdatera",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Fel vid taligenkänning: {{error}}",
"Speech-to-Text": "Tal-till-text",
"Speech-to-Text Engine": "Tal-till-text-motor",
"Start of the channel": "Början av kanalen",
"Stop": "Stopp",
"Stop Generating": "Sluta generera",
"Stop Sequence": "Stoppsekvens",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Ta bort befintlig OCR",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Ta bort befintlig OCR-text från PDF:en och kör OCR igen. Ignoreras om Force OCR är aktiverat. Standardvärdet är False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Tal-till-text-modell",
"STT Settings": "Tal-till-text-inställningar",
"Stylized PDF Export": "Stiliserad PDF-export",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Tänkte i {{DURATION}}",
"Thought for {{DURATION}} seconds": "Tänkte i {{DURATION}} sekunder",
"Thought for less than a second": "",
"Thread": "Tråd",
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL krävs.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "ข้อมูลที่ถูกต้อง",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "ต้องดำเนินการเพื่อบันทึกบันทึกการแชต",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "กำลังใช้งาน",
"Active Users": "ผู้ใช้ที่ใช้งานอยู่",
"Add": "เพิ่ม",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "พร้อมใช้งาน!",
"available users": "ผู้ใช้ที่ใช้ได้",
"Away": "ไม่อยู่",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "กลับ",
"Bad Response": "การตอบสนองที่ไม่ดี",
@ -423,12 +428,14 @@
"Don't have an account?": "ยังไม่มีบัญชี?",
"don't install random functions from sources you don't trust.": "อย่าติดตั้งฟังก์ชันแบบสุ่มจากแหล่งที่คุณไม่ไว้วางใจ",
"don't install random tools from sources you don't trust.": "อย่าติดตั้งเครื่องมือแบบสุ่มจากแหล่งที่คุณไม่ไว้วางใจ",
"don't fetch random pipelines from sources you don't trust.": "อย่าดึง pipelines แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ",
"Don't like the style": "ไม่ชอบสไตล์นี้",
"Done": "เสร็จสิ้น",
"Download": "ดาวน์โหลด",
"Download as SVG": "",
"Download canceled": "ยกเลิกการดาวน์โหลด",
"Download Database": "ดาวน์โหลดฐานข้อมูล",
"Download & Delete": "ดาวน์โหลดและลบ",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "ใส่บทบาทของคุณ",
"Enter Your Username": "กรอกชื่อบัญชีผู้ใช้ของคุณ",
"Enter your webhook URL": "",
"Enter your code here...": "ป้อนโค้ดของคุณที่นี่...",
"Error": "ข้อผิดพลาด",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
"Failed to save connections": "",
"Failed to save conversation": "บันทึกการสนทนาล้มเหลว",
"Failed to save models configuration": "",
"Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "ชื่อกลุ่ม",
"Group": "กลุ่ม",
"Group updated successfully": "",
"Groups": "กลุ่ม",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "นำเข้าพรอมต์",
"Import Tools": "นำเข้าเครื่องมือ",
"Important Update": "อัปเดตสำคัญ",
"Include": "",
"Includes SharePoint": "รวม SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "รวมแฟลก `--api-auth` เมื่อเรียกใช้ stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "รวมแฟลก `--api` เมื่อเรียกใช้ stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs สามารถทำผิดพลาดได้ ตรวจสอบข้อมูลสำคัญ",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "กำลังโหลด...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "ไม่มีผลลัพธ์",
"No results found": "ไม่มีผลลัพธ์",
"No search query generated": "ไม่มีการสร้างคำค้นหา",
"No source available": "ไม่มีแหล่งข้อมูล",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "ไม่มีวาล์วที่จะอัปเดต",
"Node Ids": "",
"No suggestion prompts": "ไม่มีพรอมพ์แนะนำ",
"None": "ไม่มี",
"Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "ลบไปป์ไลน์เรียบร้อยแล้ว",
"Pipeline downloaded successfully": "ดาวน์โหลดไปป์ไลน์เรียบร้อยแล้ว",
"Pipelines": "ไปป์ไลน์",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines เป็นระบบปลั๊กอินที่สามารถรันโค้ดได้ตามอำเภอใจ —",
"Pipelines Not Detected": "ไม่พบไปป์ไลน์",
"Pipelines Valves": "วาล์วของไปป์ไลน์",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 วันที่ผ่านมา",
"Previous message": "",
"Private": "",
"Profile": "โปรไฟล์",
"Profile Image": "รูปโปรไฟล์",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "พรอมต์ (เช่น บอกข้อเท็จจริงที่น่าสนุกเกี่ยวกับจักรวรรดิโรมัน)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "รีเซ็ตไดเร็กทอรีการอัปโหลด",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "รีเซ็ตภาพ",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดการแจ้งเตือนการตอบสนองได้เนื่องจากเว็บไซต์ปฏิเสธ กรุณาเข้าการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "ผลลัพธ์",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "",
"Running": "กำลังทำงาน",
"Running...": "กำลังทำงาน...",
"Save": "บันทึก",
"Save & Create": "บันทึกและสร้าง",
"Save & Update": "บันทึกและอัปเดต",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ",
"Start of the channel": "จุดเริ่มต้นของช่อง",
"Stop": "",
"Stop Generating": "",
"Stop Sequence": "หยุดลำดับ",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "โมเดลแปลงเสียงเป็นข้อความ",
"STT Settings": "การตั้งค่าแปลงเสียงเป็นข้อความ",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "พูดคุยกับโมเดล",
"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "กระทู้",
"Tika": "Tika",
"Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika",
"Tiktoken": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Takyk maglumat",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Söhbet gündeligini saklamak üçin çäre zerur",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "Işjeň",
"Active Users": "",
"Add": "Goş",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "",
"Available Tools": "",
"available!": "elýeterli!",
"available users": "elýeterli ulanyjylar",
"Away": "Uzakda",
"Awful": "",
"Azure AI Speech": "",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "",
"Back": "Yzyna",
"Bad Response": "Erbet Jogap",
@ -423,12 +428,14 @@
"Don't have an account?": "",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"don't fetch random pipelines from sources you don't trust.": "Ynamdar bolmadyk çeşmelerden tötänleýin pipelines almaň.",
"Don't like the style": "",
"Done": "Tamam",
"Download": "",
"Download as SVG": "",
"Download canceled": "",
"Download Database": "",
"Download & Delete": "Göçürip al we poz",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "Kodyňyzy şu ýere giriziň...",
"Error": "Ýalňyşlyk",
"ERROR": "",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "",
"Failed to save connections": "",
"Failed to save conversation": "Söhbeti ýazdyrmak başa barmady",
"Failed to save models configuration": "",
"Failed to update settings": "",
"Failed to upload file.": "",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "Topar",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "",
"Import Tools": "",
"Important Update": "Möhüm täzelenme",
"Include": "",
"Includes SharePoint": "SharePoint bar",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "Ýüklenýär...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "",
"No models selected": "",
"No Notes": "",
"No results": "Netije ýok",
"No results found": "",
"No search query generated": "",
"No source available": "",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"No suggestion prompts": "Teklip edilýän prompt ýok",
"None": "Hiç",
"Not factually correct": "",
"Not helpful": "",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "",
"Pipeline downloaded successfully": "",
"Pipelines": "",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines — islendik kody işletmäge mümkinçilik berýän plagin ulgamy —",
"Pipelines Not Detected": "",
"Pipelines Valves": "",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "",
"Previous message": "",
"Private": "",
"Profile": "Profil",
"Profile Image": "",
"Prompt": "Düşündiriş",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "",
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Reset Image": "Suraty täzeden sazla",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response splitting": "",
"Response Watermark": "",
"RESULT": "NETIJE",
"Result": "",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "",
"Run": "",
"Running": "",
"Running...": "Işleýär...",
"Save": "Sakla",
"Save & Create": "",
"Save & Update": "",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "",
"Speech-to-Text": "",
"Speech-to-Text Engine": "",
"Start of the channel": "Kanal başy",
"Stop": "Bes et",
"Stop Generating": "",
"Stop Sequence": "",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "",
"STT Settings": "",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "Model bilen gürleşiň",
"Tap to interrupt": "",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "Tema",
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
@ -1536,7 +1559,7 @@
"Voice Input": "Ses Girdi",
"Voice mode": "",
"Warning": "Duýduryş",
"Warning:": "",
"Warning:": "Duýduryş:",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",

View file

@ -31,9 +31,11 @@
"Accurate information": "Doğru bilgi",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Sohbet günlüğünü kaydetmek için işlem gerekli",
"Actions": "Aksiyonlar",
"Activate": "Aktif Et",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Sohbet girişine \"/{{COMMAND}}\" yazarak bu komutu etkinleştirin.",
"Active": "Etkin",
"Active Users": "Aktif Kullanıcılar",
"Add": "Ekle",
"Add a model ID": "Bir model kimliği ekleyin",
@ -156,8 +158,11 @@
"Available list": "Mevcut liste",
"Available Tools": "Mevcut Araçlar",
"available!": "mevcut!",
"available users": "kullanılabilir kullanıcılar",
"Away": "Uzakta",
"Awful": "Berbat",
"Azure AI Speech": "Azure AI Konuşma",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure Bölgesi",
"Back": "Geri",
"Bad Response": "Kötü Yanıt",
@ -423,12 +428,14 @@
"Don't have an account?": "Hesabınız yok mu?",
"don't install random functions from sources you don't trust.": "Tanımadığınız kaynaklardan rastgele fonksiyonlar yüklemeyin.",
"don't install random tools from sources you don't trust.": "Tanımadığınız kaynaklardan rastgele araçlar yüklemeyin.",
"don't fetch random pipelines from sources you don't trust.": "Güvenmediğiniz kaynaklardan rastgele pipelines getirmeyin.",
"Don't like the style": "Tarzını beğenmedim",
"Done": "Tamamlandı",
"Download": "İndir",
"Download as SVG": "",
"Download canceled": "İndirme iptal edildi",
"Download Database": "Veritabanını İndir",
"Download & Delete": "İndir ve Sil",
"Drag and drop a file to upload or select a file to view": "Yüklemek için bir dosyayı sürükleyip bırakın veya görüntülemek için bir dosya seçin",
"Draw": "Çiz",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Rolünüzü Girin",
"Enter Your Username": "Kullanıcı Adınızı Girin",
"Enter your webhook URL": "Webhook URL'nizi girin",
"Enter your code here...": "Kodu buraya girin...",
"Error": "Hata",
"ERROR": "HATA",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Pano içeriği okunamadı",
"Failed to save connections": "",
"Failed to save conversation": "Sohbet kaydedilemedi",
"Failed to save models configuration": "Modeller yapılandırması kaydedilemedi",
"Failed to update settings": "Ayarlar güncellenemedi",
"Failed to upload file.": "Dosya yüklenemedi.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Grup başarıyla silindi",
"Group Description": "Grup Açıklaması",
"Group Name": "Grup Adı",
"Group": "Grup",
"Group updated successfully": "Grup başarıyla güncellendi",
"Groups": "Gruplar",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Promptları İçe Aktar",
"Import Tools": "Araçları İçe Aktar",
"Important Update": "Önemli güncelleme",
"Include": "Dahil etmek",
"Includes SharePoint": "SharePoint içerir",
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api-auth` bayrağını dahil edin",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
"Loader": "Yükleyici",
"Loading Kokoro.js...": "Kokoro.js Yükleniyor...",
"Loading...": "...",
"Local": "Yerel",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "Model bulunamadı",
"No models selected": "Model seçilmedi",
"No Notes": "Not Yok",
"No results": "Sonuç bulunamadı",
"No results found": "Sonuç bulunamadı",
"No search query generated": "Hiç arama sorgusu oluşturulmadı",
"No source available": "Kaynak mevcut değil",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Güncellenecek valvler yok",
"Node Ids": "",
"No suggestion prompts": "Önerilen istem yok",
"None": "Yok",
"Not factually correct": "Gerçeklere göre doğru değil",
"Not helpful": "Yardımcı olmadı",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline başarıyla silindi",
"Pipeline downloaded successfully": "Pipeline başarıyla güncellendi",
"Pipelines": "Pipelinelar",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines, keyfi kod çalıştırmaya izin veren bir eklenti sistemidir —",
"Pipelines Not Detected": "Pipeline Tespit Edilmedi",
"Pipelines Valves": "Pipeline Valvleri",
"Plain text (.md)": "Düz Metin (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Önceki 7 gün",
"Previous message": "",
"Private": "Gizli",
"Profile": "Profil",
"Profile Image": "Profil Fotoğrafı",
"Prompt": "İstem",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (örn. Roma İmparatorluğu hakkında ilginç bir bilgi verin)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Yükleme Dizinini Sıfırla",
"Reset Vector Storage/Knowledge": "Vektör Depolama/Bilgiyi Sıfırla",
"Reset view": "Görünümü sıfırla",
"Reset Image": "Görüntüyü sıfırla",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Web sitesi izinleri reddedildiğinden yanıt bildirimleri etkinleştirilemiyor. Gerekli erişimi sağlamak için lütfen tarayıcı ayarlarınızı ziyaret edin.",
"Response splitting": "Yanıt bölme",
"Response Watermark": "",
"RESULT": "Sonuç",
"Result": "Sonuç",
"Retrieval": "",
"Retrieval Query Generation": "Alıntı Sorgu Oluşturma",
@ -1180,6 +1199,7 @@
"RTL": "Sağdan Sola",
"Run": "Çalıştır",
"Running": "Çalışıyor",
"Running...": "Çalışıyor...",
"Save": "Kaydet",
"Save & Create": "Kaydet ve Oluştur",
"Save & Update": "Kaydet ve Güncelle",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Konuşmadan Metne Motoru",
"Start of the channel": "Kanalın başlangıcı",
"Stop": "Durdur",
"Stop Generating": "",
"Stop Sequence": "Diziyi Durdur",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT Modeli",
"STT Settings": "STT Ayarları",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}} saniye düşünüldü",
"Thought for {{DURATION}} seconds": "{{DURATION}} saniye düşünüldü",
"Thought for less than a second": "",
"Thread": "Konu",
"Tika": "Tika",
"Tika Server URL required.": "Tika Sunucu URL'si gereklidir.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "توغرا ئۇچۇر",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "سۆھبەت خاتىرىسىنى ساقلاش ئۈچۈن ھەرىكەت زۆرۈر",
"Actions": "ھەرىكەتلەر",
"Activate": "ئاكتىپلاش",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "بۇ بۇيرۇقنى چىقىرىش ئۈچۈن سۆھبەتكە \"/{{COMMAND}}\" نى كىرگۈزۈڭ.",
"Active": "ئاكتىپ",
"Active Users": "ئاكتىپ ئىشلەتكۈچىلەر",
"Add": "قوشۇش",
"Add a model ID": "مودېل ID قوشۇش",
@ -156,8 +158,11 @@
"Available list": "بار تىزىملىك",
"Available Tools": "بار قوراللار",
"available!": "بار!",
"available users": "ئىشلەتكىلى بولىدىغان ئىشلەتكۈچىلەر",
"Away": "يوق",
"Awful": "ناچار",
"Azure AI Speech": "Azure AI ئاۋاز",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure رايونى",
"Back": "قايتىش",
"Bad Response": "خاتا ئىنكاس",
@ -423,12 +428,14 @@
"Don't have an account?": "ھېسابىڭىز يوقمۇ؟",
"don't install random functions from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن توغرا كەلگەن فۇنكسىيە ئورناتماڭ.",
"don't install random tools from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن توغرا كەلگەن قوراللارنى ئورناتماڭ.",
"don't fetch random pipelines from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن خالىغان pipelines نى ئالماڭ.",
"Don't like the style": "ئۇسلۇبنى ياخشى كۆرمەيدۇ",
"Done": "تامام",
"Download": "چۈشۈرۈش",
"Download as SVG": "SVG شەكلىدە چۈشۈرۈش",
"Download canceled": "چۈشۈرۈش بىكار قىلىندى",
"Download Database": "ساندان چۈشۈرۈش",
"Download & Delete": "چۈشۈرۈش ۋە ئۆچۈرۈش",
"Drag and drop a file to upload or select a file to view": "يۈكلەش ياكى كۆرۈش ئۈچۈن ھۆججەتنى سۆرەپ تاشلاڭ ياكى تاللاڭ",
"Draw": "سىزىش",
"Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ",
@ -593,6 +600,7 @@
"Enter Your Role": "رولىڭىزنى كىرگۈزۈڭ",
"Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ",
"Enter your webhook URL": "webhook URL كىرگۈزۈڭ",
"Enter your code here...": "كودىڭىزنى بۇ يەرگە كىرگۈزۈڭ...",
"Error": "خاتا",
"ERROR": "خاتالىق",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.",
"Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى",
"Failed to save connections": "ئۇلىنىشلارنى ساقلاش مەغلۇپ بولدى",
"Failed to save conversation": "سۆھبەتنى ساقلاش مەغلۇپ بولدى",
"Failed to save models configuration": "مودېل تەڭشەكلىرىنى ساقلاش مەغلۇپ بولدى",
"Failed to update settings": "تەڭشەكلەرنى يېڭىلاش مەغلۇپ بولدى",
"Failed to upload file.": "ھۆججەت چىقىرىش مەغلۇپ بولدى.",
@ -738,6 +747,7 @@
"Group deleted successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
"Group Description": "گۇرۇپپا چۈشەندۈرۈشى",
"Group Name": "گۇرۇپپا نامى",
"Group": "گۇرۇپپا",
"Group updated successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك يېڭىلاندى",
"Groups": "گۇرۇپپىلار",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "تۈرتكە تەكلىپى ئىمپورت قىلىش",
"Import Prompts": "تۈرتكە ئىمپورت قىلىش",
"Import Tools": "قوراللارنى ئىمپورت قىلىش",
"Important Update": "مۇھىم يېڭىلانىش",
"Include": "ئىچكىرى قىل",
"Includes SharePoint": "SharePoint نى ئۆز ئىچىگە ئالىدۇ",
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api-auth` بەلگىسىنى ئىشلىتىڭ",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api` بەلگىسىنى ئىشلىتىڭ",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "ھاسىل قىلىنغان تېكىستنىڭ ئىنكاسىغا ئالگورىزىمنىڭ تېز ئىنكاس قايتۇرۇشىغا تەسىر كۆرسىتىدۇ. ئۆگىنىش نىسبىتىنىڭ تۆۋەن بولۇشى ئاستا تەڭشەشنى كەلتۈرۈپ چىقىرىدۇ ، ھالبۇكى تېخىمۇ يۇقىرى ئۆگىنىش نىسبىتى ھېسابلاش ئۇسۇلىنى تېخىمۇ كۈچلۈك قىلىدۇ.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLM خاتالىق ئۆتكۈزۈشى مۇمكىن. مۇھىم ئۇچۇرنى تەكشۈرۈڭ.",
"Loader": "يۈكلىگۈچ",
"Loading Kokoro.js...": "Kokoro.js يۈكلەۋاتىدۇ...",
"Loading...": "...",
"Local": "يەرلىك",
"Local Task Model": "يەرلىك ۋەزىپە مودېلى",
"Location access not allowed": "ئورۇن زىيارىتىغا ئىجازەت يوق",
@ -986,6 +999,7 @@
"No models found": "مودېل تېپىلمىدى",
"No models selected": "مودېل تاللانمىدى",
"No Notes": "خاتىرە يوق",
"No results": "نەتىجە تېپىلمىدى",
"No results found": "نەتىجە تېپىلمىدى",
"No search query generated": "ئىزدەش سۇئالى ھاسىل قىلىنمىدى",
"No source available": "مەنبە يوق",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "يېڭىلاشقا كېرەكلىك كران يوق",
"Node Ids": "",
"No suggestion prompts": "تەۋسىيە قىلىنغان پرومپت يوق",
"None": "يوق",
"Not factually correct": "ھەقىقى بولمىغان",
"Not helpful": "پايدىسى يوق",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "جەريان مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
"Pipeline downloaded successfully": "جەريان مۇۋەپپەقىيەتلىك چۈشۈرۈلدى",
"Pipelines": "جەريانلار",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines — خالىغان كود ئىجرا قىلىشقا ئىجازەت بېرىدىغان قىستۇرما سىستېمىسى —",
"Pipelines Not Detected": "جەريان تېپىلمىدى",
"Pipelines Valves": "جەريان كرانلىرى",
"Plain text (.md)": "ئاددىي تېكست (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "ئالدىنقى 7 كۈن",
"Previous message": "ئالدىنقى ئۇچۇر",
"Private": "شەخسىي",
"Profile": "پروفايل",
"Profile Image": "تەرجىمال رەسىمى",
"Prompt": "تۈرتكە",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "تۈرتكە (مەسىلەن: رىم ئىمپېرىيەسى ھەققىدە قىزىقارلىق بىر نەرسە ئېيت)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "چىقىرىش قىسقۇچىنى قايتا تەڭشەش",
"Reset Vector Storage/Knowledge": "ۋېكتور ساقلاش/بىلىمنى قايتا تەڭشەش",
"Reset view": "كۆرۈنۈشنى قايتا تەڭشەش",
"Reset Image": "سۈرەتنى ئەسلىگە قايتۇر",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "تور بېكەت ھوقۇقى چەكلەنگەنلىكتىن ئىنكاس ئۇقتۇرۇشى قوزغىتىلمايدۇ. تور كۆرگۈچ تەڭشەكلىرىدىن لازىملىق ھوقۇق بېرىڭ.",
"Response splitting": "ئىنكاسنى بۆلۈش",
"Response Watermark": "ئىنكاس سۇ بەلگىسى",
"RESULT": "نەتىجە",
"Result": "نەتىجە",
"Retrieval": "قايتۇرۇش",
"Retrieval Query Generation": "قايتۇرۇش سۇئالى ھاسىل قىلىش",
@ -1180,6 +1199,7 @@
"RTL": "RTL (ئوڭدىن سولغا)",
"Run": "ئىجرا قىلىش",
"Running": "ئىجرا قىلىنىۋاتىدۇ",
"Running...": "ئىجرا قىلىنىۋاتىدۇ...",
"Save": "ساقلاش",
"Save & Create": "ساقلا ۋە قۇر",
"Save & Update": "ساقلا ۋە يېڭىلا",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "ئاۋازنى تونۇش خاتالىقى: {{error}}",
"Speech-to-Text": "ئاۋازدىن تېكستكە",
"Speech-to-Text Engine": "ئاۋازدىن تېكستكە ماتورى",
"Start of the channel": "قانالنىڭ باشلانغىنى",
"Stop": "توختات",
"Stop Generating": "ھاسىل قىلىشنى توختات",
"Stop Sequence": "توختاش تىزىقى",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "بار OCR نى چىقىرىۋېتىش",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDF دىكى بار OCR تېكىستىنى چىقىرىپ، قايتا OCR ئىجرا قىلىش. Force OCR قوزغىتىلسا بۇنىڭغا پەرۋا قىلىنمايدۇ. كۆڭۈلدىكىچە چەكلەنگەن.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT مودېلى",
"STT Settings": "STT تەڭشەكلىرى",
"Stylized PDF Export": "ئۇسلۇبلۇق PDF چىقىرىش",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}} مىنۇت ئويلىدى",
"Thought for {{DURATION}} seconds": "{{DURATION}} سېكۇنت ئويلىدى",
"Thought for less than a second": "",
"Thread": "تارماق",
"Tika": "Tika",
"Tika Server URL required.": "Tika مۇلازىمېتىر URL زۆرۈر.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Точна інформація",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Потрібна дія для збереження журналу чату",
"Actions": "Дії",
"Activate": "Активувати",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активуйте цю команду, ввівши \"/{{COMMAND}}\" у введення чату.",
"Active": "Активний",
"Active Users": "Активні користувачі",
"Add": "Додати",
"Add a model ID": "Додайти ID моделі",
@ -156,8 +158,11 @@
"Available list": "Список доступності",
"Available Tools": "",
"available!": "доступно!",
"available users": "доступні користувачі",
"Away": "Відсутній",
"Awful": "Жахливо",
"Azure AI Speech": "Мовлення Azure AI",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Регіон Azure",
"Back": "Назад",
"Bad Response": "Неправильна відповідь",
@ -423,12 +428,14 @@
"Don't have an account?": "Немає облікового запису?",
"don't install random functions from sources you don't trust.": "не встановлюйте випадкові функції з джерел, яким ви не довіряєте.",
"don't install random tools from sources you don't trust.": "не встановлюйте випадкові інструменти з джерел, яким ви не довіряєте.",
"don't fetch random pipelines from sources you don't trust.": "Не отримуйте випадкові pipelines із джерел, яким ви не довіряєте.",
"Don't like the style": "Не подобається стиль",
"Done": "Готово",
"Download": "Завантажити",
"Download as SVG": "Завантажити як SVG",
"Download canceled": "Завантаження скасовано",
"Download Database": "Завантажити базу даних",
"Download & Delete": "Завантажити та видалити",
"Drag and drop a file to upload or select a file to view": "Перетягніть файл для завантаження або виберіть файл для перегляду",
"Draw": "Малювати",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Введіть вашу роль",
"Enter Your Username": "Введіть своє ім'я користувача",
"Enter your webhook URL": "Введіть URL вашого вебхука",
"Enter your code here...": "Введіть свій код тут...",
"Error": "Помилка",
"ERROR": "ПОМИЛКА",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
"Failed to save connections": "",
"Failed to save conversation": "Не вдалося зберегти розмову",
"Failed to save models configuration": "Не вдалося зберегти конфігурацію моделей",
"Failed to update settings": "Не вдалося оновити налаштування",
"Failed to upload file.": "Не вдалося завантажити файл.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Групу успішно видалено",
"Group Description": "Опис групи",
"Group Name": "Назва групи",
"Group": "Група",
"Group updated successfully": "Групу успішно оновлено",
"Groups": "Групи",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Імпорт промтів",
"Import Tools": "Імпорт інструментів",
"Important Update": "Важливе оновлення",
"Include": "Включити",
"Includes SharePoint": "Містить SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Включіть прапорець `--api-auth` під час запуску stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Впливає на те, як швидко алгоритм реагує на відгуки згенерованого тексту. Нижча швидкість навчання призведе до повільніших коригувань, тоді як вища швидкість навчання зробить алгоритм більш чутливим.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
"Loader": "Завантажувач",
"Loading Kokoro.js...": "Завантаження Kokoro.js...",
"Loading...": "Завантаження...",
"Local": "Локальний",
"Local Task Model": "",
"Location access not allowed": "Доступ до місцезнаходження не дозволено",
@ -986,6 +999,7 @@
"No models found": "Моделей не знайдено",
"No models selected": "Моделі не вибрано",
"No Notes": "",
"No results": "Не знайдено жодного результату",
"No results found": "Не знайдено жодного результату",
"No search query generated": "Пошуковий запит не сформовано",
"No source available": "Джерело не доступне",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Немає клапанів для оновлення",
"Node Ids": "",
"No suggestion prompts": "Немає запропонованих підказок",
"None": "Нема",
"Not factually correct": "Не відповідає дійсності",
"Not helpful": "Не корисно",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Конвеєр успішно видалено",
"Pipeline downloaded successfully": "Конвеєр успішно завантажено",
"Pipelines": "Конвеєри",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines — це система плагінів із довільним виконанням коду —",
"Pipelines Not Detected": "Конвеєрів не знайдено",
"Pipelines Valves": "Клапани конвеєрів",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Попередні 7 днів",
"Previous message": "",
"Private": "Приватний",
"Profile": "Профіль",
"Profile Image": "Зображення профілю",
"Prompt": "Підказка",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Підказка (напр., розкажіть мені цікавий факт про Римську імперію)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Скинути каталог завантажень",
"Reset Vector Storage/Knowledge": "Скинути векторне сховище/Знання",
"Reset view": "Скинути вигляд",
"Reset Image": "Скинути зображення",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Сповіщення про відповіді не можуть бути активовані, оскільки вам було відмовлено в доступі до веб-сайту. Будь ласка, відвідайте налаштування вашого браузера, щоб надати необхідний доступ.",
"Response splitting": "Розбиття відповіді",
"Response Watermark": "",
"RESULT": "Результат",
"Result": "Результат",
"Retrieval": "Пошук",
"Retrieval Query Generation": "Генерація запиту для отримання даних",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Запустити",
"Running": "Виконується",
"Running...": "Виконується...",
"Save": "Зберегти",
"Save & Create": "Зберегти та створити",
"Save & Update": "Зберегти та оновити",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Система розпізнавання мови",
"Start of the channel": "Початок каналу",
"Stop": "Зупинити",
"Stop Generating": "",
"Stop Sequence": "Символ зупинки",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Модель STT ",
"STT Settings": "Налаштування STT",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Думка для {{DURATION}}",
"Thought for {{DURATION}} seconds": "Думав протягом {{DURATION}} секунд.",
"Thought for less than a second": "",
"Thread": "Потік",
"Tika": "Tika",
"Tika Server URL required.": "Потрібна URL-адреса сервера Tika.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "درست معلومات",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "چیٹ لاگ محفوظ کرنے کے لیے کارروائی درکار ہے",
"Actions": "اعمال",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
"Active": "فعال",
"Active Users": "فعال صارفین",
"Add": "شامل",
"Add a model ID": "",
@ -156,8 +158,11 @@
"Available list": "دستیاب فہرست",
"Available Tools": "",
"available!": "دستیاب!",
"available users": "دستیاب صارفین",
"Away": "غیر حاضر",
"Awful": "",
"Azure AI Speech": "ایژور اے آئی اسپیچ",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "ایزور ریجن",
"Back": "واپس",
"Bad Response": "غلط جواب",
@ -423,12 +428,14 @@
"Don't have an account?": "کیا آپ کے پاس اکاؤنٹ نہیں ہے؟",
"don't install random functions from sources you don't trust.": "غیر معتبر ذرائع سے بے ترتیب فنکشنز انسٹال نہ کریں",
"don't install random tools from sources you don't trust.": "جو ذرائع آپ پر بھروسہ نہیں کرتے ان سے بے ترتیب ٹولز انسٹال نہ کریں",
"don't fetch random pipelines from sources you don't trust.": "جن ذرائع پر آپ بھروسہ نہیں کرتے ان سے بے ترتیب پائپ لائنز نہ لیں۔",
"Don't like the style": "انداز پسند نہیں آیا",
"Done": "ہو گیا",
"Download": "ڈاؤن لوڈ کریں",
"Download as SVG": "",
"Download canceled": "ڈاؤن لوڈ منسوخ کر دیا گیا",
"Download Database": "ڈیٹا بیس ڈاؤن لوڈ کریں",
"Download & Delete": "ڈاؤن لوڈ اور حذف کریں",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "ڈرائنگ کریں",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "اپنا کردار درج کریں",
"Enter Your Username": "",
"Enter your webhook URL": "",
"Enter your code here...": "اپنا کوڈ یہاں درج کریں...",
"Error": "غلطی",
"ERROR": "غلطی",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
"Failed to save connections": "",
"Failed to save conversation": "گفتگو محفوظ نہیں ہو سکی",
"Failed to save models configuration": "",
"Failed to update settings": "ترتیبات کی تازہ کاری ناکام رہی",
"Failed to upload file.": "فائل اپلوڈ کرنے میں ناکامی ہوئی",
@ -738,6 +747,7 @@
"Group deleted successfully": "",
"Group Description": "",
"Group Name": "",
"Group": "گروپ",
"Group updated successfully": "",
"Groups": "",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "پرامپٹس درآمد کریں",
"Import Tools": "امپورٹ ٹولز",
"Important Update": "اہم اپ ڈیٹ",
"Include": "شامل کریں",
"Includes SharePoint": "SharePoint شامل ہے",
"Include `--api-auth` flag when running stable-diffusion-webui": "`--api-auth` پرچم کو چلانے کے وقت شامل کریں stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "اسٹیبل-ڈیفیوژن-ویب یو آئی چلانے کے دوران `--api` فلیگ شامل کریں",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں",
"Loader": "",
"Loading Kokoro.js...": "",
"Loading...": "لوڈ ہو رہا ہے...",
"Local": "",
"Local Task Model": "",
"Location access not allowed": "",
@ -986,6 +999,7 @@
"No models found": "کوئی ماڈل نہیں ملا",
"No models selected": "",
"No Notes": "",
"No results": "کوئی نتائج نہیں ملے",
"No results found": "کوئی نتائج نہیں ملے",
"No search query generated": "کوئی تلاش کی درخواست نہیں بنائی گئی",
"No source available": "ماخذ دستیاب نہیں ہے",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "تازہ کاری کے لئے کوئی والو نہیں",
"Node Ids": "",
"No suggestion prompts": "کوئی تجویز کردہ پرامپٹس نہیں",
"None": "کوئی نہیں",
"Not factually correct": "حقیقت کے مطابق نہیں ہے",
"Not helpful": "مددگار نہیں ہے",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "پائپ لائن کامیابی سے حذف کر دی گئی",
"Pipeline downloaded successfully": "پائپ لائن کامیابی سے ڈاؤن لوڈ ہو گئی",
"Pipelines": "پائپ لائنز",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ایک پلگ اِن نظام ہے جس میں من مانی کوڈ چلایا جا سکتا ہے —",
"Pipelines Not Detected": "پائپ لائنز کی نشاندہی نہیں ہوئی",
"Pipelines Valves": "پائپ لائنز والوز",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "پچھلے 7 دن",
"Previous message": "",
"Private": "",
"Profile": "پروفائل",
"Profile Image": "پروفائل تصویر",
"Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "سوال کریں (مثلاً: مجھے رومن سلطنت کے بارے میں کوئی دلچسپ حقیقت بتائیں)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "اپلوڈ ڈائریکٹری کو ری سیٹ کریں",
"Reset Vector Storage/Knowledge": "ویكٹر اسٹوریج/علم کو ری سیٹ کریں",
"Reset view": "",
"Reset Image": "تصویر ری سیٹ کریں",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "جواب کی اطلاعات کو فعال نہیں کیا جا سکتا کیونکہ ویب سائٹ کی اجازتیں مسترد کر دی گئی ہیں براہ کرم اپنے براؤزر کی سیٹنگز پر جائیں تاکہ ضروری رسائی کی اجازت دے سکیں",
"Response splitting": "جواب کو تقسیم کرنا",
"Response Watermark": "",
"RESULT": "نتیجہ",
"Result": "نتیجہ",
"Retrieval": "",
"Retrieval Query Generation": "",
@ -1180,6 +1199,7 @@
"RTL": "آر ٹی ایل",
"Run": "چلائیں",
"Running": "چل رہا ہے",
"Running...": "چل رہا ہے...",
"Save": "محفوظ کریں",
"Save & Create": "محفوظ کریں اور تخلیق کریں",
"Save & Update": "محفوظ کریں اور اپ ڈیٹ کریں",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "تقریر کی پہچان کی خرابی: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "تقریر-سے-متن انجن",
"Start of the channel": "چینل کی شروعات",
"Stop": "روکیں",
"Stop Generating": "",
"Stop Sequence": "ترتیب روکیں",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "ایس ٹی ٹی ماڈل",
"STT Settings": "ایس ٹی ٹی ترتیبات",
"Stylized PDF Export": "",
@ -1354,7 +1376,7 @@
"Tags Generation": "",
"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Talk to model": "ماڈل سے بات کریں",
"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
"Task List": "",
"Task Model": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "",
"Thought for {{DURATION}} seconds": "",
"Thought for less than a second": "",
"Thread": "تھریڈ",
"Tika": "ٹیکہ",
"Tika Server URL required.": "ٹکا سرور یو آر ایل درکار ہے",
"Tiktoken": "ٹک ٹوکن",

View file

@ -31,9 +31,11 @@
"Accurate information": "Аниқ маълумот",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Чат журнали сақланиши учун амал талаб қилинади",
"Actions": "Ҳаракатлар",
"Activate": "Фаоллаштириш",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Чат киритиш учун “/{{COMMAND}}” териб ушбу буйруқни фаоллаштиринг.",
"Active": "Фаол",
"Active Users": "Фаол фойдаланувчилар",
"Add": "Қўшиш",
"Add a model ID": "Модел идентификаторини қўшинг",
@ -156,8 +158,11 @@
"Available list": "Мавжуд рўйхат",
"Available Tools": "Мавжуд асбоблар",
"available!": "мавжуд!",
"available users": "мавжуд фойдаланувчилар",
"Away": "Йўқ",
"Awful": "Даҳшатли",
"Azure AI Speech": "Azure AI нутқи",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure минтақаси",
"Back": "Орқага",
"Bad Response": "Ёмон жавоб",
@ -423,12 +428,14 @@
"Don't have an account?": "Ҳисобингиз йўқми?",
"don't install random functions from sources you don't trust.": "ўзингиз ишонмайдиган манбалардан тасодифий функсияларни ўрнатманг.",
"don't install random tools from sources you don't trust.": "ўзингиз ишонмайдиган манбалардан тасодифий воситаларни ўрнатманг.",
"don't fetch random pipelines from sources you don't trust.": "Ишончсиз манбалардан тасодифий pipeline-ларни олманг.",
"Don't like the style": "Услуб ёқмайди",
"Done": "Бажарилди",
"Download": "Юклаб олиш",
"Download as SVG": "СВГ сифатида юклаб олинг",
"Download canceled": "Юклаб олиш бекор қилинди",
"Download Database": "Маълумотлар базасини юклаб олиш",
"Download & Delete": "Юклаб олиш ва ўчириш",
"Drag and drop a file to upload or select a file to view": "Юклаш учун файлни судраб ташланг ёки кўриш учун файлни танланг",
"Draw": "Чизиш",
"Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг",
@ -593,6 +600,7 @@
"Enter Your Role": "Ролингизни киритинг",
"Enter Your Username": "Фойдаланувчи номингизни киритинг",
"Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг",
"Enter your code here...": "Кодингизни бу ерга киритинг...",
"Error": "Хато",
"ERROR": "ХАТО",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "Файл таркибини юклаб бўлмади.",
"Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади",
"Failed to save connections": "Уланишлар сақланмади",
"Failed to save conversation": "Суҳбат сақланмади",
"Failed to save models configuration": "Моделлар конфигурацияси сақланмади",
"Failed to update settings": "Созламаларни янгилаб бўлмади",
"Failed to upload file.": "Файл юкланмади.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Гуруҳ муваффақиятли ўчирилди",
"Group Description": "Гуруҳ тавсифи",
"Group Name": "Гуруҳ номи",
"Group": "Гуруҳ",
"Group updated successfully": "Гуруҳ муваффақиятли янгиланди",
"Groups": "Гуруҳлар",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "Импорт бўйича таклифлар",
"Import Prompts": "Импорт кўрсатмалари",
"Import Tools": "Импорт воситалари",
"Important Update": "Мухим янгиланиш",
"Include": "Ўз ичига олади",
"Includes SharePoint": "SharePoint ни ўз ичига олади",
"Include `--api-auth` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлаётганда ъ--api-аутҳъ байроғини қўшинг",
"Include `--api` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлатилаётганда ъ--апиъ байроғини қўшинг",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Алгоритм яратилган матндан олинган фикр-мулоҳазага қанчалик тез жавоб беришига таъсир қилади. Пастроқ ўрганиш тезлиги созлашнинг секинлашишига олиб келади, юқори ўрганиш тезлиги эса алгоритмни янада сезгир қилади.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "ЛЛМлар хато қилишлари мумкин. Муҳим маълумотларни тасдиқланг.",
"Loader": "Юклагич",
"Loading Kokoro.js...": "Кокоро.жс юкланмоқда...",
"Loading...": "Кокоро.жс юкланмоқда...",
"Local": "Маҳаллий",
"Local Task Model": "Маҳаллий вазифа модели",
"Location access not allowed": "Жойлашувга рухсат берилмаган",
@ -986,6 +999,7 @@
"No models found": "Ҳеч қандай модел топилмади",
"No models selected": "Ҳеч қандай модел танланмаган",
"No Notes": "Қайдлар йўқ",
"No results": "Ҳеч қандай натижа топилмади",
"No results found": "Ҳеч қандай натижа топилмади",
"No search query generated": "Ҳеч қандай қидирув сўрови яратилмади",
"No source available": "Манба мавжуд эмас",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Янгилаш учун клапанлар йўқ",
"Node Ids": "",
"No suggestion prompts": "Тавсия этилган промптлар йўқ",
"None": "Йўқ",
"Not factually correct": "Аслида тўғри эмас",
"Not helpful": "Фойдали эмас",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Қувур ўчирилди",
"Pipeline downloaded successfully": "Қувур юклаб олинди",
"Pipelines": "Қувурлар",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines ихтиёрий код ишлатиш имконини берувчи плугин тизими —",
"Pipelines Not Detected": "Қувурлар аниқланмади",
"Pipelines Valves": "Қувур қувурлари клапанлари",
"Plain text (.md)": "Оддий матн (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "Олдинги 7 кун",
"Previous message": "",
"Private": "Шахсий",
"Profile": "Профиль",
"Profile Image": "Профил расми",
"Prompt": "Тезкор",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Тезкор (масалан, менга Рим империяси ҳақида қизиқарли фактни айтиб беринг)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Юклаш каталогини тиклаш",
"Reset Vector Storage/Knowledge": "Вектор хотираси/билимини қайта ўрнатиш",
"Reset view": "Кўринишни тиклаш",
"Reset Image": "Расмни қайта тиклаш",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Жавоб билдиришномаларини фаоллаштириб бўлмайди, чунки веб-сайт рухсатномалари рад этилган. Керакли рухсат бериш учун браузер созламаларига ташриф буюринг.",
"Response splitting": "Жавобни ажратиш",
"Response Watermark": "Жавоб сув белгиси",
"RESULT": "Натижа",
"Result": "Натижа",
"Retrieval": "Қидирув",
"Retrieval Query Generation": "Қидирув сўровларини яратиш",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Ишга тушириш",
"Running": "Ишлаётган",
"Running...": "Ишлаётган...",
"Save": "Сақлаш",
"Save & Create": "Сақлаш ва яратиш",
"Save & Update": "Сақлаш ва янгилаш",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Нутқни аниқлашда хатолик: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Нутқдан матнга восита",
"Start of the channel": "Канал боши",
"Stop": "СТОП",
"Stop Generating": "",
"Stop Sequence": "Кетма-кетликни тўхтатиш",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Мавжуд OCRни олиб ташлаш",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDFдан мавжуд OCR матнини олиб ташланг ва OCRни қайта ишлатинг. Agar Force OCR ёқилган бўлса, эътиборга олинмайди. Стандарт қиймат: False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "СТТ модели",
"STT Settings": "СТТ созламалари",
"Stylized PDF Export": "Услубий PDF экспорти",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "{{DURATION}} учун фикр",
"Thought for {{DURATION}} seconds": "{{DURATION}} сония ўйладим",
"Thought for less than a second": "",
"Thread": "Мавзу",
"Tika": "Тика",
"Tika Server URL required.": "Тика Сервер УРЛ манзили талаб қилинади.",
"Tiktoken": "Тиктокен",

View file

@ -30,8 +30,10 @@
"Accurate information": "Aniq ma'lumot",
"Action": "",
"Actions": "Harakatlar",
"Action Required for Chat Log Storage": "Chat jurnalini saqlash uchun amal talab qilinadi",
"Activate": "Faollashtirish",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Chat kiritish uchun “/{{COMMAND}}” terib ushbu buyruqni faollashtiring.",
"Active": "Faol",
"Active Users": "Faol foydalanuvchilar",
"Add": "Qo'shish",
"Add a model ID": "Model identifikatorini qo'shing",
@ -152,8 +154,11 @@
"Available list": "Mavjud ro'yxat",
"Available Tools": "Mavjud asboblar",
"available!": "mavjud!",
"available users": "mavjud foydalanuvchilar",
"Away": "Uzoqda",
"Awful": "Dahshatli",
"Azure AI Speech": "Azure AI nutqi",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure mintaqasi",
"Back": "Orqaga",
"Bad Response": "Yomon javob",
@ -411,12 +416,14 @@
"Don't have an account?": "Hisobingiz yo'qmi?",
"don't install random functions from sources you don't trust.": "o'zingiz ishonmaydigan manbalardan tasodifiy funksiyalarni o'rnatmang.",
"don't install random tools from sources you don't trust.": "o'zingiz ishonmaydigan manbalardan tasodifiy vositalarni o'rnatmang.",
"don't fetch random pipelines from sources you don't trust.": "Ishonchsiz manbalardan tasodifiy pipeline-larni olmang.",
"Don't like the style": "Uslub yoqmaydi",
"Done": "Bajarildi",
"Download": "Yuklab olish",
"Download as SVG": "SVG sifatida yuklab oling",
"Download canceled": "Yuklab olish bekor qilindi",
"Download Database": "Ma'lumotlar bazasini yuklab olish",
"Download & Delete": "Yuklab olish va ochirish",
"Drag and drop a file to upload or select a file to view": "Yuklash uchun faylni sudrab tashlang yoki korish uchun faylni tanlang",
"Draw": "Chizish",
"Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang",
@ -577,6 +584,7 @@
"Enter Your Role": "Rolingizni kiriting",
"Enter Your Username": "Foydalanuvchi nomingizni kiriting",
"Enter your webhook URL": "Vebhuk URL manzilingizni kiriting",
"Enter your code here...": "Kodingizni bu yerga kiriting...",
"Error": "Xato",
"ERROR": "XATO",
"Error accessing Google Drive: {{error}}": "Google Drive-ga kirishda xatolik yuz berdi: {{error}}",
@ -635,6 +643,7 @@
"Failed to load file content.": "Fayl tarkibini yuklab bolmadi.",
"Failed to read clipboard contents": "Bufer tarkibini oqib bolmadi",
"Failed to save connections": "Ulanishlar saqlanmadi",
"Failed to save conversation": "Suhbat saqlanmadi",
"Failed to save models configuration": "Modellar konfiguratsiyasi saqlanmadi",
"Failed to update settings": "Sozlamalarni yangilab bolmadi",
"Failed to upload file.": "Fayl yuklanmadi.",
@ -719,6 +728,7 @@
"Group deleted successfully": "Guruh muvaffaqiyatli oʻchirildi",
"Group Description": "Guruh tavsifi",
"Group Name": "Guruh nomi",
"Group": "Guruh",
"Group updated successfully": "Guruh muvaffaqiyatli yangilandi",
"Groups": "Guruhlar",
"H1": "",
@ -770,7 +780,9 @@
"Import Prompt Suggestions": "Import bo'yicha takliflar",
"Import Prompts": "Import ko'rsatmalari",
"Import Tools": "Import vositalari",
"Important Update": "Muhim yangilanish",
"Include": "O'z ichiga oladi",
"Includes SharePoint": "SharePoint oz ichiga oladi",
"Include `--api-auth` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlayotganda `--api-auth` bayrog'ini qo'shing",
"Include `--api` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlatilayotganda `--api` bayrog'ini qo'shing",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Algoritm yaratilgan matndan olingan fikr-mulohazaga qanchalik tez javob berishiga ta'sir qiladi. Pastroq o'rganish tezligi sozlashning sekinlashishiga olib keladi, yuqori o'rganish tezligi esa algoritmni yanada sezgir qiladi.",
@ -848,6 +860,7 @@
"LLMs can make mistakes. Verify important information.": "LLMlar xato qilishlari mumkin. Muhim ma'lumotlarni tasdiqlang.",
"Loader": "Yuklagich",
"Loading Kokoro.js...": "Kokoro.js yuklanmoqda...",
"Loading...": "...",
"Local": "Mahalliy",
"Local Task Model": "Mahalliy vazifa modeli",
"Location access not allowed": "Joylashuvga ruxsat berilmagan",
@ -956,11 +969,13 @@
"No models found": "Hech qanday model topilmadi",
"No models selected": "Hech qanday model tanlanmagan",
"No Notes": "Qaydlar yo'q",
"No results": "Hech qanday natija topilmadi",
"No results found": "Hech qanday natija topilmadi",
"No search query generated": "Hech qanday qidiruv soʻrovi yaratilmadi",
"No source available": "Manba mavjud emas",
"No users were found.": "Hech qanday foydalanuvchi topilmadi.",
"No valves to update": "Yangilash uchun klapanlar yo'q",
"No suggestion prompts": "Tavsiya etilgan promptlar yoq",
"None": "Yo'q",
"Not factually correct": "Aslida to'g'ri emas",
"Not helpful": "Foydali emas",
@ -1050,6 +1065,7 @@
"Pipeline deleted successfully": "Quvur oʻchirildi",
"Pipeline downloaded successfully": "Quvur yuklab olindi",
"Pipelines": "Quvurlar",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines — ixtiyoriy kod bajarilishini qollabquvvatlaydigan plagin tizimi —",
"Pipelines Not Detected": "Quvurlar aniqlanmadi",
"Pipelines Valves": "Quvur quvurlari klapanlari",
"Plain text (.md)": "Oddiy matn (.md)",
@ -1077,6 +1093,7 @@
"Previous 7 days": "Oldingi 7 kun",
"Previous message": "",
"Private": "Shaxsiy",
"Profile": "Profil",
"Profile Image": "Profil rasmi",
"Prompt": "Tezkor",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Tezkor (masalan, menga Rim imperiyasi haqida qiziqarli faktni aytib bering)",
@ -1133,10 +1150,12 @@
"Reset Upload Directory": "Yuklash katalogini tiklash",
"Reset Vector Storage/Knowledge": "Vektor xotirasi/bilimini qayta o'rnatish",
"Reset view": "Ko'rinishni tiklash",
"Reset Image": "Rasmni qayta tiklash",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Javob bildirishnomalarini faollashtirib bolmaydi, chunki veb-sayt ruxsatnomalari rad etilgan. Kerakli ruxsat berish uchun brauzer sozlamalariga tashrif buyuring.",
"Response splitting": "Javobni ajratish",
"Response Watermark": "Javob suv belgisi",
"RESULT": "Natija",
"Result": "Natija",
"Retrieval": "Qidiruv",
"Retrieval Query Generation": "Qidiruv so'rovlarini yaratish",
@ -1148,6 +1167,7 @@
"RTL": "RTL",
"Run": "Yugurish",
"Running": "Yugurish",
"Running...": "Yugurish...",
"Save": "Saqlash",
"Save & Create": "Saqlash va yaratish",
"Save & Update": "Saqlash va yangilash",
@ -1272,6 +1292,7 @@
"Speech recognition error: {{error}}": "Nutqni aniqlashda xatolik: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Nutqdan matnga vosita",
"Start of the channel": "Kanal boshlanishi",
"Stop": "STOP",
"Stop Generating": "",
"Stop Sequence": "Ketma-ketlikni to'xtatish",
@ -1280,6 +1301,7 @@
"Strikethrough": "",
"Strip Existing OCR": "Mavjud OCRni ajratib oling",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Mavjud OCR matnini PDF faylidan olib tashlang va OCRni qayta ishga tushiring. Majburiy OCR yoqilgan bo'lsa, e'tiborga olinmaydi. Birlamchi parametrlar False.",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "STT modeli",
"STT Settings": "STT sozlamalari",
"Stylized PDF Export": "Stillashtirilgan PDF eksporti",
@ -1356,6 +1378,7 @@
"Thought for {{DURATION}}": "{{DURATION}} uchun fikr",
"Thought for {{DURATION}} seconds": "{{DURATION}} soniya oʻyladim",
"Thought for less than a second": "",
"Thread": "Mavzu",
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL manzili talab qilinadi.",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "Thông tin chính xác",
"Action": "",
"Action not found": "",
"Action Required for Chat Log Storage": "Cần thao tác để lưu nhật ký trò chuyện",
"Actions": "Tác vụ",
"Activate": "Kích hoạt",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Kích hoạt lệnh này bằng cách gõ \"/{{COMMAND}}\" vào ô nhập chat.",
"Active": "Hoạt động",
"Active Users": "Người dùng đang hoạt động",
"Add": "Thêm",
"Add a model ID": "Thêm ID mô hình",
@ -156,8 +158,11 @@
"Available list": "Danh sách có sẵn",
"Available Tools": "Công cụ có sẵn",
"available!": "có sẵn!",
"available users": "người dùng khả dụng",
"Away": "Vắng mặt",
"Awful": "Tệ",
"Azure AI Speech": "Azure AI Speech",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Khu vực Azure",
"Back": "Quay lại",
"Bad Response": "Trả lời KHÔNG tốt",
@ -423,12 +428,14 @@
"Don't have an account?": "Không có tài khoản?",
"don't install random functions from sources you don't trust.": "không cài đặt các function từ các nguồn mà bạn không tin tưởng.",
"don't install random tools from sources you don't trust.": "không cài đặt các tools từ các nguồn mà bạn không tin tưởng.",
"don't fetch random pipelines from sources you don't trust.": "Đừng lấy các pipelines ngẫu nhiên từ nguồn không đáng tin cậy.",
"Don't like the style": "Không thích phong cách trả lời",
"Done": "Hoàn thành",
"Download": "Tải về",
"Download as SVG": "Tải xuống dưới dạng SVG",
"Download canceled": "Đã hủy download",
"Download Database": "Tải xuống Cơ sở dữ liệu",
"Download & Delete": "Tải xuống và xóa",
"Drag and drop a file to upload or select a file to view": "Kéo và thả tệp để tải lên hoặc chọn tệp để xem",
"Draw": "Vẽ",
"Drop any files here to upload": "",
@ -593,6 +600,7 @@
"Enter Your Role": "Nhập vai trò của bạn",
"Enter Your Username": "Nhập Tên đăng nhập của bạn",
"Enter your webhook URL": "Nhập URL webhook của bạn",
"Enter your code here...": "Nhập mã của bạn tại đây...",
"Error": "Lỗi",
"ERROR": "LỖI",
"Error accessing directory": "",
@ -654,6 +662,7 @@
"Failed to load file content.": "",
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
"Failed to save connections": "Không thể lưu các kết nối",
"Failed to save conversation": "Không thể lưu cuộc trò chuyện",
"Failed to save models configuration": "Không thể lưu cấu hình mô hình",
"Failed to update settings": "Lỗi khi cập nhật các cài đặt",
"Failed to upload file.": "Không thể tải lên tệp.",
@ -738,6 +747,7 @@
"Group deleted successfully": "Đã xóa nhóm thành công",
"Group Description": "Mô tả Nhóm",
"Group Name": "Tên Nhóm",
"Group": "Nhóm",
"Group updated successfully": "Đã cập nhật nhóm thành công",
"Groups": "Nhóm",
"H1": "",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "",
"Import Prompts": "Nạp các prompt lên hệ thống",
"Import Tools": "Nạp Tools",
"Important Update": "Bản cập nhật quan trọng",
"Include": "Bao gồm",
"Includes SharePoint": "Bao gồm SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "Bao gồm cờ `--api-auth` khi chạy stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ảnh hưởng đến tốc độ thuật toán phản hồi lại phản hồi từ văn bản được tạo. Tốc độ học thấp hơn sẽ dẫn đến các điều chỉnh chậm hơn, trong khi tốc độ học cao hơn sẽ làm cho thuật toán phản ứng nhanh hơn.",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
"Loader": "Trình tải",
"Loading Kokoro.js...": "Đang tải Kokoro.js...",
"Loading...": "Đang tải...",
"Local": "Cục bộ",
"Local Task Model": "",
"Location access not allowed": "Không cho phép truy cập vị trí",
@ -986,6 +999,7 @@
"No models found": "Không tìm thấy mô hình nào",
"No models selected": "Chưa chọn mô hình nào",
"No Notes": "",
"No results": "Không tìm thấy kết quả",
"No results found": "Không tìm thấy kết quả",
"No search query generated": "Không có truy vấn tìm kiếm nào được tạo ra",
"No source available": "Không có nguồn",
@ -993,6 +1007,7 @@
"No valves": "",
"No valves to update": "Chưa có valves nào được cập nhật",
"Node Ids": "",
"No suggestion prompts": "Không có prompt gợi ý",
"None": "Không ai",
"Not factually correct": "Không chính xác so với thực tế",
"Not helpful": "Không hữu ích",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Đã xóa pipeline thành công",
"Pipeline downloaded successfully": "Đã tải xuống pipeline thành công",
"Pipelines": "Pipelines",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines là hệ thống plugin cho phép thực thi mã tùy ý —",
"Pipelines Not Detected": "Chưa tìm thấy Pipelines",
"Pipelines Valves": "Các Valve của Pipeline",
"Plain text (.md)": "",
@ -1109,6 +1125,7 @@
"Previous 7 days": "7 ngày trước",
"Previous message": "",
"Private": "Riêng tư",
"Profile": "Hồ sơ",
"Profile Image": "Ảnh đại diện",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ví dụ: Hãy kể cho tôi một sự thật thú vị về Đế chế La Mã)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "Xóa toàn bộ thư mục Upload",
"Reset Vector Storage/Knowledge": "Đặt lại Lưu trữ Vector/Kiến thức",
"Reset view": "Đặt lại chế độ xem",
"Reset Image": "Đặt lại hình ảnh",
"Response": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Không thể kích hoạt thông báo vì trang web không cấp quyền. Vui lòng truy cập cài đặt trình duyệt của bạn để cấp quyền cần thiết.",
"Response splitting": "Phân tách phản hồi",
"Response Watermark": "",
"RESULT": "Kết quả",
"Result": "Kết quả",
"Retrieval": "Truy xuất",
"Retrieval Query Generation": "Tạo Truy vấn Truy xuất",
@ -1180,6 +1199,7 @@
"RTL": "RTL",
"Run": "Thực hiện",
"Running": "Đang chạy",
"Running...": "Đang chạy...",
"Save": "Lưu",
"Save & Create": "Lưu & Tạo",
"Save & Update": "Lưu & Cập nhật",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}",
"Speech-to-Text": "",
"Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
"Start of the channel": "Đầu kênh",
"Stop": "Dừng",
"Stop Generating": "",
"Stop Sequence": "Trình tự Dừng",
@ -1334,6 +1355,7 @@
"Strikethrough": "",
"Strip Existing OCR": "",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "Mô hình STT",
"STT Settings": "Cài đặt Nhận dạng Giọng nói",
"Stylized PDF Export": "",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "Suy nghĩ trong {{DURATION}}",
"Thought for {{DURATION}} seconds": "Suy nghĩ trong {{DURATION}} giây",
"Thought for less than a second": "",
"Thread": "Luồng",
"Tika": "Tika",
"Tika Server URL required.": "Bắt buộc phải nhập URL cho Tika Server ",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "信息准确",
"Action": "操作",
"Action not found": "找不到对应的操作项",
"Action Required for Chat Log Storage": "需要采取操作以保存聊天记录",
"Actions": "操作",
"Activate": "激活",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在对话框中输入 \"/{{COMMAND}}\" 激活此命令",
"Active": "在线",
"Active Users": "当前在线用户",
"Add": "添加",
"Add a model ID": "添加一个模型 ID",
@ -156,8 +158,11 @@
"Available list": "可用列表",
"Available Tools": "可用工具",
"available!": "版本可用!",
"available users": "可用用户",
"Away": "离开",
"Awful": "糟糕",
"Azure AI Speech": "Azure AI 语音",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure 区域",
"Back": "返回",
"Bad Response": "点踩此回答",
@ -423,12 +428,14 @@
"Don't have an account?": "没有账号?",
"don't install random functions from sources you don't trust.": "切勿从未经验证或不可信的来源安装函数",
"don't install random tools from sources you don't trust.": "切勿从未经验证或不可信的来源安装工具",
"don't fetch random pipelines from sources you don't trust.": "请不要从不受信任的来源获取随机管线。",
"Don't like the style": "不喜欢这种文风",
"Done": "完成",
"Download": "下载",
"Download as SVG": "下载为 SVG",
"Download canceled": "下载已取消",
"Download Database": "下载数据库",
"Download & Delete": "下载并删除",
"Drag and drop a file to upload or select a file to view": "拖动文件上传或选择文件查看",
"Draw": "平局",
"Drop any files here to upload": "将任何文件拖放到此处进行上传",
@ -593,6 +600,7 @@
"Enter Your Role": "输入您的权限组",
"Enter Your Username": "输入您的用户名",
"Enter your webhook URL": "输入您的 Webhook URL",
"Enter your code here...": "在此输入您的代码…",
"Error": "错误",
"ERROR": "错误",
"Error accessing directory": "访问目录时出错",
@ -654,6 +662,7 @@
"Failed to load file content.": "文件内容加载失败",
"Failed to read clipboard contents": "读取剪贴板内容失败",
"Failed to save connections": "保存连接失败",
"Failed to save conversation": "保存会话失败",
"Failed to save models configuration": "保存模型配置失败",
"Failed to update settings": "更新设置失败",
"Failed to upload file.": "上传文件失败",
@ -738,6 +747,7 @@
"Group deleted successfully": "权限组删除成功",
"Group Description": "权限组描述",
"Group Name": "权限组名称",
"Group": "权限组",
"Group updated successfully": "权限组更新成功",
"Groups": "权限组",
"H1": "一级标题",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "导入提示词建议",
"Import Prompts": "导入提示词",
"Import Tools": "导入工具",
"Important Update": "重要更新",
"Include": "包括",
"Includes SharePoint": "包含 SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api-auth` 参数",
"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 参数",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影响算法对生成文本反馈的响应速度。较低的学习率将导致调整更慢,而较高的学习率将使算法反应更灵敏。",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "大语言模型可能会出错。请核查重要信息。",
"Loader": "加载器",
"Loading Kokoro.js...": "载入 Kokoro.js...",
"Loading...": "载入...",
"Local": "本地",
"Local Task Model": "本地任务模型",
"Location access not allowed": "不允许访问位置信息",
@ -986,6 +999,7 @@
"No models found": "未找到任何模型",
"No models selected": "未选择任何模型",
"No Notes": "没有笔记",
"No results": "未找到结果",
"No results found": "未找到结果",
"No search query generated": "未生成搜索查询",
"No source available": "没有可用来源",
@ -993,6 +1007,7 @@
"No valves": "没有配置项",
"No valves to update": "没有需要更新的配置项",
"Node Ids": "节点 ID",
"No suggestion prompts": "没有推荐提示词",
"None": "无",
"Not factually correct": "与事实不符",
"Not helpful": "没有任何帮助",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "Pipeline 删除成功",
"Pipeline downloaded successfully": "Pipeline 下载成功",
"Pipelines": "Pipeline",
"Pipelines are a plugin system with arbitrary code execution —": "Pipelines 是具有任意代码执行风险的插件系统 —",
"Pipelines Not Detected": "未检测到 Pipeline",
"Pipelines Valves": "Pipeline 配置项",
"Plain text (.md)": "纯文本文档(.md",
@ -1109,6 +1125,7 @@
"Previous 7 days": "过去 7 天",
"Previous message": "上一条消息",
"Private": "私有",
"Profile": "个人资料",
"Profile Image": "用户头像",
"Prompt": "提示词 (Prompt)",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示词(例如:给我讲一个关于罗马帝国的趣事)",
@ -1165,10 +1182,12 @@
"Reset Upload Directory": "重置上传目录",
"Reset Vector Storage/Knowledge": "重置向量存储/知识",
"Reset view": "重置视图",
"Reset Image": "重置图片",
"Response": "响应",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "无法激活回复时发送通知。请检查浏览器设置,并授予必要的访问权限。",
"Response splitting": "拆分回复",
"Response Watermark": "复制时添加水印",
"RESULT": "结果",
"Result": "结果",
"Retrieval": "检索",
"Retrieval Query Generation": "检索查询生成",
@ -1180,6 +1199,7 @@
"RTL": "从右至左",
"Run": "运行",
"Running": "运行中",
"Running...": "运行中...",
"Save": "保存",
"Save & Create": "保存并创建",
"Save & Update": "保存并更新",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
"Speech-to-Text": "语音转文本",
"Speech-to-Text Engine": "语音转文本引擎",
"Start of the channel": "频道开头",
"Stop": "停止",
"Stop Generating": "停止生成",
"Stop Sequence": "停止序列 (Stop Sequence)",
@ -1334,6 +1355,7 @@
"Strikethrough": "删除线",
"Strip Existing OCR": "清除现有 OCR 文本",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "清除 PDF 中现有的 OCR 文本并重新执行 OCR 识别。若启用 “强制 OCR 识别” 则此设置无效。默认为关闭",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "语音转文本模型",
"STT Settings": "语音转文本设置",
"Stylized PDF Export": "风格化 PDF 导出",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "思考用时 {{DURATION}}",
"Thought for {{DURATION}} seconds": "思考用时 {{DURATION}} 秒",
"Thought for less than a second": "思考用时小于 1 秒",
"Thread": "主题",
"Tika": "Tika",
"Tika Server URL required.": "请输入 Tika 服务器 URL",
"Tiktoken": "Tiktoken",

View file

@ -31,9 +31,11 @@
"Accurate information": "準確資訊",
"Action": "操作",
"Action not found": "找不到對應的操作項目",
"Action Required for Chat Log Storage": "需要採取動作以儲存對話紀錄",
"Actions": "動作",
"Activate": "啟用",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在對話輸入框中輸入 \"/{{COMMAND}}\" 來啟用此命令。",
"Active": "線上",
"Active Users": "活躍使用者",
"Add": "新增",
"Add a model ID": "新增模型 ID",
@ -156,8 +158,11 @@
"Available list": "可用清單",
"Available Tools": "可用工具",
"available!": "可用!",
"available users": "可用名額",
"Away": "離開",
"Awful": "糟糕",
"Azure AI Speech": "Azure AI 語音",
"Azure OpenAI": "Azure OpenAI",
"Azure Region": "Azure 區域",
"Back": "返回",
"Bad Response": "回應不佳",
@ -423,12 +428,14 @@
"Don't have an account?": "還沒註冊帳號嗎?",
"don't install random functions from sources you don't trust.": "請勿從您無法信任的來源安裝隨機函式。",
"don't install random tools from sources you don't trust.": "請勿從您無法信任的來源安裝隨機工具。",
"don't fetch random pipelines from sources you don't trust.": "請勿從不受信任的來源擷取任意管線。",
"Don't like the style": "不喜歡這個樣式",
"Done": "完成",
"Download": "下載",
"Download as SVG": "以 SVG 格式下載",
"Download canceled": "已取消下載",
"Download Database": "下載資料庫",
"Download & Delete": "下載並刪除",
"Drag and drop a file to upload or select a file to view": "拖放檔案以上傳或選擇檔案以檢視",
"Draw": "繪製",
"Drop any files here to upload": "拖曳檔案至此處進行上傳",
@ -593,6 +600,7 @@
"Enter Your Role": "輸入您的角色",
"Enter Your Username": "輸入您的使用者名稱",
"Enter your webhook URL": "輸入您的 webhook URL",
"Enter your code here...": "在此輸入您的程式碼…",
"Error": "錯誤",
"ERROR": "錯誤",
"Error accessing directory": "存取目錄時發生錯誤",
@ -654,6 +662,7 @@
"Failed to load file content.": "載入檔案內容失敗。",
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
"Failed to save connections": "儲存連線失敗",
"Failed to save conversation": "儲存對話失敗",
"Failed to save models configuration": "儲存模型設定失敗",
"Failed to update settings": "更新設定失敗",
"Failed to upload file.": "上傳檔案失敗。",
@ -738,6 +747,7 @@
"Group deleted successfully": "成功刪除群組",
"Group Description": "群組描述",
"Group Name": "群組名稱",
"Group": "群組",
"Group updated successfully": "成功更新群組",
"Groups": "群組",
"H1": "一級標題",
@ -791,7 +801,9 @@
"Import Prompt Suggestions": "匯入提示建議",
"Import Prompts": "匯入提示詞",
"Import Tools": "匯入工具",
"Important Update": "重要更新",
"Include": "包含",
"Includes SharePoint": "包含 SharePoint",
"Include `--api-auth` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api-auth` 參數",
"Include `--api` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api` 參數",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影響演算法對生成文字回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。",
@ -874,6 +886,7 @@
"LLMs can make mistakes. Verify important information.": "大型語言模型可能會犯錯。請自行驗證重要資訊。",
"Loader": "載入工具",
"Loading Kokoro.js...": "Kokoro.js 載入中...",
"Loading...": "正在載入...",
"Local": "本機",
"Local Task Model": "本機任務模型",
"Location access not allowed": "位置存取未獲允許",
@ -986,6 +999,7 @@
"No models found": "未找到模型",
"No models selected": "未選取模型",
"No Notes": "尚無筆記",
"No results": "沒有結果",
"No results found": "未找到任何結果",
"No search query generated": "未產生搜尋查詢",
"No source available": "無可用來源",
@ -993,6 +1007,7 @@
"No valves": "沒有設定項目",
"No valves to update": "設定項目可更新",
"Node Ids": "節點 ID",
"No suggestion prompts": "沒有建議提示詞",
"None": "無",
"Not factually correct": "與事實不符",
"Not helpful": "沒有幫助",
@ -1082,6 +1097,7 @@
"Pipeline deleted successfully": "成功刪除管線",
"Pipeline downloaded successfully": "成功下載管線",
"Pipelines": "管線",
"Pipelines are a plugin system with arbitrary code execution —": "管線是具任意程式碼執行風險的外掛系統 —",
"Pipelines Not Detected": "未偵測到管線",
"Pipelines Valves": "管線設定項目",
"Plain text (.md)": "純文字 (.md)",
@ -1109,6 +1125,7 @@
"Previous 7 days": "過去 7 天",
"Previous message": "過去訊息",
"Private": "私有",
"Profile": "個人檔案",
"Profile Image": "個人檔案圖片",
"Prompt": "提示詞",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示詞(例如:告訴我關於羅馬帝國的一些趣事)",
@ -1166,9 +1183,11 @@
"Reset Vector Storage/Knowledge": "重設向量儲存或知識",
"Reset view": "重設檢視",
"Response": "回應",
"Reset Image": "重設圖片",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "無法啟用回應通知,因為網站權限已遭拒。請前往瀏覽器設定以授予必要存取權限。",
"Response splitting": "回應分割",
"Response Watermark": "回應浮水印",
"RESULT": "結果",
"Result": "結果",
"Retrieval": "檢索",
"Retrieval Query Generation": "檢索查詢生成",
@ -1180,6 +1199,7 @@
"RTL": "從右到左",
"Run": "執行",
"Running": "正在執行",
"Running...": "正在執行...",
"Save": "儲存",
"Save & Create": "儲存並建立",
"Save & Update": "儲存並更新",
@ -1326,6 +1346,7 @@
"Speech recognition error: {{error}}": "語音辨識錯誤:{{error}}",
"Speech-to-Text": "語音轉文字 (STT) ",
"Speech-to-Text Engine": "語音轉文字 (STT) 引擎",
"Start of the channel": "頻道開頭",
"Stop": "停止",
"Stop Generating": "停止生成",
"Stop Sequence": "停止序列",
@ -1334,6 +1355,7 @@
"Strikethrough": "刪除線",
"Strip Existing OCR": "移除現有 OCR 文字",
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "移除 PDF 中現有的 OCR 文字並重新執行 OCR。若啟用「強制執行 OCR」則忽略此選項。預設為 False。",
"STDOUT/STDERR": "STDOUT/STDERR",
"STT Model": "語音轉文字 (STT) 模型",
"STT Settings": "語音轉文字 (STT) 設定",
"Stylized PDF Export": "風格化 PDF 匯出",
@ -1412,6 +1434,7 @@
"Thought for {{DURATION}}": "思考時間 {{DURATION}}",
"Thought for {{DURATION}} seconds": "思考時間 {{DURATION}} 秒",
"Thought for less than a second": "思考用時小於 1 秒",
"Thread": "討論串",
"Tika": "Tika",
"Tika Server URL required.": "需要提供 Tika 伺服器 URL。",
"Tiktoken": "Tiktoken",

View file

@ -289,7 +289,7 @@
<div class="m-auto pb-44 flex flex-col justify-center">
<div class="max-w-md">
<div class="text-center dark:text-white text-2xl font-medium z-50">
Important Update<br /> Action Required for Chat Log Storage
{$i18n.t('Important Update')}<br /> {$i18n.t('Action Required for Chat Log Storage')}
</div>
<div class=" mt-4 text-center text-sm dark:text-gray-200 w-full">
@ -319,7 +319,7 @@
localDBChats = [];
}}
>
Download & Delete
{$i18n.t('Download & Delete')}
</button>
<button