chore: format

This commit is contained in:
Timothy Jaeryang Baek 2025-12-21 23:34:08 +04:00
parent 45e3237756
commit 01e88c6ac2
68 changed files with 1607 additions and 362 deletions

View file

@ -91,7 +91,6 @@ if SQLALCHEMY_DATABASE_URL.startswith("sqlite+sqlcipher://"):
# Extract database path from SQLCipher URL # Extract database path from SQLCipher URL
db_path = SQLALCHEMY_DATABASE_URL.replace("sqlite+sqlcipher://", "") db_path = SQLALCHEMY_DATABASE_URL.replace("sqlite+sqlcipher://", "")
# Create a custom creator function that uses sqlcipher3 # Create a custom creator function that uses sqlcipher3
def create_sqlcipher_connection(): def create_sqlcipher_connection():
import sqlcipher3 import sqlcipher3

View file

@ -55,7 +55,6 @@ def register_connection(db_url):
# Convert sqlite+sqlcipher:///path/to/db.sqlite to /path/to/db.sqlite # Convert sqlite+sqlcipher:///path/to/db.sqlite to /path/to/db.sqlite
db_path = db_url.replace("sqlite+sqlcipher://", "") db_path = db_url.replace("sqlite+sqlcipher://", "")
# Use Peewee's native SqlCipherDatabase with encryption # Use Peewee's native SqlCipherDatabase with encryption
db = SqlCipherDatabase(db_path, passphrase=database_password) db = SqlCipherDatabase(db_path, passphrase=database_password)
db.autoconnect = True db.autoconnect = True

View file

@ -47,7 +47,7 @@ from open_webui.utils.access_control import has_access, get_users_with_access
from open_webui.env import ( from open_webui.env import (
GLOBAL_LOG_LEVEL, GLOBAL_LOG_LEVEL,
) )
logging.basicConfig(stream=sys.stdout, level=GLOBAL_LOG_LEVEL) logging.basicConfig(stream=sys.stdout, level=GLOBAL_LOG_LEVEL)

View file

@ -799,7 +799,9 @@ class OAuthClientManager:
# Validate that we received a proper token response # Validate that we received a proper token response
# If token exchange failed (e.g., 401), we may get an error response instead # If token exchange failed (e.g., 401), we may get an error response instead
if token and not token.get("access_token"): if token and not token.get("access_token"):
error_desc = token.get("error_description", token.get("error", "Unknown error")) error_desc = token.get(
"error_description", token.get("error", "Unknown error")
)
error_message = f"Token exchange failed: {error_desc}" error_message = f"Token exchange failed: {error_desc}"
log.error(f"Invalid token response for client_id {client_id}: {token}") log.error(f"Invalid token response for client_id {client_id}: {token}")
token = None token = None

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.6.41", "version": "0.6.42",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open-webui", "name": "open-webui",
"version": "0.6.41", "version": "0.6.42",
"dependencies": { "dependencies": {
"@azure/msal-browser": "^4.5.0", "@azure/msal-browser": "^4.5.0",
"@codemirror/lang-javascript": "^6.2.2", "@codemirror/lang-javascript": "^6.2.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.6.41", "version": "0.6.42",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run pyodide:fetch && vite dev --host", "dev": "npm run pyodide:fetch && vite dev --host",

View file

@ -207,7 +207,6 @@
</div> </div>
</div> </div>
<div class="mb-2.5 flex w-full flex-col"> <div class="mb-2.5 flex w-full flex-col">
<div class=" self-left text-xs font-medium mb-1"> <div class=" self-left text-xs font-medium mb-1">
{$i18n.t('Searxng search language (all, en, es, de, fr, etc.)')} {$i18n.t('Searxng search language (all, en, es, de, fr, etc.)')}
</div> </div>
@ -682,7 +681,12 @@
<div class="w-full"> <div class="w-full">
<div class=" self-center text-xs font-medium mb-1"> <div class=" self-center text-xs font-medium mb-1">
<Tooltip content={$i18n.t('Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).')} placement="top-start"> <Tooltip
content={$i18n.t(
'Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).'
)}
placement="top-start"
>
{$i18n.t('Concurrent Requests')} {$i18n.t('Concurrent Requests')}
</Tooltip> </Tooltip>
</div> </div>

View file

@ -1702,6 +1702,7 @@
</div> </div>
{:else} {:else}
{#if prompt !== '' && !history?.currentId && ($config?.features?.enable_notes ?? false) && ($user?.role === 'admin' || ($user?.permissions?.features?.notes ?? true))} {#if prompt !== '' && !history?.currentId && ($config?.features?.enable_notes ?? false) && ($user?.role === 'admin' || ($user?.permissions?.features?.notes ?? true))}
<!-- {$i18n.t('Create Note')} -->
<Tooltip content={$i18n.t('Create note')} className=" flex items-center"> <Tooltip content={$i18n.t('Create note')} className=" flex items-center">
<button <button
id="send-message-button" id="send-message-button"

View file

@ -78,10 +78,7 @@
/> />
<!-- svelte-ignore a11y-no-static-element-interactions --> <!-- svelte-ignore a11y-no-static-element-interactions -->
<DropdownMenu.Root <DropdownMenu.Root bind:open={show} onOpenChange={handleDropdownChange}>
bind:open={show}
onOpenChange={handleDropdownChange}
>
<DropdownMenu.Trigger> <DropdownMenu.Trigger>
<slot /> <slot />
</DropdownMenu.Trigger> </DropdownMenu.Trigger>

View file

@ -843,8 +843,9 @@
<div class="shrink-0 mr-2.5"> <div class="shrink-0 mr-2.5">
{#if fileItemsTotal} {#if fileItemsTotal}
<div class="text-xs text-gray-500"> <div class="text-xs text-gray-500">
{$i18n.t('{{count}} files', { <!-- {$i18n.t('{{COUNT}} files')} -->
count: fileItemsTotal {$i18n.t('{{COUNT}} files', {
COUNT: fileItemsTotal
})} })}
</div> </div>
{/if} {/if}

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "اضافة مستخدم", "Add User": "اضافة مستخدم",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "جميع الملفات",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "مفاتيح واجهة برمجة التطبيقات", "API keys": "مفاتيح واجهة برمجة التطبيقات",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "هل أنت متأكد ؟", "Are you sure?": "هل أنت متأكد ؟",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "اللغاء", "Cancel": "اللغاء",
"Cannot create an empty note.": "",
"Capabilities": "قدرات", "Capabilities": "قدرات",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "مجموعة", "Collection": "مجموعة",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "عمل مفتاح جديد", "Create new key": "عمل مفتاح جديد",
"Create new secret key": "عمل سر جديد", "Create new secret key": "عمل سر جديد",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "أنشئت في", "Created at": "أنشئت في",
@ -429,6 +437,7 @@
"Deleted {{name}}": "حذف {{name}}", "Deleted {{name}}": "حذف {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "وصف", "Description": "وصف",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "تم اللغاء التحميل", "Download canceled": "تم اللغاء التحميل",
"Download Database": "تحميل قاعدة البيانات", "Download Database": "تحميل قاعدة البيانات",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "أدخل كود اللغة", "Enter language codes": "أدخل كود اللغة",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng", "Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة", "Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google", "Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
"Google PSE Engine Id": "معرف محرك PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "مجموعة", "Group": "مجموعة",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "فاتح", "Light": "فاتح",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة", "LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "دردشة جديدة", "New Chat": "دردشة جديدة",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "كلمة المرور الجديدة", "New Password": "كلمة المرور الجديدة",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "أقراء لي", "Read Aloud": "أقراء لي",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1421,6 +1437,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "عنوان URL لاستعلام Searxng", "Searxng Query URL": "عنوان URL لاستعلام Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "readme.md للحصول على التعليمات", "See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد", "See what's new": "ما الجديد",
"Seed": "Seed", "Seed": "Seed",
@ -1495,6 +1512,7 @@
"Show": "عرض", "Show": "عرض",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1519,6 +1537,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "المصدر", "Source": "المصدر",
@ -1629,6 +1648,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "العنوان", "Title": "العنوان",
"Title Auto-Generation": "توليد تلقائي للعنوان", "Title Auto-Generation": "توليد تلقائي للعنوان",
"Title cannot be an empty string.": "العنوان مطلوب", "Title cannot be an empty string.": "العنوان مطلوب",
@ -1665,6 +1685,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1771,7 +1792,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Webhook الرابط", "Webhook URL": "Webhook الرابط",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI اعدادات", "WebUI Settings": "WebUI اعدادات",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1808,6 +1829,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "لا تملك محادثات محفوظه", "You have no archived conversations.": "لا تملك محادثات محفوظه",
"You have shared this chat": "تم مشاركة هذه المحادثة", "You have shared this chat": "تم مشاركة هذه المحادثة",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية", "{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية",
"{{COUNT}} Replies": "{{COUNT}} رد/ردود", "{{COUNT}} Replies": "{{COUNT}} رد/ردود",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "إضافة محتوى نصي", "Add text content": "إضافة محتوى نصي",
"Add User": "إضافة مستخدم", "Add User": "إضافة مستخدم",
"Add User Group": "إضافة مجموعة مستخدمين", "Add User Group": "إضافة مجموعة مستخدمين",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "الكل", "All": "الكل",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "جميع المستندات",
"All models deleted successfully": "تم حذف جميع النماذج بنجاح", "All models deleted successfully": "تم حذف جميع النماذج بنجاح",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "السماح بوسائل التحكم في المحادثة", "Allow Chat Controls": "السماح بوسائل التحكم في المحادثة",
@ -136,6 +138,7 @@
"API keys": "مفاتيح واجهة برمجة التطبيقات (API)", "API keys": "مفاتيح واجهة برمجة التطبيقات (API)",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN التطبيق", "Application DN": "DN التطبيق",
@ -154,6 +157,7 @@
"Are you sure?": "هل أنت متأكد؟", "Are you sure?": "هل أنت متأكد؟",
"Arena Models": "نماذج الساحة", "Arena Models": "نماذج الساحة",
"Artifacts": "القطع الأثرية", "Artifacts": "القطع الأثرية",
"Asc": "",
"Ask": "اسأل", "Ask": "اسأل",
"Ask a question": "اطرح سؤالاً", "Ask a question": "اطرح سؤالاً",
"Assistant": "المساعد", "Assistant": "المساعد",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT", "Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT",
"Camera": "الكاميرا", "Camera": "الكاميرا",
"Cancel": "إلغاء", "Cancel": "إلغاء",
"Cannot create an empty note.": "",
"Capabilities": "القدرات", "Capabilities": "القدرات",
"Capture": "التقاط", "Capture": "التقاط",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "اسم القناة", "Channel Name": "اسم القناة",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "القنوات", "Channels": "القنوات",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "طي", "Collapse": "طي",
"Collection": "المجموعة", "Collection": "المجموعة",
"Collections": "",
"Color": "اللون", "Color": "اللون",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "مفتاح API لـ ComfyUI", "ComfyUI API Key": "مفتاح API لـ ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "إنشاء مفتاح جديد", "Create new key": "إنشاء مفتاح جديد",
"Create new secret key": "إنشاء مفتاح سري جديد", "Create new secret key": "إنشاء مفتاح سري جديد",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "تم الإنشاء في", "Created at": "تم الإنشاء في",
@ -429,6 +437,7 @@
"Deleted {{name}}": "حذف {{name}}", "Deleted {{name}}": "حذف {{name}}",
"Deleted User": "مستخدم محذوف", "Deleted User": "مستخدم محذوف",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "صف قاعدة معرفتك وأهدافك", "Describe your knowledge base and objectives": "صف قاعدة معرفتك وأهدافك",
"Description": "وصف", "Description": "وصف",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "تنزيل بصيغة SVG", "Download as SVG": "تنزيل بصيغة SVG",
"Download canceled": "تم اللغاء التحميل", "Download canceled": "تم اللغاء التحميل",
"Download Database": "تحميل قاعدة البيانات", "Download Database": "تحميل قاعدة البيانات",
"Drag and drop a file to upload or select a file to view": "اسحب الملف وأفلته للرفع أو اختر ملفًا للعرض",
"Draw": "ارسم", "Draw": "ارسم",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "أدخل مفتاح API لـ Kagi Search", "Enter Kagi Search API Key": "أدخل مفتاح API لـ Kagi Search",
"Enter Key Behavior": "أدخل سلوك المفتاح", "Enter Key Behavior": "أدخل سلوك المفتاح",
"Enter language codes": "أدخل كود اللغة", "Enter language codes": "أدخل كود اللغة",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "أدخل معرف النموذج", "Enter Model ID": "أدخل معرف النموذج",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "أدخل مفتاح API لـ SearchApi", "Enter SearchApi API Key": "أدخل مفتاح API لـ SearchApi",
"Enter SearchApi Engine": "أدخل محرك SearchApi", "Enter SearchApi Engine": "أدخل محرك SearchApi",
"Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng", "Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng",
"Enter Searxng search language": "",
"Enter Seed": "أدخل القيمة الابتدائية (Seed)", "Enter Seed": "أدخل القيمة الابتدائية (Seed)",
"Enter SerpApi API Key": "أدخل مفتاح API لـ SerpApi", "Enter SerpApi API Key": "أدخل مفتاح API لـ SerpApi",
"Enter SerpApi Engine": "أدخل محرك SerpApi", "Enter SerpApi Engine": "أدخل محرك SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة", "Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google", "Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
"Google PSE Engine Id": "معرف محرك PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "مجموعة", "Group": "مجموعة",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "تم إنشاء المجموعة بنجاح", "Group created successfully": "تم إنشاء المجموعة بنجاح",
@ -891,7 +901,6 @@
"Import Config from JSON File": "استيراد الإعدادات من ملف JSON", "Import Config from JSON File": "استيراد الإعدادات من ملف JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "استيراد الإعدادات المسبقة", "Import Presets": "استيراد الإعدادات المسبقة",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "الترخيص", "License": "الترخيص",
"Lift List": "", "Lift List": "",
"Light": "فاتح", "Light": "فاتح",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "جارٍ الاستماع...", "Listening...": "جارٍ الاستماع...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة", "LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "قم بتسمية قاعدة معرفتك", "Name your knowledge base": "قم بتسمية قاعدة معرفتك",
"Native": "أصلي", "Native": "أصلي",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "دردشة جديدة", "New Chat": "دردشة جديدة",
"New Folder": "مجلد جديد", "New Folder": "مجلد جديد",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "كلمة المرور الجديدة", "New Password": "كلمة المرور الجديدة",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "لم يتم العثور على محتوى", "No content found": "لم يتم العثور على محتوى",
"No content found in file.": "",
"No content to speak": "لا يوجد محتوى للتحدث عنه", "No content to speak": "لا يوجد محتوى للتحدث عنه",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "لا توجد مسافة متاحة", "No distance available": "لا توجد مسافة متاحة",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "لم يتم العثور على ملاحظات", "No feedbacks found": "لم يتم العثور على ملاحظات",
"No file selected": "لم يتم تحديد ملف", "No file selected": "لم يتم تحديد ملف",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "لا توجد مجموعات لها حق الوصول، أضف مجموعة لمنح الوصول", "No groups with access, add a group to grant access": "لا توجد مجموعات لها حق الوصول، أضف مجموعة لمنح الوصول",
"No HTML, CSS, or JavaScript content found.": "لم يتم العثور على محتوى HTML أو CSS أو JavaScript.", "No HTML, CSS, or JavaScript content found.": "لم يتم العثور على محتوى HTML أو CSS أو JavaScript.",
"No inference engine with management support found": "لم يتم العثور على محرك استدلال يدعم الإدارة", "No inference engine with management support found": "لم يتم العثور على محرك استدلال يدعم الإدارة",
"No knowledge bases found.": "",
"No knowledge found": "لم يتم العثور على معرفة", "No knowledge found": "لم يتم العثور على معرفة",
"No memories to clear": "لا توجد ذاكرة لمسحها", "No memories to clear": "لا توجد ذاكرة لمسحها",
"No model IDs": "لا توجد معرّفات نماذج", "No model IDs": "لا توجد معرّفات نماذج",
@ -1309,6 +1323,8 @@
"Read": "قراءة", "Read": "قراءة",
"Read Aloud": "أقراء لي", "Read Aloud": "أقراء لي",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "جهد الاستدلال", "Reasoning Effort": "جهد الاستدلال",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1421,6 +1437,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "جارٍ البحث في المعرفة عن \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "جارٍ البحث في المعرفة عن \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "عنوان URL لاستعلام Searxng", "Searxng Query URL": "عنوان URL لاستعلام Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "readme.md للحصول على التعليمات", "See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد", "See what's new": "ما الجديد",
"Seed": "Seed", "Seed": "Seed",
@ -1495,6 +1512,7 @@
"Show": "عرض", "Show": "عرض",
"Show \"What's New\" modal on login": "عرض نافذة \"ما الجديد\" عند تسجيل الدخول", "Show \"What's New\" modal on login": "عرض نافذة \"ما الجديد\" عند تسجيل الدخول",
"Show Admin Details in Account Pending Overlay": "عرض تفاصيل المشرف في نافذة \"الحساب قيد الانتظار\"", "Show Admin Details in Account Pending Overlay": "عرض تفاصيل المشرف في نافذة \"الحساب قيد الانتظار\"",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1519,6 +1537,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "المصدر", "Source": "المصدر",
@ -1629,6 +1648,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "عنوان خادم Tika مطلوب.", "Tika Server URL required.": "عنوان خادم Tika مطلوب.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "العنوان", "Title": "العنوان",
"Title Auto-Generation": "توليد تلقائي للعنوان", "Title Auto-Generation": "توليد تلقائي للعنوان",
"Title cannot be an empty string.": "العنوان مطلوب", "Title cannot be an empty string.": "العنوان مطلوب",
@ -1665,6 +1685,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "تحتوي الأدوات على نظام لاستدعاء الوظائف يتيح تنفيذ كود برمجي مخصص.", "Tools have a function calling system that allows arbitrary code execution.": "تحتوي الأدوات على نظام لاستدعاء الوظائف يتيح تنفيذ كود برمجي مخصص.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1771,7 +1792,7 @@
"Web Search in Chat": "بحث ويب داخل المحادثة", "Web Search in Chat": "بحث ويب داخل المحادثة",
"Web Search Query Generation": "توليد استعلام بحث الويب", "Web Search Query Generation": "توليد استعلام بحث الويب",
"Webhook URL": "Webhook الرابط", "Webhook URL": "Webhook الرابط",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI اعدادات", "WebUI Settings": "WebUI اعدادات",
"WebUI URL": "رابط WebUI", "WebUI URL": "رابط WebUI",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1808,6 +1829,7 @@
"You cannot upload an empty file.": "لا يمكنك رفع ملف فارغ.", "You cannot upload an empty file.": "لا يمكنك رفع ملف فارغ.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "ليس لديك صلاحية لرفع الملفات.", "You do not have permission to upload files.": "ليس لديك صلاحية لرفع الملفات.",
"You have no archived conversations.": "لا تملك محادثات محفوظه", "You have no archived conversations.": "لا تملك محادثات محفوظه",
"You have shared this chat": "تم مشاركة هذه المحادثة", "You have shared this chat": "تم مشاركة هذه المحادثة",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Отговори", "{{COUNT}} Replies": "{{COUNT}} Отговори",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Добавяне на текстово съдържание", "Add text content": "Добавяне на текстово съдържание",
"Add User": "Добавяне на потребител", "Add User": "Добавяне на потребител",
"Add User Group": "Добавяне на потребителска група", "Add User Group": "Добавяне на потребителска група",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Всички Документи",
"All models deleted successfully": "Всички модели са изтрити успешно", "All models deleted successfully": "Всички модели са изтрити успешно",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Разреши контроли на чата", "Allow Chat Controls": "Разреши контроли на чата",
@ -136,6 +138,7 @@
"API keys": "API Ключове", "API keys": "API Ключове",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN на приложението", "Application DN": "DN на приложението",
@ -154,6 +157,7 @@
"Are you sure?": "Сигурни ли сте?", "Are you sure?": "Сигурни ли сте?",
"Arena Models": "Арена Модели", "Arena Models": "Арена Модели",
"Artifacts": "Артефакти", "Artifacts": "Артефакти",
"Asc": "",
"Ask": "Питай", "Ask": "Питай",
"Ask a question": "Задайте въпрос", "Ask a question": "Задайте въпрос",
"Assistant": "Асистент", "Assistant": "Асистент",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател", "Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател",
"Camera": "Камера", "Camera": "Камера",
"Cancel": "Отказ", "Cancel": "Отказ",
"Cannot create an empty note.": "",
"Capabilities": "Възможности", "Capabilities": "Възможности",
"Capture": "Заснемане", "Capture": "Заснемане",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Име на канала", "Channel Name": "Име на канала",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Колекция", "Collection": "Колекция",
"Collections": "",
"Color": "Цвят", "Color": "Цвят",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API Ключ", "ComfyUI API Key": "ComfyUI API Ключ",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Създаване на нов ключ", "Create new key": "Създаване на нов ключ",
"Create new secret key": "Създаване на нов секретен ключ", "Create new secret key": "Създаване на нов секретен ключ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Създадено на", "Created at": "Създадено на",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Изтрито {{name}}", "Deleted {{name}}": "Изтрито {{name}}",
"Deleted User": "Изтрит потребител", "Deleted User": "Изтрит потребител",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Опишете вашата база от знания и цели", "Describe your knowledge base and objectives": "Опишете вашата база от знания и цели",
"Description": "Описание", "Description": "Описание",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Изтегляне като SVG", "Download as SVG": "Изтегляне като SVG",
"Download canceled": "Изтегляне отменено", "Download canceled": "Изтегляне отменено",
"Download Database": "Сваляне на база данни", "Download Database": "Сваляне на база данни",
"Drag and drop a file to upload or select a file to view": "Плъзнете и пуснете файл за качване или изберете файл за преглед",
"Draw": "Рисуване", "Draw": "Рисуване",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Въведете API ключ за Kagi Search", "Enter Kagi Search API Key": "Въведете API ключ за Kagi Search",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Въведете кодове на езика", "Enter language codes": "Въведете кодове на езика",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Въведете ID на модела", "Enter Model ID": "Въведете ID на модела",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Въведете API ключ за SearchApi", "Enter SearchApi API Key": "Въведете API ключ за SearchApi",
"Enter SearchApi Engine": "Въведете двигател за SearchApi", "Enter SearchApi Engine": "Въведете двигател за SearchApi",
"Enter Searxng Query URL": "Въведете URL адрес за заявка на Searxng", "Enter Searxng Query URL": "Въведете URL адрес за заявка на Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Въведете начално число", "Enter Seed": "Въведете начално число",
"Enter SerpApi API Key": "Въведете API ключ за SerpApi", "Enter SerpApi API Key": "Въведете API ключ за SerpApi",
"Enter SerpApi Engine": "Въведете двигател за SerpApi", "Enter SerpApi Engine": "Въведете двигател за SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда", "Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ключ", "Google PSE API Key": "Google PSE API ключ",
"Google PSE Engine Id": "Идентификатор на двигателя на Google PSE", "Google PSE Engine Id": "Идентификатор на двигателя на Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Група", "Group": "Група",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Групата е създадена успешно", "Group created successfully": "Групата е създадена успешно",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Импортиране на конфигурация от JSON файл", "Import Config from JSON File": "Импортиране на конфигурация от JSON файл",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Импортиране на предварителни настройки", "Import Presets": "Импортиране на предварителни настройки",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Лиценз", "License": "Лиценз",
"Lift List": "", "Lift List": "",
"Light": "Светъл", "Light": "Светъл",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Слушане...", "Listening...": "Слушане...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.", "LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Именувайте вашата база от знания", "Name your knowledge base": "Именувайте вашата база от знания",
"Native": "Нативен", "Native": "Нативен",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Нов чат", "New Chat": "Нов чат",
"New Folder": "Нова папка", "New Folder": "Нова папка",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Нова парола", "New Password": "Нова парола",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "Без съдържание", "No content": "Без съдържание",
"No content found": "Не е намерено съдържание", "No content found": "Не е намерено съдържание",
"No content found in file.": "Не е намерено съдържание във файла",
"No content to speak": "Няма съдържание за изговаряне", "No content to speak": "Няма съдържание за изговаряне",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Няма налично разстояние", "No distance available": "Няма налично разстояние",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Не са намерени обратни връзки", "No feedbacks found": "Не са намерени обратни връзки",
"No file selected": "Не е избран файл", "No file selected": "Не е избран файл",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Няма групи с достъп, добавете група, за да предоставите достъп", "No groups with access, add a group to grant access": "Няма групи с достъп, добавете група, за да предоставите достъп",
"No HTML, CSS, or JavaScript content found.": "Не е намерено HTML, CSS или JavaScript съдържание.", "No HTML, CSS, or JavaScript content found.": "Не е намерено HTML, CSS или JavaScript съдържание.",
"No inference engine with management support found": "Не е намерен механизъм за извод с поддръжка на управлението", "No inference engine with management support found": "Не е намерен механизъм за извод с поддръжка на управлението",
"No knowledge bases found.": "",
"No knowledge found": "Не са намерени знания", "No knowledge found": "Не са намерени знания",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "Няма ИД-та на моделите", "No model IDs": "Няма ИД-та на моделите",
@ -1309,6 +1323,8 @@
"Read": "Четене", "Read": "Четене",
"Read Aloud": "Прочети на глас", "Read Aloud": "Прочети на глас",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Усилие за разсъждение", "Reasoning Effort": "Усилие за разсъждение",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Търсене в знанията за \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Търсене в знанията за \"{{searchQuery}}\"",
"Searching the web": "Търсене в интернет...", "Searching the web": "Търсене в интернет...",
"Searxng Query URL": "URL адрес на заявка за търсене в Searxng", "Searxng Query URL": "URL адрес на заявка за търсене в Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Вижте readme.md за инструкции", "See readme.md for instructions": "Вижте readme.md за инструкции",
"See what's new": "Виж какво е новото", "See what's new": "Виж какво е новото",
"Seed": "Начално число", "Seed": "Начално число",
@ -1491,6 +1508,7 @@
"Show": "Покажи", "Show": "Покажи",
"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване", "Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт", "Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Покажи модел", "Show Model": "Покажи модел",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Източник", "Source": "Източник",
@ -1625,6 +1644,7 @@
"Tika": "Тика", "Tika": "Тика",
"Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.", "Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Заглавие", "Title": "Заглавие",
"Title Auto-Generation": "Автоматично генериране на заглавие", "Title Auto-Generation": "Автоматично генериране на заглавие",
"Title cannot be an empty string.": "Заглавието не може да бъде празно.", "Title cannot be an empty string.": "Заглавието не може да бъде празно.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.", "Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.",
"Tools Public Sharing": "Публично споделяне на инструменти", "Tools Public Sharing": "Публично споделяне на инструменти",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Топ К", "Top K": "Топ К",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Трансформатори", "Transformers": "Трансформатори",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Уеб търсене в чата", "Web Search in Chat": "Уеб търсене в чата",
"Web Search Query Generation": "Генериране на заявки за уеб търсене", "Web Search Query Generation": "Генериране на заявки за уеб търсене",
"Webhook URL": "Уебхук URL", "Webhook URL": "Уебхук URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI Настройки", "WebUI Settings": "WebUI Настройки",
"WebUI URL": "URL на WebUI", "WebUI URL": "URL на WebUI",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Не можете да качите празен файл.", "You cannot upload an empty file.": "Не можете да качите празен файл.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Нямате разрешение да качвате файлове.", "You do not have permission to upload files.": "Нямате разрешение да качвате файлове.",
"You have no archived conversations.": "Нямате архивирани разговори.", "You have no archived conversations.": "Нямате архивирани разговори.",
"You have shared this chat": "Вие сте споделили този чат", "You have shared this chat": "Вие сте споделили този чат",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "ইউজার যোগ করুন", "Add User": "ইউজার যোগ করুন",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "সব ডকুমেন্ট",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "এপিআই কোডস", "API keys": "এপিআই কোডস",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "আপনি নিশ্চিত?", "Are you sure?": "আপনি নিশ্চিত?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "বাতিল", "Cancel": "বাতিল",
"Cannot create an empty note.": "",
"Capabilities": "সক্ষমতা", "Capabilities": "সক্ষমতা",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "সংগ্রহ", "Collection": "সংগ্রহ",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "একটি নতুন কী তৈরি করুন", "Create new key": "একটি নতুন কী তৈরি করুন",
"Create new secret key": "একটি নতুন সিক্রেট কী তৈরি করুন", "Create new secret key": "একটি নতুন সিক্রেট কী তৈরি করুন",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "নির্মানকাল", "Created at": "নির্মানকাল",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} মোছা হয়েছে", "Deleted {{name}}": "{{name}} মোছা হয়েছে",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "বিবরণ", "Description": "বিবরণ",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "ডাউনলোড বাতিল করা হয়েছে", "Download canceled": "ডাউনলোড বাতিল করা হয়েছে",
"Download Database": "ডেটাবেজ ডাউনলোড করুন", "Download Database": "ডেটাবেজ ডাউনলোড করুন",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "ল্যাঙ্গুয়েজ কোড লিখুন", "Enter language codes": "ল্যাঙ্গুয়েজ কোড লিখুন",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Searxng ক্যোয়ারী URL লিখুন", "Enter Searxng Query URL": "Searxng ক্যোয়ারী URL লিখুন",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি", "Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "গুগল পিএসই এপিআই কী", "Google PSE API Key": "গুগল পিএসই এপিআই কী",
"Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি", "Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "গ্রুপ", "Group": "গ্রুপ",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "লাইট", "Light": "লাইট",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।", "LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "নতুন চ্যাট", "New Chat": "নতুন চ্যাট",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "নতুন পাসওয়ার্ড", "New Password": "নতুন পাসওয়ার্ড",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "পড়াশোনা করুন", "Read Aloud": "পড়াশোনা করুন",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng ক্যোয়ারী URL", "Searxng Query URL": "Searxng ক্যোয়ারী URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন", "See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন",
"See what's new": "নতুন কী আছে দেখুন", "See what's new": "নতুন কী আছে দেখুন",
"Seed": "সীড", "Seed": "সীড",
@ -1491,6 +1508,7 @@
"Show": "দেখান", "Show": "দেখান",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "উৎস", "Source": "উৎস",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "শিরোনাম", "Title": "শিরোনাম",
"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন", "Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
"Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।", "Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "ওয়েবহুক URL", "Webhook URL": "ওয়েবহুক URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI সেটিংসমূহ", "WebUI Settings": "WebUI সেটিংসমূহ",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।", "You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন", "You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "ཡིག་ཕྲེང་ {{COUNT}} སྦས་ཡོད།", "{{COUNT}} hidden lines": "ཡིག་ཕྲེང་ {{COUNT}} སྦས་ཡོད།",
"{{COUNT}} Replies": "ལན་ {{COUNT}}", "{{COUNT}} Replies": "ལན་ {{COUNT}}",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "ཡིག་རྐྱང་ནང་དོན་སྣོན་པ།", "Add text content": "ཡིག་རྐྱང་ནང་དོན་སྣོན་པ།",
"Add User": "བེད་སྤྱོད་མཁན་སྣོན་པ།", "Add User": "བེད་སྤྱོད་མཁན་སྣོན་པ།",
"Add User Group": "བེད་སྤྱོད་མཁན་ཚོགས་པ་སྣོན་པ།", "Add User Group": "བེད་སྤྱོད་མཁན་ཚོགས་པ་སྣོན་པ།",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "ཡོངས།", "All": "ཡོངས།",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "ཡིག་ཆ་ཡོངས།",
"All models deleted successfully": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་ལེགས་པར་བསུབས་ཟིན།", "All models deleted successfully": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་ལེགས་པར་བསུབས་ཟིན།",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "ཁ་བརྡའི་ཚོད་འཛིན་ལ་གནང་བ་སྤྲོད་པ།", "Allow Chat Controls": "ཁ་བརྡའི་ཚོད་འཛིན་ལ་གནང་བ་སྤྲོད་པ།",
@ -136,6 +138,7 @@
"API keys": "API ལྡེ་མིག", "API keys": "API ལྡེ་མིག",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
@ -154,6 +157,7 @@
"Are you sure?": "ཁྱོད་ངེས་པ་ཡིན་ནམ།", "Are you sure?": "ཁྱོད་ངེས་པ་ཡིན་ནམ།",
"Arena Models": "Arena དཔེ་དབྱིབས།", "Arena Models": "Arena དཔེ་དབྱིབས།",
"Artifacts": "རྫས་རྟེན།", "Artifacts": "རྫས་རྟེན།",
"Asc": "",
"Ask": "འདྲི་བ།", "Ask": "འདྲི་བ།",
"Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།", "Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།",
"Assistant": "ལག་རོགས་པ།", "Assistant": "ལག་རོགས་པ།",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།", "Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།",
"Camera": "པར་ཆས།", "Camera": "པར་ཆས།",
"Cancel": "རྩིས་མེད།", "Cancel": "རྩིས་མེད།",
"Cannot create an empty note.": "",
"Capabilities": "ནུས་པ།", "Capabilities": "ནུས་པ།",
"Capture": "འཛིན་པ།", "Capture": "འཛིན་པ།",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "བགྲོ་གླེང་གི་མིང་།", "Channel Name": "བགྲོ་གླེང་གི་མིང་།",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "བགྲོ་གླེང་།", "Channels": "བགྲོ་གླེང་།",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "བསྐུམ་པ།", "Collapse": "བསྐུམ་པ།",
"Collection": "བསྡུ་གསོག", "Collection": "བསྡུ་གསོག",
"Collections": "",
"Color": "ཚོན་མདོག", "Color": "ཚོན་མདོག",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API ལྡེ་མིག", "ComfyUI API Key": "ComfyUI API ལྡེ་མིག",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "ལྡེ་མིག་གསར་པ་བཟོ་བ།", "Create new key": "ལྡེ་མིག་གསར་པ་བཟོ་བ།",
"Create new secret key": "གསང་བའི་ལྡེ་མིག་གསར་པ་བཟོ་བ།", "Create new secret key": "གསང་བའི་ལྡེ་མིག་གསར་པ་བཟོ་བ།",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "གསར་བཟོ་བྱེད་དུས།", "Created at": "གསར་བཟོ་བྱེད་དུས།",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} བསུབས་ཟིན།", "Deleted {{name}}": "{{name}} བསུབས་ཟིན།",
"Deleted User": "བེད་སྤྱོད་མཁན་བསུབས་ཟིན།", "Deleted User": "བེད་སྤྱོད་མཁན་བསུབས་ཟིན།",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་དང་དམིགས་ཡུལ་འགྲེལ་བཤད་བྱེད་པ།", "Describe your knowledge base and objectives": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་དང་དམིགས་ཡུལ་འགྲེལ་བཤད་བྱེད་པ།",
"Description": "འགྲེལ་བཤད།", "Description": "འགྲེལ་བཤད།",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "SVG ཐོག་ཕབ་ལེན།", "Download as SVG": "SVG ཐོག་ཕབ་ལེན།",
"Download canceled": "ཕབ་ལེན་རྩིས་མེད་བཏང་།", "Download canceled": "ཕབ་ལེན་རྩིས་མེད་བཏང་།",
"Download Database": "གནས་ཚུལ་མཛོད་ཕབ་ལེན།", "Download Database": "གནས་ཚུལ་མཛོད་ཕབ་ལེན།",
"Drag and drop a file to upload or select a file to view": "ཡིག་ཆ་ཞིག་འདྲུད་ནས་འཇོག་སྟེ་སྤར་བའམ། ཡང་ན་ཡིག་ཆ་ཞིག་གདམ་ག་བྱས་ནས་ལྟ་བ།",
"Draw": "རི་མོ་འབྲི་བ།", "Draw": "རི་མོ་འབྲི་བ།",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "དཔེར་ན། '30s','10m'. ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ་ནི། 's', 'm', 'h' ཡིན།", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "དཔེར་ན། '30s','10m'. ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ་ནི། 's', 'm', 'h' ཡིན།",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search API ལྡེ་མིག་འཇུག་པ།", "Enter Kagi Search API Key": "Kagi Search API ལྡེ་མིག་འཇུག་པ།",
"Enter Key Behavior": "ལྡེ་མིག་གི་བྱེད་སྟངས་འཇུག་པ།", "Enter Key Behavior": "ལྡེ་མིག་གི་བྱེད་སྟངས་འཇུག་པ།",
"Enter language codes": "སྐད་ཡིག་གི་ཨང་རྟགས་འཇུག་པ།", "Enter language codes": "སྐད་ཡིག་གི་ཨང་རྟགས་འཇུག་པ།",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID འཇུག་པ།", "Enter Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID འཇུག་པ།",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API ལྡེ་མིག་འཇུག་པ།", "Enter SearchApi API Key": "SearchApi API ལྡེ་མིག་འཇུག་པ།",
"Enter SearchApi Engine": "SearchApi Engine འཇུག་པ།", "Enter SearchApi Engine": "SearchApi Engine འཇུག་པ།",
"Enter Searxng Query URL": "Searxng Query URL འཇུག་པ།", "Enter Searxng Query URL": "Searxng Query URL འཇུག་པ།",
"Enter Searxng search language": "",
"Enter Seed": "Seed འཇུག་པ།", "Enter Seed": "Seed འཇུག་པ།",
"Enter SerpApi API Key": "SerpApi API ལྡེ་མིག་འཇུག་པ།", "Enter SerpApi API Key": "SerpApi API ལྡེ་མིག་འཇུག་པ།",
"Enter SerpApi Engine": "SerpApi Engine འཇུག་པ།", "Enter SerpApi Engine": "SerpApi Engine འཇུག་པ།",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།", "Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ལྡེ་མིག", "Google PSE API Key": "Google PSE API ལྡེ་མིག",
"Google PSE Engine Id": "Google PSE Engine Id", "Google PSE Engine Id": "Google PSE Engine Id",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "ཚོགས་པ།", "Group": "ཚོགས་པ།",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།", "Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།",
@ -891,7 +901,6 @@
"Import Config from JSON File": "JSON ཡིག་ཆ་ནས་སྒྲིག་འགོད་ནང་འདྲེན།", "Import Config from JSON File": "JSON ཡིག་ཆ་ནས་སྒྲིག་འགོད་ནང་འདྲེན།",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།", "Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "ཆོག་མཆན།", "License": "ཆོག་མཆན།",
"Lift List": "", "Lift List": "",
"Light": "དཀར་པོ།", "Light": "དཀར་པོ།",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "ཉན་བཞིན་པ།...", "Listening...": "ཉན་བཞིན་པ།...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs ལ་ནོར་འཁྲུལ་ཡོང་སྲིད། གནས་ཚུལ་གལ་ཆེན་ར་སྤྲོད་བྱེད་རོགས།", "LLMs can make mistakes. Verify important information.": "LLMs ལ་ནོར་འཁྲུལ་ཡོང་སྲིད། གནས་ཚུལ་གལ་ཆེན་ར་སྤྲོད་བྱེད་རོགས།",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།", "Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།",
"Native": "ས་སྐྱེས།", "Native": "ས་སྐྱེས།",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "ཁ་བརྡ་གསར་པ།", "New Chat": "ཁ་བརྡ་གསར་པ།",
"New Folder": "ཡིག་སྣོད་གསར་པ།", "New Folder": "ཡིག་སྣོད་གསར་པ།",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "གསང་གྲངས་གསར་པ།", "New Password": "གསང་གྲངས་གསར་པ།",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "ནང་དོན་མ་རྙེད།", "No content found": "ནང་དོན་མ་རྙེད།",
"No content found in file.": "",
"No content to speak": "བཤད་རྒྱུའི་ནང་དོན་མེད།", "No content to speak": "བཤད་རྒྱུའི་ནང་དོན་མེད།",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "ཐག་རིང་ཚད་མེད།", "No distance available": "ཐག་རིང་ཚད་མེད།",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "བསམ་འཆར་མ་རྙེད།", "No feedbacks found": "བསམ་འཆར་མ་རྙེད།",
"No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།", "No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "འཛུལ་སྤྱོད་ཡོད་པའི་ཚོགས་པ་མེད། འཛུལ་སྤྱོད་སྤྲོད་པར་ཚོགས་པ་ཞིག་སྣོན་པ།", "No groups with access, add a group to grant access": "འཛུལ་སྤྱོད་ཡོད་པའི་ཚོགས་པ་མེད། འཛུལ་སྤྱོད་སྤྲོད་པར་ཚོགས་པ་ཞིག་སྣོན་པ།",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS, ཡང་ན་ JavaScript གི་ནང་དོན་མ་རྙེད།", "No HTML, CSS, or JavaScript content found.": "HTML, CSS, ཡང་ན་ JavaScript གི་ནང་དོན་མ་རྙེད།",
"No inference engine with management support found": "དོ་དམ་རྒྱབ་སྐྱོར་ཡོད་པའི་དཔོག་རྩིས་འཕྲུལ་འཁོར་མ་རྙེད།", "No inference engine with management support found": "དོ་དམ་རྒྱབ་སྐྱོར་ཡོད་པའི་དཔོག་རྩིས་འཕྲུལ་འཁོར་མ་རྙེད།",
"No knowledge bases found.": "",
"No knowledge found": "ཤེས་བྱ་མ་རྙེད།", "No knowledge found": "ཤེས་བྱ་མ་རྙེད།",
"No memories to clear": "གཙང་སེལ་བྱེད་རྒྱུའི་དྲན་ཤེས་མེད།", "No memories to clear": "གཙང་སེལ་བྱེད་རྒྱུའི་དྲན་ཤེས་མེད།",
"No model IDs": "དཔེ་དབྱིབས་ཀྱི་ ID མེད།", "No model IDs": "དཔེ་དབྱིབས་ཀྱི་ ID མེད།",
@ -1309,6 +1323,8 @@
"Read": "ཀློག་པ།", "Read": "ཀློག་པ།",
"Read Aloud": "སྐད་གསལ་པོས་ཀློག་པ།", "Read Aloud": "སྐད་གསལ་པོས་ཀློག་པ།",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།", "Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" ཆེད་དུ་ཤེས་བྱ་འཚོལ་བཞིན་པ།", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" ཆེད་དུ་ཤེས་བྱ་འཚོལ་བཞིན་པ།",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ལམ་སྟོན་ཆེད་དུ་ readme.md ལ་ལྟ་བ།", "See readme.md for instructions": "ལམ་སྟོན་ཆེད་དུ་ readme.md ལ་ལྟ་བ།",
"See what's new": "གསར་པ་ཅི་ཡོད་ལྟ་བ།", "See what's new": "གསར་པ་ཅི་ཡོད་ལྟ་བ།",
"Seed": "Seed", "Seed": "Seed",
@ -1490,6 +1507,7 @@
"Show": "སྟོན་པ།", "Show": "སྟོན་པ།",
"Show \"What's New\" modal on login": "ནང་འཛུལ་སྐབས་ \"གསར་པ་ཅི་ཡོད\" modal སྟོན་པ།", "Show \"What's New\" modal on login": "ནང་འཛུལ་སྐབས་ \"གསར་པ་ཅི་ཡོད\" modal སྟོན་པ།",
"Show Admin Details in Account Pending Overlay": "རྩིས་ཁྲ་སྒུག་བཞིན་པའི་གཏོགས་ངོས་སུ་དོ་དམ་པའི་ཞིབ་ཕྲ་སྟོན་པ།", "Show Admin Details in Account Pending Overlay": "རྩིས་ཁྲ་སྒུག་བཞིན་པའི་གཏོགས་ངོས་སུ་དོ་དམ་པའི་ཞིབ་ཕྲ་སྟོན་པ།",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "དཔེ་དབྱིབས་སྟོན་པ།", "Show Model": "དཔེ་དབྱིབས་སྟོན་པ།",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "འབྱུང་ཁུངས།", "Source": "འབྱུང་ཁུངས།",
@ -1624,6 +1643,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika Server URL དགོས་ངེས།", "Tika Server URL required.": "Tika Server URL དགོས་ངེས།",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "ཁ་བྱང་།", "Title": "ཁ་བྱང་།",
"Title Auto-Generation": "ཁ་བྱང་རང་འགུལ་བཟོ་སྐྲུན།", "Title Auto-Generation": "ཁ་བྱང་རང་འགུལ་བཟོ་སྐྲུན།",
"Title cannot be an empty string.": "ཁ་བྱང་ཡིག་ཕྲེང་སྟོང་པ་ཡིན་མི་ཆོག", "Title cannot be an empty string.": "ཁ་བྱང་ཡིག་ཕྲེང་སྟོང་པ་ཡིན་མི་ཆོག",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "ལག་ཆར་གང་འདོད་ཀྱི་ཀོཌ་ལག་བསྟར་ལ་གནང་བ་སྤྲོད་པའི་ལས་འགན་འབོད་པའི་མ་ལག་ཡོད།", "Tools have a function calling system that allows arbitrary code execution.": "ལག་ཆར་གང་འདོད་ཀྱི་ཀོཌ་ལག་བསྟར་ལ་གནང་བ་སྤྲོད་པའི་ལས་འགན་འབོད་པའི་མ་ལག་ཡོད།",
"Tools Public Sharing": "ལག་ཆ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", "Tools Public Sharing": "ལག་ཆ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "ཁ་བརྡའི་ནང་དྲ་བའི་འཚོལ་བཤེར།", "Web Search in Chat": "ཁ་བརྡའི་ནང་དྲ་བའི་འཚོལ་བཤེར།",
"Web Search Query Generation": "དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་བཟོ་སྐྲུན།", "Web Search Query Generation": "དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་བཟོ་སྐྲུན།",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI སྒྲིག་འགོད།", "WebUI Settings": "WebUI སྒྲིག་འགོད།",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "ཁྱེད་ཀྱིས་ཡིག་ཆ་སྟོང་པ་སྤར་མི་ཐུབ།", "You cannot upload an empty file.": "ཁྱེད་ཀྱིས་ཡིག་ཆ་སྟོང་པ་སྤར་མི་ཐུབ།",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "ཁྱེད་ལ་ཡིག་ཆ་སྤར་བའི་དབང་ཚད་མེད།", "You do not have permission to upload files.": "ཁྱེད་ལ་ཡིག་ཆ་སྤར་བའི་དབང་ཚད་མེད།",
"You have no archived conversations.": "ཁྱེད་ལ་ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་མེད།", "You have no archived conversations.": "ཁྱེད་ལ་ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་མེད།",
"You have shared this chat": "ཁྱེད་ཀྱིས་ཁ་བརྡ་འདི་མཉམ་སྤྱོད་བྱས་ཡོད།", "You have shared this chat": "ཁྱེད་ཀྱིས་ཁ་བརྡ་འདི་མཉམ་སྤྱོད་བྱས་ཡོད།",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Dodaj korisnika", "Add User": "Dodaj korisnika",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Svi dokumenti",
"All models deleted successfully": "Svi modeli su uspjesno izbrisani", "All models deleted successfully": "Svi modeli su uspjesno izbrisani",
"Allow Call": "Dozvoli poziv", "Allow Call": "Dozvoli poziv",
"Allow Chat Controls": "Dozvoli kontrolu razgovora", "Allow Chat Controls": "Dozvoli kontrolu razgovora",
@ -136,6 +138,7 @@
"API keys": "API ključevi", "API keys": "API ključevi",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API Verzija", "API Version": "API Verzija",
"API Version is required": "API verzija je potrebna", "API Version is required": "API verzija je potrebna",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Jeste li sigurni?", "Are you sure?": "Jeste li sigurni?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "Pitaj", "Ask": "Pitaj",
"Ask a question": "Pitaj pitanje", "Ask a question": "Pitaj pitanje",
"Assistant": "Asistent", "Assistant": "Asistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam", "Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Otkaži", "Cancel": "Otkaži",
"Cannot create an empty note.": "",
"Capabilities": "Mogućnosti", "Capabilities": "Mogućnosti",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Collections": "",
"Color": "Boja", "Color": "Boja",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Stvori novi ključ", "Create new key": "Stvori novi ključ",
"Create new secret key": "Stvori novi tajni ključ", "Create new secret key": "Stvori novi tajni ključ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Stvoreno", "Created at": "Stvoreno",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Izbrisano {{name}}", "Deleted {{name}}": "Izbrisano {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Opis", "Description": "Opis",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Preuzimanje otkazano", "Download canceled": "Preuzimanje otkazano",
"Download Database": "Preuzmi bazu podataka", "Download Database": "Preuzmi bazu podataka",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Unesite kodove jezika", "Enter language codes": "Unesite kodove jezika",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Unesite URL upita Searxng", "Enter Searxng Query URL": "Unesite URL upita Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika", "Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ključ", "Google PSE API Key": "Google PSE API ključ",
"Google PSE Engine Id": "ID Google PSE modula", "Google PSE Engine Id": "ID Google PSE modula",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Svijetlo", "Light": "Svijetlo",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Slušam...", "Listening...": "Slušam...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.", "LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Novi razgovor", "New Chat": "Novi razgovor",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nova lozinka", "New Password": "Nova lozinka",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Čitaj naglas", "Read Aloud": "Čitaj naglas",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng URL upita", "Searxng Query URL": "Searxng URL upita",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Pogledajte readme.md za upute", "See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo", "See what's new": "Pogledajte što je novo",
"Seed": "Sjeme", "Seed": "Sjeme",
@ -1492,6 +1509,7 @@
"Show": "Pokaži", "Show": "Pokaži",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Izvor", "Source": "Izvor",
@ -1626,6 +1645,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Naslov", "Title": "Naslov",
"Title Auto-Generation": "Automatsko generiranje naslova", "Title Auto-Generation": "Automatsko generiranje naslova",
"Title cannot be an empty string.": "Naslov ne može biti prazni niz.", "Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL webkuke", "Webhook URL": "URL webkuke",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI postavke", "WebUI Settings": "WebUI postavke",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Nemate arhiviranih razgovora.", "You have no archived conversations.": "Nemate arhiviranih razgovora.",
"You have shared this chat": "Podijelili ste ovaj razgovor", "You have shared this chat": "Podijelili ste ovaj razgovor",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} eines disponibles", "{{COUNT}} Available Tools": "{{COUNT}} eines disponibles",
"{{COUNT}} characters": "{{COUNT}} caràcters", "{{COUNT}} characters": "{{COUNT}} caràcters",
"{{COUNT}} extracted lines": "{{COUNT}} línies extretes", "{{COUNT}} extracted lines": "{{COUNT}} línies extretes",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes", "{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
"{{COUNT}} Replies": "{{COUNT}} respostes", "{{COUNT}} Replies": "{{COUNT}} respostes",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} fonts", "{{COUNT}} Sources": "{{COUNT}} fonts",
"{{COUNT}} words": "{{COUNT}} paraules", "{{COUNT}} words": "{{COUNT}} paraules",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a les {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a les {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Afegir contingut de text", "Add text content": "Afegir contingut de text",
"Add User": "Afegir un usuari", "Add User": "Afegir un usuari",
"Add User Group": "Afegir grup d'usuaris", "Add User Group": "Afegir grup d'usuaris",
"Add webpage": "",
"Additional Config": "Configuració addicional", "Additional Config": "Configuració addicional",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opcions de configuració addicionals per al marcador. Hauria de ser una cadena JSON amb parelles clau-valor. Per exemple, '{\"key\": \"value\"}'. Les claus compatibles inclouen: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opcions de configuració addicionals per al marcador. Hauria de ser una cadena JSON amb parelles clau-valor. Per exemple, '{\"key\": \"value\"}'. Les claus compatibles inclouen: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Paràmetres addicionals", "Additional Parameters": "Paràmetres addicionals",
@ -84,7 +87,6 @@
"AI": "IA", "AI": "IA",
"All": "Tots", "All": "Tots",
"All chats have been unarchived.": "Tots els xats han estat desarxivats.", "All chats have been unarchived.": "Tots els xats han estat desarxivats.",
"All Documents": "Tots els documents",
"All models deleted successfully": "Tots els models s'han eliminat correctament", "All models deleted successfully": "Tots els models s'han eliminat correctament",
"Allow Call": "Permetre la trucada", "Allow Call": "Permetre la trucada",
"Allow Chat Controls": "Permetre els controls de xat", "Allow Chat Controls": "Permetre els controls de xat",
@ -136,6 +138,7 @@
"API keys": "Claus de l'API", "API keys": "Claus de l'API",
"API Keys": "Claus de l'API", "API Keys": "Claus de l'API",
"API Mode": "Mode API", "API Mode": "Mode API",
"API Timeout": "",
"API Version": "Versió de l'API", "API Version": "Versió de l'API",
"API Version is required": "Versió API requerida", "API Version is required": "Versió API requerida",
"Application DN": "DN d'aplicació", "Application DN": "DN d'aplicació",
@ -154,6 +157,7 @@
"Are you sure?": "Estàs segur?", "Are you sure?": "Estàs segur?",
"Arena Models": "Models de l'Arena", "Arena Models": "Models de l'Arena",
"Artifacts": "Artefactes", "Artifacts": "Artefactes",
"Asc": "",
"Ask": "Preguntar", "Ask": "Preguntar",
"Ask a question": "Fer una pregunta", "Ask a question": "Fer una pregunta",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT", "Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
"Camera": "Càmera", "Camera": "Càmera",
"Cancel": "Cancel·lar", "Cancel": "Cancel·lar",
"Cannot create an empty note.": "",
"Capabilities": "Capacitats", "Capabilities": "Capacitats",
"Capture": "Captura", "Capture": "Captura",
"Capture Audio": "Capturar àudio", "Capture Audio": "Capturar àudio",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Canal suprimit correctament", "Channel deleted successfully": "Canal suprimit correctament",
"Channel Name": "Nom del canal", "Channel Name": "Nom del canal",
"Channel name cannot be empty.": "El nom del canal no pot estar buit.", "Channel name cannot be empty.": "El nom del canal no pot estar buit.",
"Channel name must be less than 128 characters": "",
"Channel Type": "Tipus de canal", "Channel Type": "Tipus de canal",
"Channel updated successfully": "Canal actualitzat correctament", "Channel updated successfully": "Canal actualitzat correctament",
"Channels": "Canals", "Channels": "Canals",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Canal de col·laboració on la gent s'uneix com a membres", "Collaboration channel where people join as members": "Canal de col·laboració on la gent s'uneix com a membres",
"Collapse": "Col·lapsar", "Collapse": "Col·lapsar",
"Collection": "Col·lecció", "Collection": "Col·lecció",
"Collections": "",
"Color": "Color", "Color": "Color",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Configurar la clau API de ComfyUI", "ComfyUI API Key": "Configurar la clau API de ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Crear model", "Create Model": "Crear model",
"Create new key": "Crear una nova clau", "Create new key": "Crear una nova clau",
"Create new secret key": "Crear una nova clau secreta", "Create new secret key": "Crear una nova clau secreta",
"Create note": "",
"Create Note": "Crea nota", "Create Note": "Crea nota",
"Create your first note by clicking on the plus button below.": "Crea la teva primera nota prement sobre el botó 'més' inferior", "Create your first note by clicking on the plus button below.": "Crea la teva primera nota prement sobre el botó 'més' inferior",
"Created at": "Creat el", "Created at": "Creat el",
@ -429,6 +437,7 @@
"Deleted {{name}}": "S'ha eliminat {{name}}", "Deleted {{name}}": "S'ha eliminat {{name}}",
"Deleted User": "Usuari eliminat", "Deleted User": "Usuari eliminat",
"Deployment names are required for Azure OpenAI": "Els noms de desplegament són requerits per Azure OpenAI", "Deployment names are required for Azure OpenAI": "Els noms de desplegament són requerits per Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius", "Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius",
"Description": "Descripció", "Description": "Descripció",
"Detect Artifacts Automatically": "Detectar automàticament els artefactes", "Detect Artifacts Automatically": "Detectar automàticament els artefactes",
@ -487,7 +496,6 @@
"Download as SVG": "Descarrega com a SVG", "Download as SVG": "Descarrega com a SVG",
"Download canceled": "Descàrrega cancel·lada", "Download canceled": "Descàrrega cancel·lada",
"Download Database": "Descarregar la base de dades", "Download Database": "Descarregar la base de dades",
"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", "Draw": "Dibuixar",
"Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo", "Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Introdueix la clau API de Kagi Search", "Enter Kagi Search API Key": "Introdueix la clau API de Kagi Search",
"Enter Key Behavior": "Introdueix el comportament de clau", "Enter Key Behavior": "Introdueix el comportament de clau",
"Enter language codes": "Introdueix els codis de llenguatge", "Enter language codes": "Introdueix els codis de llenguatge",
"Enter MinerU API Key": "Introdueix la clau API de MinerU",
"Enter Mistral API Base URL": "Entra la URL Base de l'API de Mistral", "Enter Mistral API Base URL": "Entra la URL Base de l'API de Mistral",
"Enter Mistral API Key": "Entra la clau API de Mistral", "Enter Mistral API Key": "Entra la clau API de Mistral",
"Enter Model ID": "Introdueix l'identificador del model", "Enter Model ID": "Introdueix l'identificador del model",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Introdueix la clau API SearchApi", "Enter SearchApi API Key": "Introdueix la clau API SearchApi",
"Enter SearchApi Engine": "Introdueix el motor SearchApi", "Enter SearchApi Engine": "Introdueix el motor SearchApi",
"Enter Searxng Query URL": "Introdueix la URL de consulta de Searxng", "Enter Searxng Query URL": "Introdueix la URL de consulta de Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Introdueix la llavor", "Enter Seed": "Introdueix la llavor",
"Enter SerpApi API Key": "Introdueix la clau API SerpApi", "Enter SerpApi API Key": "Introdueix la clau API SerpApi",
"Enter SerpApi Engine": "Introdueix el motor API SerpApi", "Enter SerpApi Engine": "Introdueix el motor API SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "No s'ha pogut carregar la previsualització del xat", "Failed to load chat preview": "No s'ha pogut carregar la previsualització del xat",
"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer", "Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
"Failed to move chat": "No s'ha pogut moure el xat", "Failed to move chat": "No s'ha pogut moure el xat",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls", "Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
"Failed to remove member": "No s'ha pogut eliminar el membre", "Failed to remove member": "No s'ha pogut eliminar el membre",
"Failed to render diagram": "No s'ha pogut renderitzar el diagrama", "Failed to render diagram": "No s'ha pogut renderitzar el diagrama",
@ -831,6 +840,7 @@
"Google PSE API Key": "Clau API PSE de Google", "Google PSE API Key": "Clau API PSE de Google",
"Google PSE Engine Id": "Identificador del motor PSE de Google", "Google PSE Engine Id": "Identificador del motor PSE de Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Grup", "Group": "Grup",
"Group Channel": "Canal de grup", "Group Channel": "Canal de grup",
"Group created successfully": "El grup s'ha creat correctament", "Group created successfully": "El grup s'ha creat correctament",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importar la configuració des d'un arxiu JSON", "Import Config from JSON File": "Importar la configuració des d'un arxiu JSON",
"Import From Link": "Importar des d'un enllaç", "Import From Link": "Importar des d'un enllaç",
"Import Models": "Importar models", "Import Models": "Importar models",
"Import Notes": "Importar nota",
"Import Presets": "Importar configuracions", "Import Presets": "Importar configuracions",
"Import Prompts": "Importar indicacions", "Import Prompts": "Importar indicacions",
"Import successful": "Importació correcta", "Import successful": "Importació correcta",
@ -989,6 +998,8 @@
"License": "Llicència", "License": "Llicència",
"Lift List": "Aixecar la llista", "Lift List": "Aixecar la llista",
"Light": "Clar", "Light": "Clar",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Escoltant...", "Listening...": "Escoltant...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.", "LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "El nom i l'ID són necessaris, emplena'ls, si us plau", "Name and ID are required, please fill them out": "El nom i l'ID són necessaris, emplena'ls, si us plau",
"Name your knowledge base": "Anomena la teva base de coneixement", "Name your knowledge base": "Anomena la teva base de coneixement",
"Native": "Natiu", "Native": "Natiu",
"New": "",
"New Button": "Botó nou", "New Button": "Botó nou",
"New Chat": "Nou xat", "New Chat": "Nou xat",
"New Folder": "Nova carpeta", "New Folder": "Nova carpeta",
"New Function": "Nova funció", "New Function": "Nova funció",
"New Knowledge": "Nou coneixement", "New Knowledge": "Nou coneixement",
"New Model": "Nou model", "New Model": "Nou model",
"New Note": "",
"New Password": "Nova contrasenya", "New Password": "Nova contrasenya",
"New Prompt": "Nova indicació", "New Prompt": "Nova indicació",
"New Temporary Chat": "Nou xat temporal", "New Temporary Chat": "Nou xat temporal",
@ -1112,17 +1125,18 @@
"No chats found.": "No s'ha trobat xats.", "No chats found.": "No s'ha trobat xats.",
"No content": "No hi ha contingut", "No content": "No hi ha contingut",
"No content found": "No s'ha trobat contingut", "No content found": "No s'ha trobat contingut",
"No content found in file.": "No s'ha trobat contingut en el fitxer.",
"No content to speak": "No hi ha contingut per parlar", "No content to speak": "No hi ha contingut per parlar",
"No conversation to save": "No hi ha cap conversa a desar", "No conversation to save": "No hi ha cap conversa a desar",
"No distance available": "No hi ha distància disponible", "No distance available": "No hi ha distància disponible",
"No expiration can pose security risks.": "No posar expiració pot suposar problemes de seguretat.", "No expiration can pose security risks.": "No posar expiració pot suposar problemes de seguretat.",
"No feedbacks found": "No s'han trobat comentaris", "No feedbacks found": "No s'han trobat comentaris",
"No file selected": "No s'ha escollit cap fitxer", "No file selected": "No s'ha escollit cap fitxer",
"No files in this knowledge base.": "",
"No functions found": "No s'han trobat funcions", "No functions found": "No s'han trobat funcions",
"No groups with access, add a group to grant access": "No hi ha cap grup amb accés, afegeix un grup per concedir accés", "No groups with access, add a group to grant access": "No hi ha cap grup amb accés, afegeix un grup per concedir accés",
"No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.", "No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.",
"No inference engine with management support found": "No s'ha trobat un motor d'inferència amb suport de gestió", "No inference engine with management support found": "No s'ha trobat un motor d'inferència amb suport de gestió",
"No knowledge bases found.": "",
"No knowledge found": "No s'ha trobat Coneixement", "No knowledge found": "No s'ha trobat Coneixement",
"No memories to clear": "No hi ha memòries per netejar", "No memories to clear": "No hi ha memòries per netejar",
"No model IDs": "No hi ha IDs de model", "No model IDs": "No hi ha IDs de model",
@ -1309,6 +1323,8 @@
"Read": "Llegit", "Read": "Llegit",
"Read Aloud": "Llegir en veu alta", "Read Aloud": "Llegir en veu alta",
"Read more →": "Llegeix més →", "Read more →": "Llegeix més →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Raó", "Reason": "Raó",
"Reasoning Effort": "Esforç de raonament", "Reasoning Effort": "Esforç de raonament",
"Reasoning Tags": "Etiqueta de raonament", "Reasoning Tags": "Etiqueta de raonament",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Cercant \"{{searchQuery}}\" al coneixement", "Searching Knowledge for \"{{searchQuery}}\"": "Cercant \"{{searchQuery}}\" al coneixement",
"Searching the web": "Cercant la web...", "Searching the web": "Cercant la web...",
"Searxng Query URL": "URL de consulta de Searxng", "Searxng Query URL": "URL de consulta de Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Consulta l'arxiu readme.md per obtenir instruccions", "See readme.md for instructions": "Consulta l'arxiu readme.md per obtenir instruccions",
"See what's new": "Veure què hi ha de nou", "See what's new": "Veure què hi ha de nou",
"Seed": "Llavor", "Seed": "Llavor",
@ -1492,6 +1509,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada", "Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent", "Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
"Show Files": "",
"Show Formatting Toolbar": "Mostrar la barra de format", "Show Formatting Toolbar": "Mostrar la barra de format",
"Show image preview": "Mostrar la previsualització de la imatge", "Show image preview": "Mostrar la previsualització de la imatge",
"Show Model": "Mostrar el model", "Show Model": "Mostrar el model",
@ -1516,6 +1534,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "sID de l'API de Sougou Search", "Sougou Search API sID": "sID de l'API de Sougou Search",
"Sougou Search API SK": "SK de l'API de Sougou Search", "Sougou Search API SK": "SK de l'API de Sougou Search",
"Source": "Font", "Source": "Font",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "La URL del servidor Tika és obligatòria.", "Tika Server URL required.": "La URL del servidor Tika és obligatòria.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Títol", "Title": "Títol",
"Title Auto-Generation": "Generació automàtica de títol", "Title Auto-Generation": "Generació automàtica de títol",
"Title cannot be an empty string.": "El títol no pot ser una cadena buida.", "Title cannot be an empty string.": "El títol no pot ser una cadena buida.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.", "Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
"Tools Public Sharing": "Compartició pública d'eines", "Tools Public Sharing": "Compartició pública d'eines",
"Tools Sharing": "Compartir les eines", "Tools Sharing": "Compartir les eines",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformadors", "Transformers": "Transformadors",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Cerca a internet al xat", "Web Search in Chat": "Cerca a internet al xat",
"Web Search Query Generation": "Generació de consultes per a la cerca de la web", "Web Search Query Generation": "Generació de consultes per a la cerca de la web",
"Webhook URL": "URL del webhook", "Webhook URL": "URL del webhook",
"Webpage URL": "URL de la pàgina web", "Webpage URLs": "",
"WebUI Settings": "Preferències de WebUI", "WebUI Settings": "Preferències de WebUI",
"WebUI URL": "URL de WebUI", "WebUI URL": "URL de WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI farà peticions a \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI farà peticions a \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "No es pot pujar un arxiu buit.", "You cannot upload an empty file.": "No es pot pujar un arxiu buit.",
"You do not have permission to send messages in this channel.": "No tens permís per enviar missatges en aquest canal.", "You do not have permission to send messages in this channel.": "No tens permís per enviar missatges en aquest canal.",
"You do not have permission to send messages in this thread.": "No tens permís per enviar missatges en aquest fil.", "You do not have permission to send messages in this thread.": "No tens permís per enviar missatges en aquest fil.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "No tens permisos per pujar arxius.", "You do not have permission to upload files.": "No tens permisos per pujar arxius.",
"You have no archived conversations.": "No tens converses arxivades.", "You have no archived conversations.": "No tens converses arxivades.",
"You have shared this chat": "Has compartit aquest xat", "You have shared this chat": "Has compartit aquest xat",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "", "Add User": "",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "", "API keys": "",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Sigurado ka ?", "Are you sure?": "Sigurado ka ?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "Pagkanselar", "Cancel": "Pagkanselar",
"Cannot create an empty note.": "",
"Capabilities": "", "Capabilities": "",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksyon", "Collection": "Koleksyon",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "", "ComfyUI": "",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "", "Create new key": "",
"Create new secret key": "", "Create new secret key": "",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Gihimo ang", "Created at": "Gihimo ang",
@ -429,6 +437,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Deskripsyon", "Description": "Deskripsyon",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "", "Download canceled": "",
"Download Database": "I-download ang database", "Download Database": "I-download ang database",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "", "Enter language codes": "",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "", "Enter Searxng Query URL": "",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard", "Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "", "Google PSE API Key": "",
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Kahayag", "Light": "Kahayag",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ", "LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Bag-ong diskusyon", "New Chat": "Bag-ong diskusyon",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Bag-ong Password", "New Password": "Bag-ong Password",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "", "Read Aloud": "",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "", "Searxng Query URL": "",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo", "See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo",
"See what's new": "Tan-awa unsay bag-o", "See what's new": "Tan-awa unsay bag-o",
"Seed": "Binhi", "Seed": "Binhi",
@ -1491,6 +1508,7 @@
"Show": "Pagpakita", "Show": "Pagpakita",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Tinubdan", "Source": "Tinubdan",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Titulo", "Title": "Titulo",
"Title Auto-Generation": "Awtomatikong paghimo sa titulo", "Title Auto-Generation": "Awtomatikong paghimo sa titulo",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "", "Webhook URL": "",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Mga Setting sa WebUI", "WebUI Settings": "Mga Setting sa WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} dostupných nástrojů", "{{COUNT}} Available Tools": "{{COUNT}} dostupných nástrojů",
"{{COUNT}} characters": "{{COUNT}} znaků", "{{COUNT}} characters": "{{COUNT}} znaků",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} skrytých řádků", "{{COUNT}} hidden lines": "{{COUNT}} skrytých řádků",
"{{COUNT}} Replies": "{{COUNT}} odpovědí", "{{COUNT}} Replies": "{{COUNT}} odpovědí",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "{{COUNT}} slov", "{{COUNT}} words": "{{COUNT}} slov",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Přidat textový obsah", "Add text content": "Přidat textový obsah",
"Add User": "Přidat uživatele", "Add User": "Přidat uživatele",
"Add User Group": "Přidat skupinu uživatelů", "Add User Group": "Přidat skupinu uživatelů",
"Add webpage": "",
"Additional Config": "Dodatečná konfigurace", "Additional Config": "Dodatečná konfigurace",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Další možnosti konfigurace pro marker. Měl by to být řetězec JSON s páry klíč-hodnota. Například: '{\"key\": \"value\"}'. Podporované klíče zahrnují: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Další možnosti konfigurace pro marker. Měl by to být řetězec JSON s páry klíč-hodnota. Například: '{\"key\": \"value\"}'. Podporované klíče zahrnují: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "UI", "AI": "UI",
"All": "Vše", "All": "Vše",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Všechny dokumenty",
"All models deleted successfully": "Všechny modely byly úspěšně smazány", "All models deleted successfully": "Všechny modely byly úspěšně smazány",
"Allow Call": "Povolit volání", "Allow Call": "Povolit volání",
"Allow Chat Controls": "Povolit ovládací prvky chatu", "Allow Chat Controls": "Povolit ovládací prvky chatu",
@ -136,6 +138,7 @@
"API keys": "API klíče", "API keys": "API klíče",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Verze API", "API Version": "Verze API",
"API Version is required": "Verze API je vyžadována", "API Version is required": "Verze API je vyžadována",
"Application DN": "Application DN", "Application DN": "Application DN",
@ -154,6 +157,7 @@
"Are you sure?": "Jste si jisti?", "Are you sure?": "Jste si jisti?",
"Arena Models": "Modely pro arénu", "Arena Models": "Modely pro arénu",
"Artifacts": "Artefakty", "Artifacts": "Artefakty",
"Asc": "",
"Ask": "Zeptat se", "Ask": "Zeptat se",
"Ask a question": "Položit otázku", "Ask a question": "Položit otázku",
"Assistant": "Asistent", "Assistant": "Asistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Funkce volání není podporována při použití webového STT jádra.", "Call feature is not supported when using Web STT engine": "Funkce volání není podporována při použití webového STT jádra.",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Zrušit", "Cancel": "Zrušit",
"Cannot create an empty note.": "",
"Capabilities": "Schopnosti", "Capabilities": "Schopnosti",
"Capture": "Zaznamenat", "Capture": "Zaznamenat",
"Capture Audio": "Nahrát zvuk", "Capture Audio": "Nahrát zvuk",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanál byl úspěšně smazán", "Channel deleted successfully": "Kanál byl úspěšně smazán",
"Channel Name": "Název kanálu", "Channel Name": "Název kanálu",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Kanál byl úspěšně aktualizován", "Channel updated successfully": "Kanál byl úspěšně aktualizován",
"Channels": "Kanály", "Channels": "Kanály",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Sbalit", "Collapse": "Sbalit",
"Collection": "Kolekce", "Collection": "Kolekce",
"Collections": "",
"Color": "Barva", "Color": "Barva",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "API klíč pro ComfyUI", "ComfyUI API Key": "API klíč pro ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Vytvořit model", "Create Model": "Vytvořit model",
"Create new key": "Vytvořit nový klíč", "Create new key": "Vytvořit nový klíč",
"Create new secret key": "Vytvořit nový tajný klíč", "Create new secret key": "Vytvořit nový tajný klíč",
"Create note": "",
"Create Note": "Vytvořit poznámku", "Create Note": "Vytvořit poznámku",
"Create your first note by clicking on the plus button below.": "Vytvořte svou první poznámku kliknutím na tlačítko plus níže.", "Create your first note by clicking on the plus button below.": "Vytvořte svou první poznámku kliknutím na tlačítko plus níže.",
"Created at": "Vytvořeno", "Created at": "Vytvořeno",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Smazáno {{name}}", "Deleted {{name}}": "Smazáno {{name}}",
"Deleted User": "Smazaný uživatel", "Deleted User": "Smazaný uživatel",
"Deployment names are required for Azure OpenAI": "Pro Azure OpenAI jsou vyžadovány názvy nasazení", "Deployment names are required for Azure OpenAI": "Pro Azure OpenAI jsou vyžadovány názvy nasazení",
"Desc": "",
"Describe your knowledge base and objectives": "Popište svou znalostní bázi a cíle", "Describe your knowledge base and objectives": "Popište svou znalostní bázi a cíle",
"Description": "Popis", "Description": "Popis",
"Detect Artifacts Automatically": "Automaticky detekovat artefakty", "Detect Artifacts Automatically": "Automaticky detekovat artefakty",
@ -487,7 +496,6 @@
"Download as SVG": "Stáhnout jako SVG", "Download as SVG": "Stáhnout jako SVG",
"Download canceled": "Stahování zrušeno", "Download canceled": "Stahování zrušeno",
"Download Database": "Stáhnout databázi", "Download Database": "Stáhnout databázi",
"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", "Draw": "Kreslit",
"Drop any files here to upload": "Přetáhněte sem soubory pro nahrání", "Drop any files here to upload": "Přetáhněte sem soubory pro nahrání",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Zadejte API klíč pro Kagi Search", "Enter Kagi Search API Key": "Zadejte API klíč pro Kagi Search",
"Enter Key Behavior": "Zadejte chování klávesy", "Enter Key Behavior": "Zadejte chování klávesy",
"Enter language codes": "Zadejte kódy jazyků", "Enter language codes": "Zadejte kódy jazyků",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Zadejte API klíč pro Mistral", "Enter Mistral API Key": "Zadejte API klíč pro Mistral",
"Enter Model ID": "Zadejte ID modelu", "Enter Model ID": "Zadejte ID modelu",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Zadejte API klíč pro SearchApi", "Enter SearchApi API Key": "Zadejte API klíč pro SearchApi",
"Enter SearchApi Engine": "Zadejte jádro pro SearchApi", "Enter SearchApi Engine": "Zadejte jádro pro SearchApi",
"Enter Searxng Query URL": "Zadejte URL dotazu pro Searxng", "Enter Searxng Query URL": "Zadejte URL dotazu pro Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Zadejte semínko", "Enter Seed": "Zadejte semínko",
"Enter SerpApi API Key": "Zadejte API klíč pro SerpApi", "Enter SerpApi API Key": "Zadejte API klíč pro SerpApi",
"Enter SerpApi Engine": "Zadejte jádro pro SerpApi", "Enter SerpApi Engine": "Zadejte jádro pro SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Nepodařilo se načíst náhled konverzace", "Failed to load chat preview": "Nepodařilo se načíst náhled konverzace",
"Failed to load file content.": "Nepodařilo se načíst obsah souboru.", "Failed to load file content.": "Nepodařilo se načíst obsah souboru.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky", "Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "API klíč pro Google PSE", "Google PSE API Key": "API klíč pro Google PSE",
"Google PSE Engine Id": "ID jádra Google PSE", "Google PSE Engine Id": "ID jádra Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Skupina", "Group": "Skupina",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Skupina byla úspěšně vytvořena", "Group created successfully": "Skupina byla úspěšně vytvořena",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importovat konfiguraci ze souboru JSON", "Import Config from JSON File": "Importovat konfiguraci ze souboru JSON",
"Import From Link": "Importovat z odkazu", "Import From Link": "Importovat z odkazu",
"Import Models": "", "Import Models": "",
"Import Notes": "Importovat poznámky",
"Import Presets": "Importovat předvolby", "Import Presets": "Importovat předvolby",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licence", "License": "Licence",
"Lift List": "Zvýraznit seznam", "Lift List": "Zvýraznit seznam",
"Light": "Světlý", "Light": "Světlý",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Poslouchám...", "Listening...": "Poslouchám...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.", "LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Jméno a ID jsou povinné, prosím vyplňte je", "Name and ID are required, please fill them out": "Jméno a ID jsou povinné, prosím vyplňte je",
"Name your knowledge base": "Pojmenujte svou znalostní bázi", "Name your knowledge base": "Pojmenujte svou znalostní bázi",
"Native": "Nativní", "Native": "Nativní",
"New": "",
"New Button": "Nové tlačítko", "New Button": "Nové tlačítko",
"New Chat": "Nová konverzace", "New Chat": "Nová konverzace",
"New Folder": "Nová složka", "New Folder": "Nová složka",
"New Function": "Nová funkce", "New Function": "Nová funkce",
"New Knowledge": "Nová znalost", "New Knowledge": "Nová znalost",
"New Model": "Nový model", "New Model": "Nový model",
"New Note": "",
"New Password": "Nové heslo", "New Password": "Nové heslo",
"New Prompt": "Nová instrukce", "New Prompt": "Nová instrukce",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Nebyly nalezeny žádné konverzace.", "No chats found.": "Nebyly nalezeny žádné konverzace.",
"No content": "Žádný obsah", "No content": "Žádný obsah",
"No content found": "Nebyl nalezen žádný obsah.", "No content found": "Nebyl nalezen žádný obsah.",
"No content found in file.": "V souboru nebyl nalezen žádný obsah.",
"No content to speak": "Žádný obsah k přečtení.", "No content to speak": "Žádný obsah k přečtení.",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Vzdálenost není k dispozici", "No distance available": "Vzdálenost není k dispozici",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Nebyla nalezena žádná zpětná vazba", "No feedbacks found": "Nebyla nalezena žádná zpětná vazba",
"No file selected": "Nebyl vybrán žádný soubor", "No file selected": "Nebyl vybrán žádný soubor",
"No files in this knowledge base.": "",
"No functions found": "Žádné funkce nenalezeny", "No functions found": "Žádné funkce nenalezeny",
"No groups with access, add a group to grant access": "Žádné skupiny s přístupem, přidejte skupinu pro udělení přístupu", "No groups with access, add a group to grant access": "Žádné skupiny s přístupem, přidejte skupinu pro udělení přístupu",
"No HTML, CSS, or JavaScript content found.": "Nebyl nalezen žádný obsah HTML, CSS ani JavaScriptu.", "No HTML, CSS, or JavaScript content found.": "Nebyl nalezen žádný obsah HTML, CSS ani JavaScriptu.",
"No inference engine with management support found": "Nebyl nalezeno žádné inferenční jádro s podporou správy", "No inference engine with management support found": "Nebyl nalezeno žádné inferenční jádro s podporou správy",
"No knowledge bases found.": "",
"No knowledge found": "Nebyly nalezeny žádné znalosti", "No knowledge found": "Nebyly nalezeny žádné znalosti",
"No memories to clear": "Žádné vzpomínky k vymazání", "No memories to clear": "Žádné vzpomínky k vymazání",
"No model IDs": "Žádná ID modelů", "No model IDs": "Žádná ID modelů",
@ -1309,6 +1323,8 @@
"Read": "Přečíst", "Read": "Přečíst",
"Read Aloud": "Číst nahlas", "Read Aloud": "Číst nahlas",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Důvod", "Reason": "Důvod",
"Reasoning Effort": "reasoning effort", "Reasoning Effort": "reasoning effort",
"Reasoning Tags": "reasoning tags", "Reasoning Tags": "reasoning tags",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Hledám ve znalostech \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Hledám ve znalostech \"{{searchQuery}}\"",
"Searching the web": "Hledám na webu...", "Searching the web": "Hledám na webu...",
"Searxng Query URL": "URL dotazu pro Searxng", "Searxng Query URL": "URL dotazu pro Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Pokyny naleznete v souboru readme.md.", "See readme.md for instructions": "Pokyny naleznete v souboru readme.md.",
"See what's new": "Podívejte se, co je nového", "See what's new": "Podívejte se, co je nového",
"Seed": "seed", "Seed": "seed",
@ -1493,6 +1510,7 @@
"Show": "Zobrazit", "Show": "Zobrazit",
"Show \"What's New\" modal on login": "Zobrazit okno \"Co je nového\" při přihlášení", "Show \"What's New\" modal on login": "Zobrazit okno \"Co je nového\" při přihlášení",
"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvné vrstvě čekajícího účtu", "Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvné vrstvě čekajícího účtu",
"Show Files": "",
"Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování", "Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování",
"Show image preview": "Zobrazit náhled obrázku", "Show image preview": "Zobrazit náhled obrázku",
"Show Model": "Zobrazit model", "Show Model": "Zobrazit model",
@ -1517,6 +1535,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "sID API pro Sougou Search", "Sougou Search API sID": "sID API pro Sougou Search",
"Sougou Search API SK": "SK API pro Sougou Search", "Sougou Search API SK": "SK API pro Sougou Search",
"Source": "Zdroj", "Source": "Zdroj",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Je vyžadována URL serveru Tika.", "Tika Server URL required.": "Je vyžadována URL serveru Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Název", "Title": "Název",
"Title Auto-Generation": "Automatické generování názvu", "Title Auto-Generation": "Automatické generování názvu",
"Title cannot be an empty string.": "Název nemůže být prázdný řetězec.", "Title cannot be an empty string.": "Název nemůže být prázdný řetězec.",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spouštění libovolného kódu.", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spouštění libovolného kódu.",
"Tools Public Sharing": "Veřejné sdílení nástrojů", "Tools Public Sharing": "Veřejné sdílení nástrojů",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K pro přehodnocení", "Top K Reranker": "Top K pro přehodnocení",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "Vyhledávání na webu v konverzaci", "Web Search in Chat": "Vyhledávání na webu v konverzaci",
"Web Search Query Generation": "Generování dotazu pro webové vyhledávání", "Web Search Query Generation": "Generování dotazu pro webové vyhledávání",
"Webhook URL": "URL webhooku", "Webhook URL": "URL webhooku",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Nastavení WebUI", "WebUI Settings": "Nastavení WebUI",
"WebUI URL": "URL WebUI", "WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI bude odesílat požadavky na \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI bude odesílat požadavky na \"{{url}}\"",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.", "You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Nemáte oprávnění nahrávat soubory.", "You do not have permission to upload files.": "Nemáte oprávnění nahrávat soubory.",
"You have no archived conversations.": "Nemáte žádné archivované konverzace.", "You have no archived conversations.": "Nemáte žádné archivované konverzace.",
"You have shared this chat": "Tuto konverzaci jste sdíleli.", "You have shared this chat": "Tuto konverzaci jste sdíleli.",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige værktøjer", "{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige værktøjer",
"{{COUNT}} characters": "{{COUNT}} tegn", "{{COUNT}} characters": "{{COUNT}} tegn",
"{{COUNT}} extracted lines": "{{COUNT}} linjer udtrukket", "{{COUNT}} extracted lines": "{{COUNT}} linjer udtrukket",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer", "{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer",
"{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} kilder", "{{COUNT}} Sources": "{{COUNT}} kilder",
"{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}} words": "{{COUNT}} ord",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} klokken {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} klokken {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Tilføj tekst", "Add text content": "Tilføj tekst",
"Add User": "Tilføj bruger", "Add User": "Tilføj bruger",
"Add User Group": "Tilføj Brugergruppe", "Add User Group": "Tilføj Brugergruppe",
"Add webpage": "",
"Additional Config": "Yderligere konfiguration", "Additional Config": "Yderligere konfiguration",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Yderligere konfigurationsmuligheder for Marker. Dette skal være en JSON streng med key-value pairs. For eksempel, '{\"key\": \"value\"}'. Tilladte keys omfatter: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Yderligere konfigurationsmuligheder for Marker. Dette skal være en JSON streng med key-value pairs. For eksempel, '{\"key\": \"value\"}'. Tilladte keys omfatter: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Yderligere parametre", "Additional Parameters": "Yderligere parametre",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "Alle", "All": "Alle",
"All chats have been unarchived.": "Alle chatte er blevet aktive", "All chats have been unarchived.": "Alle chatte er blevet aktive",
"All Documents": "Alle dokumenter",
"All models deleted successfully": "Alle modeller slettet uden fejl", "All models deleted successfully": "Alle modeller slettet uden fejl",
"Allow Call": "Tillad kald", "Allow Call": "Tillad kald",
"Allow Chat Controls": "Tillad kontrol af chats", "Allow Chat Controls": "Tillad kontrol af chats",
@ -136,6 +138,7 @@
"API keys": "API nøgler", "API keys": "API nøgler",
"API Keys": "API nøgler", "API Keys": "API nøgler",
"API Mode": "API tilstand", "API Mode": "API tilstand",
"API Timeout": "",
"API Version": "API Version", "API Version": "API Version",
"API Version is required": "API version er påkrævet", "API Version is required": "API version er påkrævet",
"Application DN": "Application DN", "Application DN": "Application DN",
@ -154,6 +157,7 @@
"Are you sure?": "Er du sikker?", "Are you sure?": "Er du sikker?",
"Arena Models": "Arena Modeller", "Arena Models": "Arena Modeller",
"Artifacts": "Artifakter", "Artifacts": "Artifakter",
"Asc": "",
"Ask": "Spørg", "Ask": "Spørg",
"Ask a question": "Stil et spørgsmål", "Ask a question": "Stil et spørgsmål",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine", "Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Afbryd", "Cancel": "Afbryd",
"Cannot create an empty note.": "",
"Capabilities": "Funktioner", "Capabilities": "Funktioner",
"Capture": "Tag billede eller screendump", "Capture": "Tag billede eller screendump",
"Capture Audio": "Optag lyd", "Capture Audio": "Optag lyd",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanal slettet", "Channel deleted successfully": "Kanal slettet",
"Channel Name": "Kanalnavn", "Channel Name": "Kanalnavn",
"Channel name cannot be empty.": "Kanalnavn må ikke være tom.", "Channel name cannot be empty.": "Kanalnavn må ikke være tom.",
"Channel name must be less than 128 characters": "",
"Channel Type": "Kanaltype", "Channel Type": "Kanaltype",
"Channel updated successfully": "Kanal redigeret", "Channel updated successfully": "Kanal redigeret",
"Channels": "Kanaler", "Channels": "Kanaler",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Samarbejdskanal hvor folk tilmelder sig som medlemmer", "Collaboration channel where people join as members": "Samarbejdskanal hvor folk tilmelder sig som medlemmer",
"Collapse": "Kollapse", "Collapse": "Kollapse",
"Collection": "Samling", "Collection": "Samling",
"Collections": "",
"Color": "Farve", "Color": "Farve",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API Key", "ComfyUI API Key": "ComfyUI API Key",
@ -365,6 +372,7 @@
"Create Model": "Opret model", "Create Model": "Opret model",
"Create new key": "Opret en ny nøgle", "Create new key": "Opret en ny nøgle",
"Create new secret key": "Opret en ny hemmelig nøgle", "Create new secret key": "Opret en ny hemmelig nøgle",
"Create note": "",
"Create Note": "Opret note", "Create Note": "Opret note",
"Create your first note by clicking on the plus button below.": "Opret din første note ved at klikke på plus knappen nedenfor.", "Create your first note by clicking on the plus button below.": "Opret din første note ved at klikke på plus knappen nedenfor.",
"Created at": "Oprettet", "Created at": "Oprettet",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Slettede {{name}}", "Deleted {{name}}": "Slettede {{name}}",
"Deleted User": "Slettede bruger", "Deleted User": "Slettede bruger",
"Deployment names are required for Azure OpenAI": "Deployment-navne er påkrævet for Azure OpenAI", "Deployment names are required for Azure OpenAI": "Deployment-navne er påkrævet for Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Beskriv din videnbase og mål", "Describe your knowledge base and objectives": "Beskriv din videnbase og mål",
"Description": "Beskrivelse", "Description": "Beskrivelse",
"Detect Artifacts Automatically": "Genkend artifakter automatisk", "Detect Artifacts Automatically": "Genkend artifakter automatisk",
@ -487,7 +496,6 @@
"Download as SVG": "Download som SVG", "Download as SVG": "Download som SVG",
"Download canceled": "Download afbrudt", "Download canceled": "Download afbrudt",
"Download Database": "Download database", "Download Database": "Download database",
"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", "Draw": "Tegn",
"Drop any files here to upload": "Drop nogen filer her for at uploade", "Drop any files here to upload": "Drop nogen filer her for at uploade",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Indtast Kagi Search API nøgle", "Enter Kagi Search API Key": "Indtast Kagi Search API nøgle",
"Enter Key Behavior": "Indtast taste opførsel", "Enter Key Behavior": "Indtast taste opførsel",
"Enter language codes": "Indtast sprogkoder", "Enter language codes": "Indtast sprogkoder",
"Enter MinerU API Key": "Indtast MinerI API nøgle",
"Enter Mistral API Base URL": "Indtast Mistral API base URL", "Enter Mistral API Base URL": "Indtast Mistral API base URL",
"Enter Mistral API Key": "Indtast Mistral API nøgle", "Enter Mistral API Key": "Indtast Mistral API nøgle",
"Enter Model ID": "Indtast model-ID", "Enter Model ID": "Indtast model-ID",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Indtast SearchApi API-nøgle", "Enter SearchApi API Key": "Indtast SearchApi API-nøgle",
"Enter SearchApi Engine": "Indtast SearchApi-engine", "Enter SearchApi Engine": "Indtast SearchApi-engine",
"Enter Searxng Query URL": "Indtast Searxng-forespørgsels-URL", "Enter Searxng Query URL": "Indtast Searxng-forespørgsels-URL",
"Enter Searxng search language": "",
"Enter Seed": "Indtast seed", "Enter Seed": "Indtast seed",
"Enter SerpApi API Key": "Indtast SerpApi API-nøgle", "Enter SerpApi API Key": "Indtast SerpApi API-nøgle",
"Enter SerpApi Engine": "Indtast SerpApi-engine", "Enter SerpApi Engine": "Indtast SerpApi-engine",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Kunne ikke indlæse chat forhåndsvisning", "Failed to load chat preview": "Kunne ikke indlæse chat forhåndsvisning",
"Failed to load file content.": "Kunne ikke indlæse filindhold.", "Failed to load file content.": "Kunne ikke indlæse filindhold.",
"Failed to move chat": "Kunne ikke flytte chat", "Failed to move chat": "Kunne ikke flytte chat",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen", "Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
"Failed to remove member": "Kunne ikke fjerne medlem", "Failed to remove member": "Kunne ikke fjerne medlem",
"Failed to render diagram": "Kunne ikke rendere diagram", "Failed to render diagram": "Kunne ikke rendere diagram",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API-nøgle", "Google PSE API Key": "Google PSE API-nøgle",
"Google PSE Engine Id": "Google PSE Engine-ID", "Google PSE Engine Id": "Google PSE Engine-ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "Gruppekanal", "Group Channel": "Gruppekanal",
"Group created successfully": "Gruppe oprettet.", "Group created successfully": "Gruppe oprettet.",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importer konfiguration fra JSON-fil", "Import Config from JSON File": "Importer konfiguration fra JSON-fil",
"Import From Link": "Importer fra et link", "Import From Link": "Importer fra et link",
"Import Models": "Importer modeller", "Import Models": "Importer modeller",
"Import Notes": "Importer noter",
"Import Presets": "Importer Presets", "Import Presets": "Importer Presets",
"Import Prompts": "Importer prompter", "Import Prompts": "Importer prompter",
"Import successful": "Importeret", "Import successful": "Importeret",
@ -989,6 +998,8 @@
"License": "Licens", "License": "Licens",
"Lift List": "Løft liste", "Lift List": "Løft liste",
"Light": "Lys", "Light": "Lys",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Lytter...", "Listening...": "Lytter...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.", "LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Navn og ID er påkrævet, venligst udfyld dem", "Name and ID are required, please fill them out": "Navn og ID er påkrævet, venligst udfyld dem",
"Name your knowledge base": "Navngiv din vidensbase", "Name your knowledge base": "Navngiv din vidensbase",
"Native": "Indbygget", "Native": "Indbygget",
"New": "",
"New Button": "Ny knap", "New Button": "Ny knap",
"New Chat": "Ny chat", "New Chat": "Ny chat",
"New Folder": "Ny mappe", "New Folder": "Ny mappe",
"New Function": "Ny funktion", "New Function": "Ny funktion",
"New Knowledge": "Ny viden", "New Knowledge": "Ny viden",
"New Model": "Ny model", "New Model": "Ny model",
"New Note": "",
"New Password": "Ny adgangskode", "New Password": "Ny adgangskode",
"New Prompt": "Ny prompt", "New Prompt": "Ny prompt",
"New Temporary Chat": "Ny midlertidig chat", "New Temporary Chat": "Ny midlertidig chat",
@ -1112,17 +1125,18 @@
"No chats found.": "Ingen besked-tråde fundet.", "No chats found.": "Ingen besked-tråde fundet.",
"No content": "Intet indhold", "No content": "Intet indhold",
"No content found": "Intet indhold fundet", "No content found": "Intet indhold fundet",
"No content found in file.": "Intet indhold fundet i fil.",
"No content to speak": "Intet indhold at tale", "No content to speak": "Intet indhold at tale",
"No conversation to save": "Ingen samtale at gemme", "No conversation to save": "Ingen samtale at gemme",
"No distance available": "Ingen afstand tilgængelig", "No distance available": "Ingen afstand tilgængelig",
"No expiration can pose security risks.": "Ingen udløbsdato kan udgøre en sikkerhedsrisiko.", "No expiration can pose security risks.": "Ingen udløbsdato kan udgøre en sikkerhedsrisiko.",
"No feedbacks found": "Ingen feedback fundet", "No feedbacks found": "Ingen feedback fundet",
"No file selected": "Ingen fil valgt", "No file selected": "Ingen fil valgt",
"No files in this knowledge base.": "",
"No functions found": "Ingen funktioner fundet", "No functions found": "Ingen funktioner fundet",
"No groups with access, add a group to grant access": "Ingen grupper med adgang, tilføj en gruppe for at give adgang", "No groups with access, add a group to grant access": "Ingen grupper med adgang, tilføj en gruppe for at give adgang",
"No HTML, CSS, or JavaScript content found.": "Intet HTML-, CSS- eller JavaScript-indhold fundet.", "No HTML, CSS, or JavaScript content found.": "Intet HTML-, CSS- eller JavaScript-indhold fundet.",
"No inference engine with management support found": "Ingen inference-engine med støtte til administration fundet", "No inference engine with management support found": "Ingen inference-engine med støtte til administration fundet",
"No knowledge bases found.": "",
"No knowledge found": "Ingen viden fundet", "No knowledge found": "Ingen viden fundet",
"No memories to clear": "Ingen hukommelser at ryde", "No memories to clear": "Ingen hukommelser at ryde",
"No model IDs": "Ingen model-ID'er", "No model IDs": "Ingen model-ID'er",
@ -1309,6 +1323,8 @@
"Read": "Læs", "Read": "Læs",
"Read Aloud": "Læs højt", "Read Aloud": "Læs højt",
"Read more →": "Læs mere →", "Read more →": "Læs mere →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Årsag", "Reason": "Årsag",
"Reasoning Effort": "Ræsonnements indsats", "Reasoning Effort": "Ræsonnements indsats",
"Reasoning Tags": "Ræsonneringstags", "Reasoning Tags": "Ræsonneringstags",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Søger i viden efter \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Søger i viden efter \"{{searchQuery}}\"",
"Searching the web": "Søger på internettet...", "Searching the web": "Søger på internettet...",
"Searxng Query URL": "Searxng forespørgsels-URL", "Searxng Query URL": "Searxng forespørgsels-URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Se readme.md for instruktioner", "See readme.md for instructions": "Se readme.md for instruktioner",
"See what's new": "Se, hvad der er nyt", "See what's new": "Se, hvad der er nyt",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Vis", "Show": "Vis",
"Show \"What's New\" modal on login": "Vis \"Hvad er nyt\" modal ved login", "Show \"What's New\" modal on login": "Vis \"Hvad er nyt\" modal ved login",
"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto", "Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
"Show Files": "",
"Show Formatting Toolbar": "Vis formateringsværktøjslinjen", "Show Formatting Toolbar": "Vis formateringsværktøjslinjen",
"Show image preview": "Vis billedforhåndsvisning", "Show image preview": "Vis billedforhåndsvisning",
"Show Model": "Vis model", "Show Model": "Vis model",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Kilde", "Source": "Kilde",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika-server-URL påkrævet.", "Tika Server URL required.": "Tika-server-URL påkrævet.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titel", "Title": "Titel",
"Title Auto-Generation": "Automatisk titelgenerering", "Title Auto-Generation": "Automatisk titelgenerering",
"Title cannot be an empty string.": "Titel kan ikke være en tom streng.", "Title cannot be an empty string.": "Titel kan ikke være en tom streng.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.", "Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
"Tools Public Sharing": "Værktøjer Offentlig Deling", "Tools Public Sharing": "Værktøjer Offentlig Deling",
"Tools Sharing": "Værktøjsdeling", "Tools Sharing": "Værktøjsdeling",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K omarrangering", "Top K Reranker": "Top K omarrangering",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Websøgning i chat", "Web Search in Chat": "Websøgning i chat",
"Web Search Query Generation": "Web søgeforespørgsel generering", "Web Search Query Generation": "Web søgeforespørgsel generering",
"Webhook URL": "Webhook-URL", "Webhook URL": "Webhook-URL",
"Webpage URL": "Webside URL", "Webpage URLs": "",
"WebUI Settings": "WebUI-indstillinger", "WebUI Settings": "WebUI-indstillinger",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI vil lave forespørgsler til \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI vil lave forespørgsler til \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Du kan ikke uploade en tom fil", "You cannot upload an empty file.": "Du kan ikke uploade en tom fil",
"You do not have permission to send messages in this channel.": "Du har ikke tilladelse til at sende beskeder i denne kanal.", "You do not have permission to send messages in this channel.": "Du har ikke tilladelse til at sende beskeder i denne kanal.",
"You do not have permission to send messages in this thread.": "Du har ikke tilladelse til at sende beskeder i denne tråd.", "You do not have permission to send messages in this thread.": "Du har ikke tilladelse til at sende beskeder i denne tråd.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Du har ikke rettighed til at uploade filer.", "You do not have permission to upload files.": "Du har ikke rettighed til at uploade filer.",
"You have no archived conversations.": "Du har ingen arkiverede samtaler.", "You have no archived conversations.": "Du har ingen arkiverede samtaler.",
"You have shared this chat": "Du har delt denne chat", "You have shared this chat": "Du har delt denne chat",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} verfügbare Werkzeuge", "{{COUNT}} Available Tools": "{{COUNT}} verfügbare Werkzeuge",
"{{COUNT}} characters": "{{COUNT}} Zeichen", "{{COUNT}} characters": "{{COUNT}} Zeichen",
"{{COUNT}} extracted lines": "{{COUNT}} extrahierte Zeilen", "{{COUNT}} extracted lines": "{{COUNT}} extrahierte Zeilen",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} ausgeblendete Zeilen", "{{COUNT}} hidden lines": "{{COUNT}} ausgeblendete Zeilen",
"{{COUNT}} Replies": "{{COUNT}} Antworten", "{{COUNT}} Replies": "{{COUNT}} Antworten",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Quellen", "{{COUNT}} Sources": "{{COUNT}} Quellen",
"{{COUNT}} words": "{{COUNT}} Wörter", "{{COUNT}} words": "{{COUNT}} Wörter",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} um {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} um {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Textinhalt hinzufügen", "Add text content": "Textinhalt hinzufügen",
"Add User": "Benutzer hinzufügen", "Add User": "Benutzer hinzufügen",
"Add User Group": "Benutzergruppe hinzufügen", "Add User Group": "Benutzergruppe hinzufügen",
"Add webpage": "",
"Additional Config": "Zusätzliche Konfiguration", "Additional Config": "Zusätzliche Konfiguration",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Zusätzliche Konfigurationsoptionen für Marker. Dies sollte ein JSON-String mit Schlüssel-Wert-Paaren sein. Zum Beispiel '{\"key\": \"value\"}'. Unterstützte Schlüssel sind: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Zusätzliche Konfigurationsoptionen für Marker. Dies sollte ein JSON-String mit Schlüssel-Wert-Paaren sein. Zum Beispiel '{\"key\": \"value\"}'. Unterstützte Schlüssel sind: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Weitere Parameter", "Additional Parameters": "Weitere Parameter",
@ -84,7 +87,6 @@
"AI": "KI", "AI": "KI",
"All": "Alle", "All": "Alle",
"All chats have been unarchived.": "Alle Chats wurden aus dem Archiv wiederhergestellt.", "All chats have been unarchived.": "Alle Chats wurden aus dem Archiv wiederhergestellt.",
"All Documents": "Alle Dokumente",
"All models deleted successfully": "Alle Modelle erfolgreich gelöscht", "All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
"Allow Call": "Anruffunktion erlauben", "Allow Call": "Anruffunktion erlauben",
"Allow Chat Controls": "Chat-Steuerung erlauben", "Allow Chat Controls": "Chat-Steuerung erlauben",
@ -136,6 +138,7 @@
"API keys": "API-Schlüssel", "API keys": "API-Schlüssel",
"API Keys": "API-Schlüssel", "API Keys": "API-Schlüssel",
"API Mode": "API-Modus", "API Mode": "API-Modus",
"API Timeout": "",
"API Version": "API-Version", "API Version": "API-Version",
"API Version is required": "API-Version ist erforderlich", "API Version is required": "API-Version ist erforderlich",
"Application DN": "Anwendungs-DN", "Application DN": "Anwendungs-DN",
@ -154,6 +157,7 @@
"Are you sure?": "Sind Sie sicher?", "Are you sure?": "Sind Sie sicher?",
"Arena Models": "Arena-Modelle", "Arena Models": "Arena-Modelle",
"Artifacts": "Artefakte", "Artifacts": "Artefakte",
"Asc": "",
"Ask": "Fragen", "Ask": "Fragen",
"Ask a question": "Stellen Sie eine Frage", "Ask a question": "Stellen Sie eine Frage",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird bei Verwendung der Web-STT-Engine nicht unterstützt.", "Call feature is not supported when using Web STT engine": "Die Anruffunktion wird bei Verwendung der Web-STT-Engine nicht unterstützt.",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Abbrechen", "Cancel": "Abbrechen",
"Cannot create an empty note.": "",
"Capabilities": "Fähigkeiten", "Capabilities": "Fähigkeiten",
"Capture": "Aufnahme", "Capture": "Aufnahme",
"Capture Audio": "Audio aufnehmen", "Capture Audio": "Audio aufnehmen",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanal erfolgreich gelöscht", "Channel deleted successfully": "Kanal erfolgreich gelöscht",
"Channel Name": "Kanalname", "Channel Name": "Kanalname",
"Channel name cannot be empty.": "Kanalname darf nicht leer sein.", "Channel name cannot be empty.": "Kanalname darf nicht leer sein.",
"Channel name must be less than 128 characters": "",
"Channel Type": "Kanaltyp", "Channel Type": "Kanaltyp",
"Channel updated successfully": "Kanal erfolgreich aktualisiert", "Channel updated successfully": "Kanal erfolgreich aktualisiert",
"Channels": "Kanäle", "Channels": "Kanäle",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Kollaborationskanal, dem Benutzer beitreten können", "Collaboration channel where people join as members": "Kollaborationskanal, dem Benutzer beitreten können",
"Collapse": "Einklappen", "Collapse": "Einklappen",
"Collection": "Sammlung", "Collection": "Sammlung",
"Collections": "",
"Color": "Farbe", "Color": "Farbe",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API-Schlüssel", "ComfyUI API Key": "ComfyUI API-Schlüssel",
@ -365,6 +372,7 @@
"Create Model": "Modell erstellen", "Create Model": "Modell erstellen",
"Create new key": "Neuen Schlüssel erstellen", "Create new key": "Neuen Schlüssel erstellen",
"Create new secret key": "Neuen Geheimschlüssel erstellen", "Create new secret key": "Neuen Geheimschlüssel erstellen",
"Create note": "",
"Create Note": "Notiz erstellen", "Create Note": "Notiz erstellen",
"Create your first note by clicking on the plus button below.": "Erstellen Sie Ihre erste Notiz durch Klick auf das Plus-Symbol unten.", "Create your first note by clicking on the plus button below.": "Erstellen Sie Ihre erste Notiz durch Klick auf das Plus-Symbol unten.",
"Created at": "Erstellt am", "Created at": "Erstellt am",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} gelöscht", "Deleted {{name}}": "{{name}} gelöscht",
"Deleted User": "Gelöschter Benutzer", "Deleted User": "Gelöschter Benutzer",
"Deployment names are required for Azure OpenAI": "Deployment-Namen sind für Azure OpenAI erforderlich", "Deployment names are required for Azure OpenAI": "Deployment-Namen sind für Azure OpenAI erforderlich",
"Desc": "",
"Describe your knowledge base and objectives": "Beschreiben Sie Ihren Wissensspeicher und Ziele", "Describe your knowledge base and objectives": "Beschreiben Sie Ihren Wissensspeicher und Ziele",
"Description": "Beschreibung", "Description": "Beschreibung",
"Detect Artifacts Automatically": "Artefakte automatisch erkennen", "Detect Artifacts Automatically": "Artefakte automatisch erkennen",
@ -487,7 +496,6 @@
"Download as SVG": "Als SVG herunterladen", "Download as SVG": "Als SVG herunterladen",
"Download canceled": "Download abgebrochen", "Download canceled": "Download abgebrochen",
"Download Database": "Datenbank herunterladen", "Download Database": "Datenbank herunterladen",
"Drag and drop a file to upload or select a file to view": "Datei hineinziehen oder zum Anzeigen auswählen",
"Draw": "Zeichnen", "Draw": "Zeichnen",
"Drop any files here to upload": "Dateien zum Hochladen hier ablegen", "Drop any files here to upload": "Dateien zum Hochladen hier ablegen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s', '10m'. Gültig: 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s', '10m'. Gültig: 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search API-Schlüssel eingeben", "Enter Kagi Search API Key": "Kagi Search API-Schlüssel eingeben",
"Enter Key Behavior": "Eingabetasten-Verhalten", "Enter Key Behavior": "Eingabetasten-Verhalten",
"Enter language codes": "Sprachcodes eingeben", "Enter language codes": "Sprachcodes eingeben",
"Enter MinerU API Key": "MinerU API-Schlüssel eingeben",
"Enter Mistral API Base URL": "Mistral API Basis-URL eingeben", "Enter Mistral API Base URL": "Mistral API Basis-URL eingeben",
"Enter Mistral API Key": "Mistral API-Schlüssel eingeben", "Enter Mistral API Key": "Mistral API-Schlüssel eingeben",
"Enter Model ID": "Modell-ID eingeben", "Enter Model ID": "Modell-ID eingeben",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API-Schlüssel eingeben", "Enter SearchApi API Key": "SearchApi API-Schlüssel eingeben",
"Enter SearchApi Engine": "SearchApi Engine eingeben", "Enter SearchApi Engine": "SearchApi Engine eingeben",
"Enter Searxng Query URL": "Searxng Query-URL eingeben", "Enter Searxng Query URL": "Searxng Query-URL eingeben",
"Enter Searxng search language": "",
"Enter Seed": "Seed eingeben", "Enter Seed": "Seed eingeben",
"Enter SerpApi API Key": "SerpApi API-Schlüssel eingeben", "Enter SerpApi API Key": "SerpApi API-Schlüssel eingeben",
"Enter SerpApi Engine": "SerpApi Engine eingeben", "Enter SerpApi Engine": "SerpApi Engine eingeben",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Chat-Vorschau konnte nicht geladen werden", "Failed to load chat preview": "Chat-Vorschau konnte nicht geladen werden",
"Failed to load file content.": "Dateiinhalt konnte nicht geladen werden.", "Failed to load file content.": "Dateiinhalt konnte nicht geladen werden.",
"Failed to move chat": "Chat konnte nicht verschoben werden", "Failed to move chat": "Chat konnte nicht verschoben werden",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Zwischenablage konnte nicht gelesen werden", "Failed to read clipboard contents": "Zwischenablage konnte nicht gelesen werden",
"Failed to remove member": "Mitglied konnte nicht entfernt werden", "Failed to remove member": "Mitglied konnte nicht entfernt werden",
"Failed to render diagram": "Diagramm konnte nicht gerendert werden", "Failed to render diagram": "Diagramm konnte nicht gerendert werden",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API-Schlüssel", "Google PSE API Key": "Google PSE API-Schlüssel",
"Google PSE Engine Id": "Google PSE Engine-ID", "Google PSE Engine Id": "Google PSE Engine-ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "Gruppenkanal", "Group Channel": "Gruppenkanal",
"Group created successfully": "Gruppe erfolgreich erstellt", "Group created successfully": "Gruppe erfolgreich erstellt",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Konfiguration aus JSON importieren", "Import Config from JSON File": "Konfiguration aus JSON importieren",
"Import From Link": "Von Link importieren", "Import From Link": "Von Link importieren",
"Import Models": "Modelle importieren", "Import Models": "Modelle importieren",
"Import Notes": "Notizen importieren",
"Import Presets": "Vorlagen importieren", "Import Presets": "Vorlagen importieren",
"Import Prompts": "Prompts importieren", "Import Prompts": "Prompts importieren",
"Import successful": "Import erfolgreich", "Import successful": "Import erfolgreich",
@ -989,6 +998,8 @@
"License": "Lizenz", "License": "Lizenz",
"Lift List": "Liste anheben", "Lift List": "Liste anheben",
"Light": "Hell", "Light": "Hell",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Höre zu...", "Listening...": "Höre zu...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "KI-Modelle können Fehler machen. Überprüfen Sie wichtige Informationen.", "LLMs can make mistakes. Verify important information.": "KI-Modelle können Fehler machen. Überprüfen Sie wichtige Informationen.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Name und ID sind erforderlich, bitte füllen Sie diese aus", "Name and ID are required, please fill them out": "Name und ID sind erforderlich, bitte füllen Sie diese aus",
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher", "Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
"Native": "Nativ", "Native": "Nativ",
"New": "",
"New Button": "Neuer Button", "New Button": "Neuer Button",
"New Chat": "Neuer Chat", "New Chat": "Neuer Chat",
"New Folder": "Neuer Ordner", "New Folder": "Neuer Ordner",
"New Function": "Neue Funktion", "New Function": "Neue Funktion",
"New Knowledge": "Neues Wissen", "New Knowledge": "Neues Wissen",
"New Model": "Neues Modell", "New Model": "Neues Modell",
"New Note": "",
"New Password": "Neues Passwort", "New Password": "Neues Passwort",
"New Prompt": "Neuer Prompt", "New Prompt": "Neuer Prompt",
"New Temporary Chat": "Neuer temporärer Chat", "New Temporary Chat": "Neuer temporärer Chat",
@ -1112,17 +1125,18 @@
"No chats found.": "Keine Chats gefunden.", "No chats found.": "Keine Chats gefunden.",
"No content": "Kein Inhalt", "No content": "Kein Inhalt",
"No content found": "Kein Inhalt gefunden", "No content found": "Kein Inhalt gefunden",
"No content found in file.": "Kein Inhalt in der Datei gefunden.",
"No content to speak": "Kein Inhalt zum Vorlesen", "No content to speak": "Kein Inhalt zum Vorlesen",
"No conversation to save": "Keine Unterhaltung zum Speichern vorhanden", "No conversation to save": "Keine Unterhaltung zum Speichern vorhanden",
"No distance available": "Keine Distanz verfügbar", "No distance available": "Keine Distanz verfügbar",
"No expiration can pose security risks.": "Ein fehlendes Ablaufdatum kann Sicherheitsrisiken bergen.", "No expiration can pose security risks.": "Ein fehlendes Ablaufdatum kann Sicherheitsrisiken bergen.",
"No feedbacks found": "Kein Feedback gefunden", "No feedbacks found": "Kein Feedback gefunden",
"No file selected": "Keine Datei ausgewählt", "No file selected": "Keine Datei ausgewählt",
"No files in this knowledge base.": "",
"No functions found": "Keine Funktionen gefunden", "No functions found": "Keine Funktionen gefunden",
"No groups with access, add a group to grant access": "Keine Gruppen mit Zugriff; fügen Sie eine Gruppe hinzu, um Zugriff zu gewähren", "No groups with access, add a group to grant access": "Keine Gruppen mit Zugriff; fügen Sie eine Gruppe hinzu, um Zugriff zu gewähren",
"No HTML, CSS, or JavaScript content found.": "Keine HTML-, CSS- oder JavaScript-Inhalte gefunden.", "No HTML, CSS, or JavaScript content found.": "Keine HTML-, CSS- oder JavaScript-Inhalte gefunden.",
"No inference engine with management support found": "Keine Inferenz-Engine mit Verwaltungsunterstützung gefunden", "No inference engine with management support found": "Keine Inferenz-Engine mit Verwaltungsunterstützung gefunden",
"No knowledge bases found.": "",
"No knowledge found": "Kein Wissen gefunden", "No knowledge found": "Kein Wissen gefunden",
"No memories to clear": "Keine Erinnerungen zum Löschen", "No memories to clear": "Keine Erinnerungen zum Löschen",
"No model IDs": "Keine Modell-IDs", "No model IDs": "Keine Modell-IDs",
@ -1309,6 +1323,8 @@
"Read": "Lesen", "Read": "Lesen",
"Read Aloud": "Vorlesen", "Read Aloud": "Vorlesen",
"Read more →": "Mehr lesen →", "Read more →": "Mehr lesen →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Nachdenken", "Reason": "Nachdenken",
"Reasoning Effort": "Reasoning Effort", "Reasoning Effort": "Reasoning Effort",
"Reasoning Tags": "Reasoning Tags", "Reasoning Tags": "Reasoning Tags",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Suche im Wissen nach \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Suche im Wissen nach \"{{searchQuery}}\"",
"Searching the web": "Durchsuche das Web...", "Searching the web": "Durchsuche das Web...",
"Searxng Query URL": "Searxng-Abfrage-URL", "Searxng Query URL": "Searxng-Abfrage-URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Siehe readme.md für Anweisungen", "See readme.md for instructions": "Siehe readme.md für Anweisungen",
"See what's new": "Entdecken Sie, was neu ist", "See what's new": "Entdecken Sie, was neu ist",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Anzeigen", "Show": "Anzeigen",
"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Fenster beim Anmelden anzeigen", "Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Fenster beim Anmelden anzeigen",
"Show Admin Details in Account Pending Overlay": "Admin-Details im 'Konto ausstehend'-Overlay anzeigen", "Show Admin Details in Account Pending Overlay": "Admin-Details im 'Konto ausstehend'-Overlay anzeigen",
"Show Files": "",
"Show Formatting Toolbar": "Formatierungsleiste anzeigen", "Show Formatting Toolbar": "Formatierungsleiste anzeigen",
"Show image preview": "Bildvorschau anzeigen", "Show image preview": "Bildvorschau anzeigen",
"Show Model": "Modell anzeigen", "Show Model": "Modell anzeigen",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Quelle", "Source": "Quelle",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika-Server-URL erforderlich.", "Tika Server URL required.": "Tika-Server-URL erforderlich.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titel", "Title": "Titel",
"Title Auto-Generation": "Titel automatisch generieren", "Title Auto-Generation": "Titel automatisch generieren",
"Title cannot be an empty string.": "Titel darf nicht leer sein.", "Title cannot be an empty string.": "Titel darf nicht leer sein.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionsaufrufsystem, das die Ausführung beliebigen Codes ermöglicht.", "Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionsaufrufsystem, das die Ausführung beliebigen Codes ermöglicht.",
"Tools Public Sharing": "Öffentliche Freigabe von Werkzeugen", "Tools Public Sharing": "Öffentliche Freigabe von Werkzeugen",
"Tools Sharing": "Werkzeuge teilen", "Tools Sharing": "Werkzeuge teilen",
"Top": "",
"Top K": "Top-K", "Top K": "Top-K",
"Top K Reranker": "Top-K Reranker", "Top K Reranker": "Top-K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Websuche im Chat", "Web Search in Chat": "Websuche im Chat",
"Web Search Query Generation": "Suchanfragen-Generierung", "Web Search Query Generation": "Suchanfragen-Generierung",
"Webhook URL": "Webhook-URL", "Webhook URL": "Webhook-URL",
"Webpage URL": "Webseiten-URL", "Webpage URLs": "",
"WebUI Settings": "WebUI-Einstellungen", "WebUI Settings": "WebUI-Einstellungen",
"WebUI URL": "WebUI-URL", "WebUI URL": "WebUI-URL",
"WebUI will make requests to \"{{url}}\"": "WebUI wird Anfragen an \"{{url}}\" senden", "WebUI will make requests to \"{{url}}\"": "WebUI wird Anfragen an \"{{url}}\" senden",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.", "You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
"You do not have permission to send messages in this channel.": "Sie haben keine Berechtigung, Nachrichten in diesem Kanal zu senden.", "You do not have permission to send messages in this channel.": "Sie haben keine Berechtigung, Nachrichten in diesem Kanal zu senden.",
"You do not have permission to send messages in this thread.": "Sie haben keine Berechtigung, Nachrichten in diesem Thread zu senden.", "You do not have permission to send messages in this thread.": "Sie haben keine Berechtigung, Nachrichten in diesem Thread zu senden.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Sie haben keine Berechtigung, Dateien hochzuladen.", "You do not have permission to upload files.": "Sie haben keine Berechtigung, Dateien hochzuladen.",
"You have no archived conversations.": "Sie haben keine archivierten Unterhaltungen.", "You have no archived conversations.": "Sie haben keine archivierten Unterhaltungen.",
"You have shared this chat": "Sie haben diesen Chat geteilt", "You have shared this chat": "Sie haben diesen Chat geteilt",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "", "Add User": "",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "", "API keys": "",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Such certainty?", "Are you sure?": "Such certainty?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "Cancel", "Cancel": "Cancel",
"Cannot create an empty note.": "",
"Capabilities": "", "Capabilities": "",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Collection", "Collection": "Collection",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "", "ComfyUI": "",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "", "Create new key": "",
"Create new secret key": "", "Create new secret key": "",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Created at", "Created at": "Created at",
@ -429,6 +437,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Description", "Description": "Description",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "", "Download canceled": "",
"Download Database": "Download Database", "Download Database": "Download Database",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "", "Enter language codes": "",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "", "Enter Searxng Query URL": "",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Failed to read clipboard borks", "Failed to read clipboard contents": "Failed to read clipboard borks",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "", "Google PSE API Key": "",
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Much group", "Group": "Much group",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Light", "Light": "Light",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.", "LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "New Bark", "New Chat": "New Bark",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "New Barkword", "New Password": "New Barkword",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "", "Read Aloud": "",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "", "Searxng Query URL": "",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "See readme.md for instructions wow", "See readme.md for instructions": "See readme.md for instructions wow",
"See what's new": "See what's new so amaze", "See what's new": "See what's new so amaze",
"Seed": "Seed very plant", "Seed": "Seed very plant",
@ -1491,6 +1508,7 @@
"Show": "Show much show", "Show": "Show much show",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Source", "Source": "Source",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Title very title", "Title": "Title very title",
"Title Auto-Generation": "Title Auto-Generation much auto-gen", "Title Auto-Generation": "Title Auto-Generation much auto-gen",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K very top", "Top K": "Top K very top",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "", "Webhook URL": "",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI Settings much settings", "WebUI Settings": "WebUI Settings much settings",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Προσθήκη κειμένου", "Add text content": "Προσθήκη κειμένου",
"Add User": "Προσθήκη Χρήστη", "Add User": "Προσθήκη Χρήστη",
"Add User Group": "Προσθήκη Ομάδας Χρηστών", "Add User Group": "Προσθήκη Ομάδας Χρηστών",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "Πρόσθετες Παράμετροι", "Additional Parameters": "Πρόσθετες Παράμετροι",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Όλα", "All": "Όλα",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Όλα τα Έγγραφα",
"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία", "All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
"Allow Call": "Επιτρέπεται η Κλήση", "Allow Call": "Επιτρέπεται η Κλήση",
"Allow Chat Controls": "Επιτρέπεται ο Έλεγχος Συνομιλίας", "Allow Chat Controls": "Επιτρέπεται ο Έλεγχος Συνομιλίας",
@ -136,6 +138,7 @@
"API keys": "κλειδιά API", "API keys": "κλειδιά API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Έκδοση API", "API Version": "Έκδοση API",
"API Version is required": "Η Έκδοση API είναι απαραίτητη", "API Version is required": "Η Έκδοση API είναι απαραίτητη",
"Application DN": "DN Εφαρμογής", "Application DN": "DN Εφαρμογής",
@ -154,6 +157,7 @@
"Are you sure?": "Είστε σίγουροι;", "Are you sure?": "Είστε σίγουροι;",
"Arena Models": "Μοντέλα Arena", "Arena Models": "Μοντέλα Arena",
"Artifacts": "Αρχεία", "Artifacts": "Αρχεία",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Ρωτήστε μια ερώτηση", "Ask a question": "Ρωτήστε μια ερώτηση",
"Assistant": "Βοηθός", "Assistant": "Βοηθός",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT", "Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
"Camera": "Κάμερα", "Camera": "Κάμερα",
"Cancel": "Ακύρωση", "Cancel": "Ακύρωση",
"Cannot create an empty note.": "",
"Capabilities": "Δυνατότητες", "Capabilities": "Δυνατότητες",
"Capture": "Καταγραφή Εικόνας", "Capture": "Καταγραφή Εικόνας",
"Capture Audio": "Καταγραφή Ήχου", "Capture Audio": "Καταγραφή Ήχου",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Το κανάλι διαγράφηκε επιτυχώς", "Channel deleted successfully": "Το κανάλι διαγράφηκε επιτυχώς",
"Channel Name": "Όνομα Καναλιού", "Channel Name": "Όνομα Καναλιού",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Το κανάλι ενημερώθηκε επιτυχώς", "Channel updated successfully": "Το κανάλι ενημερώθηκε επιτυχώς",
"Channels": "Κανάλια", "Channels": "Κανάλια",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Σύμπτυξη", "Collapse": "Σύμπτυξη",
"Collection": "Συλλογή", "Collection": "Συλλογή",
"Collections": "",
"Color": "Χρώμα", "Color": "Χρώμα",
"ComfyUI": "", "ComfyUI": "",
"ComfyUI API Key": "API κλειδί του ComfyUI", "ComfyUI API Key": "API κλειδί του ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Δημιουργία Μοντέλου", "Create Model": "Δημιουργία Μοντέλου",
"Create new key": "Δημιουργία νέου κλειδιού", "Create new key": "Δημιουργία νέου κλειδιού",
"Create new secret key": "Δημιουργία νέου μυστικού κλειδιού", "Create new secret key": "Δημιουργία νέου μυστικού κλειδιού",
"Create note": "",
"Create Note": "Δημιουργία Σημείωσης", "Create Note": "Δημιουργία Σημείωσης",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Δημιουργήθηκε στις", "Created at": "Δημιουργήθηκε στις",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Διαγράφηκε το {{name}}", "Deleted {{name}}": "Διαγράφηκε το {{name}}",
"Deleted User": "Διαγράφηκε ο Χρήστης", "Deleted User": "Διαγράφηκε ο Χρήστης",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Περιγράψτε τη βάση γνώσης και τους στόχους σας", "Describe your knowledge base and objectives": "Περιγράψτε τη βάση γνώσης και τους στόχους σας",
"Description": "Περιγραφή", "Description": "Περιγραφή",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Η λήψη ακυρώθηκε", "Download canceled": "Η λήψη ακυρώθηκε",
"Download Database": "Λήψη Βάσης Δεδομένων", "Download Database": "Λήψη Βάσης Δεδομένων",
"Drag and drop a file to upload or select a file to view": "Σύρετε και αφήστε ένα αρχείο για να το ανεβάσετε ή επιλέξτε ένα αρχείο για να το δείτε",
"Draw": "Σχεδίαση", "Draw": "Σχεδίαση",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Εισάγετε κωδικούς γλώσσας", "Enter language codes": "Εισάγετε κωδικούς γλώσσας",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Εισάγετε το ID Μοντέλου", "Enter Model ID": "Εισάγετε το ID Μοντέλου",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Εισάγετε το Κλειδί API SearchApi", "Enter SearchApi API Key": "Εισάγετε το Κλειδί API SearchApi",
"Enter SearchApi Engine": "Εισάγετε τη Μηχανή SearchApi", "Enter SearchApi Engine": "Εισάγετε τη Μηχανή SearchApi",
"Enter Searxng Query URL": "Εισάγετε το URL Ερώτησης Searxng", "Enter Searxng Query URL": "Εισάγετε το URL Ερώτησης Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Εισάγετε το Seed", "Enter Seed": "Εισάγετε το Seed",
"Enter SerpApi API Key": "Εισάγετε το Κλειδί API SerpApi", "Enter SerpApi API Key": "Εισάγετε το Κλειδί API SerpApi",
"Enter SerpApi Engine": "Εισάγετε τη Μηχανή SerpApi", "Enter SerpApi Engine": "Εισάγετε τη Μηχανή SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Αποτυχία φόρτωσης προεπισκόπησης συνομιλίας", "Failed to load chat preview": "Αποτυχία φόρτωσης προεπισκόπησης συνομιλίας",
"Failed to load file content.": "Αποτυχία φόρτωσης περιεχομένου αρχείου", "Failed to load file content.": "Αποτυχία φόρτωσης περιεχομένου αρχείου",
"Failed to move chat": "Αποτυχία μετακίνησης συνομιλίας", "Failed to move chat": "Αποτυχία μετακίνησης συνομιλίας",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου", "Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "Αποτυχία απεικόνισης διαγράμματος", "Failed to render diagram": "Αποτυχία απεικόνισης διαγράμματος",
@ -831,6 +840,7 @@
"Google PSE API Key": "Κλειδί API Google PSE", "Google PSE API Key": "Κλειδί API Google PSE",
"Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE", "Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Ομάδα", "Group": "Ομάδα",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία", "Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Εισαγωγή Διαμόρφωσης από Αρχείο JSON", "Import Config from JSON File": "Εισαγωγή Διαμόρφωσης από Αρχείο JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Εισαγωγή Προκαθορισμένων", "Import Presets": "Εισαγωγή Προκαθορισμένων",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Εισαγωγή επιτυχής", "Import successful": "Εισαγωγή επιτυχής",
@ -989,6 +998,8 @@
"License": "Άδεια", "License": "Άδεια",
"Lift List": "", "Lift List": "",
"Light": "Φως", "Light": "Φως",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Ακούγεται...", "Listening...": "Ακούγεται...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.", "LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας", "Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Νέα Συνομιλία", "New Chat": "Νέα Συνομιλία",
"New Folder": "Νέος Φάκελος", "New Folder": "Νέος Φάκελος",
"New Function": "Νέα Λειτουργία", "New Function": "Νέα Λειτουργία",
"New Knowledge": "Νέο Knowledge", "New Knowledge": "Νέο Knowledge",
"New Model": "Νέο Μοντέλο", "New Model": "Νέο Μοντέλο",
"New Note": "",
"New Password": "Νέος Κωδικός", "New Password": "Νέος Κωδικός",
"New Prompt": "Νέα Προτροπή", "New Prompt": "Νέα Προτροπή",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Δεν βρέθηκε περιεχόμενο", "No content found": "Δεν βρέθηκε περιεχόμενο",
"No content found in file.": "",
"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση", "No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση", "No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Δεν βρέθηκαν ανατροφοδοτήσεις", "No feedbacks found": "Δεν βρέθηκαν ανατροφοδοτήσεις",
"No file selected": "Δεν έχει επιλεγεί αρχείο", "No file selected": "Δεν έχει επιλεγεί αρχείο",
"No files in this knowledge base.": "",
"No functions found": "Δεν βρέθηκαν λειτουργίες", "No functions found": "Δεν βρέθηκαν λειτουργίες",
"No groups with access, add a group to grant access": "Δεν υπάρχουν ομάδες με πρόσβαση, προσθέστε μια ομάδα για να χορηγήσετε πρόσβαση", "No groups with access, add a group to grant access": "Δεν υπάρχουν ομάδες με πρόσβαση, προσθέστε μια ομάδα για να χορηγήσετε πρόσβαση",
"No HTML, CSS, or JavaScript content found.": "Δεν βρέθηκε περιεχόμενο HTML, CSS ή JavaScript.", "No HTML, CSS, or JavaScript content found.": "Δεν βρέθηκε περιεχόμενο HTML, CSS ή JavaScript.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Δεν βρέθηκε Knowledge", "No knowledge found": "Δεν βρέθηκε Knowledge",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "Δεν υπάρχουν IDs μοντέλων", "No model IDs": "Δεν υπάρχουν IDs μοντέλων",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Ανάγνωση Φωναχτά", "Read Aloud": "Ανάγνωση Φωναχτά",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Αναζήτηση Knowledge για \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Αναζήτηση Knowledge για \"{{searchQuery}}\"",
"Searching the web": "Αναζητώντας στο διαδίκτυο", "Searching the web": "Αναζητώντας στο διαδίκτυο",
"Searxng Query URL": "URL Ερώτησης Searxng", "Searxng Query URL": "URL Ερώτησης Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Δείτε readme.md για οδηγίες", "See readme.md for instructions": "Δείτε readme.md για οδηγίες",
"See what's new": "Δείτε τι νέο υπάρχει", "See what's new": "Δείτε τι νέο υπάρχει",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Εμφάνιση", "Show": "Εμφάνιση",
"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο", "Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού", "Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Πηγή", "Source": "Πηγή",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.", "Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Τίτλος", "Title": "Τίτλος",
"Title Auto-Generation": "Αυτόματη Γενιά Τίτλων", "Title Auto-Generation": "Αυτόματη Γενιά Τίτλων",
"Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.", "Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.", "Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "Δημιουργία Ερωτήματος Αναζήτησης Διαδικτύου", "Web Search Query Generation": "Δημιουργία Ερωτήματος Αναζήτησης Διαδικτύου",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"Webpage URL": "URL ιστότοπου", "Webpage URLs": "",
"WebUI Settings": "Ρυθμίσεις WebUI", "WebUI Settings": "Ρυθμίσεις WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.", "You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.", "You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.",
"You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.", "You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.",
"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία", "You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "", "Add User": "",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "", "API keys": "",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "", "Are you sure?": "",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "", "Cancel": "",
"Cannot create an empty note.": "",
"Capabilities": "", "Capabilities": "",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "", "Collection": "",
"Collections": "",
"Color": "Colour", "Color": "Colour",
"ComfyUI": "", "ComfyUI": "",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "", "Create new key": "",
"Create new secret key": "", "Create new secret key": "",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "", "Created at": "",
@ -429,6 +437,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "", "Description": "",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "", "Download canceled": "",
"Download Database": "", "Download Database": "",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "Enter Key Behaviour", "Enter Key Behavior": "Enter Key Behaviour",
"Enter language codes": "", "Enter language codes": "",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "", "Enter Searxng Query URL": "",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "", "Google PSE API Key": "",
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "", "Group": "",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "", "Light": "",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "", "New Chat": "",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "", "New Password": "",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "", "Read Aloud": "",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "", "Searxng Query URL": "",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
@ -1491,6 +1508,7 @@
"Show": "", "Show": "",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "", "Source": "",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "", "Title": "",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "", "Top K": "",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "", "Webhook URL": "",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "", "WebUI Settings": "",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "", "Add User": "",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "", "API keys": "",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "", "Are you sure?": "",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "", "Cancel": "",
"Cannot create an empty note.": "",
"Capabilities": "", "Capabilities": "",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "", "Collection": "",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "", "ComfyUI": "",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "", "Create new key": "",
"Create new secret key": "", "Create new secret key": "",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "", "Created at": "",
@ -429,6 +437,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "", "Description": "",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "", "Download canceled": "",
"Download Database": "", "Download Database": "",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "", "Enter language codes": "",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "", "Enter Searxng Query URL": "",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "", "Google PSE API Key": "",
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "", "Group": "",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "", "Light": "",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "", "New Chat": "",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "", "New Password": "",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "", "Read Aloud": "",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "", "Searxng Query URL": "",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
@ -1491,6 +1508,7 @@
"Show": "", "Show": "",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "", "Source": "",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "", "Title": "",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "", "Top K": "",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "", "Webhook URL": "",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "", "WebUI Settings": "",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} herramientas disponibles", "{{COUNT}} Available Tools": "{{COUNT}} herramientas disponibles",
"{{COUNT}} characters": "{{COUNT}} caracteres", "{{COUNT}} characters": "{{COUNT}} caracteres",
"{{COUNT}} extracted lines": "{{COUNT}} líneas extraidas", "{{COUNT}} extracted lines": "{{COUNT}} líneas extraidas",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas", "{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respuestas", "{{COUNT}} Replies": "{{COUNT}} Respuestas",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Fuentes", "{{COUNT}} Sources": "{{COUNT}} Fuentes",
"{{COUNT}} words": "{{COUNT}} palabras", "{{COUNT}} words": "{{COUNT}} palabras",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a las {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a las {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Añade contenido de texto", "Add text content": "Añade contenido de texto",
"Add User": "Añadir Usuario", "Add User": "Añadir Usuario",
"Add User Group": "Añadir grupo de usuarios", "Add User Group": "Añadir grupo de usuarios",
"Add webpage": "",
"Additional Config": "Config Adicional", "Additional Config": "Config Adicional",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opciones de configuración adicionales para Marker. Debe ser una cadena JSON con pares clave-valor. Por ejemplo, '{\"key\": \"value\"}'. Las claves soportadas son: disabled_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opciones de configuración adicionales para Marker. Debe ser una cadena JSON con pares clave-valor. Por ejemplo, '{\"key\": \"value\"}'. Las claves soportadas son: disabled_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Parámetros Adicionales", "Additional Parameters": "Parámetros Adicionales",
@ -84,7 +87,6 @@
"AI": "IA", "AI": "IA",
"All": "Todos", "All": "Todos",
"All chats have been unarchived.": "Todos los chats han sido desarchivados", "All chats have been unarchived.": "Todos los chats han sido desarchivados",
"All Documents": "Todos los Documentos",
"All models deleted successfully": "Todos los modelos borrados correctamente", "All models deleted successfully": "Todos los modelos borrados correctamente",
"Allow Call": "Permitir Llamada", "Allow Call": "Permitir Llamada",
"Allow Chat Controls": "Permitir Controles del Chat", "Allow Chat Controls": "Permitir Controles del Chat",
@ -136,6 +138,7 @@
"API keys": "Claves API", "API keys": "Claves API",
"API Keys": "Claves AI", "API Keys": "Claves AI",
"API Mode": "Modo de API", "API Mode": "Modo de API",
"API Timeout": "",
"API Version": "Versión API", "API Version": "Versión API",
"API Version is required": "La Versión API es requerida", "API Version is required": "La Versión API es requerida",
"Application DN": "Aplicacion DN", "Application DN": "Aplicacion DN",
@ -154,6 +157,7 @@
"Are you sure?": "¿Estás segur@?", "Are you sure?": "¿Estás segur@?",
"Arena Models": "Arena de Modelos", "Arena Models": "Arena de Modelos",
"Artifacts": "Artefactos", "Artifacts": "Artefactos",
"Asc": "",
"Ask": "Preguntar", "Ask": "Preguntar",
"Ask a question": "Haz una pregunta", "Ask a question": "Haz una pregunta",
"Assistant": "Asistente", "Assistant": "Asistente",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT", "Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT",
"Camera": "Cámara", "Camera": "Cámara",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Cannot create an empty note.": "",
"Capabilities": "Capacidades", "Capabilities": "Capacidades",
"Capture": "Captura", "Capture": "Captura",
"Capture Audio": "Capturar Audio", "Capture Audio": "Capturar Audio",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Canal borrado correctamente", "Channel deleted successfully": "Canal borrado correctamente",
"Channel Name": "Nombre del Canal", "Channel Name": "Nombre del Canal",
"Channel name cannot be empty.": "El nombre del Canal no puede estar vacío", "Channel name cannot be empty.": "El nombre del Canal no puede estar vacío",
"Channel name must be less than 128 characters": "",
"Channel Type": "Tipo de Canal", "Channel Type": "Tipo de Canal",
"Channel updated successfully": "Canal actualizado correctamente", "Channel updated successfully": "Canal actualizado correctamente",
"Channels": "Canal", "Channels": "Canal",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Canal de colaboración donde la gente se une como miembro", "Collaboration channel where people join as members": "Canal de colaboración donde la gente se une como miembro",
"Collapse": "Plegar", "Collapse": "Plegar",
"Collection": "Colección", "Collection": "Colección",
"Collections": "",
"Color": "Color", "Color": "Color",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Clave API de ComfyUI", "ComfyUI API Key": "Clave API de ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Crear Modelo", "Create Model": "Crear Modelo",
"Create new key": "Crear Nueva Clave", "Create new key": "Crear Nueva Clave",
"Create new secret key": "Crear Nueva Clave Secreta", "Create new secret key": "Crear Nueva Clave Secreta",
"Create note": "",
"Create Note": "Crear Nota", "Create Note": "Crear Nota",
"Create your first note by clicking on the plus button below.": "Crea tu primera nota pulsando el botón + de abajo", "Create your first note by clicking on the plus button below.": "Crea tu primera nota pulsando el botón + de abajo",
"Created at": "Creado en", "Created at": "Creado en",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{nombre}} Borrado", "Deleted {{name}}": "{{nombre}} Borrado",
"Deleted User": "Usuario Borrado", "Deleted User": "Usuario Borrado",
"Deployment names are required for Azure OpenAI": "Azure OpenAI requiere nombres de implementación", "Deployment names are required for Azure OpenAI": "Azure OpenAI requiere nombres de implementación",
"Desc": "",
"Describe your knowledge base and objectives": "Describe tu Base de Conocimientos y sus objetivos", "Describe your knowledge base and objectives": "Describe tu Base de Conocimientos y sus objetivos",
"Description": "Descripción", "Description": "Descripción",
"Detect Artifacts Automatically": "Detectar Artefactos Automáticamente", "Detect Artifacts Automatically": "Detectar Artefactos Automáticamente",
@ -487,7 +496,6 @@
"Download as SVG": "Descargar como SVG", "Download as SVG": "Descargar como SVG",
"Download canceled": "Descarga cancelada", "Download canceled": "Descarga cancelada",
"Download Database": "Descargar Base de Datos", "Download Database": "Descargar Base de Datos",
"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", "Draw": "Dibujar",
"Drop any files here to upload": "Arrastra aquí los archivos a subir.", "Drop any files here to upload": "Arrastra aquí los archivos a subir.",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades de tiempo válidas son 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades de tiempo válidas son 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Ingresar Clave API de Kagi Search", "Enter Kagi Search API Key": "Ingresar Clave API de Kagi Search",
"Enter Key Behavior": "Comportamiento de la Tecla de Envío", "Enter Key Behavior": "Comportamiento de la Tecla de Envío",
"Enter language codes": "Ingresar Códigos de Idioma", "Enter language codes": "Ingresar Códigos de Idioma",
"Enter MinerU API Key": "Ingresar Clave API de MinerU",
"Enter Mistral API Base URL": "Ingresar la URL Base de la API de Mistral", "Enter Mistral API Base URL": "Ingresar la URL Base de la API de Mistral",
"Enter Mistral API Key": "Ingresar Clave API de Mistral", "Enter Mistral API Key": "Ingresar Clave API de Mistral",
"Enter Model ID": "Ingresar ID del Modelo", "Enter Model ID": "Ingresar ID del Modelo",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Ingresar Clave API de SearchApi", "Enter SearchApi API Key": "Ingresar Clave API de SearchApi",
"Enter SearchApi Engine": "Ingresar Motor de SearchApi", "Enter SearchApi Engine": "Ingresar Motor de SearchApi",
"Enter Searxng Query URL": "Ingresar URL de la consulta Searxng", "Enter Searxng Query URL": "Ingresar URL de la consulta Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Ingresar Semilla", "Enter Seed": "Ingresar Semilla",
"Enter SerpApi API Key": "Ingresar Clave API de SerpApi", "Enter SerpApi API Key": "Ingresar Clave API de SerpApi",
"Enter SerpApi Engine": "Ingresar Motor de SerpApi", "Enter SerpApi Engine": "Ingresar Motor de SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Fallo al cargar la previsualización del chat", "Failed to load chat preview": "Fallo al cargar la previsualización del chat",
"Failed to load file content.": "Fallo al cargar el contenido del archivo", "Failed to load file content.": "Fallo al cargar el contenido del archivo",
"Failed to move chat": "Fallo al mover el chat", "Failed to move chat": "Fallo al mover el chat",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles", "Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
"Failed to remove member": "Fallo al eliminar miembro", "Failed to remove member": "Fallo al eliminar miembro",
"Failed to render diagram": "Fallo al renderizar el diagrama", "Failed to render diagram": "Fallo al renderizar el diagrama",
@ -831,6 +840,7 @@
"Google PSE API Key": "Clave API de Google PSE", "Google PSE API Key": "Clave API de Google PSE",
"Google PSE Engine Id": "ID del Motor PSE de Google", "Google PSE Engine Id": "ID del Motor PSE de Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "Canal de Grupo", "Group Channel": "Canal de Grupo",
"Group created successfully": "Grupo creado correctamente", "Group created successfully": "Grupo creado correctamente",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importar Config desde Archivo JSON", "Import Config from JSON File": "Importar Config desde Archivo JSON",
"Import From Link": "Importar desde Enlace", "Import From Link": "Importar desde Enlace",
"Import Models": "Importar Modelos", "Import Models": "Importar Modelos",
"Import Notes": "Importar Notas",
"Import Presets": "Importar Preajustes", "Import Presets": "Importar Preajustes",
"Import Prompts": "Importar Indicadores", "Import Prompts": "Importar Indicadores",
"Import successful": "Importación realizada correctamente", "Import successful": "Importación realizada correctamente",
@ -989,6 +998,8 @@
"License": "Licencia", "License": "Licencia",
"Lift List": "Desplegar Lista", "Lift List": "Desplegar Lista",
"Light": "Claro", "Light": "Claro",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Escuchando...", "Listening...": "Escuchando...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Los LLMs pueden cometer errores. Verifica la información importante.", "LLMs can make mistakes. Verify important information.": "Los LLMs pueden cometer errores. Verifica la información importante.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Nombre e ID requeridos, por favor introducelos", "Name and ID are required, please fill them out": "Nombre e ID requeridos, por favor introducelos",
"Name your knowledge base": "Nombra tu base de conocimientos", "Name your knowledge base": "Nombra tu base de conocimientos",
"Native": "Nativo", "Native": "Nativo",
"New": "",
"New Button": "Nuevo Botón", "New Button": "Nuevo Botón",
"New Chat": "Nuevo Chat", "New Chat": "Nuevo Chat",
"New Folder": "Nueva Carpeta", "New Folder": "Nueva Carpeta",
"New Function": "Nueva Función", "New Function": "Nueva Función",
"New Knowledge": "Nuevo Conocimiento", "New Knowledge": "Nuevo Conocimiento",
"New Model": "Nuevo Modelo", "New Model": "Nuevo Modelo",
"New Note": "",
"New Password": "Nueva Contraseña", "New Password": "Nueva Contraseña",
"New Prompt": "Nuevo Indicador", "New Prompt": "Nuevo Indicador",
"New Temporary Chat": "Nuevo Chat Temporal", "New Temporary Chat": "Nuevo Chat Temporal",
@ -1112,17 +1125,18 @@
"No chats found.": "No se encontró ningún chat", "No chats found.": "No se encontró ningún chat",
"No content": "Sin contenido", "No content": "Sin contenido",
"No content found": "No se encontró contenido", "No content found": "No se encontró contenido",
"No content found in file.": "No se encontró contenido en el archivo",
"No content to speak": "No hay contenido para hablar", "No content to speak": "No hay contenido para hablar",
"No conversation to save": "No hay conversación para guardar", "No conversation to save": "No hay conversación para guardar",
"No distance available": "No hay distancia disponible", "No distance available": "No hay distancia disponible",
"No expiration can pose security risks.": "No expiración puede poner la seguridad en riesgo.", "No expiration can pose security risks.": "No expiración puede poner la seguridad en riesgo.",
"No feedbacks found": "No se encontraron comentarios", "No feedbacks found": "No se encontraron comentarios",
"No file selected": "No se seleccionó archivo", "No file selected": "No se seleccionó archivo",
"No files in this knowledge base.": "",
"No functions found": "No se encontraron funciones", "No functions found": "No se encontraron funciones",
"No groups with access, add a group to grant access": "No hay grupos con acceso, añade un grupo para otorgar acceso", "No groups with access, add a group to grant access": "No hay grupos con acceso, añade un grupo para otorgar acceso",
"No HTML, CSS, or JavaScript content found.": "No se encontró contenido HTML, CSS, o JavaScript.", "No HTML, CSS, or JavaScript content found.": "No se encontró contenido HTML, CSS, o JavaScript.",
"No inference engine with management support found": "No se encontró un motor de inferencia que soporte gestión", "No inference engine with management support found": "No se encontró un motor de inferencia que soporte gestión",
"No knowledge bases found.": "",
"No knowledge found": "No se encontró ningún conocimiento", "No knowledge found": "No se encontró ningún conocimiento",
"No memories to clear": "No hay memorias para borrar", "No memories to clear": "No hay memorias para borrar",
"No model IDs": "No hay IDs de modelo", "No model IDs": "No hay IDs de modelo",
@ -1309,6 +1323,8 @@
"Read": "Leer", "Read": "Leer",
"Read Aloud": "Leer en voz alta", "Read Aloud": "Leer en voz alta",
"Read more →": "Leer más →", "Read more →": "Leer más →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Razonamiento", "Reason": "Razonamiento",
"Reasoning Effort": "Esfuerzo del Razonamiento", "Reasoning Effort": "Esfuerzo del Razonamiento",
"Reasoning Tags": "Etiquetas de Razonamiento", "Reasoning Tags": "Etiquetas de Razonamiento",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Buscando \"{{searchQuery}}\" en Conocimiento", "Searching Knowledge for \"{{searchQuery}}\"": "Buscando \"{{searchQuery}}\" en Conocimiento",
"Searching the web": "Buscando en la web...", "Searching the web": "Buscando en la web...",
"Searxng Query URL": "Searxng URL de Consulta", "Searxng Query URL": "Searxng URL de Consulta",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Ver readme.md para instrucciones", "See readme.md for instructions": "Ver readme.md para instrucciones",
"See what's new": "Ver las novedades", "See what's new": "Ver las novedades",
"Seed": "Semilla", "Seed": "Semilla",
@ -1492,6 +1509,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión", "Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión",
"Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la sobrecapa de 'Cuenta Pendiente'", "Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la sobrecapa de 'Cuenta Pendiente'",
"Show Files": "",
"Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo", "Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo",
"Show image preview": "Mostrar previsualización de imagen", "Show image preview": "Mostrar previsualización de imagen",
"Show Model": "Mostrar Modelo", "Show Model": "Mostrar Modelo",
@ -1516,6 +1534,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Razonamiento", "Sonar Reasoning": "Sonar Razonamiento",
"Sonar Reasoning Pro": "Sonar Razonamiento Pro", "Sonar Reasoning Pro": "Sonar Razonamiento Pro",
"Sort": "",
"Sougou Search API sID": "API sID de Sougou Search", "Sougou Search API sID": "API sID de Sougou Search",
"Sougou Search API SK": "SK API de Sougou Search", "Sougou Search API SK": "SK API de Sougou Search",
"Source": "Fuente", "Source": "Fuente",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL del Servidor Tika necesaria", "Tika Server URL required.": "URL del Servidor Tika necesaria",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Título", "Title": "Título",
"Title Auto-Generation": "AutoGeneración de Títulos", "Title Auto-Generation": "AutoGeneración de Títulos",
"Title cannot be an empty string.": "El título no puede ser una cadena vacía.", "Title cannot be an empty string.": "El título no puede ser una cadena vacía.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.", "Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
"Tools Public Sharing": "Compartir Herramientas Publicamente", "Tools Public Sharing": "Compartir Herramientas Publicamente",
"Tools Sharing": "Compartir Herramientas", "Tools Sharing": "Compartir Herramientas",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reclasificador", "Top K Reranker": "Top K Reclasificador",
"Transformers": "Transformadores", "Transformers": "Transformadores",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Búsqueda Web en Chat", "Web Search in Chat": "Búsqueda Web en Chat",
"Web Search Query Generation": "Generación de Consulta Búsqueda Web", "Web Search Query Generation": "Generación de Consulta Búsqueda Web",
"Webhook URL": "URL EnganchesWeb(Webhook)", "Webhook URL": "URL EnganchesWeb(Webhook)",
"Webpage URL": "URL de la Página Web", "Webpage URLs": "",
"WebUI Settings": "WebUI Ajustes", "WebUI Settings": "WebUI Ajustes",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI hará solicitudes a \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI hará solicitudes a \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "No puedes subir un archivo vacío.", "You cannot upload an empty file.": "No puedes subir un archivo vacío.",
"You do not have permission to send messages in this channel.": "No tienes permiso para enviar mensajes en este canal", "You do not have permission to send messages in this channel.": "No tienes permiso para enviar mensajes en este canal",
"You do not have permission to send messages in this thread.": "No tienes permiso para enviar mensajes en este hilo", "You do not have permission to send messages in this thread.": "No tienes permiso para enviar mensajes en este hilo",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "No tienes permiso para subir archivos.", "You do not have permission to upload files.": "No tienes permiso para subir archivos.",
"You have no archived conversations.": "No tienes conversaciones archivadas.", "You have no archived conversations.": "No tienes conversaciones archivadas.",
"You have shared this chat": "Has compartido esta conversación", "You have shared this chat": "Has compartido esta conversación",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} tööriista saadaval", "{{COUNT}} Available Tools": "{{COUNT}} tööriista saadaval",
"{{COUNT}} characters": "{{COUNT}} märki", "{{COUNT}} characters": "{{COUNT}} märki",
"{{COUNT}} extracted lines": "{{COUNT}} eraldatud rida", "{{COUNT}} extracted lines": "{{COUNT}} eraldatud rida",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida", "{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
"{{COUNT}} Replies": "{{COUNT}} vastust", "{{COUNT}} Replies": "{{COUNT}} vastust",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} allikat", "{{COUNT}} Sources": "{{COUNT}} allikat",
"{{COUNT}} words": "{{COUNT}} sõna", "{{COUNT}} words": "{{COUNT}} sõna",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kell {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kell {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Lisa tekstisisu", "Add text content": "Lisa tekstisisu",
"Add User": "Lisa kasutaja", "Add User": "Lisa kasutaja",
"Add User Group": "Lisa kasutajagrupp", "Add User Group": "Lisa kasutajagrupp",
"Add webpage": "",
"Additional Config": "Täiendav seadistus", "Additional Config": "Täiendav seadistus",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Additional configuration options for marker. This should be a JSON string koos key-value pairs. For example, '{\"võti\": \"value\"}'. Supported keys include: keela_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_lehed, drop_repeated_text, layout_coverage_threshold, merge_threshold, kõrgus_tolerance, gap_threshold, pilt_threshold, min_rida_length, tase_count, vaikimisi_tase", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Additional configuration options for marker. This should be a JSON string koos key-value pairs. For example, '{\"võti\": \"value\"}'. Supported keys include: keela_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_lehed, drop_repeated_text, layout_coverage_threshold, merge_threshold, kõrgus_tolerance, gap_threshold, pilt_threshold, min_rida_length, tase_count, vaikimisi_tase",
"Additional Parameters": "Täiendavad parameetrid", "Additional Parameters": "Täiendavad parameetrid",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "Kõik", "All": "Kõik",
"All chats have been unarchived.": "Kõik vestlused on arhiivist eemaldatud.", "All chats have been unarchived.": "Kõik vestlused on arhiivist eemaldatud.",
"All Documents": "Kõik dokumendid",
"All models deleted successfully": "Kõik mudelid edukalt kustutatud", "All models deleted successfully": "Kõik mudelid edukalt kustutatud",
"Allow Call": "Luba kõne", "Allow Call": "Luba kõne",
"Allow Chat Controls": "Luba vestluse kontrollnupud", "Allow Chat Controls": "Luba vestluse kontrollnupud",
@ -136,6 +138,7 @@
"API keys": "API võtmed", "API keys": "API võtmed",
"API Keys": "", "API Keys": "",
"API Mode": "API režiim", "API Mode": "API režiim",
"API Timeout": "",
"API Version": "API versioon", "API Version": "API versioon",
"API Version is required": "API versioon on nõutav", "API Version is required": "API versioon on nõutav",
"Application DN": "Rakenduse DN", "Application DN": "Rakenduse DN",
@ -154,6 +157,7 @@
"Are you sure?": "Kas olete kindel?", "Are you sure?": "Kas olete kindel?",
"Arena Models": "Areena mudelid", "Arena Models": "Areena mudelid",
"Artifacts": "Tekkinud objektid", "Artifacts": "Tekkinud objektid",
"Asc": "",
"Ask": "Küsi", "Ask": "Küsi",
"Ask a question": "Esita küsimus", "Ask a question": "Esita küsimus",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud", "Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud",
"Camera": "Kaamera", "Camera": "Kaamera",
"Cancel": "Tühista", "Cancel": "Tühista",
"Cannot create an empty note.": "",
"Capabilities": "Võimekused", "Capabilities": "Võimekused",
"Capture": "Jäädvusta", "Capture": "Jäädvusta",
"Capture Audio": "Capture Heli", "Capture Audio": "Capture Heli",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanal edukalt kustutatud", "Channel deleted successfully": "Kanal edukalt kustutatud",
"Channel Name": "Kanali nimi", "Channel Name": "Kanali nimi",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Kanal edukalt uuendatud", "Channel updated successfully": "Kanal edukalt uuendatud",
"Channels": "Kanalid", "Channels": "Kanalid",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Ahenda", "Collapse": "Ahenda",
"Collection": "Kogu", "Collection": "Kogu",
"Collections": "",
"Color": "Värv", "Color": "Värv",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API võti", "ComfyUI API Key": "ComfyUI API võti",
@ -365,6 +372,7 @@
"Create Model": "Loo mudel", "Create Model": "Loo mudel",
"Create new key": "Loo uus võti", "Create new key": "Loo uus võti",
"Create new secret key": "Loo uus salavõti", "Create new secret key": "Loo uus salavõti",
"Create note": "",
"Create Note": "Loo märge", "Create Note": "Loo märge",
"Create your first note by clicking on the plus button below.": "Loo oma esimene märge, klõpsates all olevat plussnuppu.", "Create your first note by clicking on the plus button below.": "Loo oma esimene märge, klõpsates all olevat plussnuppu.",
"Created at": "Loomise aeg", "Created at": "Loomise aeg",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Kustutatud {{name}}", "Deleted {{name}}": "Kustutatud {{name}}",
"Deleted User": "Kustutatud kasutaja", "Deleted User": "Kustutatud kasutaja",
"Deployment names are required for Azure OpenAI": "Deployment names are required for Azure OpenAI", "Deployment names are required for Azure OpenAI": "Deployment names are required for Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Kirjeldage oma teadmiste baasi ja eesmärke", "Describe your knowledge base and objectives": "Kirjeldage oma teadmiste baasi ja eesmärke",
"Description": "Kirjeldus", "Description": "Kirjeldus",
"Detect Artifacts Automatically": "Tuvasta artefaktid automaatselt", "Detect Artifacts Automatically": "Tuvasta artefaktid automaatselt",
@ -487,7 +496,6 @@
"Download as SVG": "Laadi alla SVG-na", "Download as SVG": "Laadi alla SVG-na",
"Download canceled": "Allalaadimine tühistatud", "Download canceled": "Allalaadimine tühistatud",
"Download Database": "Laadi alla andmebaas", "Download Database": "Laadi alla andmebaas",
"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", "Draw": "Joonista",
"Drop any files here to upload": "Lohistage siia failid üleslaadimiseks", "Drop any files here to upload": "Lohistage siia failid üleslaadimiseks",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Sisestage Kagi Search API võti", "Enter Kagi Search API Key": "Sisestage Kagi Search API võti",
"Enter Key Behavior": "Sisestage võtme käitumine", "Enter Key Behavior": "Sisestage võtme käitumine",
"Enter language codes": "Sisestage keelekoodid", "Enter language codes": "Sisestage keelekoodid",
"Enter MinerU API Key": "Enter MinerU API Võti",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Enter Mistral API Võti", "Enter Mistral API Key": "Enter Mistral API Võti",
"Enter Model ID": "Sisestage mudeli ID", "Enter Model ID": "Sisestage mudeli ID",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Sisestage SearchApi API võti", "Enter SearchApi API Key": "Sisestage SearchApi API võti",
"Enter SearchApi Engine": "Sisestage SearchApi mootor", "Enter SearchApi Engine": "Sisestage SearchApi mootor",
"Enter Searxng Query URL": "Sisestage Searxng päringu URL", "Enter Searxng Query URL": "Sisestage Searxng päringu URL",
"Enter Searxng search language": "",
"Enter Seed": "Sisestage seeme", "Enter Seed": "Sisestage seeme",
"Enter SerpApi API Key": "Sisestage SerpApi API võti", "Enter SerpApi API Key": "Sisestage SerpApi API võti",
"Enter SerpApi Engine": "Sisestage SerpApi mootor", "Enter SerpApi Engine": "Sisestage SerpApi mootor",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Ebaõnnestus kuni load vestlus preview", "Failed to load chat preview": "Ebaõnnestus kuni load vestlus preview",
"Failed to load file content.": "Ebaõnnestus kuni load fail content.", "Failed to load file content.": "Ebaõnnestus kuni load fail content.",
"Failed to move chat": "Ebaõnnestus kuni teisalda vestlus", "Failed to move chat": "Ebaõnnestus kuni teisalda vestlus",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus", "Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "Diagrammi renderdamine ebaõnnestus", "Failed to render diagram": "Diagrammi renderdamine ebaõnnestus",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API võti", "Google PSE API Key": "Google PSE API võti",
"Google PSE Engine Id": "Google PSE mootori ID", "Google PSE Engine Id": "Google PSE mootori ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Rühm", "Group": "Rühm",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Grupp edukalt loodud", "Group created successfully": "Grupp edukalt loodud",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Impordi seadistus JSON-failist", "Import Config from JSON File": "Impordi seadistus JSON-failist",
"Import From Link": "Impordi lingist", "Import From Link": "Impordi lingist",
"Import Models": "", "Import Models": "",
"Import Notes": "Impordi märkmed",
"Import Presets": "Impordi eelseadistused", "Import Presets": "Impordi eelseadistused",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Import õnnestus", "Import successful": "Import õnnestus",
@ -989,6 +998,8 @@
"License": "Litsents", "License": "Litsents",
"Lift List": "Liftide nimekiri", "Lift List": "Liftide nimekiri",
"Light": "Hele", "Light": "Hele",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Kuulamine...", "Listening...": "Kuulamine...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM-id võivad teha vigu. Kontrollige olulist teavet.", "LLMs can make mistakes. Verify important information.": "LLM-id võivad teha vigu. Kontrollige olulist teavet.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Nimi ja ID on nõutavad, palun täida need", "Name and ID are required, please fill them out": "Nimi ja ID on nõutavad, palun täida need",
"Name your knowledge base": "Nimetage oma teadmiste baas", "Name your knowledge base": "Nimetage oma teadmiste baas",
"Native": "Omane", "Native": "Omane",
"New": "",
"New Button": "Uus nupp", "New Button": "Uus nupp",
"New Chat": "Uus vestlus", "New Chat": "Uus vestlus",
"New Folder": "Uus kaust", "New Folder": "Uus kaust",
"New Function": "Uus funktsioon", "New Function": "Uus funktsioon",
"New Knowledge": "Uued teadmised", "New Knowledge": "Uued teadmised",
"New Model": "Uus mudel", "New Model": "Uus mudel",
"New Note": "",
"New Password": "Uus parool", "New Password": "Uus parool",
"New Prompt": "Uus vihje", "New Prompt": "Uus vihje",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Vestlusi ei leitud.", "No chats found.": "Vestlusi ei leitud.",
"No content": "Sisu puudub", "No content": "Sisu puudub",
"No content found": "Sisu ei leitud", "No content found": "Sisu ei leitud",
"No content found in file.": "No content found in fail.",
"No content to speak": "Pole mida rääkida", "No content to speak": "Pole mida rääkida",
"No conversation to save": "No conversation kuni salvesta", "No conversation to save": "No conversation kuni salvesta",
"No distance available": "Kaugus pole saadaval", "No distance available": "Kaugus pole saadaval",
"No expiration can pose security risks.": "No expiration can pose security risks.", "No expiration can pose security risks.": "No expiration can pose security risks.",
"No feedbacks found": "Tagasisidet ei leitud", "No feedbacks found": "Tagasisidet ei leitud",
"No file selected": "Faili pole valitud", "No file selected": "Faili pole valitud",
"No files in this knowledge base.": "",
"No functions found": "No functions found", "No functions found": "No functions found",
"No groups with access, add a group to grant access": "Puuduvad juurdepääsuõigustega grupid, lisage grupp juurdepääsu andmiseks", "No groups with access, add a group to grant access": "Puuduvad juurdepääsuõigustega grupid, lisage grupp juurdepääsu andmiseks",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS ega JavaScript sisu ei leitud.", "No HTML, CSS, or JavaScript content found.": "HTML, CSS ega JavaScript sisu ei leitud.",
"No inference engine with management support found": "Järeldusmootorit haldamise toega ei leitud", "No inference engine with management support found": "Järeldusmootorit haldamise toega ei leitud",
"No knowledge bases found.": "",
"No knowledge found": "Teadmisi ei leitud", "No knowledge found": "Teadmisi ei leitud",
"No memories to clear": "Pole mälestusi, mida kustutada", "No memories to clear": "Pole mälestusi, mida kustutada",
"No model IDs": "Mudeli ID-d puuduvad", "No model IDs": "Mudeli ID-d puuduvad",
@ -1309,6 +1323,8 @@
"Read": "Loe", "Read": "Loe",
"Read Aloud": "Loe valjult", "Read Aloud": "Loe valjult",
"Read more →": "Read more →", "Read more →": "Read more →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Reason", "Reason": "Reason",
"Reasoning Effort": "Arutluspingutus", "Reasoning Effort": "Arutluspingutus",
"Reasoning Tags": "Reasoning Sildid", "Reasoning Tags": "Reasoning Sildid",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Teadmistest otsimine: \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Teadmistest otsimine: \"{{searchQuery}}\"",
"Searching the web": "Searching the veeb", "Searching the web": "Searching the veeb",
"Searxng Query URL": "Searxng päringu URL", "Searxng Query URL": "Searxng päringu URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Juhiste saamiseks vaadake readme.md", "See readme.md for instructions": "Juhiste saamiseks vaadake readme.md",
"See what's new": "Vaata, mis on uut", "See what's new": "Vaata, mis on uut",
"Seed": "Seeme", "Seed": "Seeme",
@ -1491,6 +1508,7 @@
"Show": "Näita", "Show": "Näita",
"Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel", "Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel",
"Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil", "Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil",
"Show Files": "",
"Show Formatting Toolbar": "Kuva Formatting Toolbar", "Show Formatting Toolbar": "Kuva Formatting Toolbar",
"Show image preview": "Kuva pilt preview", "Show image preview": "Kuva pilt preview",
"Show Model": "Kuva Mudel", "Show Model": "Kuva Mudel",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Otsi API sID", "Sougou Search API sID": "Sougou Otsi API sID",
"Sougou Search API SK": "Sougou Otsi API SK", "Sougou Search API SK": "Sougou Otsi API SK",
"Source": "Allikas", "Source": "Allikas",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika serveri URL on nõutav.", "Tika Server URL required.": "Tika serveri URL on nõutav.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Pealkiri", "Title": "Pealkiri",
"Title Auto-Generation": "Pealkirja automaatne genereerimine", "Title Auto-Generation": "Pealkirja automaatne genereerimine",
"Title cannot be an empty string.": "Pealkiri ei saa olla tühi string.", "Title cannot be an empty string.": "Pealkiri ei saa olla tühi string.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.", "Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.",
"Tools Public Sharing": "Tööriista Avalik Sharing", "Tools Public Sharing": "Tööriista Avalik Sharing",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Veebiotsing vestluses", "Web Search in Chat": "Veebiotsing vestluses",
"Web Search Query Generation": "Veebi otsingupäringu genereerimine", "Web Search Query Generation": "Veebi otsingupäringu genereerimine",
"Webhook URL": "Webhooki URL", "Webhook URL": "Webhooki URL",
"Webpage URL": "Webpage URL", "Webpage URLs": "",
"WebUI Settings": "WebUI seaded", "WebUI Settings": "WebUI seaded",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI will make requests kuni \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI will make requests kuni \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Te ei saa üles laadida tühja faili.", "You cannot upload an empty file.": "Te ei saa üles laadida tühja faili.",
"You do not have permission to send messages in this channel.": "You do not have õigus kuni send sõnumid in this channel.", "You do not have permission to send messages in this channel.": "You do not have õigus kuni send sõnumid in this channel.",
"You do not have permission to send messages in this thread.": "You do not have õigus kuni send sõnumid in this thread.", "You do not have permission to send messages in this thread.": "You do not have õigus kuni send sõnumid in this thread.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Teil pole õigust faile üles laadida.", "You do not have permission to upload files.": "Teil pole õigust faile üles laadida.",
"You have no archived conversations.": "Teil pole arhiveeritud vestlusi.", "You have no archived conversations.": "Teil pole arhiveeritud vestlusi.",
"You have shared this chat": "Olete seda vestlust jaganud", "You have shared this chat": "Olete seda vestlust jaganud",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Gehitu testu edukia", "Add text content": "Gehitu testu edukia",
"Add User": "Gehitu Erabiltzailea", "Add User": "Gehitu Erabiltzailea",
"Add User Group": "Gehitu Erabiltzaile Taldea", "Add User Group": "Gehitu Erabiltzaile Taldea",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Dokumentu Guztiak",
"All models deleted successfully": "Eredu guztiak ongi ezabatu dira", "All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API gakoak", "API keys": "API gakoak",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Aplikazioaren DN", "Application DN": "Aplikazioaren DN",
@ -154,6 +157,7 @@
"Are you sure?": "Ziur zaude?", "Are you sure?": "Ziur zaude?",
"Arena Models": "Arena Ereduak", "Arena Models": "Arena Ereduak",
"Artifacts": "Artefaktuak", "Artifacts": "Artefaktuak",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Egin galdera bat", "Ask a question": "Egin galdera bat",
"Assistant": "Laguntzailea", "Assistant": "Laguntzailea",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean", "Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Utzi", "Cancel": "Utzi",
"Cannot create an empty note.": "",
"Capabilities": "Gaitasunak", "Capabilities": "Gaitasunak",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Bilduma", "Collection": "Bilduma",
"Collections": "",
"Color": "Kolorea", "Color": "Kolorea",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Sortu gako berria", "Create new key": "Sortu gako berria",
"Create new secret key": "Sortu gako sekretu berria", "Create new secret key": "Sortu gako sekretu berria",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Sortze data", "Created at": "Sortze data",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} ezabatu da", "Deleted {{name}}": "{{name}} ezabatu da",
"Deleted User": "Ezabatutako Erabiltzailea", "Deleted User": "Ezabatutako Erabiltzailea",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Deskribatu zure ezagutza-basea eta helburuak", "Describe your knowledge base and objectives": "Deskribatu zure ezagutza-basea eta helburuak",
"Description": "Deskribapena", "Description": "Deskribapena",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Deskarga bertan behera utzi da", "Download canceled": "Deskarga bertan behera utzi da",
"Download Database": "Deskargatu Datu-basea", "Download Database": "Deskargatu Datu-basea",
"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", "Draw": "Marraztu",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Sartu hizkuntza kodeak", "Enter language codes": "Sartu hizkuntza kodeak",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Sartu Eredu IDa", "Enter Model ID": "Sartu Eredu IDa",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Sartu SearchApi API Gakoa", "Enter SearchApi API Key": "Sartu SearchApi API Gakoa",
"Enter SearchApi Engine": "Sartu SearchApi Motorea", "Enter SearchApi Engine": "Sartu SearchApi Motorea",
"Enter Searxng Query URL": "Sartu Searxng Kontsulta URLa", "Enter Searxng Query URL": "Sartu Searxng Kontsulta URLa",
"Enter Searxng search language": "",
"Enter Seed": "Sartu Hazia", "Enter Seed": "Sartu Hazia",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean", "Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API Gakoa", "Google PSE API Key": "Google PSE API Gakoa",
"Google PSE Engine Id": "Google PSE Motor IDa", "Google PSE Engine Id": "Google PSE Motor IDa",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Taldea", "Group": "Taldea",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Taldea ongi sortu da", "Group created successfully": "Taldea ongi sortu da",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Inportatu Konfigurazioa JSON Fitxategitik", "Import Config from JSON File": "Inportatu Konfigurazioa JSON Fitxategitik",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Inportatu Aurrezarpenak", "Import Presets": "Inportatu Aurrezarpenak",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Argia", "Light": "Argia",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Entzuten...", "Listening...": "Entzuten...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.", "LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Izendatu zure ezagutza-basea", "Name your knowledge base": "Izendatu zure ezagutza-basea",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Txat berria", "New Chat": "Txat berria",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Pasahitz berria", "New Password": "Pasahitz berria",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Ez da edukirik aurkitu", "No content found": "Ez da edukirik aurkitu",
"No content found in file.": "",
"No content to speak": "Ez dago hitz egiteko edukirik", "No content to speak": "Ez dago hitz egiteko edukirik",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Ez dago distantziarik eskuragarri", "No distance available": "Ez dago distantziarik eskuragarri",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Ez da iritzirik aurkitu", "No feedbacks found": "Ez da iritzirik aurkitu",
"No file selected": "Ez da fitxategirik hautatu", "No file selected": "Ez da fitxategirik hautatu",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Ez dago sarbidea duen talderik, gehitu talde bat sarbidea emateko", "No groups with access, add a group to grant access": "Ez dago sarbidea duen talderik, gehitu talde bat sarbidea emateko",
"No HTML, CSS, or JavaScript content found.": "Ez da HTML, CSS, edo JavaScript edukirik aurkitu.", "No HTML, CSS, or JavaScript content found.": "Ez da HTML, CSS, edo JavaScript edukirik aurkitu.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Ez da ezagutzarik aurkitu", "No knowledge found": "Ez da ezagutzarik aurkitu",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "Ez dago modelo IDrik", "No model IDs": "Ez dago modelo IDrik",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Irakurri ozen", "Read Aloud": "Irakurri ozen",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\"rentzako ezagutza bilatzen", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\"rentzako ezagutza bilatzen",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng kontsulta URLa", "Searxng Query URL": "Searxng kontsulta URLa",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Ikusi readme.md argibideetarako", "See readme.md for instructions": "Ikusi readme.md argibideetarako",
"See what's new": "Ikusi berritasunak", "See what's new": "Ikusi berritasunak",
"Seed": "Hazia", "Seed": "Hazia",
@ -1491,6 +1508,7 @@
"Show": "Erakutsi", "Show": "Erakutsi",
"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean", "Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan", "Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Iturria", "Source": "Iturria",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.", "Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Izenburua", "Title": "Izenburua",
"Title Auto-Generation": "Izenburuen sorrera automatikoa", "Title Auto-Generation": "Izenburuen sorrera automatikoa",
"Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.", "Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.", "Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Goiko K", "Top K": "Goiko K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformatzaileak", "Transformers": "Transformatzaileak",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Webhook URLa", "Webhook URL": "Webhook URLa",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI ezarpenak", "WebUI Settings": "WebUI ezarpenak",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.", "You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.", "You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.",
"You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.", "You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.",
"You have shared this chat": "Txat hau partekatu duzu", "You have shared this chat": "Txat hau partekatu duzu",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود", "{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود",
"{{COUNT}} characters": "{{COUNT}} نویسه", "{{COUNT}} characters": "{{COUNT}} نویسه",
"{{COUNT}} extracted lines": "{{COUNT}} خط استخراج شده", "{{COUNT}} extracted lines": "{{COUNT}} خط استخراج شده",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} خط پنهان", "{{COUNT}} hidden lines": "{{COUNT}} خط پنهان",
"{{COUNT}} Replies": "{{COUNT}} پاسخ", "{{COUNT}} Replies": "{{COUNT}} پاسخ",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} منبع", "{{COUNT}} Sources": "{{COUNT}} منبع",
"{{COUNT}} words": "{{COUNT}} کلمه", "{{COUNT}} words": "{{COUNT}} کلمه",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} در {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} در {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "افزودن محتوای متنی", "Add text content": "افزودن محتوای متنی",
"Add User": "افزودن کاربر", "Add User": "افزودن کاربر",
"Add User Group": "افزودن گروه کاربری", "Add User Group": "افزودن گروه کاربری",
"Add webpage": "",
"Additional Config": "تنظیمات اضافی", "Additional Config": "تنظیمات اضافی",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "گزینه\u200cهای پیکربندی اضافی برای مارکر. این باید یک رشته JSON با جفت\u200cهای کلید-مقدار باشد. برای مثال، '{\"key\": \"value\"}'. کلیدهای پشتیبانی شده عبارتند از: disable_links، keep_pageheader_in_output، keep_pagefooter_in_output، filter_blank_pages، drop_repeated_text، layout_coverage_threshold، merge_threshold، height_tolerance، gap_threshold، image_threshold، min_line_length، level_count، default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "گزینه\u200cهای پیکربندی اضافی برای مارکر. این باید یک رشته JSON با جفت\u200cهای کلید-مقدار باشد. برای مثال، '{\"key\": \"value\"}'. کلیدهای پشتیبانی شده عبارتند از: disable_links، keep_pageheader_in_output، keep_pagefooter_in_output، filter_blank_pages، drop_repeated_text، layout_coverage_threshold، merge_threshold، height_tolerance، gap_threshold، image_threshold، min_line_length، level_count، default_level",
"Additional Parameters": "پارامترهای اضافی", "Additional Parameters": "پارامترهای اضافی",
@ -84,7 +87,6 @@
"AI": "هوش مصنوعی", "AI": "هوش مصنوعی",
"All": "همه", "All": "همه",
"All chats have been unarchived.": "همه چت\u200cها از حالت بایگانی خارج شدند.", "All chats have been unarchived.": "همه چت\u200cها از حالت بایگانی خارج شدند.",
"All Documents": "همهٔ سند\u200cها",
"All models deleted successfully": "همه مدل\u200cها با موفقیت حذف شدند", "All models deleted successfully": "همه مدل\u200cها با موفقیت حذف شدند",
"Allow Call": "اجازه تماس", "Allow Call": "اجازه تماس",
"Allow Chat Controls": "اجازه کنترل\u200cهای گفتگو", "Allow Chat Controls": "اجازه کنترل\u200cهای گفتگو",
@ -136,6 +138,7 @@
"API keys": "کلیدهای API", "API keys": "کلیدهای API",
"API Keys": "", "API Keys": "",
"API Mode": "حالت API", "API Mode": "حالت API",
"API Timeout": "",
"API Version": "نسخه API", "API Version": "نسخه API",
"API Version is required": "نسخه API مورد نیاز است", "API Version is required": "نسخه API مورد نیاز است",
"Application DN": "DN برنامه", "Application DN": "DN برنامه",
@ -154,6 +157,7 @@
"Are you sure?": "مطمئنید؟", "Are you sure?": "مطمئنید؟",
"Arena Models": "مدل\u200cهای آرنا", "Arena Models": "مدل\u200cهای آرنا",
"Artifacts": "مصنوعات", "Artifacts": "مصنوعات",
"Asc": "",
"Ask": "بپرس", "Ask": "بپرس",
"Ask a question": "سوالی بپرسید", "Ask a question": "سوالی بپرسید",
"Assistant": "دستیار", "Assistant": "دستیار",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود", "Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود",
"Camera": "دوربین", "Camera": "دوربین",
"Cancel": "لغو", "Cancel": "لغو",
"Cannot create an empty note.": "",
"Capabilities": "قابلیت", "Capabilities": "قابلیت",
"Capture": "ضبط", "Capture": "ضبط",
"Capture Audio": "ضبط صدا", "Capture Audio": "ضبط صدا",
@ -228,6 +233,7 @@
"Channel deleted successfully": "کانال با موفقیت حذف شد", "Channel deleted successfully": "کانال با موفقیت حذف شد",
"Channel Name": "نام کانال", "Channel Name": "نام کانال",
"Channel name cannot be empty.": "نام کانال نمی\u200cتواند خالی باشد.", "Channel name cannot be empty.": "نام کانال نمی\u200cتواند خالی باشد.",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "کانال با موفقیت به\u200cروز شد", "Channel updated successfully": "کانال با موفقیت به\u200cروز شد",
"Channels": "کانال\u200cها", "Channels": "کانال\u200cها",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "جمع کردن", "Collapse": "جمع کردن",
"Collection": "مجموعه", "Collection": "مجموعه",
"Collections": "",
"Color": "رنگ", "Color": "رنگ",
"ComfyUI": "کومیوآی", "ComfyUI": "کومیوآی",
"ComfyUI API Key": "کلید API کومیوآی", "ComfyUI API Key": "کلید API کومیوآی",
@ -365,6 +372,7 @@
"Create Model": "ایجاد مدل", "Create Model": "ایجاد مدل",
"Create new key": "ساخت کلید جدید", "Create new key": "ساخت کلید جدید",
"Create new secret key": "ساخت کلید مخفی جدید", "Create new secret key": "ساخت کلید مخفی جدید",
"Create note": "",
"Create Note": "ایجاد یادداشت", "Create Note": "ایجاد یادداشت",
"Create your first note by clicking on the plus button below.": "با کلیک روی دکمه به\u200cعلاوه در زیر، اولین یادداشت خود را ایجاد کنید.", "Create your first note by clicking on the plus button below.": "با کلیک روی دکمه به\u200cعلاوه در زیر، اولین یادداشت خود را ایجاد کنید.",
"Created at": "ایجاد شده در", "Created at": "ایجاد شده در",
@ -429,6 +437,7 @@
"Deleted {{name}}": "حذف شده {{name}}", "Deleted {{name}}": "حذف شده {{name}}",
"Deleted User": "کاربر حذف شده", "Deleted User": "کاربر حذف شده",
"Deployment names are required for Azure OpenAI": "نام\u200cهای استقرار برای Azure OpenAI مورد نیاز هستند", "Deployment names are required for Azure OpenAI": "نام\u200cهای استقرار برای Azure OpenAI مورد نیاز هستند",
"Desc": "",
"Describe your knowledge base and objectives": "پایگاه دانش و اهداف خود را توصیف کنید", "Describe your knowledge base and objectives": "پایگاه دانش و اهداف خود را توصیف کنید",
"Description": "توضیحات", "Description": "توضیحات",
"Detect Artifacts Automatically": "تشخیص خودکار مصنوعات", "Detect Artifacts Automatically": "تشخیص خودکار مصنوعات",
@ -487,7 +496,6 @@
"Download as SVG": "دانلود به صورت SVG", "Download as SVG": "دانلود به صورت SVG",
"Download canceled": "دانلود لغو شد", "Download canceled": "دانلود لغو شد",
"Download Database": "دانلود پایگاه داده", "Download Database": "دانلود پایگاه داده",
"Drag and drop a file to upload or select a file to view": "یک فایل را برای آپلود بکشید و رها کنید یا برای مشاهده یک فایل را انتخاب کنید",
"Draw": "رسم کردن", "Draw": "رسم کردن",
"Drop any files here to upload": "فایل\u200cها را برای آپلود به اینجا بکشید و رها کنید", "Drop any files here to upload": "فایل\u200cها را برای آپلود به اینجا بکشید و رها کنید",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "کلید API جستجوی کاگی را وارد کنید", "Enter Kagi Search API Key": "کلید API جستجوی کاگی را وارد کنید",
"Enter Key Behavior": "رفتار کلید را وارد کنید", "Enter Key Behavior": "رفتار کلید را وارد کنید",
"Enter language codes": "کد زبان را وارد کنید", "Enter language codes": "کد زبان را وارد کنید",
"Enter MinerU API Key": "کلید API MinerU را وارد کنید",
"Enter Mistral API Base URL": "آدرس پایه API میسترال را وارد کنید", "Enter Mistral API Base URL": "آدرس پایه API میسترال را وارد کنید",
"Enter Mistral API Key": "کلید API میسترال را وارد کنید", "Enter Mistral API Key": "کلید API میسترال را وارد کنید",
"Enter Model ID": "شناسه مدل را وارد کنید", "Enter Model ID": "شناسه مدل را وارد کنید",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "کلید API جستجو را وارد کنید", "Enter SearchApi API Key": "کلید API جستجو را وارد کنید",
"Enter SearchApi Engine": "موتور جستجو را وارد کنید", "Enter SearchApi Engine": "موتور جستجو را وارد کنید",
"Enter Searxng Query URL": "نشانی وب پرسوجوی Searxng را وارد کنید", "Enter Searxng Query URL": "نشانی وب پرسوجوی Searxng را وارد کنید",
"Enter Searxng search language": "",
"Enter Seed": "مقدار بذر را وارد کنید", "Enter Seed": "مقدار بذر را وارد کنید",
"Enter SerpApi API Key": "کلید API سرپ را وارد کنید", "Enter SerpApi API Key": "کلید API سرپ را وارد کنید",
"Enter SerpApi Engine": "موتور سرپ را وارد کنید", "Enter SerpApi Engine": "موتور سرپ را وارد کنید",
@ -730,6 +738,7 @@
"Failed to load chat preview": "بارگیری پیش\u200cنمایش چت ناموفق بود", "Failed to load chat preview": "بارگیری پیش\u200cنمایش چت ناموفق بود",
"Failed to load file content.": "بارگیری محتوای فایل ناموفق بود.", "Failed to load file content.": "بارگیری محتوای فایل ناموفق بود.",
"Failed to move chat": "انتقال چت ناموفق بود", "Failed to move chat": "انتقال چت ناموفق بود",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود", "Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "رندر دیاگرام ناموفق بود", "Failed to render diagram": "رندر دیاگرام ناموفق بود",
@ -831,6 +840,7 @@
"Google PSE API Key": "گوگل PSE API کلید", "Google PSE API Key": "گوگل PSE API کلید",
"Google PSE Engine Id": "شناسه موتور PSE گوگل", "Google PSE Engine Id": "شناسه موتور PSE گوگل",
"Gravatar": "گراواتار", "Gravatar": "گراواتار",
"Grid": "",
"Group": "گروه", "Group": "گروه",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "گروه با موفقیت ایجاد شد", "Group created successfully": "گروه با موفقیت ایجاد شد",
@ -891,7 +901,6 @@
"Import Config from JSON File": "درون\u200cریزی از پروندهٔ JSON", "Import Config from JSON File": "درون\u200cریزی از پروندهٔ JSON",
"Import From Link": "وارد کردن از لینک", "Import From Link": "وارد کردن از لینک",
"Import Models": "", "Import Models": "",
"Import Notes": "وارد کردن یادداشت\u200cها",
"Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها", "Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "وارد کردن با موفقیت انجام شد", "Import successful": "وارد کردن با موفقیت انجام شد",
@ -989,6 +998,8 @@
"License": "مجوز", "License": "مجوز",
"Lift List": "لیست ارتقا", "Lift List": "لیست ارتقا",
"Light": "روشن", "Light": "روشن",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "در حال گوش دادن...", "Listening...": "در حال گوش دادن...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.", "LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "نام و شناسه مورد نیاز هستند، لطفاً آنها را پر کنید", "Name and ID are required, please fill them out": "نام و شناسه مورد نیاز هستند، لطفاً آنها را پر کنید",
"Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید", "Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید",
"Native": "بومی", "Native": "بومی",
"New": "",
"New Button": "دکمه جدید", "New Button": "دکمه جدید",
"New Chat": "گپ جدید", "New Chat": "گپ جدید",
"New Folder": "پوشه جدید", "New Folder": "پوشه جدید",
"New Function": "تابع جدید", "New Function": "تابع جدید",
"New Knowledge": "دانش جدید", "New Knowledge": "دانش جدید",
"New Model": "مدل جدید", "New Model": "مدل جدید",
"New Note": "",
"New Password": "رمز عبور جدید", "New Password": "رمز عبور جدید",
"New Prompt": "پرامپت جدید", "New Prompt": "پرامپت جدید",
"New Temporary Chat": "چت موقت جدید", "New Temporary Chat": "چت موقت جدید",
@ -1112,17 +1125,18 @@
"No chats found.": "هیچ چتی یافت نشد.", "No chats found.": "هیچ چتی یافت نشد.",
"No content": "بدون محتوا", "No content": "بدون محتوا",
"No content found": "محتوایی یافت نشد", "No content found": "محتوایی یافت نشد",
"No content found in file.": "محتوایی در فایل یافت نشد.",
"No content to speak": "محتوایی برای خواندن وجود ندارد", "No content to speak": "محتوایی برای خواندن وجود ندارد",
"No conversation to save": "هیچ مکالمه\u200cای برای ذخیره وجود ندارد", "No conversation to save": "هیچ مکالمه\u200cای برای ذخیره وجود ندارد",
"No distance available": "فاصله\u200cای در دسترس نیست", "No distance available": "فاصله\u200cای در دسترس نیست",
"No expiration can pose security risks.": "عدم انقضا می\u200cتواند خطرات امنیتی ایجاد کند.", "No expiration can pose security risks.": "عدم انقضا می\u200cتواند خطرات امنیتی ایجاد کند.",
"No feedbacks found": "بازخوردی یافت نشد", "No feedbacks found": "بازخوردی یافت نشد",
"No file selected": "فایلی انتخاب نشده است", "No file selected": "فایلی انتخاب نشده است",
"No files in this knowledge base.": "",
"No functions found": "هیچ تابعی یافت نشد", "No functions found": "هیچ تابعی یافت نشد",
"No groups with access, add a group to grant access": "هیچ گروهی با دسترسی وجود ندارد، یک گروه برای اعطای دسترسی اضافه کنید", "No groups with access, add a group to grant access": "هیچ گروهی با دسترسی وجود ندارد، یک گروه برای اعطای دسترسی اضافه کنید",
"No HTML, CSS, or JavaScript content found.": "محتوای HTML، CSS یا JavaScript یافت نشد.", "No HTML, CSS, or JavaScript content found.": "محتوای HTML، CSS یا JavaScript یافت نشد.",
"No inference engine with management support found": "موتور استنتاج با پشتیبانی مدیریت یافت نشد", "No inference engine with management support found": "موتور استنتاج با پشتیبانی مدیریت یافت نشد",
"No knowledge bases found.": "",
"No knowledge found": "دانشی یافت نشد", "No knowledge found": "دانشی یافت نشد",
"No memories to clear": "حافظه\u200cای برای پاک کردن وجود ندارد", "No memories to clear": "حافظه\u200cای برای پاک کردن وجود ندارد",
"No model IDs": "شناسه مدلی وجود ندارد", "No model IDs": "شناسه مدلی وجود ندارد",
@ -1309,6 +1323,8 @@
"Read": "خواندن", "Read": "خواندن",
"Read Aloud": "خواندن به صورت صوتی", "Read Aloud": "خواندن به صورت صوتی",
"Read more →": "بیشتر بخوانید ←", "Read more →": "بیشتر بخوانید ←",
"Read Only": "",
"Read-Only Access": "",
"Reason": "دلیل", "Reason": "دلیل",
"Reasoning Effort": "تلاش استدلال", "Reasoning Effort": "تلاش استدلال",
"Reasoning Tags": "تگ\u200cهای استدلال", "Reasoning Tags": "تگ\u200cهای استدلال",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "جستجوی دانش برای «{{searchQuery}}»", "Searching Knowledge for \"{{searchQuery}}\"": "جستجوی دانش برای «{{searchQuery}}»",
"Searching the web": "در حال جستجوی وب", "Searching the web": "در حال جستجوی وب",
"Searxng Query URL": "نشانی وب جستجوی Searxng", "Searxng Query URL": "نشانی وب جستجوی Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید", "See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید",
"See what's new": "ببینید موارد جدید چه بوده", "See what's new": "ببینید موارد جدید چه بوده",
"Seed": "هسته", "Seed": "هسته",
@ -1491,6 +1508,7 @@
"Show": "نمایش", "Show": "نمایش",
"Show \"What's New\" modal on login": "نمایش مودال \"موارد جدید\" هنگام ورود", "Show \"What's New\" modal on login": "نمایش مودال \"موارد جدید\" هنگام ورود",
"Show Admin Details in Account Pending Overlay": "نمایش جزئیات مدیر در پوشش حساب در انتظار", "Show Admin Details in Account Pending Overlay": "نمایش جزئیات مدیر در پوشش حساب در انتظار",
"Show Files": "",
"Show Formatting Toolbar": "نمایش نوار ابزار قالب\u200cبندی", "Show Formatting Toolbar": "نمایش نوار ابزار قالب\u200cبندی",
"Show image preview": "نمایش پیش\u200cنمایش تصویر", "Show image preview": "نمایش پیش\u200cنمایش تصویر",
"Show Model": "نمایش مدل", "Show Model": "نمایش مدل",
@ -1515,6 +1533,7 @@
"Sonar Pro": "سونار پرو", "Sonar Pro": "سونار پرو",
"Sonar Reasoning": "استدلال سونار", "Sonar Reasoning": "استدلال سونار",
"Sonar Reasoning Pro": "استدلال سونار پرو", "Sonar Reasoning Pro": "استدلال سونار پرو",
"Sort": "",
"Sougou Search API sID": "شناسه API جستجوی سوگو", "Sougou Search API sID": "شناسه API جستجوی سوگو",
"Sougou Search API SK": "کلید SK API جستجوی سوگو", "Sougou Search API SK": "کلید SK API جستجوی سوگو",
"Source": "منبع", "Source": "منبع",
@ -1625,6 +1644,7 @@
"Tika": "تیکا", "Tika": "تیکا",
"Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.", "Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.",
"Tiktoken": "تیک توکن", "Tiktoken": "تیک توکن",
"Timeout": "",
"Title": "عنوان", "Title": "عنوان",
"Title Auto-Generation": "تولید خودکار عنوان", "Title Auto-Generation": "تولید خودکار عنوان",
"Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.", "Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "ابزارها دارای سیستم فراخوانی تابع هستند که اجازه اجرای کد دلخواه را می\u200cدهد.", "Tools have a function calling system that allows arbitrary code execution.": "ابزارها دارای سیستم فراخوانی تابع هستند که اجازه اجرای کد دلخواه را می\u200cدهد.",
"Tools Public Sharing": "اشتراک\u200cگذاری عمومی ابزارها", "Tools Public Sharing": "اشتراک\u200cگذاری عمومی ابزارها",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "رتبه\u200cبندی مجدد Top K", "Top K Reranker": "رتبه\u200cبندی مجدد Top K",
"Transformers": "ترنسفورمرها", "Transformers": "ترنسفورمرها",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "جستجوی وب در گفتگو", "Web Search in Chat": "جستجوی وب در گفتگو",
"Web Search Query Generation": "تولید کوئری جستجوی وب", "Web Search Query Generation": "تولید کوئری جستجوی وب",
"Webhook URL": "نشانی وب\u200cهوک", "Webhook URL": "نشانی وب\u200cهوک",
"Webpage URL": "آدرس URL صفحه وب", "Webpage URLs": "",
"WebUI Settings": "تنظیمات WebUI", "WebUI Settings": "تنظیمات WebUI",
"WebUI URL": "آدرس WebUI", "WebUI URL": "آدرس WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI به \"{{url}}\" درخواست خواهد داد", "WebUI will make requests to \"{{url}}\"": "WebUI به \"{{url}}\" درخواست خواهد داد",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "نمی\u200cتوانید فایل خالی آپلود کنید.", "You cannot upload an empty file.": "نمی\u200cتوانید فایل خالی آپلود کنید.",
"You do not have permission to send messages in this channel.": "شما اجازه ارسال پیام در این کانال را ندارید.", "You do not have permission to send messages in this channel.": "شما اجازه ارسال پیام در این کانال را ندارید.",
"You do not have permission to send messages in this thread.": "شما اجازه ارسال پیام در این رشته را ندارید.", "You do not have permission to send messages in this thread.": "شما اجازه ارسال پیام در این رشته را ندارید.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "شما اجازه آپلود فایل ندارید.", "You do not have permission to upload files.": "شما اجازه آپلود فایل ندارید.",
"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.", "You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید", "You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla", "{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla",
"{{COUNT}} characters": "{{COUNT}} kirjainta", "{{COUNT}} characters": "{{COUNT}} kirjainta",
"{{COUNT}} extracted lines": "{{COUNT}} poimittua riviä", "{{COUNT}} extracted lines": "{{COUNT}} poimittua riviä",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä", "{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
"{{COUNT}} Replies": "{{COUNT}} vastausta", "{{COUNT}} Replies": "{{COUNT}} vastausta",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} lähdettä", "{{COUNT}} Sources": "{{COUNT}} lähdettä",
"{{COUNT}} words": "{{COUNT}} sanaa", "{{COUNT}} words": "{{COUNT}} sanaa",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Lisää tekstisisältöä", "Add text content": "Lisää tekstisisältöä",
"Add User": "Lisää käyttäjä", "Add User": "Lisää käyttäjä",
"Add User Group": "Lisää käyttäjäryhmä", "Add User Group": "Lisää käyttäjäryhmä",
"Add webpage": "",
"Additional Config": "Lisäasetukset", "Additional Config": "Lisäasetukset",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "Lisäparametrit", "Additional Parameters": "Lisäparametrit",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "Kaikki", "All": "Kaikki",
"All chats have been unarchived.": "Kaikki keskustelut poistettu arkistosta.", "All chats have been unarchived.": "Kaikki keskustelut poistettu arkistosta.",
"All Documents": "Kaikki asiakirjat",
"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti", "All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
"Allow Call": "Salli puhelut", "Allow Call": "Salli puhelut",
"Allow Chat Controls": "Salli keskustelujen hallinta", "Allow Chat Controls": "Salli keskustelujen hallinta",
@ -136,6 +138,7 @@
"API keys": "API-avaimet", "API keys": "API-avaimet",
"API Keys": "API-avaimet", "API Keys": "API-avaimet",
"API Mode": "API-moodi", "API Mode": "API-moodi",
"API Timeout": "",
"API Version": "API-versio", "API Version": "API-versio",
"API Version is required": "API-versio vaaditaan", "API Version is required": "API-versio vaaditaan",
"Application DN": "Sovelluksen DN", "Application DN": "Sovelluksen DN",
@ -154,6 +157,7 @@
"Are you sure?": "Oletko varma?", "Are you sure?": "Oletko varma?",
"Arena Models": "Arena-mallit", "Arena Models": "Arena-mallit",
"Artifacts": "Artefaktit", "Artifacts": "Artefaktit",
"Asc": "",
"Ask": "Kysy", "Ask": "Kysy",
"Ask a question": "Kysy kysymys", "Ask a question": "Kysy kysymys",
"Assistant": "Avustaja", "Assistant": "Avustaja",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria", "Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Peruuta", "Cancel": "Peruuta",
"Cannot create an empty note.": "",
"Capabilities": "Ominaisuuksia", "Capabilities": "Ominaisuuksia",
"Capture": "Näyttökuva", "Capture": "Näyttökuva",
"Capture Audio": "Kaappaa ääntä", "Capture Audio": "Kaappaa ääntä",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanavan poisto onnistui", "Channel deleted successfully": "Kanavan poisto onnistui",
"Channel Name": "Kanavan nimi", "Channel Name": "Kanavan nimi",
"Channel name cannot be empty.": "Kanavan nimi ei voi olla tyhjä", "Channel name cannot be empty.": "Kanavan nimi ei voi olla tyhjä",
"Channel name must be less than 128 characters": "",
"Channel Type": "Kanavatyyppi", "Channel Type": "Kanavatyyppi",
"Channel updated successfully": "Kanavan päivitys onnistui", "Channel updated successfully": "Kanavan päivitys onnistui",
"Channels": "Kanavat", "Channels": "Kanavat",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Yhteistyökanava, johon ihmiset liittyvät jäseninä", "Collaboration channel where people join as members": "Yhteistyökanava, johon ihmiset liittyvät jäseninä",
"Collapse": "Pienennä", "Collapse": "Pienennä",
"Collection": "Kokoelma", "Collection": "Kokoelma",
"Collections": "",
"Color": "Väri", "Color": "Väri",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API -avain", "ComfyUI API Key": "ComfyUI API -avain",
@ -365,6 +372,7 @@
"Create Model": "Luo malli", "Create Model": "Luo malli",
"Create new key": "Luo uusi avain", "Create new key": "Luo uusi avain",
"Create new secret key": "Luo uusi salainen avain", "Create new secret key": "Luo uusi salainen avain",
"Create note": "",
"Create Note": "Luo muistiinpano", "Create Note": "Luo muistiinpano",
"Create your first note by clicking on the plus button below.": "Luo ensimmäinen muistiinpanosi painamalla alla olevaa plus painiketta.", "Create your first note by clicking on the plus button below.": "Luo ensimmäinen muistiinpanosi painamalla alla olevaa plus painiketta.",
"Created at": "Luotu", "Created at": "Luotu",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Poistettu {{nimi}}", "Deleted {{name}}": "Poistettu {{nimi}}",
"Deleted User": "Käyttäjä poistettu", "Deleted User": "Käyttäjä poistettu",
"Deployment names are required for Azure OpenAI": "Azure OpenAI:lle vaaditaan käyttöönottojen nimet", "Deployment names are required for Azure OpenAI": "Azure OpenAI:lle vaaditaan käyttöönottojen nimet",
"Desc": "",
"Describe your knowledge base and objectives": "Kuvaa tietokantasi ja tavoitteesi", "Describe your knowledge base and objectives": "Kuvaa tietokantasi ja tavoitteesi",
"Description": "Kuvaus", "Description": "Kuvaus",
"Detect Artifacts Automatically": "Tunnista artefaktit automaattisesti", "Detect Artifacts Automatically": "Tunnista artefaktit automaattisesti",
@ -487,7 +496,6 @@
"Download as SVG": "Lataa SVG:nä", "Download as SVG": "Lataa SVG:nä",
"Download canceled": "Lataus peruutettu", "Download canceled": "Lataus peruutettu",
"Download Database": "Lataa tietokanta", "Download Database": "Lataa tietokanta",
"Drag and drop a file to upload or select a file to view": "Raahaa ja pudota tiedosto ladattavaksi tai valitse tiedosto katseltavaksi",
"Draw": "Piirros", "Draw": "Piirros",
"Drop any files here to upload": "Pudota tähän ladattavat tiedostot", "Drop any files here to upload": "Pudota tähän ladattavat tiedostot",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kirjoita Kagi Search API -avain", "Enter Kagi Search API Key": "Kirjoita Kagi Search API -avain",
"Enter Key Behavior": "Enter näppäimen käyttäytyminen", "Enter Key Behavior": "Enter näppäimen käyttäytyminen",
"Enter language codes": "Kirjoita kielikoodit", "Enter language codes": "Kirjoita kielikoodit",
"Enter MinerU API Key": "Kirjoita MinerU API-avain",
"Enter Mistral API Base URL": "Kirjoita Mistral API verkko-osoite", "Enter Mistral API Base URL": "Kirjoita Mistral API verkko-osoite",
"Enter Mistral API Key": "Kirjoita Mistral API-avain", "Enter Mistral API Key": "Kirjoita Mistral API-avain",
"Enter Model ID": "Kirjoita mallitunnus", "Enter Model ID": "Kirjoita mallitunnus",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Kirjoita SearchApi API -avain", "Enter SearchApi API Key": "Kirjoita SearchApi API -avain",
"Enter SearchApi Engine": "Kirjoita SearchApi-moottori", "Enter SearchApi Engine": "Kirjoita SearchApi-moottori",
"Enter Searxng Query URL": "Kirjoita Searxng-kyselyn verkko-osoite", "Enter Searxng Query URL": "Kirjoita Searxng-kyselyn verkko-osoite",
"Enter Searxng search language": "",
"Enter Seed": "Kirjoita siemenluku", "Enter Seed": "Kirjoita siemenluku",
"Enter SerpApi API Key": "Kirjoita SerpApi API -avain", "Enter SerpApi API Key": "Kirjoita SerpApi API -avain",
"Enter SerpApi Engine": "Valitse SerpApi Moottori", "Enter SerpApi Engine": "Valitse SerpApi Moottori",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Keskustelun esikatselun lataaminen epäonnistui", "Failed to load chat preview": "Keskustelun esikatselun lataaminen epäonnistui",
"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.", "Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
"Failed to move chat": "Keskustelun siirto epäonnistui", "Failed to move chat": "Keskustelun siirto epäonnistui",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui", "Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
"Failed to remove member": "Jäsenen poistaminen epäonnistui", "Failed to remove member": "Jäsenen poistaminen epäonnistui",
"Failed to render diagram": "Diagrammin renderöinti epäonnistui", "Failed to render diagram": "Diagrammin renderöinti epäonnistui",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API -avain", "Google PSE API Key": "Google PSE API -avain",
"Google PSE Engine Id": "Google PSE -moottorin tunnus", "Google PSE Engine Id": "Google PSE -moottorin tunnus",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Ryhmä", "Group": "Ryhmä",
"Group Channel": "Ryhmäkanava", "Group Channel": "Ryhmäkanava",
"Group created successfully": "Ryhmä luotu onnistuneesti", "Group created successfully": "Ryhmä luotu onnistuneesti",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Tuo asetukset JSON-tiedostosta", "Import Config from JSON File": "Tuo asetukset JSON-tiedostosta",
"Import From Link": "Tuo verkko-osoitteesta", "Import From Link": "Tuo verkko-osoitteesta",
"Import Models": "Tuo mallit", "Import Models": "Tuo mallit",
"Import Notes": "Tuo muistiinpanoja",
"Import Presets": "Tuo esiasetuksia", "Import Presets": "Tuo esiasetuksia",
"Import Prompts": "Tuo kehoitteet", "Import Prompts": "Tuo kehoitteet",
"Import successful": "Tuonti onnistui", "Import successful": "Tuonti onnistui",
@ -989,6 +998,8 @@
"License": "Lisenssi", "License": "Lisenssi",
"Lift List": "Nostolista", "Lift List": "Nostolista",
"Light": "Vaalea", "Light": "Vaalea",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Kuuntelee...", "Listening...": "Kuuntelee...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.", "LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Nimi ja ID vaaditaan, täytä puuttuvat kentät", "Name and ID are required, please fill them out": "Nimi ja ID vaaditaan, täytä puuttuvat kentät",
"Name your knowledge base": "Anna tietokannalle nimi", "Name your knowledge base": "Anna tietokannalle nimi",
"Native": "Natiivi", "Native": "Natiivi",
"New": "",
"New Button": "Uusi painike", "New Button": "Uusi painike",
"New Chat": "Uusi keskustelu", "New Chat": "Uusi keskustelu",
"New Folder": "Uusi kansio", "New Folder": "Uusi kansio",
"New Function": "Uusi toiminto", "New Function": "Uusi toiminto",
"New Knowledge": "Uutta tietoa", "New Knowledge": "Uutta tietoa",
"New Model": "Uusi malli", "New Model": "Uusi malli",
"New Note": "",
"New Password": "Uusi salasana", "New Password": "Uusi salasana",
"New Prompt": "Uusi kehoite", "New Prompt": "Uusi kehoite",
"New Temporary Chat": "Uusi väliaikainen keskustelu", "New Temporary Chat": "Uusi väliaikainen keskustelu",
@ -1112,17 +1125,18 @@
"No chats found.": "Keskusteluja ei löytynyt", "No chats found.": "Keskusteluja ei löytynyt",
"No content": "Ei sisältöä", "No content": "Ei sisältöä",
"No content found": "Sisältöä ei löytynyt", "No content found": "Sisältöä ei löytynyt",
"No content found in file.": "Sisältöä ei löytynyt tiedostosta.",
"No content to speak": "Ei puhuttavaa sisältöä", "No content to speak": "Ei puhuttavaa sisältöä",
"No conversation to save": "Ei tallennettavaa keskustelua", "No conversation to save": "Ei tallennettavaa keskustelua",
"No distance available": "Etäisyyttä ei saatavilla", "No distance available": "Etäisyyttä ei saatavilla",
"No expiration can pose security risks.": "Vanhenemisen laittamatta jättäminen voi altistaa tietoturvariskeille.", "No expiration can pose security risks.": "Vanhenemisen laittamatta jättäminen voi altistaa tietoturvariskeille.",
"No feedbacks found": "Palautteita ei löytynyt", "No feedbacks found": "Palautteita ei löytynyt",
"No file selected": "Tiedostoa ei ole valittu", "No file selected": "Tiedostoa ei ole valittu",
"No files in this knowledge base.": "",
"No functions found": "Funktioita ei löytynyt", "No functions found": "Funktioita ei löytynyt",
"No groups with access, add a group to grant access": "Ei ryhmiä, joilla on pääsy, lisää ryhmä antaaksesi pääsyn", "No groups with access, add a group to grant access": "Ei ryhmiä, joilla on pääsy, lisää ryhmä antaaksesi pääsyn",
"No HTML, CSS, or JavaScript content found.": "HTML-, CSS- tai JavaScript-sisältöä ei löytynyt.", "No HTML, CSS, or JavaScript content found.": "HTML-, CSS- tai JavaScript-sisältöä ei löytynyt.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Tietoa ei löytynyt", "No knowledge found": "Tietoa ei löytynyt",
"No memories to clear": "Ei muistia tyhjennettäväksi", "No memories to clear": "Ei muistia tyhjennettäväksi",
"No model IDs": "Ei mallitunnuksia", "No model IDs": "Ei mallitunnuksia",
@ -1309,6 +1323,8 @@
"Read": "Lue", "Read": "Lue",
"Read Aloud": "Lue ääneen", "Read Aloud": "Lue ääneen",
"Read more →": "Lue lisää →", "Read more →": "Lue lisää →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Päättely", "Reason": "Päättely",
"Reasoning Effort": "Päättelyn määrä", "Reasoning Effort": "Päättelyn määrä",
"Reasoning Tags": "Päättely tagit", "Reasoning Tags": "Päättely tagit",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Haetaan tietämystä \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Haetaan tietämystä \"{{searchQuery}}\"",
"Searching the web": "Haetaan verkosta...", "Searching the web": "Haetaan verkosta...",
"Searxng Query URL": "Searxng-kyselyn verkko-osoite", "Searxng Query URL": "Searxng-kyselyn verkko-osoite",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Katso ohjeet readme.md-tiedostosta", "See readme.md for instructions": "Katso ohjeet readme.md-tiedostosta",
"See what's new": "Katso, mitä uutta", "See what's new": "Katso, mitä uutta",
"Seed": "Siemenluku", "Seed": "Siemenluku",
@ -1491,6 +1508,7 @@
"Show": "Näytä", "Show": "Näytä",
"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä", "Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä", "Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
"Show Files": "",
"Show Formatting Toolbar": "Näytä muotoilupalkki", "Show Formatting Toolbar": "Näytä muotoilupalkki",
"Show image preview": "Näytä kuvan esikatselu", "Show image preview": "Näytä kuvan esikatselu",
"Show Model": "Näytä malli", "Show Model": "Näytä malli",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Lähde", "Source": "Lähde",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.", "Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Otsikko", "Title": "Otsikko",
"Title Auto-Generation": "Otsikon automaattinen luonti", "Title Auto-Generation": "Otsikon automaattinen luonti",
"Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.", "Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.", "Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
"Tools Public Sharing": "Työkalujen julkinen jakaminen", "Tools Public Sharing": "Työkalujen julkinen jakaminen",
"Tools Sharing": "Työkalu jako", "Tools Sharing": "Työkalu jako",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K uudelleen sijoittaja", "Top K Reranker": "Top K uudelleen sijoittaja",
"Transformers": "Muunnokset", "Transformers": "Muunnokset",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Verkkohaku keskustelussa", "Web Search in Chat": "Verkkohaku keskustelussa",
"Web Search Query Generation": "Verkkohakukyselyn luonti", "Web Search Query Generation": "Verkkohakukyselyn luonti",
"Webhook URL": "Webhook verkko-osoite", "Webhook URL": "Webhook verkko-osoite",
"Webpage URL": "Verkkosivun verkko-osoite", "Webpage URLs": "",
"WebUI Settings": "WebUI-asetukset", "WebUI Settings": "WebUI-asetukset",
"WebUI URL": "WebUI-osoite", "WebUI URL": "WebUI-osoite",
"WebUI will make requests to \"{{url}}\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.", "You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
"You do not have permission to send messages in this channel.": "Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan.", "You do not have permission to send messages in this channel.": "Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan.",
"You do not have permission to send messages in this thread.": "Sinulla ei ole oikeuksia lähettää viestejä tähän ketjuun.", "You do not have permission to send messages in this thread.": "Sinulla ei ole oikeuksia lähettää viestejä tähän ketjuun.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.", "You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.",
"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.", "You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
"You have shared this chat": "Olet jakanut tämän keskustelun", "You have shared this chat": "Olet jakanut tämän keskustelun",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}", "{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}", "{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Ajouter du contenu textuel", "Add text content": "Ajouter du contenu textuel",
"Add User": "Ajouter un utilisateur", "Add User": "Ajouter un utilisateur",
"Add User Group": "Ajouter un groupe d'utilisateurs", "Add User Group": "Ajouter un groupe d'utilisateurs",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Tout", "All": "Tout",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Tous les documents",
"All models deleted successfully": "Tous les modèles ont été supprimés avec succès", "All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
"Allow Call": "Autoriser les appels", "Allow Call": "Autoriser les appels",
"Allow Chat Controls": "Autoriser les contrôles de la conversation", "Allow Chat Controls": "Autoriser les contrôles de la conversation",
@ -136,6 +138,7 @@
"API keys": "Clés d'API", "API keys": "Clés d'API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Version de l'API", "API Version": "Version de l'API",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN de l'application", "Application DN": "DN de l'application",
@ -154,6 +157,7 @@
"Are you sure?": "Êtes-vous certain ?", "Are you sure?": "Êtes-vous certain ?",
"Arena Models": "Modèles d'arène", "Arena Models": "Modèles d'arène",
"Artifacts": "Artéfacts", "Artifacts": "Artéfacts",
"Asc": "",
"Ask": "Demander", "Ask": "Demander",
"Ask a question": "Posez votre question", "Ask a question": "Posez votre question",
"Assistant": "Assistant", "Assistant": "Assistant",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT", "Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
"Camera": "Appareil photo", "Camera": "Appareil photo",
"Cancel": "Annuler", "Cancel": "Annuler",
"Cannot create an empty note.": "",
"Capabilities": "Capacités", "Capabilities": "Capacités",
"Capture": "Prise de vue", "Capture": "Prise de vue",
"Capture Audio": "Prise de son", "Capture Audio": "Prise de son",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nom du canal", "Channel Name": "Nom du canal",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canaux", "Channels": "Canaux",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Réduire", "Collapse": "Réduire",
"Collection": "Collection", "Collection": "Collection",
"Collections": "",
"Color": "Couleur", "Color": "Couleur",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Clé API ComfyUI", "ComfyUI API Key": "Clé API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Créer une nouvelle clé", "Create new key": "Créer une nouvelle clé",
"Create new secret key": "Créer une nouvelle clé secrète", "Create new secret key": "Créer une nouvelle clé secrète",
"Create note": "",
"Create Note": "Créer une note", "Create Note": "Créer une note",
"Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous", "Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous",
"Created at": "Créé le", "Created at": "Créé le",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Supprimé {{name}}", "Deleted {{name}}": "Supprimé {{name}}",
"Deleted User": "Utilisateur supprimé", "Deleted User": "Utilisateur supprimé",
"Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI", "Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs", "Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs",
"Description": "Description", "Description": "Description",
"Detect Artifacts Automatically": "Détection automatique des Artifacts", "Detect Artifacts Automatically": "Détection automatique des Artifacts",
@ -487,7 +496,6 @@
"Download as SVG": "Télécharger au format SVG", "Download as SVG": "Télécharger au format SVG",
"Download canceled": "Téléchargement annulé", "Download canceled": "Téléchargement annulé",
"Download Database": "Télécharger la base de données", "Download Database": "Télécharger la base de données",
"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", "Draw": "Match nul",
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser", "Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Entrez la clé API Kagi Search", "Enter Kagi Search API Key": "Entrez la clé API Kagi Search",
"Enter Key Behavior": "Entrez la clé Behavior", "Enter Key Behavior": "Entrez la clé Behavior",
"Enter language codes": "Entrez les codes de langue", "Enter language codes": "Entrez les codes de langue",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Entrez la clé APU de Mistral", "Enter Mistral API Key": "Entrez la clé APU de Mistral",
"Enter Model ID": "Entrez l'ID du modèle", "Enter Model ID": "Entrez l'ID du modèle",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Entrez la clé API SearchApi", "Enter SearchApi API Key": "Entrez la clé API SearchApi",
"Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi", "Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi",
"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng", "Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Entrez Seed", "Enter Seed": "Entrez Seed",
"Enter SerpApi API Key": "Entrez la clé API SerPAI", "Enter SerpApi API Key": "Entrez la clé API SerPAI",
"Enter SerpApi Engine": "Entrez le moteur SerApi", "Enter SerpApi Engine": "Entrez le moteur SerApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Clé API Google PSE", "Google PSE API Key": "Clé API Google PSE",
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Groupe", "Group": "Groupe",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Groupe créé avec succès", "Group created successfully": "Groupe créé avec succès",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON", "Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
"Import From Link": "Importer depuis le lien", "Import From Link": "Importer depuis le lien",
"Import Models": "", "Import Models": "",
"Import Notes": "Importer des notes",
"Import Presets": "Importer les préréglages", "Import Presets": "Importer les préréglages",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licence", "License": "Licence",
"Lift List": "", "Lift List": "",
"Light": "Clair", "Light": "Clair",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Écoute en cours...", "Listening...": "Écoute en cours...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.", "LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances", "Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif", "Native": "Natif",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nouvelle conversation", "New Chat": "Nouvelle conversation",
"New Folder": "Nouveau dossier", "New Folder": "Nouveau dossier",
"New Function": "Nouvelle fonction", "New Function": "Nouvelle fonction",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Pas de conversation trouvée.", "No chats found.": "Pas de conversation trouvée.",
"No content": "Pas de contenu", "No content": "Pas de contenu",
"No content found": "Aucun contenu trouvé", "No content found": "Aucun contenu trouvé",
"No content found in file.": "Aucun contenu trouvé dans le fichier.",
"No content to speak": "Rien à signaler", "No content to speak": "Rien à signaler",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Aucune distance disponible", "No distance available": "Aucune distance disponible",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Aucun avis trouvé", "No feedbacks found": "Aucun avis trouvé",
"No file selected": "Aucun fichier sélectionné", "No file selected": "Aucun fichier sélectionné",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Aucun groupe n'a accès, ajoutez un groupe pour accorder l'accès", "No groups with access, add a group to grant access": "Aucun groupe n'a accès, ajoutez un groupe pour accorder l'accès",
"No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.", "No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.",
"No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé", "No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé",
"No knowledge bases found.": "",
"No knowledge found": "Aucune connaissance trouvée", "No knowledge found": "Aucune connaissance trouvée",
"No memories to clear": "Aucun souvenir à effacer", "No memories to clear": "Aucun souvenir à effacer",
"No model IDs": "Aucun ID de modèle", "No model IDs": "Aucun ID de modèle",
@ -1309,6 +1323,8 @@
"Read": "Lire", "Read": "Lire",
"Read Aloud": "Lire à haute voix", "Read Aloud": "Lire à haute voix",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Raisonne", "Reason": "Raisonne",
"Reasoning Effort": "Effort de raisonnement", "Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Recherche des connaissances pour « {{searchQuery}} »", "Searching Knowledge for \"{{searchQuery}}\"": "Recherche des connaissances pour « {{searchQuery}} »",
"Searching the web": "Recherche sur internet...", "Searching the web": "Recherche sur internet...",
"Searxng Query URL": "URL de recherche Searxng", "Searxng Query URL": "URL de recherche Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions", "See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités", "See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed", "Seed": "Seed",
@ -1492,6 +1509,7 @@
"Show": "Afficher", "Show": "Afficher",
"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion", "Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente", "Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "Afficher l'aperçu de l'image", "Show image preview": "Afficher l'aperçu de l'image",
"Show Model": "Afficher le model", "Show Model": "Afficher le model",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Identifiant API Sougou Search (sID)", "Sougou Search API sID": "Identifiant API Sougou Search (sID)",
"Sougou Search API SK": "Clé secrète API Sougou Search (SK)", "Sougou Search API SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source", "Source": "Source",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.", "Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titre", "Title": "Titre",
"Title Auto-Generation": "Génération automatique des titres", "Title Auto-Generation": "Génération automatique des titres",
"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.", "Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.", "Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
"Tools Public Sharing": "Partage public des outils", "Tools Public Sharing": "Partage public des outils",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Recherche web depuis la conversation", "Web Search in Chat": "Recherche web depuis la conversation",
"Web Search Query Generation": "Génération de requête de recherche Web", "Web Search Query Generation": "Génération de requête de recherche Web",
"Webhook URL": "URL du webhook", "Webhook URL": "URL du webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Réglages de WebUI", "WebUI Settings": "Réglages de WebUI",
"WebUI URL": "URL de WebUI", "WebUI URL": "URL de WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.", "You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Vous n'avez pas l'autorisation de téléverser des fichiers", "You do not have permission to upload files.": "Vous n'avez pas l'autorisation de téléverser des fichiers",
"You have no archived conversations.": "Vous n'avez aucune conversation archivée.", "You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
"You have shared this chat": "Vous avez partagé cette conversation.", "You have shared this chat": "Vous avez partagé cette conversation.",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} outils disponibles ", "{{COUNT}} Available Tools": "{{COUNT}} outils disponibles ",
"{{COUNT}} characters": "{{COUNT}} caractères", "{{COUNT}} characters": "{{COUNT}} caractères",
"{{COUNT}} extracted lines": "{{COUNT}} lignes extraites", "{{COUNT}} extracted lines": "{{COUNT}} lignes extraites",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}", "{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Sources", "{{COUNT}} Sources": "{{COUNT}} Sources",
"{{COUNT}} words": "{{COUNT}} mots", "{{COUNT}} words": "{{COUNT}} mots",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} à {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} à {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Ajouter du contenu textuel", "Add text content": "Ajouter du contenu textuel",
"Add User": "Ajouter un utilisateur", "Add User": "Ajouter un utilisateur",
"Add User Group": "Ajouter un groupe d'utilisateurs", "Add User Group": "Ajouter un groupe d'utilisateurs",
"Add webpage": "",
"Additional Config": "Configuration supplémentaire", "Additional Config": "Configuration supplémentaire",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "IA", "AI": "IA",
"All": "Tout", "All": "Tout",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Tous les documents",
"All models deleted successfully": "Tous les modèles ont été supprimés avec succès", "All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
"Allow Call": "Autoriser les appels", "Allow Call": "Autoriser les appels",
"Allow Chat Controls": "Autoriser les contrôles de la conversation", "Allow Chat Controls": "Autoriser les contrôles de la conversation",
@ -136,6 +138,7 @@
"API keys": "Clés d'API", "API keys": "Clés d'API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Version de l'API", "API Version": "Version de l'API",
"API Version is required": "Version de l'API requise", "API Version is required": "Version de l'API requise",
"Application DN": "DN de l'application", "Application DN": "DN de l'application",
@ -154,6 +157,7 @@
"Are you sure?": "Êtes-vous certain ?", "Are you sure?": "Êtes-vous certain ?",
"Arena Models": "Modèles d'arène", "Arena Models": "Modèles d'arène",
"Artifacts": "Artéfacts", "Artifacts": "Artéfacts",
"Asc": "",
"Ask": "Demander", "Ask": "Demander",
"Ask a question": "Posez votre question", "Ask a question": "Posez votre question",
"Assistant": "Assistant", "Assistant": "Assistant",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT", "Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
"Camera": "Appareil photo", "Camera": "Appareil photo",
"Cancel": "Annuler", "Cancel": "Annuler",
"Cannot create an empty note.": "",
"Capabilities": "Capacités", "Capabilities": "Capacités",
"Capture": "Prise de vue", "Capture": "Prise de vue",
"Capture Audio": "Prise de son", "Capture Audio": "Prise de son",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Le canal a été supprimée avec succès", "Channel deleted successfully": "Le canal a été supprimée avec succès",
"Channel Name": "Nom du canal", "Channel Name": "Nom du canal",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Le canal a été mise à jour avec succès", "Channel updated successfully": "Le canal a été mise à jour avec succès",
"Channels": "Canaux", "Channels": "Canaux",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Réduire", "Collapse": "Réduire",
"Collection": "Collection", "Collection": "Collection",
"Collections": "",
"Color": "Couleur", "Color": "Couleur",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Clé API ComfyUI", "ComfyUI API Key": "Clé API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Créer une nouvelle clé", "Create new key": "Créer une nouvelle clé",
"Create new secret key": "Créer une nouvelle clé secrète", "Create new secret key": "Créer une nouvelle clé secrète",
"Create note": "",
"Create Note": "Créer une note", "Create Note": "Créer une note",
"Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous", "Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous",
"Created at": "Créé le", "Created at": "Créé le",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Supprimé {{name}}", "Deleted {{name}}": "Supprimé {{name}}",
"Deleted User": "Utilisateur supprimé", "Deleted User": "Utilisateur supprimé",
"Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI", "Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs", "Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs",
"Description": "Description", "Description": "Description",
"Detect Artifacts Automatically": "Détection automatique des Artifacts", "Detect Artifacts Automatically": "Détection automatique des Artifacts",
@ -487,7 +496,6 @@
"Download as SVG": "Télécharger au format SVG", "Download as SVG": "Télécharger au format SVG",
"Download canceled": "Téléchargement annulé", "Download canceled": "Téléchargement annulé",
"Download Database": "Télécharger la base de données", "Download Database": "Télécharger la base de données",
"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", "Draw": "Match nul",
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser", "Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Entrez la clé API Kagi Search", "Enter Kagi Search API Key": "Entrez la clé API Kagi Search",
"Enter Key Behavior": "Entrez la clé Behavior", "Enter Key Behavior": "Entrez la clé Behavior",
"Enter language codes": "Entrez les codes de langue", "Enter language codes": "Entrez les codes de langue",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Entrez la clé APU de Mistral", "Enter Mistral API Key": "Entrez la clé APU de Mistral",
"Enter Model ID": "Entrez l'ID du modèle", "Enter Model ID": "Entrez l'ID du modèle",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Entrez la clé API SearchApi", "Enter SearchApi API Key": "Entrez la clé API SearchApi",
"Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi", "Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi",
"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng", "Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Entrez Seed", "Enter Seed": "Entrez Seed",
"Enter SerpApi API Key": "Entrez la clé API SerPAI", "Enter SerpApi API Key": "Entrez la clé API SerPAI",
"Enter SerpApi Engine": "Entrez le moteur SerApi", "Enter SerpApi Engine": "Entrez le moteur SerApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Échec du chargement de l'aperçu du chat", "Failed to load chat preview": "Échec du chargement de l'aperçu du chat",
"Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to move chat": "Échec du déplacement du chat", "Failed to move chat": "Échec du déplacement du chat",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Clé API Google PSE", "Google PSE API Key": "Clé API Google PSE",
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Groupe", "Group": "Groupe",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Groupe créé avec succès", "Group created successfully": "Groupe créé avec succès",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON", "Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
"Import From Link": "Importer depuis le lien", "Import From Link": "Importer depuis le lien",
"Import Models": "", "Import Models": "",
"Import Notes": "Importer des notes",
"Import Presets": "Importer les préréglages", "Import Presets": "Importer les préréglages",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licence", "License": "Licence",
"Lift List": "", "Lift List": "",
"Light": "Clair", "Light": "Clair",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Écoute en cours...", "Listening...": "Écoute en cours...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.", "LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Le nom et l'identifiant sont obligatoires, veuillez les remplir", "Name and ID are required, please fill them out": "Le nom et l'identifiant sont obligatoires, veuillez les remplir",
"Name your knowledge base": "Nommez votre base de connaissances", "Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif", "Native": "Natif",
"New": "",
"New Button": "Nouveau bouton", "New Button": "Nouveau bouton",
"New Chat": "Nouvelle conversation", "New Chat": "Nouvelle conversation",
"New Folder": "Nouveau dossier", "New Folder": "Nouveau dossier",
"New Function": "Nouvelle fonction", "New Function": "Nouvelle fonction",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Pas de conversation trouvée.", "No chats found.": "Pas de conversation trouvée.",
"No content": "Pas de contenu", "No content": "Pas de contenu",
"No content found": "Aucun contenu trouvé", "No content found": "Aucun contenu trouvé",
"No content found in file.": "Aucun contenu trouvé dans le fichier.",
"No content to speak": "Rien à signaler", "No content to speak": "Rien à signaler",
"No conversation to save": "Aucune conversation à sauvegarder", "No conversation to save": "Aucune conversation à sauvegarder",
"No distance available": "Aucune distance disponible", "No distance available": "Aucune distance disponible",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Aucun avis trouvé", "No feedbacks found": "Aucun avis trouvé",
"No file selected": "Aucun fichier sélectionné", "No file selected": "Aucun fichier sélectionné",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Aucun groupe n'a accès, ajoutez un groupe pour accorder l'accès", "No groups with access, add a group to grant access": "Aucun groupe n'a accès, ajoutez un groupe pour accorder l'accès",
"No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.", "No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.",
"No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé", "No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé",
"No knowledge bases found.": "",
"No knowledge found": "Aucune connaissance trouvée", "No knowledge found": "Aucune connaissance trouvée",
"No memories to clear": "Aucun souvenir à effacer", "No memories to clear": "Aucun souvenir à effacer",
"No model IDs": "Aucun ID de modèle", "No model IDs": "Aucun ID de modèle",
@ -1309,6 +1323,8 @@
"Read": "Lire", "Read": "Lire",
"Read Aloud": "Lire à haute voix", "Read Aloud": "Lire à haute voix",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Raisonne", "Reason": "Raisonne",
"Reasoning Effort": "Effort de raisonnement", "Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "Mots-clés de raisonnement", "Reasoning Tags": "Mots-clés de raisonnement",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Recherche des connaissances pour « {{searchQuery}} »", "Searching Knowledge for \"{{searchQuery}}\"": "Recherche des connaissances pour « {{searchQuery}} »",
"Searching the web": "Recherche sur internet...", "Searching the web": "Recherche sur internet...",
"Searxng Query URL": "URL de recherche Searxng", "Searxng Query URL": "URL de recherche Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions", "See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités", "See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed", "Seed": "Seed",
@ -1492,6 +1509,7 @@
"Show": "Afficher", "Show": "Afficher",
"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion", "Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente", "Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
"Show Files": "",
"Show Formatting Toolbar": "Afficher la barre d'outils de formatage", "Show Formatting Toolbar": "Afficher la barre d'outils de formatage",
"Show image preview": "Afficher l'aperçu de l'image", "Show image preview": "Afficher l'aperçu de l'image",
"Show Model": "Afficher le model", "Show Model": "Afficher le model",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Identifiant API Sougou Search (sID)", "Sougou Search API sID": "Identifiant API Sougou Search (sID)",
"Sougou Search API SK": "Clé secrète API Sougou Search (SK)", "Sougou Search API SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source", "Source": "Source",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.", "Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titre", "Title": "Titre",
"Title Auto-Generation": "Génération automatique des titres", "Title Auto-Generation": "Génération automatique des titres",
"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.", "Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.", "Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
"Tools Public Sharing": "Partage public des outils", "Tools Public Sharing": "Partage public des outils",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Recherche web depuis la conversation", "Web Search in Chat": "Recherche web depuis la conversation",
"Web Search Query Generation": "Génération de requête de recherche Web", "Web Search Query Generation": "Génération de requête de recherche Web",
"Webhook URL": "URL du webhook", "Webhook URL": "URL du webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Réglages de WebUI", "WebUI Settings": "Réglages de WebUI",
"WebUI URL": "URL de WebUI", "WebUI URL": "URL de WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.", "You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Vous n'avez pas l'autorisation de téléverser des fichiers", "You do not have permission to upload files.": "Vous n'avez pas l'autorisation de téléverser des fichiers",
"You have no archived conversations.": "Vous n'avez aucune conversation archivée.", "You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
"You have shared this chat": "Vous avez partagé cette conversation.", "You have shared this chat": "Vous avez partagé cette conversation.",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Añade contido de texto", "Add text content": "Añade contido de texto",
"Add User": "Agregar Usuario", "Add User": "Agregar Usuario",
"Add User Group": "Agregar usuario al grupo", "Add User Group": "Agregar usuario al grupo",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Todos os Documentos",
"All models deleted successfully": "Todos os modelos han sido borrados", "All models deleted successfully": "Todos os modelos han sido borrados",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Permitir Control dos Chats", "Allow Chat Controls": "Permitir Control dos Chats",
@ -136,6 +138,7 @@
"API keys": "Chaves da API", "API keys": "Chaves da API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Aplicacion DN", "Application DN": "Aplicacion DN",
@ -154,6 +157,7 @@
"Are you sure?": "¿Está seguro?", "Are you sure?": "¿Está seguro?",
"Arena Models": "Area de Modelos", "Arena Models": "Area de Modelos",
"Artifacts": "Artefactos", "Artifacts": "Artefactos",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Fai unha pregunta", "Ask a question": "Fai unha pregunta",
"Assistant": "Asistente", "Assistant": "Asistente",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web", "Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web",
"Camera": "Cámara", "Camera": "Cámara",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Cannot create an empty note.": "",
"Capabilities": "Capacidades", "Capabilities": "Capacidades",
"Capture": "Captura", "Capture": "Captura",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nome do Canal", "Channel Name": "Nome do Canal",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canal", "Channels": "Canal",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Esconder", "Collapse": "Esconder",
"Collection": "Colección", "Collection": "Colección",
"Collections": "",
"Color": "Cor", "Color": "Cor",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Chave da API de ComfyUI", "ComfyUI API Key": "Chave da API de ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Xerar unha nova chave", "Create new key": "Xerar unha nova chave",
"Create new secret key": "Xerar unha nova chave secreta", "Create new secret key": "Xerar unha nova chave secreta",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Creado en", "Created at": "Creado en",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Eliminado {{nombre}}", "Deleted {{name}}": "Eliminado {{nombre}}",
"Deleted User": "Usuario eliminado", "Deleted User": "Usuario eliminado",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Describe a tua base de coñecementos e obxetivos", "Describe your knowledge base and objectives": "Describe a tua base de coñecementos e obxetivos",
"Description": "Descripción", "Description": "Descripción",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Descarga cancelada", "Download canceled": "Descarga cancelada",
"Download Database": "Descarga a Base de Datos", "Download Database": "Descarga a Base de Datos",
"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", "Draw": "Dibujar",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas detempo son 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas detempo son 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Ingrese a chave API de Kagi Search", "Enter Kagi Search API Key": "Ingrese a chave API de Kagi Search",
"Enter Key Behavior": "Ingrese o comportamento da chave", "Enter Key Behavior": "Ingrese o comportamento da chave",
"Enter language codes": "Ingrese códigos de idioma", "Enter language codes": "Ingrese códigos de idioma",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Ingresa o ID do modelo", "Enter Model ID": "Ingresa o ID do modelo",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Ingrese a chave API de SearchApi", "Enter SearchApi API Key": "Ingrese a chave API de SearchApi",
"Enter SearchApi Engine": "Ingrese o motor de SearchApi", "Enter SearchApi Engine": "Ingrese o motor de SearchApi",
"Enter Searxng Query URL": "Introduzca a URL de consulta de Searxng", "Enter Searxng Query URL": "Introduzca a URL de consulta de Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Ingrese a semilla", "Enter Seed": "Ingrese a semilla",
"Enter SerpApi API Key": "Ingrese a chave API de SerpApi", "Enter SerpApi API Key": "Ingrese a chave API de SerpApi",
"Enter SerpApi Engine": "Ingrese o motor de SerpApi", "Enter SerpApi Engine": "Ingrese o motor de SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles", "Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "chave API de Google PSE", "Google PSE API Key": "chave API de Google PSE",
"Google PSE Engine Id": "ID do motor PSE de Google", "Google PSE Engine Id": "ID do motor PSE de Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Grupo creado correctamente", "Group created successfully": "Grupo creado correctamente",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importar configuración desde Arquivo JSON", "Import Config from JSON File": "Importar configuración desde Arquivo JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Importar ajustes preestablecidos", "Import Presets": "Importar ajustes preestablecidos",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licencia", "License": "Licencia",
"Lift List": "", "Lift List": "",
"Light": "Claro", "Light": "Claro",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Escoitando...", "Listening...": "Escoitando...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Os LLM poden cometer erros. Verifica a información importante.", "LLMs can make mistakes. Verify important information.": "Os LLM poden cometer erros. Verifica a información importante.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra a tua base de coñecementos", "Name your knowledge base": "Nombra a tua base de coñecementos",
"Native": "Nativo", "Native": "Nativo",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Novo Chat", "New Chat": "Novo Chat",
"New Folder": "Nova carpeta", "New Folder": "Nova carpeta",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Novo contrasinal ", "New Password": "Novo contrasinal ",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "No se encontró contido", "No content found": "No se encontró contido",
"No content found in file.": "",
"No content to speak": "Non ten contido para falar", "No content to speak": "Non ten contido para falar",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Non ten distancia disponible", "No distance available": "Non ten distancia disponible",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "No se encontraron retroalimentacions", "No feedbacks found": "No se encontraron retroalimentacions",
"No file selected": "Ningún arquivo fué seleccionado", "No file selected": "Ningún arquivo fué seleccionado",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Non ten grupos con acceso, agrega un grupo para otorgar acceso", "No groups with access, add a group to grant access": "Non ten grupos con acceso, agrega un grupo para otorgar acceso",
"No HTML, CSS, or JavaScript content found.": "No se encontró contido HTML, CSS, o JavaScript.", "No HTML, CSS, or JavaScript content found.": "No se encontró contido HTML, CSS, o JavaScript.",
"No inference engine with management support found": "No se encontró un motor de inferencia con soporte de gestión", "No inference engine with management support found": "No se encontró un motor de inferencia con soporte de gestión",
"No knowledge bases found.": "",
"No knowledge found": "No se encontrou ningún coñecemento", "No knowledge found": "No se encontrou ningún coñecemento",
"No memories to clear": "Non hay memorias que limpar", "No memories to clear": "Non hay memorias que limpar",
"No model IDs": "Non ten IDs de modelos", "No model IDs": "Non ten IDs de modelos",
@ -1309,6 +1323,8 @@
"Read": "Ler", "Read": "Ler",
"Read Aloud": "Ler en voz alta", "Read Aloud": "Ler en voz alta",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Esfuerzo de razonamiento", "Reasoning Effort": "Esfuerzo de razonamiento",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Buscando coñecemento para \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Buscando coñecemento para \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng URL de consulta", "Searxng Query URL": "Searxng URL de consulta",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Vea o readme.md para instruccions", "See readme.md for instructions": "Vea o readme.md para instruccions",
"See what's new": "Ver as novedades", "See what's new": "Ver as novedades",
"Seed": "Semilla", "Seed": "Semilla",
@ -1491,6 +1508,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de novo\" al iniciar sesión", "Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de novo\" al iniciar sesión",
"Show Admin Details in Account Pending Overlay": "Mostrar detalles de administración na capa de espera da conta", "Show Admin Details in Account Pending Overlay": "Mostrar detalles de administración na capa de espera da conta",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL do servidor de Tika", "Tika Server URL required.": "URL do servidor de Tika",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Título", "Title": "Título",
"Title Auto-Generation": "xeneración automática de títulos", "Title Auto-Generation": "xeneración automática de títulos",
"Title cannot be an empty string.": "O título non pode ser unha cadena vacía.", "Title cannot be an empty string.": "O título non pode ser unha cadena vacía.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "As ferramentas tienen un sistema de chamada de funcións que permite la execución de código arbitrario.", "Tools have a function calling system that allows arbitrary code execution.": "As ferramentas tienen un sistema de chamada de funcións que permite la execución de código arbitrario.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformadores", "Transformers": "Transformadores",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Búsqueda web en chat", "Web Search in Chat": "Búsqueda web en chat",
"Web Search Query Generation": "xeneración de consultas de búsqueda web", "Web Search Query Generation": "xeneración de consultas de búsqueda web",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Configuración do WebUI", "WebUI Settings": "Configuración do WebUI",
"WebUI URL": "URL do WebUI", "WebUI URL": "URL do WebUI",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Non pode subir un arquivo vacío.", "You cannot upload an empty file.": "Non pode subir un arquivo vacío.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Non ten permiso para subir arquivos.", "You do not have permission to upload files.": "Non ten permiso para subir arquivos.",
"You have no archived conversations.": "Non ten conversacions arquivadas.", "You have no archived conversations.": "Non ten conversacions arquivadas.",
"You have shared this chat": "Vostede ha compartido esta conversación", "You have shared this chat": "Vostede ha compartido esta conversación",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "הוסף משתמש", "Add User": "הוסף משתמש",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "כל המסמכים",
"All models deleted successfully": "כל המודלים נמחקו בהצלחה", "All models deleted successfully": "כל המודלים נמחקו בהצלחה",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "מפתחות API", "API keys": "מפתחות API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "האם אתה בטוח?", "Are you sure?": "האם אתה בטוח?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "מצלמה", "Camera": "מצלמה",
"Cancel": "בטל", "Cancel": "בטל",
"Cannot create an empty note.": "",
"Capabilities": "יכולות", "Capabilities": "יכולות",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "אוסף", "Collection": "אוסף",
"Collections": "",
"Color": "צבע", "Color": "צבע",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "מפתח API כל ComfyUI", "ComfyUI API Key": "מפתח API כל ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "צור מפתח חדש", "Create new key": "צור מפתח חדש",
"Create new secret key": "צור מפתח סודי חדש", "Create new secret key": "צור מפתח סודי חדש",
"Create note": "",
"Create Note": "יצירת פתק", "Create Note": "יצירת פתק",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "נוצר ב", "Created at": "נוצר ב",
@ -429,6 +437,7 @@
"Deleted {{name}}": "נמחק {{name}}", "Deleted {{name}}": "נמחק {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "תיאור", "Description": "תיאור",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "ההורדה בוטלה", "Download canceled": "ההורדה בוטלה",
"Download Database": "הורד מסד נתונים", "Download Database": "הורד מסד נתונים",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "הזן קודי שפה", "Enter language codes": "הזן קודי שפה",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "הזן כתובת URL של שאילתת Searxng", "Enter Searxng Query URL": "הזן כתובת URL של שאילתת Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה", "Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "מפתח API של Google PSE", "Google PSE API Key": "מפתח API של Google PSE",
"Google PSE Engine Id": "מזהה מנוע PSE של Google", "Google PSE Engine Id": "מזהה מנוע PSE של Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "קבוצה", "Group": "קבוצה",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "ייבוא פתקים",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "רישיון", "License": "רישיון",
"Lift List": "", "Lift List": "",
"Light": "בהיר", "Light": "בהיר",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.", "LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "צ'אט חדש", "New Chat": "צ'אט חדש",
"New Folder": "תיקייה חדשה", "New Folder": "תיקייה חדשה",
"New Function": "פונקציה חדשה", "New Function": "פונקציה חדשה",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "סיסמה חדשה", "New Password": "סיסמה חדשה",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "לא נמצאו צ'אטים", "No chats found.": "לא נמצאו צ'אטים",
"No content": "אין תוכן", "No content": "אין תוכן",
"No content found": "תוכן לא נמצא", "No content found": "תוכן לא נמצא",
"No content found in file.": "לא נמצא תוכן בקובץ.",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "קרא בקול", "Read Aloud": "קרא בקול",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "כתובת URL של שאילתת Searxng", "Searxng Query URL": "כתובת URL של שאילתת Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ראה את readme.md להוראות", "See readme.md for instructions": "ראה את readme.md להוראות",
"See what's new": "ראה מה חדש", "See what's new": "ראה מה חדש",
"Seed": "זרע", "Seed": "זרע",
@ -1492,6 +1509,7 @@
"Show": "הצג", "Show": "הצג",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "מקור", "Source": "מקור",
@ -1626,6 +1645,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "שם", "Title": "שם",
"Title Auto-Generation": "יצירת שם אוטומטית", "Title Auto-Generation": "יצירת שם אוטומטית",
"Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.", "Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "הגדרות WebUI", "WebUI Settings": "הגדרות WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "אין לך שיחות בארכיון.", "You have no archived conversations.": "אין לך שיחות בארכיון.",
"You have shared this chat": "שיתפת את השיחה הזו", "You have shared this chat": "שיתפת את השיחה הזו",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "उपयोगकर्ता जोड़ें", "Add User": "उपयोगकर्ता जोड़ें",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "सभी डॉक्यूमेंट्स",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "एपीआई कुंजियाँ", "API keys": "एपीआई कुंजियाँ",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "क्या आपको यकीन है?", "Are you sure?": "क्या आपको यकीन है?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "रद्द करें", "Cancel": "रद्द करें",
"Cannot create an empty note.": "",
"Capabilities": "क्षमताओं", "Capabilities": "क्षमताओं",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "संग्रह", "Collection": "संग्रह",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं", "Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
"Create new secret key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं", "Create new secret key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "किस समय बनाया गया", "Created at": "किस समय बनाया गया",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} हटा दिया गया", "Deleted {{name}}": "{{name}} हटा दिया गया",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "विवरण", "Description": "विवरण",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "डाउनलोड रद्द किया गया", "Download canceled": "डाउनलोड रद्द किया गया",
"Download Database": "डेटाबेस डाउनलोड करें", "Download Database": "डेटाबेस डाउनलोड करें",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "भाषा कोड दर्ज करें", "Enter language codes": "भाषा कोड दर्ज करें",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Searxng क्वेरी URL दर्ज करें", "Enter Searxng Query URL": "Searxng क्वेरी URL दर्ज करें",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल", "Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API कुंजी", "Google PSE API Key": "Google PSE API कुंजी",
"Google PSE Engine Id": "Google PSE इंजन आईडी", "Google PSE Engine Id": "Google PSE इंजन आईडी",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "समूह", "Group": "समूह",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "सुन", "Light": "सुन",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.", "LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "नई चैट", "New Chat": "नई चैट",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "नया पासवर्ड", "New Password": "नया पासवर्ड",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "जोर से पढ़ें", "Read Aloud": "जोर से पढ़ें",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng क्वेरी URL", "Searxng Query URL": "Searxng क्वेरी URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "निर्देशों के लिए readme.md देखें", "See readme.md for instructions": "निर्देशों के लिए readme.md देखें",
"See what's new": "देखें, क्या नया है", "See what's new": "देखें, क्या नया है",
"Seed": "सीड्\u200c", "Seed": "सीड्\u200c",
@ -1491,6 +1508,7 @@
"Show": "दिखाओ", "Show": "दिखाओ",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "स्रोत", "Source": "स्रोत",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "शीर्षक", "Title": "शीर्षक",
"Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन", "Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन",
"Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.", "Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "शीर्ष K", "Top K": "शीर्ष K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "वेबहुक URL", "Webhook URL": "वेबहुक URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI सेटिंग्स", "WebUI Settings": "WebUI सेटिंग्स",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।", "You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
"You have shared this chat": "आपने इस चैट को शेयर किया है", "You have shared this chat": "आपने इस चैट को शेयर किया है",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Dodaj korisnika", "Add User": "Dodaj korisnika",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Svi dokumenti",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API ključevi", "API keys": "API ključevi",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Jeste li sigurni?", "Are you sure?": "Jeste li sigurni?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam", "Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Otkaži", "Cancel": "Otkaži",
"Cannot create an empty note.": "",
"Capabilities": "Mogućnosti", "Capabilities": "Mogućnosti",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Stvori novi ključ", "Create new key": "Stvori novi ključ",
"Create new secret key": "Stvori novi tajni ključ", "Create new secret key": "Stvori novi tajni ključ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Stvoreno", "Created at": "Stvoreno",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Izbrisano {{name}}", "Deleted {{name}}": "Izbrisano {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Opis", "Description": "Opis",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Preuzimanje otkazano", "Download canceled": "Preuzimanje otkazano",
"Download Database": "Preuzmi bazu podataka", "Download Database": "Preuzmi bazu podataka",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Unesite kodove jezika", "Enter language codes": "Unesite kodove jezika",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Unesite URL upita Searxng", "Enter Searxng Query URL": "Unesite URL upita Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika", "Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ključ", "Google PSE API Key": "Google PSE API ključ",
"Google PSE Engine Id": "ID Google PSE modula", "Google PSE Engine Id": "ID Google PSE modula",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Svijetlo", "Light": "Svijetlo",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Slušam...", "Listening...": "Slušam...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.", "LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Novi razgovor", "New Chat": "Novi razgovor",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nova lozinka", "New Password": "Nova lozinka",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Čitaj naglas", "Read Aloud": "Čitaj naglas",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng URL upita", "Searxng Query URL": "Searxng URL upita",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Pogledajte readme.md za upute", "See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo", "See what's new": "Pogledajte što je novo",
"Seed": "Sjeme", "Seed": "Sjeme",
@ -1492,6 +1509,7 @@
"Show": "Pokaži", "Show": "Pokaži",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Izvor", "Source": "Izvor",
@ -1626,6 +1645,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Naslov", "Title": "Naslov",
"Title Auto-Generation": "Automatsko generiranje naslova", "Title Auto-Generation": "Automatsko generiranje naslova",
"Title cannot be an empty string.": "Naslov ne može biti prazni niz.", "Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL webkuke", "Webhook URL": "URL webkuke",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI postavke", "WebUI Settings": "WebUI postavke",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Nemate arhiviranih razgovora.", "You have no archived conversations.": "Nemate arhiviranih razgovora.",
"You have shared this chat": "Podijelili ste ovaj razgovor", "You have shared this chat": "Podijelili ste ovaj razgovor",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz", "{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} rejtett sor", "{{COUNT}} hidden lines": "{{COUNT}} rejtett sor",
"{{COUNT}} Replies": "{{COUNT}} Válasz", "{{COUNT}} Replies": "{{COUNT}} Válasz",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Szöveges tartalom hozzáadása", "Add text content": "Szöveges tartalom hozzáadása",
"Add User": "Felhasználó hozzáadása", "Add User": "Felhasználó hozzáadása",
"Add User Group": "Felhasználói csoport hozzáadása", "Add User Group": "Felhasználói csoport hozzáadása",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Mind", "All": "Mind",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Minden dokumentum",
"All models deleted successfully": "Minden modell sikeresen törölve", "All models deleted successfully": "Minden modell sikeresen törölve",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Csevegésvezérlők engedélyezése", "Allow Chat Controls": "Csevegésvezérlők engedélyezése",
@ -136,6 +138,7 @@
"API keys": "API kulcsok", "API keys": "API kulcsok",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Alkalmazás DN", "Application DN": "Alkalmazás DN",
@ -154,6 +157,7 @@
"Are you sure?": "Biztos vagy benne?", "Are you sure?": "Biztos vagy benne?",
"Arena Models": "Arena modellek", "Arena Models": "Arena modellek",
"Artifacts": "Műtermékek", "Artifacts": "Műtermékek",
"Asc": "",
"Ask": "Kérdezz", "Ask": "Kérdezz",
"Ask a question": "Kérdezz valamit", "Ask a question": "Kérdezz valamit",
"Assistant": "Asszisztens", "Assistant": "Asszisztens",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor", "Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Mégse", "Cancel": "Mégse",
"Cannot create an empty note.": "",
"Capabilities": "Képességek", "Capabilities": "Képességek",
"Capture": "Rögzítés", "Capture": "Rögzítés",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Csatorna neve", "Channel Name": "Csatorna neve",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Csatornák", "Channels": "Csatornák",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Összecsukás", "Collapse": "Összecsukás",
"Collection": "Gyűjtemény", "Collection": "Gyűjtemény",
"Collections": "",
"Color": "Szín", "Color": "Szín",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API kulcs", "ComfyUI API Key": "ComfyUI API kulcs",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Új kulcs létrehozása", "Create new key": "Új kulcs létrehozása",
"Create new secret key": "Új titkos kulcs létrehozása", "Create new secret key": "Új titkos kulcs létrehozása",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Létrehozva", "Created at": "Létrehozva",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} törölve", "Deleted {{name}}": "{{name}} törölve",
"Deleted User": "Felhasználó törölve", "Deleted User": "Felhasználó törölve",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Írd le a tudásbázisodat és céljaidat", "Describe your knowledge base and objectives": "Írd le a tudásbázisodat és céljaidat",
"Description": "Leírás", "Description": "Leírás",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Letöltés SVG-ként", "Download as SVG": "Letöltés SVG-ként",
"Download canceled": "Letöltés megszakítva", "Download canceled": "Letöltés megszakítva",
"Download Database": "Adatbázis letöltése", "Download Database": "Adatbázis letöltése",
"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", "Draw": "Rajzolás",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Add meg a Kagi Search API kulcsot", "Enter Kagi Search API Key": "Add meg a Kagi Search API kulcsot",
"Enter Key Behavior": "Add meg a kulcs viselkedését", "Enter Key Behavior": "Add meg a kulcs viselkedését",
"Enter language codes": "Add meg a nyelvi kódokat", "Enter language codes": "Add meg a nyelvi kódokat",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Add meg a Mistral API kulcsot", "Enter Mistral API Key": "Add meg a Mistral API kulcsot",
"Enter Model ID": "Add meg a modell azonosítót", "Enter Model ID": "Add meg a modell azonosítót",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Add meg a SearchApi API kulcsot", "Enter SearchApi API Key": "Add meg a SearchApi API kulcsot",
"Enter SearchApi Engine": "Add meg a SearchApi motort", "Enter SearchApi Engine": "Add meg a SearchApi motort",
"Enter Searxng Query URL": "Add meg a Searxng lekérdezési URL-t", "Enter Searxng Query URL": "Add meg a Searxng lekérdezési URL-t",
"Enter Searxng search language": "",
"Enter Seed": "Add meg a seed értéket", "Enter Seed": "Add meg a seed értéket",
"Enter SerpApi API Key": "Add meg a SerpApi API kulcsot", "Enter SerpApi API Key": "Add meg a SerpApi API kulcsot",
"Enter SerpApi Engine": "Add meg a SerpApi motort", "Enter SerpApi Engine": "Add meg a SerpApi motort",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát", "Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API kulcs", "Google PSE API Key": "Google PSE API kulcs",
"Google PSE Engine Id": "Google PSE motor azonosító", "Google PSE Engine Id": "Google PSE motor azonosító",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Csoport", "Group": "Csoport",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Csoport sikeresen létrehozva", "Group created successfully": "Csoport sikeresen létrehozva",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Konfiguráció importálása JSON fájlból", "Import Config from JSON File": "Konfiguráció importálása JSON fájlból",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Előre beállított importálás", "Import Presets": "Előre beállított importálás",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licenc", "License": "Licenc",
"Lift List": "", "Lift List": "",
"Light": "Világos", "Light": "Világos",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Hallgatás...", "Listening...": "Hallgatás...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.", "LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nevezd el a tudásbázisodat", "Name your knowledge base": "Nevezd el a tudásbázisodat",
"Native": "Natív", "Native": "Natív",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Új beszélgetés", "New Chat": "Új beszélgetés",
"New Folder": "Új mappa", "New Folder": "Új mappa",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Új jelszó", "New Password": "Új jelszó",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Nem található tartalom", "No content found": "Nem található tartalom",
"No content found in file.": "",
"No content to speak": "Nincs felolvasható tartalom", "No content to speak": "Nincs felolvasható tartalom",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Nincs elérhető távolság", "No distance available": "Nincs elérhető távolság",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Nem található visszajelzés", "No feedbacks found": "Nem található visszajelzés",
"No file selected": "Nincs kiválasztva fájl", "No file selected": "Nincs kiválasztva fájl",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Nincs hozzáféréssel rendelkező csoport, adj hozzá egy csoportot a hozzáférés megadásához", "No groups with access, add a group to grant access": "Nincs hozzáféréssel rendelkező csoport, adj hozzá egy csoportot a hozzáférés megadásához",
"No HTML, CSS, or JavaScript content found.": "Nem található HTML, CSS vagy JavaScript tartalom.", "No HTML, CSS, or JavaScript content found.": "Nem található HTML, CSS vagy JavaScript tartalom.",
"No inference engine with management support found": "Nem található kezelést támogató következtetési motor", "No inference engine with management support found": "Nem található kezelést támogató következtetési motor",
"No knowledge bases found.": "",
"No knowledge found": "Nem található tudásbázis", "No knowledge found": "Nem található tudásbázis",
"No memories to clear": "Nincs törlendő memória", "No memories to clear": "Nincs törlendő memória",
"No model IDs": "Nincs modell azonosító", "No model IDs": "Nincs modell azonosító",
@ -1309,6 +1323,8 @@
"Read": "Olvasás", "Read": "Olvasás",
"Read Aloud": "Felolvasás", "Read Aloud": "Felolvasás",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Érvelési erőfeszítés", "Reasoning Effort": "Érvelési erőfeszítés",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Tudásbázis keresése: \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Tudásbázis keresése: \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng lekérdezési URL", "Searxng Query URL": "Searxng lekérdezési URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Lásd a readme.md fájlt az útmutatásért", "See readme.md for instructions": "Lásd a readme.md fájlt az útmutatásért",
"See what's new": "Újdonságok megtekintése", "See what's new": "Újdonságok megtekintése",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Mutat", "Show": "Mutat",
"Show \"What's New\" modal on login": "\"Mi újság\" modal megjelenítése bejelentkezéskor", "Show \"What's New\" modal on login": "\"Mi újság\" modal megjelenítése bejelentkezéskor",
"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben", "Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modell megjelenítése", "Show Model": "Modell megjelenítése",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Forrás", "Source": "Forrás",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika szerver URL szükséges.", "Tika Server URL required.": "Tika szerver URL szükséges.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Cím", "Title": "Cím",
"Title Auto-Generation": "Cím automatikus generálása", "Title Auto-Generation": "Cím automatikus generálása",
"Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.", "Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.", "Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
"Tools Public Sharing": "Eszközök nyilvános megosztása", "Tools Public Sharing": "Eszközök nyilvános megosztása",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K újrarangsoroló", "Top K Reranker": "Top K újrarangsoroló",
"Transformers": "Transformerek", "Transformers": "Transformerek",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Webes keresés a csevegésben", "Web Search in Chat": "Webes keresés a csevegésben",
"Web Search Query Generation": "Webes keresési lekérdezés generálása", "Web Search Query Generation": "Webes keresési lekérdezés generálása",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI beállítások", "WebUI Settings": "WebUI beállítások",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "A WebUI kéréseket küld a \"{{url}}\" címre", "WebUI will make requests to \"{{url}}\"": "A WebUI kéréseket küld a \"{{url}}\" címre",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.", "You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Nincs jogosultsága fájlok feltöltésére.", "You do not have permission to upload files.": "Nincs jogosultsága fájlok feltöltésére.",
"You have no archived conversations.": "Nincsenek archivált beszélgetései.", "You have no archived conversations.": "Nincsenek archivált beszélgetései.",
"You have shared this chat": "Megosztotta ezt a beszélgetést", "You have shared this chat": "Megosztotta ezt a beszélgetést",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Tambah Pengguna", "Add User": "Tambah Pengguna",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Semua Dokumen",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "Kunci API", "API keys": "Kunci API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Apakah Anda yakin?", "Are you sure?": "Apakah Anda yakin?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT", "Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Batal", "Cancel": "Batal",
"Cannot create an empty note.": "",
"Capabilities": "Kemampuan", "Capabilities": "Kemampuan",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksi", "Collection": "Koleksi",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Buat kunci baru", "Create new key": "Buat kunci baru",
"Create new secret key": "Buat kunci rahasia baru", "Create new secret key": "Buat kunci rahasia baru",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Dibuat di", "Created at": "Dibuat di",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Menghapus {{name}}", "Deleted {{name}}": "Menghapus {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Deskripsi", "Description": "Deskripsi",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Unduh dibatalkan", "Download canceled": "Unduh dibatalkan",
"Download Database": "Unduh Basis Data", "Download Database": "Unduh Basis Data",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Masukkan kode bahasa", "Enter language codes": "Masukkan kode bahasa",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Masukkan URL Kueri Searxng", "Enter Searxng Query URL": "Masukkan URL Kueri Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip", "Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Kunci API Google PSE", "Google PSE API Key": "Kunci API Google PSE",
"Google PSE Engine Id": "Id Mesin Google PSE", "Google PSE Engine Id": "Id Mesin Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grup", "Group": "Grup",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Cahaya", "Light": "Cahaya",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Mendengarkan", "Listening...": "Mendengarkan",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.", "LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Obrolan Baru", "New Chat": "Obrolan Baru",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Kata Sandi Baru", "New Password": "Kata Sandi Baru",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "Tidak ada konten untuk dibicarakan", "No content to speak": "Tidak ada konten untuk dibicarakan",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "Tidak ada file yang dipilih", "No file selected": "Tidak ada file yang dipilih",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Baca dengan Keras", "Read Aloud": "Baca dengan Keras",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "URL Kueri Pencarian Searxng", "Searxng Query URL": "URL Kueri Pencarian Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Lihat readme.md untuk instruksi", "See readme.md for instructions": "Lihat readme.md untuk instruksi",
"See what's new": "Lihat apa yang baru", "See what's new": "Lihat apa yang baru",
"Seed": "Benih", "Seed": "Benih",
@ -1490,6 +1507,7 @@
"Show": "Tampilkan", "Show": "Tampilkan",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda", "Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sumber", "Source": "Sumber",
@ -1624,6 +1643,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Judul", "Title": "Judul",
"Title Auto-Generation": "Pembuatan Judul Secara Otomatis", "Title Auto-Generation": "Pembuatan Judul Secara Otomatis",
"Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.", "Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "K atas", "Top K": "K atas",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL pengait web", "Webhook URL": "URL pengait web",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Pengaturan WebUI", "WebUI Settings": "Pengaturan WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.", "You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.",
"You have shared this chat": "Anda telah membagikan obrolan ini", "You have shared this chat": "Anda telah membagikan obrolan ini",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil", "{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil",
"{{COUNT}} characters": "{{COUNT}} carachtair", "{{COUNT}} characters": "{{COUNT}} carachtair",
"{{COUNT}} extracted lines": "{{COUNT}} línte eastósctha", "{{COUNT}} extracted lines": "{{COUNT}} línte eastósctha",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} línte folaithe", "{{COUNT}} hidden lines": "{{COUNT}} línte folaithe",
"{{COUNT}} Replies": "{{COUNT}} Freagra", "{{COUNT}} Replies": "{{COUNT}} Freagra",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Foinsí", "{{COUNT}} Sources": "{{COUNT}} Foinsí",
"{{COUNT}} words": "{{COUNT}} focail", "{{COUNT}} words": "{{COUNT}} focail",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ag {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ag {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Cuir ábhar téacs leis", "Add text content": "Cuir ábhar téacs leis",
"Add User": "Cuir Úsáideoir leis", "Add User": "Cuir Úsáideoir leis",
"Add User Group": "Cuir Grúpa Úsáideoirí leis", "Add User Group": "Cuir Grúpa Úsáideoirí leis",
"Add webpage": "",
"Additional Config": "Cumraíocht Bhreise", "Additional Config": "Cumraíocht Bhreise",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Roghanna cumraíochta breise don mharcóir. Ba chóir gur teaghrán JSON é seo le péirí eochrach-luachanna. Mar shampla, '{\"key\": \"value\"}'. I measc na n-eochracha a dtacaítear leo tá: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Roghanna cumraíochta breise don mharcóir. Ba chóir gur teaghrán JSON é seo le péirí eochrach-luachanna. Mar shampla, '{\"key\": \"value\"}'. I measc na n-eochracha a dtacaítear leo tá: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Paraiméadair Bhreise", "Additional Parameters": "Paraiméadair Bhreise",
@ -84,7 +87,6 @@
"AI": "IS", "AI": "IS",
"All": "Gach", "All": "Gach",
"All chats have been unarchived.": "Tá na comhráite uile díchartlannaithe.", "All chats have been unarchived.": "Tá na comhráite uile díchartlannaithe.",
"All Documents": "Gach Doiciméad",
"All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil", "All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil",
"Allow Call": "Ceadaigh Glao", "Allow Call": "Ceadaigh Glao",
"Allow Chat Controls": "Ceadaigh Rialuithe Comhrá", "Allow Chat Controls": "Ceadaigh Rialuithe Comhrá",
@ -136,6 +138,7 @@
"API keys": "Eochracha API", "API keys": "Eochracha API",
"API Keys": "", "API Keys": "",
"API Mode": "Mód API", "API Mode": "Mód API",
"API Timeout": "",
"API Version": "Leagan API", "API Version": "Leagan API",
"API Version is required": "Tá Leagan API ag teastáil", "API Version is required": "Tá Leagan API ag teastáil",
"Application DN": "Feidhmchlár DN", "Application DN": "Feidhmchlár DN",
@ -154,6 +157,7 @@
"Are you sure?": "An bhfuil tú cinnte?", "Are you sure?": "An bhfuil tú cinnte?",
"Arena Models": "Samhlacha Réimse", "Arena Models": "Samhlacha Réimse",
"Artifacts": "Déantáin", "Artifacts": "Déantáin",
"Asc": "",
"Ask": "Fiafraigh", "Ask": "Fiafraigh",
"Ask a question": "Cuir ceist", "Ask a question": "Cuir ceist",
"Assistant": "Cúntóir", "Assistant": "Cúntóir",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid", "Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
"Camera": "Ceamara", "Camera": "Ceamara",
"Cancel": "Cealaigh", "Cancel": "Cealaigh",
"Cannot create an empty note.": "",
"Capabilities": "Cumais", "Capabilities": "Cumais",
"Capture": "Gabháil", "Capture": "Gabháil",
"Capture Audio": "Gabháil Fuaime", "Capture Audio": "Gabháil Fuaime",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Scriosadh an cainéal go rathúil", "Channel deleted successfully": "Scriosadh an cainéal go rathúil",
"Channel Name": "Ainm Cainéal", "Channel Name": "Ainm Cainéal",
"Channel name cannot be empty.": "Ní féidir ainm an chainéil a fhágáil folamh.", "Channel name cannot be empty.": "Ní féidir ainm an chainéil a fhágáil folamh.",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Nuashonraíodh an cainéal go rathúil", "Channel updated successfully": "Nuashonraíodh an cainéal go rathúil",
"Channels": "Cainéil", "Channels": "Cainéil",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Laghdaigh", "Collapse": "Laghdaigh",
"Collection": "Bailiúchán", "Collection": "Bailiúchán",
"Collections": "",
"Color": "Dath", "Color": "Dath",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Eochair API ComfyUI", "ComfyUI API Key": "Eochair API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Cruthaigh Samhail", "Create Model": "Cruthaigh Samhail",
"Create new key": "Cruthaigh eochair nua", "Create new key": "Cruthaigh eochair nua",
"Create new secret key": "Cruthaigh eochair rúnda nua", "Create new secret key": "Cruthaigh eochair rúnda nua",
"Create note": "",
"Create Note": "Cruthaigh Nóta", "Create Note": "Cruthaigh Nóta",
"Create your first note by clicking on the plus button below.": "Cruthaigh do chéad nóta trí chliceáil ar an gcnaipe móide thíos.", "Create your first note by clicking on the plus button below.": "Cruthaigh do chéad nóta trí chliceáil ar an gcnaipe móide thíos.",
"Created at": "Cruthaithe ag", "Created at": "Cruthaithe ag",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Scriosta {{name}}", "Deleted {{name}}": "Scriosta {{name}}",
"Deleted User": "Úsáideoir Scriosta", "Deleted User": "Úsáideoir Scriosta",
"Deployment names are required for Azure OpenAI": "Tá ainmneacha imscartha ag teastáil le haghaidh Azure OpenAI", "Deployment names are required for Azure OpenAI": "Tá ainmneacha imscartha ag teastáil le haghaidh Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí", "Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí",
"Description": "Cur síos", "Description": "Cur síos",
"Detect Artifacts Automatically": "Déan Déantáin a bhrath go huathoibríoch", "Detect Artifacts Automatically": "Déan Déantáin a bhrath go huathoibríoch",
@ -487,7 +496,6 @@
"Download as SVG": "Íoslódáil i SVG", "Download as SVG": "Íoslódáil i SVG",
"Download canceled": "Íoslódáil cealaithe", "Download canceled": "Íoslódáil cealaithe",
"Download Database": "Íoslódáil Bunachair", "Download Database": "Íoslódáil Bunachair",
"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", "Draw": "Tarraing",
"Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil", "Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Cuir isteach Eochair Kagi Cuardach API", "Enter Kagi Search API Key": "Cuir isteach Eochair Kagi Cuardach API",
"Enter Key Behavior": "Iontráil Iompar Eochair", "Enter Key Behavior": "Iontráil Iompar Eochair",
"Enter language codes": "Cuir isteach cóid teanga", "Enter language codes": "Cuir isteach cóid teanga",
"Enter MinerU API Key": "Cuir isteach Eochair API MinerU",
"Enter Mistral API Base URL": "Cuir isteach URL Bunúsach API Mistral", "Enter Mistral API Base URL": "Cuir isteach URL Bunúsach API Mistral",
"Enter Mistral API Key": "Cuir isteach Eochair API Mistral", "Enter Mistral API Key": "Cuir isteach Eochair API Mistral",
"Enter Model ID": "Cuir isteach ID an tSamhail", "Enter Model ID": "Cuir isteach ID an tSamhail",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Cuir isteach Eochair API SearchAPI", "Enter SearchApi API Key": "Cuir isteach Eochair API SearchAPI",
"Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI", "Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI",
"Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng", "Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Cuir isteach Síl", "Enter Seed": "Cuir isteach Síl",
"Enter SerpApi API Key": "Cuir isteach Eochair API SerpApi", "Enter SerpApi API Key": "Cuir isteach Eochair API SerpApi",
"Enter SerpApi Engine": "Cuir isteach Inneall SerpApi", "Enter SerpApi Engine": "Cuir isteach Inneall SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Theip ar réamhamharc comhrá a lódáil", "Failed to load chat preview": "Theip ar réamhamharc comhrá a lódáil",
"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.", "Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
"Failed to move chat": "Theip ar an gcomhrá a bhogadh", "Failed to move chat": "Theip ar an gcomhrá a bhogadh",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé", "Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "Theip ar an léaráid a rindreáil", "Failed to render diagram": "Theip ar an léaráid a rindreáil",
@ -831,6 +840,7 @@
"Google PSE API Key": "Eochair API Google PSE", "Google PSE API Key": "Eochair API Google PSE",
"Google PSE Engine Id": "ID Inneall Google PSE", "Google PSE Engine Id": "ID Inneall Google PSE",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Grúpa", "Group": "Grúpa",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Grúpa cruthaithe go rathúil", "Group created successfully": "Grúpa cruthaithe go rathúil",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON", "Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON",
"Import From Link": "Iompórtáil Ó Nasc", "Import From Link": "Iompórtáil Ó Nasc",
"Import Models": "", "Import Models": "",
"Import Notes": "Nótaí Iompórtála",
"Import Presets": "Réamhshocruithe Iompórtáil", "Import Presets": "Réamhshocruithe Iompórtáil",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "D'éirigh leis an allmhairiú", "Import successful": "D'éirigh leis an allmhairiú",
@ -989,6 +998,8 @@
"License": "Ceadúnas", "License": "Ceadúnas",
"Lift List": "Liosta Ardaitheoirí", "Lift List": "Liosta Ardaitheoirí",
"Light": "Solas", "Light": "Solas",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Éisteacht...", "Listening...": "Éisteacht...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.", "LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Tá ainm agus aitheantas ag teastáil, líon isteach iad le do thoil", "Name and ID are required, please fill them out": "Tá ainm agus aitheantas ag teastáil, líon isteach iad le do thoil",
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais", "Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
"Native": "Dúchasach", "Native": "Dúchasach",
"New": "",
"New Button": "Cnaipe Nua", "New Button": "Cnaipe Nua",
"New Chat": "Comhrá Nua", "New Chat": "Comhrá Nua",
"New Folder": "Fillteán Nua", "New Folder": "Fillteán Nua",
"New Function": "Feidhm Nua", "New Function": "Feidhm Nua",
"New Knowledge": "Eolas Nua", "New Knowledge": "Eolas Nua",
"New Model": "Samhail Nua", "New Model": "Samhail Nua",
"New Note": "",
"New Password": "Pasfhocal Nua", "New Password": "Pasfhocal Nua",
"New Prompt": "Leid Nua", "New Prompt": "Leid Nua",
"New Temporary Chat": "Comhrá Sealadach Nua", "New Temporary Chat": "Comhrá Sealadach Nua",
@ -1112,17 +1125,18 @@
"No chats found.": "Ní bhfuarthas aon chomhráite.", "No chats found.": "Ní bhfuarthas aon chomhráite.",
"No content": "Gan aon ábhar", "No content": "Gan aon ábhar",
"No content found": "Níor aimsíodh aon ábhar", "No content found": "Níor aimsíodh aon ábhar",
"No content found in file.": "Níor aimsíodh aon ábhar sa chomhad.",
"No content to speak": "Níl aon ábhar le labhairt", "No content to speak": "Níl aon ábhar le labhairt",
"No conversation to save": "Gan aon chomhrá le sábháil", "No conversation to save": "Gan aon chomhrá le sábháil",
"No distance available": "Níl achar ar fáil", "No distance available": "Níl achar ar fáil",
"No expiration can pose security risks.": "Ní féidir le haon dáta éaga rioscaí slándála a chruthú.", "No expiration can pose security risks.": "Ní féidir le haon dáta éaga rioscaí slándála a chruthú.",
"No feedbacks found": "Níor aimsíodh aon aiseolas", "No feedbacks found": "Níor aimsíodh aon aiseolas",
"No file selected": "Níl aon chomhad roghnaithe", "No file selected": "Níl aon chomhad roghnaithe",
"No files in this knowledge base.": "",
"No functions found": "Níor aimsíodh aon fheidhmeanna", "No functions found": "Níor aimsíodh aon fheidhmeanna",
"No groups with access, add a group to grant access": "Gan aon ghrúpa a bhfuil rochtain acu, cuir grúpa leis chun rochtain a dheonú", "No groups with access, add a group to grant access": "Gan aon ghrúpa a bhfuil rochtain acu, cuir grúpa leis chun rochtain a dheonú",
"No HTML, CSS, or JavaScript content found.": "Níor aimsíodh aon ábhar HTML, CSS nó JavaScript.", "No HTML, CSS, or JavaScript content found.": "Níor aimsíodh aon ábhar HTML, CSS nó JavaScript.",
"No inference engine with management support found": "Níor aimsíodh aon inneall tátail le tacaíocht bhainistíochta", "No inference engine with management support found": "Níor aimsíodh aon inneall tátail le tacaíocht bhainistíochta",
"No knowledge bases found.": "",
"No knowledge found": "Níor aimsíodh aon eolas", "No knowledge found": "Níor aimsíodh aon eolas",
"No memories to clear": "Gan cuimhní cinn a ghlanadh", "No memories to clear": "Gan cuimhní cinn a ghlanadh",
"No model IDs": "Gan aon aitheantóirí samhail", "No model IDs": "Gan aon aitheantóirí samhail",
@ -1309,6 +1323,8 @@
"Read": "Léigh", "Read": "Léigh",
"Read Aloud": "Léigh Ard", "Read Aloud": "Léigh Ard",
"Read more →": "Léigh tuilleadh →", "Read more →": "Léigh tuilleadh →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Cúis", "Reason": "Cúis",
"Reasoning Effort": "Iarracht Réasúnúcháin", "Reasoning Effort": "Iarracht Réasúnúcháin",
"Reasoning Tags": "Clibeanna Réasúnaíochta", "Reasoning Tags": "Clibeanna Réasúnaíochta",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Cuardach Eolas do \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Cuardach Eolas do \"{{searchQuery}}\"",
"Searching the web": "Ag cuardach an ghréasáin", "Searching the web": "Ag cuardach an ghréasáin",
"Searxng Query URL": "URL ceisteanna cuardaigh", "Searxng Query URL": "URL ceisteanna cuardaigh",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Féach readme.md le haghaidh treoracha", "See readme.md for instructions": "Féach readme.md le haghaidh treoracha",
"See what's new": "Féach cad atá nua", "See what's new": "Féach cad atá nua",
"Seed": "Síol", "Seed": "Síol",
@ -1491,6 +1508,7 @@
"Show": "Taispeáin", "Show": "Taispeáin",
"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach", "Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan", "Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
"Show Files": "",
"Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe", "Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe",
"Show image preview": "Taispeáin réamhamharc íomhá", "Show image preview": "Taispeáin réamhamharc íomhá",
"Show Model": "Taispeáin Samhail", "Show Model": "Taispeáin Samhail",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Réasúnaíocht Sonar", "Sonar Reasoning": "Réasúnaíocht Sonar",
"Sonar Reasoning Pro": "Réasúnaíocht Sonar Pro", "Sonar Reasoning Pro": "Réasúnaíocht Sonar Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Foinse", "Source": "Foinse",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.", "Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Teideal", "Title": "Teideal",
"Title Auto-Generation": "Teideal Auto-Generation", "Title Auto-Generation": "Teideal Auto-Generation",
"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.", "Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.", "Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
"Tools Public Sharing": "Uirlisí Roinnte Poiblí", "Tools Public Sharing": "Uirlisí Roinnte Poiblí",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Barr K", "Top K": "Barr K",
"Top K Reranker": "Barr K Reranker", "Top K Reranker": "Barr K Reranker",
"Transformers": "Claochladáin", "Transformers": "Claochladáin",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Cuardach Gréasáin i gComhrá", "Web Search in Chat": "Cuardach Gréasáin i gComhrá",
"Web Search Query Generation": "Giniúint Iarratas Cuardach Gréasáin", "Web Search Query Generation": "Giniúint Iarratas Cuardach Gréasáin",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"Webpage URL": "URL leathanaigh ghréasáin", "Webpage URLs": "",
"WebUI Settings": "Socruithe WebUI", "WebUI Settings": "Socruithe WebUI",
"WebUI URL": "URL WebUI", "WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}\"": "Déanfaidh WebUI iarratais ar \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "Déanfaidh WebUI iarratais ar \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.", "You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
"You do not have permission to send messages in this channel.": "Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo.", "You do not have permission to send messages in this channel.": "Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo.",
"You do not have permission to send messages in this thread.": "Níl cead agat teachtaireachtaí a sheoladh sa snáithe seo.", "You do not have permission to send messages in this thread.": "Níl cead agat teachtaireachtaí a sheoladh sa snáithe seo.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.", "You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.", "You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
"You have shared this chat": "Tá an comhrá seo roinnte agat", "You have shared this chat": "Tá an comhrá seo roinnte agat",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Strumenti Disponibili", "{{COUNT}} Available Tools": "{{COUNT}} Strumenti Disponibili",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} righe nascoste", "{{COUNT}} hidden lines": "{{COUNT}} righe nascoste",
"{{COUNT}} Replies": "{{COUNT}} Risposte", "{{COUNT}} Replies": "{{COUNT}} Risposte",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Aggiungi contenuto di testo", "Add text content": "Aggiungi contenuto di testo",
"Add User": "Aggiungi utente", "Add User": "Aggiungi utente",
"Add User Group": "Aggiungi gruppo utente", "Add User Group": "Aggiungi gruppo utente",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Tutti", "All": "Tutti",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Tutti i documenti",
"All models deleted successfully": "Tutti i modelli eliminati con successo", "All models deleted successfully": "Tutti i modelli eliminati con successo",
"Allow Call": "Consenti chiamata", "Allow Call": "Consenti chiamata",
"Allow Chat Controls": "Consenti controlli chat", "Allow Chat Controls": "Consenti controlli chat",
@ -136,6 +138,7 @@
"API keys": "Chiavi API", "API keys": "Chiavi API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Versione API", "API Version": "Versione API",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN dell'applicazione", "Application DN": "DN dell'applicazione",
@ -154,6 +157,7 @@
"Are you sure?": "Sei sicuro?", "Are you sure?": "Sei sicuro?",
"Arena Models": "Modelli Arena", "Arena Models": "Modelli Arena",
"Artifacts": "Artefatti", "Artifacts": "Artefatti",
"Asc": "",
"Ask": "Chiedi", "Ask": "Chiedi",
"Ask a question": "Fai una domanda", "Ask a question": "Fai una domanda",
"Assistant": "Assistente", "Assistant": "Assistente",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT", "Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT",
"Camera": "Fotocamera", "Camera": "Fotocamera",
"Cancel": "Annulla", "Cancel": "Annulla",
"Cannot create an empty note.": "",
"Capabilities": "Funzionalità", "Capabilities": "Funzionalità",
"Capture": "Cattura", "Capture": "Cattura",
"Capture Audio": "Cattura audio", "Capture Audio": "Cattura audio",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nome canale", "Channel Name": "Nome canale",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canali", "Channels": "Canali",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Riduci", "Collapse": "Riduci",
"Collection": "Collezione", "Collection": "Collezione",
"Collections": "",
"Color": "Colore", "Color": "Colore",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Chiave API ComfyUI", "ComfyUI API Key": "Chiave API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Crea nuova chiave", "Create new key": "Crea nuova chiave",
"Create new secret key": "Crea nuova chiave segreta", "Create new secret key": "Crea nuova chiave segreta",
"Create note": "",
"Create Note": "Crea nota", "Create Note": "Crea nota",
"Create your first note by clicking on the plus button below.": "Crea la tua prima nota cliccando sul pulsante + sotto.", "Create your first note by clicking on the plus button below.": "Crea la tua prima nota cliccando sul pulsante + sotto.",
"Created at": "Creato il", "Created at": "Creato il",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} eliminato", "Deleted {{name}}": "{{name}} eliminato",
"Deleted User": "Utente eliminato", "Deleted User": "Utente eliminato",
"Deployment names are required for Azure OpenAI": "I nomi dei deployment sono obbligatori per Azure OpenAI", "Deployment names are required for Azure OpenAI": "I nomi dei deployment sono obbligatori per Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Descrivi la tua base di conoscenza e gli obiettivi", "Describe your knowledge base and objectives": "Descrivi la tua base di conoscenza e gli obiettivi",
"Description": "Descrizione", "Description": "Descrizione",
"Detect Artifacts Automatically": "Rileva artefatti automaticamente", "Detect Artifacts Automatically": "Rileva artefatti automaticamente",
@ -487,7 +496,6 @@
"Download as SVG": "Scarica come SVG", "Download as SVG": "Scarica come SVG",
"Download canceled": "Scaricamento annullato", "Download canceled": "Scaricamento annullato",
"Download Database": "Scarica database", "Download Database": "Scarica database",
"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", "Draw": "Disegna",
"Drop any files here to upload": "Rilascia qui i file per caricarli", "Drop any files here to upload": "Rilascia qui i file per caricarli",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Inserisci Chiave API Kagi Search", "Enter Kagi Search API Key": "Inserisci Chiave API Kagi Search",
"Enter Key Behavior": "Comportamento Tasto Invio", "Enter Key Behavior": "Comportamento Tasto Invio",
"Enter language codes": "Inserisci i codici lingua", "Enter language codes": "Inserisci i codici lingua",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Inserisci Chiave API Mistral", "Enter Mistral API Key": "Inserisci Chiave API Mistral",
"Enter Model ID": "Inserisci ID Modello", "Enter Model ID": "Inserisci ID Modello",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Inserisci Chiave API SearchApi", "Enter SearchApi API Key": "Inserisci Chiave API SearchApi",
"Enter SearchApi Engine": "Inserisci Motore SearchApi", "Enter SearchApi Engine": "Inserisci Motore SearchApi",
"Enter Searxng Query URL": "Immettere l'URL della Query Searxng", "Enter Searxng Query URL": "Immettere l'URL della Query Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Inserisci il Seme", "Enter Seed": "Inserisci il Seme",
"Enter SerpApi API Key": "Inserisci Chiave API SerpApi", "Enter SerpApi API Key": "Inserisci Chiave API SerpApi",
"Enter SerpApi Engine": "Inserisci Motore SerpApi", "Enter SerpApi Engine": "Inserisci Motore SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Impossibile caricare il contenuto del file.", "Failed to load file content.": "Impossibile caricare il contenuto del file.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti", "Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Chiave API PSE di Google", "Google PSE API Key": "Chiave API PSE di Google",
"Google PSE Engine Id": "ID motore PSE di Google", "Google PSE Engine Id": "ID motore PSE di Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Gruppo", "Group": "Gruppo",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Gruppo creato con successo", "Group created successfully": "Gruppo creato con successo",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importa Configurazione da File JSON", "Import Config from JSON File": "Importa Configurazione da File JSON",
"Import From Link": "Importa dai link", "Import From Link": "Importa dai link",
"Import Models": "", "Import Models": "",
"Import Notes": "Importa Note",
"Import Presets": "Importa Preset", "Import Presets": "Importa Preset",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licenza", "License": "Licenza",
"Lift List": "", "Lift List": "",
"Light": "Chiaro", "Light": "Chiaro",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "In ascolto...", "Listening...": "In ascolto...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.", "LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Dai un nome alla tua base di conoscenza", "Name your knowledge base": "Dai un nome alla tua base di conoscenza",
"Native": "Nativo", "Native": "Nativo",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nuova chat", "New Chat": "Nuova chat",
"New Folder": "Nuova cartella", "New Folder": "Nuova cartella",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nuova password", "New Password": "Nuova password",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Nessuna chat trovata.", "No chats found.": "Nessuna chat trovata.",
"No content": "Nessun contenuto", "No content": "Nessun contenuto",
"No content found": "Nessun contenuto trovato", "No content found": "Nessun contenuto trovato",
"No content found in file.": "Nessun contenuto trovato nel file.",
"No content to speak": "Nessun contenuto da pronunciare", "No content to speak": "Nessun contenuto da pronunciare",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Nessuna distanza disponibile", "No distance available": "Nessuna distanza disponibile",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Nessun feedback trovato", "No feedbacks found": "Nessun feedback trovato",
"No file selected": "Nessun file selezionato", "No file selected": "Nessun file selezionato",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Nessun gruppo con accesso, aggiungi un gruppo per concedere l'accesso", "No groups with access, add a group to grant access": "Nessun gruppo con accesso, aggiungi un gruppo per concedere l'accesso",
"No HTML, CSS, or JavaScript content found.": "Nessun contenuto HTML, CSS o JavaScript trovato.", "No HTML, CSS, or JavaScript content found.": "Nessun contenuto HTML, CSS o JavaScript trovato.",
"No inference engine with management support found": "Nessun motore di inferenza con supporto per la gestione trovato", "No inference engine with management support found": "Nessun motore di inferenza con supporto per la gestione trovato",
"No knowledge bases found.": "",
"No knowledge found": "Nessuna conoscenza trovata", "No knowledge found": "Nessuna conoscenza trovata",
"No memories to clear": "Nessun ricordo da cancellare", "No memories to clear": "Nessun ricordo da cancellare",
"No model IDs": "Nessun ID modello", "No model IDs": "Nessun ID modello",
@ -1309,6 +1323,8 @@
"Read": "Leggi", "Read": "Leggi",
"Read Aloud": "Leggi ad Alta Voce", "Read Aloud": "Leggi ad Alta Voce",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Sforzo di ragionamento", "Reasoning Effort": "Sforzo di ragionamento",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Cercando conoscenza per \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Cercando conoscenza per \"{{searchQuery}}\"",
"Searching the web": "Cercando nel web...", "Searching the web": "Cercando nel web...",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Vedi readme.md per le istruzioni", "See readme.md for instructions": "Vedi readme.md per le istruzioni",
"See what's new": "Guarda le novità", "See what's new": "Guarda le novità",
"Seed": "Seme", "Seed": "Seme",
@ -1492,6 +1509,7 @@
"Show": "Mostra", "Show": "Mostra",
"Show \"What's New\" modal on login": "Mostra il modulo \"Novità\" al login", "Show \"What's New\" modal on login": "Mostra il modulo \"Novità\" al login",
"Show Admin Details in Account Pending Overlay": "Mostra i dettagli dell'amministratore nella sovrapposizione dell'account in attesa", "Show Admin Details in Account Pending Overlay": "Mostra i dettagli dell'amministratore nella sovrapposizione dell'account in attesa",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Mostra Modello", "Show Model": "Mostra Modello",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "sID per Songou Search API", "Sougou Search API sID": "sID per Songou Search API",
"Sougou Search API SK": "SK per Songou Search API", "Sougou Search API SK": "SK per Songou Search API",
"Source": "Fonte", "Source": "Fonte",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "L'URL del server Tika è obbligatorio.", "Tika Server URL required.": "L'URL del server Tika è obbligatorio.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titolo", "Title": "Titolo",
"Title Auto-Generation": "Generazione automatica del titolo", "Title Auto-Generation": "Generazione automatica del titolo",
"Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.", "Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Gli strumenti hanno un sistema di chiamata di funzione che consente l'esecuzione di codice arbitrario.", "Tools have a function calling system that allows arbitrary code execution.": "Gli strumenti hanno un sistema di chiamata di funzione che consente l'esecuzione di codice arbitrario.",
"Tools Public Sharing": "Condivisione Pubblica degli strumenti", "Tools Public Sharing": "Condivisione Pubblica degli strumenti",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Reranker Top K", "Top K Reranker": "Reranker Top K",
"Transformers": "Transformer", "Transformers": "Transformer",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Ricerca Web in chat", "Web Search in Chat": "Ricerca Web in chat",
"Web Search Query Generation": "Generazione di query di ricerca Web", "Web Search Query Generation": "Generazione di query di ricerca Web",
"Webhook URL": "URL webhook", "Webhook URL": "URL webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Impostazioni WebUI", "WebUI Settings": "Impostazioni WebUI",
"WebUI URL": "URL WebUI", "WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI farà richieste a \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI farà richieste a \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "Non puoi caricare un file vuoto.", "You cannot upload an empty file.": "Non puoi caricare un file vuoto.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Non hai il permesso di caricare file.", "You do not have permission to upload files.": "Non hai il permesso di caricare file.",
"You have no archived conversations.": "Non hai conversazioni archiviate.", "You have no archived conversations.": "Non hai conversazioni archiviate.",
"You have shared this chat": "Hai condiviso questa chat", "You have shared this chat": "Hai condiviso questa chat",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} 個の有効なツール", "{{COUNT}} Available Tools": "{{COUNT}} 個の有効なツール",
"{{COUNT}} characters": "{{COUNT}} 文字", "{{COUNT}} characters": "{{COUNT}} 文字",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} 行が非表示", "{{COUNT}} hidden lines": "{{COUNT}} 行が非表示",
"{{COUNT}} Replies": "{{COUNT}} 件の返信", "{{COUNT}} Replies": "{{COUNT}} 件の返信",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "{{COUNT}} 語", "{{COUNT}} words": "{{COUNT}} 語",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "コンテンツを追加", "Add text content": "コンテンツを追加",
"Add User": "ユーザーを追加", "Add User": "ユーザーを追加",
"Add User Group": "ユーザーグループを追加", "Add User Group": "ユーザーグループを追加",
"Add webpage": "",
"Additional Config": "追加設定", "Additional Config": "追加設定",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "markerの追加設定オプション。これはキーと値のペアを含むJSON文字列である必要があります(例: '{\"key\": \"value\"}')。次のキーに対応しています: disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count、default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "markerの追加設定オプション。これはキーと値のペアを含むJSON文字列である必要があります(例: '{\"key\": \"value\"}')。次のキーに対応しています: disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count、default_level",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "全て", "All": "全て",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "全てのドキュメント",
"All models deleted successfully": "全てのモデルが正常に削除されました", "All models deleted successfully": "全てのモデルが正常に削除されました",
"Allow Call": "コールを許可", "Allow Call": "コールを許可",
"Allow Chat Controls": "チャットコントロールを許可", "Allow Chat Controls": "チャットコントロールを許可",
@ -136,6 +138,7 @@
"API keys": "API キー", "API keys": "API キー",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API バージョン", "API Version": "API バージョン",
"API Version is required": "API バージョンが必要です", "API Version is required": "API バージョンが必要です",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "よろしいですか?", "Are you sure?": "よろしいですか?",
"Arena Models": "Arenaモデル", "Arena Models": "Arenaモデル",
"Artifacts": "アーティファクト", "Artifacts": "アーティファクト",
"Asc": "",
"Ask": "質問する", "Ask": "質問する",
"Ask a question": "質問する", "Ask a question": "質問する",
"Assistant": "アシスタント", "Assistant": "アシスタント",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能は使用できません", "Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能は使用できません",
"Camera": "カメラ", "Camera": "カメラ",
"Cancel": "キャンセル", "Cancel": "キャンセル",
"Cannot create an empty note.": "",
"Capabilities": "機能", "Capabilities": "機能",
"Capture": "キャプチャ", "Capture": "キャプチャ",
"Capture Audio": "音声のキャプチャ", "Capture Audio": "音声のキャプチャ",
@ -228,6 +233,7 @@
"Channel deleted successfully": "チャンネルが正常に削除されました", "Channel deleted successfully": "チャンネルが正常に削除されました",
"Channel Name": "チャンネル名", "Channel Name": "チャンネル名",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "チャンネルが正常に更新されました", "Channel updated successfully": "チャンネルが正常に更新されました",
"Channels": "チャンネル", "Channels": "チャンネル",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "折りたたむ", "Collapse": "折りたたむ",
"Collection": "コレクション", "Collection": "コレクション",
"Collections": "",
"Color": "色", "Color": "色",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI APIキー", "ComfyUI API Key": "ComfyUI APIキー",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "新しいキーを作成", "Create new key": "新しいキーを作成",
"Create new secret key": "新しいシークレットキーを作成", "Create new secret key": "新しいシークレットキーを作成",
"Create note": "",
"Create Note": "ノートを作成", "Create Note": "ノートを作成",
"Create your first note by clicking on the plus button below.": "プラスボタンをクリックして最初のノートを作成します。", "Create your first note by clicking on the plus button below.": "プラスボタンをクリックして最初のノートを作成します。",
"Created at": "作成日時", "Created at": "作成日時",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}}を削除しました", "Deleted {{name}}": "{{name}}を削除しました",
"Deleted User": "削除されたユーザー", "Deleted User": "削除されたユーザー",
"Deployment names are required for Azure OpenAI": "Azure OpenAIにはデプロイメント名が必要です", "Deployment names are required for Azure OpenAI": "Azure OpenAIにはデプロイメント名が必要です",
"Desc": "",
"Describe your knowledge base and objectives": "ナレッジベースと目的を説明", "Describe your knowledge base and objectives": "ナレッジベースと目的を説明",
"Description": "説明", "Description": "説明",
"Detect Artifacts Automatically": "自動的にアーティファクトを検出", "Detect Artifacts Automatically": "自動的にアーティファクトを検出",
@ -487,7 +496,6 @@
"Download as SVG": "SVGとしてダウンロード", "Download as SVG": "SVGとしてダウンロード",
"Download canceled": "ダウンロードをキャンセルしました", "Download canceled": "ダウンロードをキャンセルしました",
"Download Database": "データベースをダウンロード", "Download Database": "データベースをダウンロード",
"Drag and drop a file to upload or select a file to view": "ドラッグアンドドロップしてファイルをアップロードするか、ファイルを選択して表示",
"Draw": "引き分け", "Draw": "引き分け",
"Drop any files here to upload": "ここにファイルをドロップしてアップロード", "Drop any files here to upload": "ここにファイルをドロップしてアップロード",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30s'、'10m'。有効な時間単位は 's'、'm'、'h' です。", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30s'、'10m'。有効な時間単位は 's'、'm'、'h' です。",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search APIキーを入力", "Enter Kagi Search API Key": "Kagi Search APIキーを入力",
"Enter Key Behavior": "Enter Keyの動作", "Enter Key Behavior": "Enter Keyの動作",
"Enter language codes": "言語コードを入力", "Enter language codes": "言語コードを入力",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Mistral APIキーを入力", "Enter Mistral API Key": "Mistral APIキーを入力",
"Enter Model ID": "モデルIDを入力", "Enter Model ID": "モデルIDを入力",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API Keyを入力", "Enter SearchApi API Key": "SearchApi API Keyを入力",
"Enter SearchApi Engine": "SearchApi Engineを入力", "Enter SearchApi Engine": "SearchApi Engineを入力",
"Enter Searxng Query URL": "SearxngクエリURLを入力", "Enter Searxng Query URL": "SearxngクエリURLを入力",
"Enter Searxng search language": "",
"Enter Seed": "シードを入力", "Enter Seed": "シードを入力",
"Enter SerpApi API Key": "SerpApi APIキーを入力", "Enter SerpApi API Key": "SerpApi APIキーを入力",
"Enter SerpApi Engine": "SerpApi Engineを入力", "Enter SerpApi Engine": "SerpApi Engineを入力",
@ -730,6 +738,7 @@
"Failed to load chat preview": "チャットプレビューを読み込めませんでした。", "Failed to load chat preview": "チャットプレビューを読み込めませんでした。",
"Failed to load file content.": "ファイルの内容を読み込めませんでした。", "Failed to load file content.": "ファイルの内容を読み込めませんでした。",
"Failed to move chat": "チャットの移動に失敗しました。", "Failed to move chat": "チャットの移動に失敗しました。",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした。", "Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした。",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE APIキー", "Google PSE API Key": "Google PSE APIキー",
"Google PSE Engine Id": "Google PSE エンジン ID", "Google PSE Engine Id": "Google PSE エンジン ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "グループ", "Group": "グループ",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "グループの作成が成功しました。", "Group created successfully": "グループの作成が成功しました。",
@ -891,7 +901,6 @@
"Import Config from JSON File": "設定をJSONファイルからインポート", "Import Config from JSON File": "設定をJSONファイルからインポート",
"Import From Link": "リンクからインポート", "Import From Link": "リンクからインポート",
"Import Models": "", "Import Models": "",
"Import Notes": "ノートをインポート",
"Import Presets": "プリセットをインポート", "Import Presets": "プリセットをインポート",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "ライセンス", "License": "ライセンス",
"Lift List": "リストを字下げ", "Lift List": "リストを字下げ",
"Light": "ライト", "Light": "ライト",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "聞いています...", "Listening...": "聞いています...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。", "LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "名前とIDは必須です。項目を入力してください。", "Name and ID are required, please fill them out": "名前とIDは必須です。項目を入力してください。",
"Name your knowledge base": "ナレッジベースに名前を付ける", "Name your knowledge base": "ナレッジベースに名前を付ける",
"Native": "ネイティブ", "Native": "ネイティブ",
"New": "",
"New Button": "新しいボタン", "New Button": "新しいボタン",
"New Chat": "新しいチャット", "New Chat": "新しいチャット",
"New Folder": "新しいフォルダ", "New Folder": "新しいフォルダ",
"New Function": "新しいFunction", "New Function": "新しいFunction",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "新しいパスワード", "New Password": "新しいパスワード",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "チャットが見つかりません。", "No chats found.": "チャットが見つかりません。",
"No content": "内容がありません", "No content": "内容がありません",
"No content found": "内容が見つかりません", "No content found": "内容が見つかりません",
"No content found in file.": "ファイル内に内容が見つかりません。",
"No content to speak": "話す内容がありません", "No content to speak": "話す内容がありません",
"No conversation to save": "保存する会話がありません。", "No conversation to save": "保存する会話がありません。",
"No distance available": "距離が利用できません", "No distance available": "距離が利用できません",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "フィードバックが見つかりません", "No feedbacks found": "フィードバックが見つかりません",
"No file selected": "ファイルが選択されていません", "No file selected": "ファイルが選択されていません",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "アクセス権限があるグループがありません。グループを追加してアクセス権限を付与してください。", "No groups with access, add a group to grant access": "アクセス権限があるグループがありません。グループを追加してアクセス権限を付与してください。",
"No HTML, CSS, or JavaScript content found.": "HTML、CSS、またはJavaScriptの内容が見つかりません。", "No HTML, CSS, or JavaScript content found.": "HTML、CSS、またはJavaScriptの内容が見つかりません。",
"No inference engine with management support found": "管理サポートのある推論エンジンが見つかりません。", "No inference engine with management support found": "管理サポートのある推論エンジンが見つかりません。",
"No knowledge bases found.": "",
"No knowledge found": "ナレッジベースが見つかりません", "No knowledge found": "ナレッジベースが見つかりません",
"No memories to clear": "クリアするメモリがありません", "No memories to clear": "クリアするメモリがありません",
"No model IDs": "モデルIDがありません", "No model IDs": "モデルIDがありません",
@ -1309,6 +1323,8 @@
"Read": "読み込む", "Read": "読み込む",
"Read Aloud": "読み上げ", "Read Aloud": "読み上げ",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "理由", "Reason": "理由",
"Reasoning Effort": "推理の努力", "Reasoning Effort": "推理の努力",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "「{{searchQuery}}」のナレッジを検索中...", "Searching Knowledge for \"{{searchQuery}}\"": "「{{searchQuery}}」のナレッジを検索中...",
"Searching the web": "ウェブを検索中...", "Searching the web": "ウェブを検索中...",
"Searxng Query URL": "Searxng クエリ URL", "Searxng Query URL": "Searxng クエリ URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "手順については readme.md を参照してください", "See readme.md for instructions": "手順については readme.md を参照してください",
"See what's new": "新機能を見る", "See what's new": "新機能を見る",
"Seed": "シード", "Seed": "シード",
@ -1490,6 +1507,7 @@
"Show": "表示", "Show": "表示",
"Show \"What's New\" modal on login": "ログイン時に更新内容モーダルを表示", "Show \"What's New\" modal on login": "ログイン時に更新内容モーダルを表示",
"Show Admin Details in Account Pending Overlay": "アカウント保留中の管理者詳細を表示", "Show Admin Details in Account Pending Overlay": "アカウント保留中の管理者詳細を表示",
"Show Files": "",
"Show Formatting Toolbar": "フォーマットツールバーを表示", "Show Formatting Toolbar": "フォーマットツールバーを表示",
"Show image preview": "画像のプレビューを表示", "Show image preview": "画像のプレビューを表示",
"Show Model": "モデルを表示", "Show Model": "モデルを表示",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "ソース", "Source": "ソース",
@ -1624,6 +1643,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "Tika Server URLが必要です。", "Tika Server URL required.": "Tika Server URLが必要です。",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "タイトル", "Title": "タイトル",
"Title Auto-Generation": "タイトル自動生成", "Title Auto-Generation": "タイトル自動生成",
"Title cannot be an empty string.": "タイトルは空文字列にできません。", "Title cannot be an empty string.": "タイトルは空文字列にできません。",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "ツールは任意のコード実行を可能にする関数呼び出しシステムを持っています。", "Tools have a function calling system that allows arbitrary code execution.": "ツールは任意のコード実行を可能にする関数呼び出しシステムを持っています。",
"Tools Public Sharing": "ツールの公開共有", "Tools Public Sharing": "ツールの公開共有",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "トップ K", "Top K": "トップ K",
"Top K Reranker": "トップ K リランカー", "Top K Reranker": "トップ K リランカー",
"Transformers": "", "Transformers": "",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "チャットでウェブ検索", "Web Search in Chat": "チャットでウェブ検索",
"Web Search Query Generation": "ウェブ検索クエリ生成", "Web Search Query Generation": "ウェブ検索クエリ生成",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI 設定", "WebUI Settings": "WebUI 設定",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "WebUIは\"{{url}}\"にリクエストを行います", "WebUI will make requests to \"{{url}}\"": "WebUIは\"{{url}}\"にリクエストを行います",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "空のファイルをアップロードできません。", "You cannot upload an empty file.": "空のファイルをアップロードできません。",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "ファイルをアップロードする権限がありません。", "You do not have permission to upload files.": "ファイルをアップロードする権限がありません。",
"You have no archived conversations.": "これまでにアーカイブされた会話はありません。", "You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
"You have shared this chat": "このチャットを共有しました", "You have shared this chat": "このチャットを共有しました",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} ხელმისაწვდომი ხელსაწყო", "{{COUNT}} Available Tools": "{{COUNT}} ხელმისაწვდომი ხელსაწყო",
"{{COUNT}} characters": "{{COUNT}} სიმბოლო", "{{COUNT}} characters": "{{COUNT}} სიმბოლო",
"{{COUNT}} extracted lines": "{{COUNT}} ამოღებული ხაზი", "{{COUNT}} extracted lines": "{{COUNT}} ამოღებული ხაზი",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} დამალული ხაზი", "{{COUNT}} hidden lines": "{{COUNT}} დამალული ხაზი",
"{{COUNT}} Replies": "{{COUNT}} პასუხი", "{{COUNT}} Replies": "{{COUNT}} პასუხი",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} წყარო", "{{COUNT}} Sources": "{{COUNT}} წყარო",
"{{COUNT}} words": "{{COUNT}} სიტყვა", "{{COUNT}} words": "{{COUNT}} სიტყვა",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} დრო {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} დრო {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "ტექსტური შემცველობის დამატება", "Add text content": "ტექსტური შემცველობის დამატება",
"Add User": "მომხმარებლის დამატება", "Add User": "მომხმარებლის დამატება",
"Add User Group": "მომხმარებლის ჯგუფის დამატება", "Add User Group": "მომხმარებლის ჯგუფის დამატება",
"Add webpage": "",
"Additional Config": "დამატებითი კონფიგურაცია", "Additional Config": "დამატებითი კონფიგურაცია",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "დამატებითი პარამეტრები", "Additional Parameters": "დამატებითი პარამეტრები",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "ყველა", "All": "ყველა",
"All chats have been unarchived.": "ყველა ჩატი ამოღებული იქნა არქივიდან.", "All chats have been unarchived.": "ყველა ჩატი ამოღებული იქნა არქივიდან.",
"All Documents": "ყველა დოკუმენტი",
"All models deleted successfully": "ყველა მოდელი წარმატებით წაიშალა", "All models deleted successfully": "ყველა მოდელი წარმატებით წაიშალა",
"Allow Call": "გამოძახების დაშვება", "Allow Call": "გამოძახების დაშვება",
"Allow Chat Controls": "ჩატის კონტროლის ელემენტების დაშვება", "Allow Chat Controls": "ჩატის კონტროლის ელემენტების დაშვება",
@ -136,6 +138,7 @@
"API keys": "API გასაღებები", "API keys": "API გასაღებები",
"API Keys": "", "API Keys": "",
"API Mode": "API-ის რეჟიმი", "API Mode": "API-ის რეჟიმი",
"API Timeout": "",
"API Version": "API-ის ვერსია", "API Version": "API-ის ვერსია",
"API Version is required": "API-ის ვერსია აუცილებელია", "API Version is required": "API-ის ვერსია აუცილებელია",
"Application DN": "აპლიკაციის DN", "Application DN": "აპლიკაციის DN",
@ -154,6 +157,7 @@
"Are you sure?": "დარწმუნებული ბრძანდებით?", "Are you sure?": "დარწმუნებული ბრძანდებით?",
"Arena Models": "არენის მოდელები", "Arena Models": "არენის მოდელები",
"Artifacts": "არტეფაქტები", "Artifacts": "არტეფაქტები",
"Asc": "",
"Ask": "კითხვა", "Ask": "კითხვა",
"Ask a question": "კითხვის დასმა", "Ask a question": "კითხვის დასმა",
"Assistant": "დამხმარე", "Assistant": "დამხმარე",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "კამერა", "Camera": "კამერა",
"Cancel": "გაუქმება", "Cancel": "გაუქმება",
"Cannot create an empty note.": "",
"Capabilities": "შესაძლებლობები", "Capabilities": "შესაძლებლობები",
"Capture": "ჩაჭერა", "Capture": "ჩაჭერა",
"Capture Audio": "აუდიოს ჩაწერა", "Capture Audio": "აუდიოს ჩაწერა",
@ -228,6 +233,7 @@
"Channel deleted successfully": "არხი წარმატებით წაიშალა", "Channel deleted successfully": "არხი წარმატებით წაიშალა",
"Channel Name": "არხის სახელი", "Channel Name": "არხის სახელი",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "არხი წარმატებით განახლდა", "Channel updated successfully": "არხი წარმატებით განახლდა",
"Channels": "არხები", "Channels": "არხები",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "აკეცვა", "Collapse": "აკეცვა",
"Collection": "კოლექცია", "Collection": "კოლექცია",
"Collections": "",
"Color": "ფერი", "Color": "ფერი",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API-ის გასაღები", "ComfyUI API Key": "ComfyUI API-ის გასაღები",
@ -365,6 +372,7 @@
"Create Model": "მოდელის შექმნა", "Create Model": "მოდელის შექმნა",
"Create new key": "ახალი გასაღების შექმნა", "Create new key": "ახალი გასაღების შექმნა",
"Create new secret key": "ახალი საიდუმლო გასაღების შექმნა", "Create new secret key": "ახალი საიდუმლო გასაღების შექმნა",
"Create note": "",
"Create Note": "შენიშვნის შექმნა", "Create Note": "შენიშვნის შექმნა",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "შექმნის დრო", "Created at": "შექმნის დრო",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Deleted {{name}}", "Deleted {{name}}": "Deleted {{name}}",
"Deleted User": "წაშლილი მომხმარებელი", "Deleted User": "წაშლილი მომხმარებელი",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "აღწერა", "Description": "აღწერა",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "გადმოწერა SVG-ის სახით", "Download as SVG": "გადმოწერა SVG-ის სახით",
"Download canceled": "გადმოწერა გაუქმდა", "Download canceled": "გადმოწერა გაუქმდა",
"Download Database": "მონაცემთა ბაზის გადმოწერა", "Download Database": "მონაცემთა ბაზის გადმოწერა",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "ხატვა", "Draw": "ხატვა",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "შეიყვანეთ გასაღების ქცევა", "Enter Key Behavior": "შეიყვანეთ გასაღების ქცევა",
"Enter language codes": "შეიყვანეთ ენის კოდები", "Enter language codes": "შეიყვანეთ ენის კოდები",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "შეიყვანეთ მოდელის ID", "Enter Model ID": "შეიყვანეთ მოდელის ID",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "შეიყვანეთ SearchApi API-ის გასაღები", "Enter SearchApi API Key": "შეიყვანეთ SearchApi API-ის გასაღები",
"Enter SearchApi Engine": "შეიყვანეთ SearchApi-ის ძრავა", "Enter SearchApi Engine": "შეიყვანეთ SearchApi-ის ძრავა",
"Enter Searxng Query URL": "შეიყვანეთ Searxng Query URL", "Enter Searxng Query URL": "შეიყვანეთ Searxng Query URL",
"Enter Searxng search language": "",
"Enter Seed": "შეიყვანეთ თესლი", "Enter Seed": "შეიყვანეთ თესლი",
"Enter SerpApi API Key": "შეიყვანეთ SerpApi API-ის გასაღები", "Enter SerpApi API Key": "შეიყვანეთ SerpApi API-ის გასაღები",
"Enter SerpApi Engine": "შეიყვანეთ SerpApi-ის ძრავა", "Enter SerpApi Engine": "შეიყვანეთ SerpApi-ის ძრავა",
@ -730,6 +738,7 @@
"Failed to load chat preview": "ვიდეოს მინიატურის ჩატვირთვა ჩავარდა", "Failed to load chat preview": "ვიდეოს მინიატურის ჩატვირთვა ჩავარდა",
"Failed to load file content.": "ფაილის შემცველობის ჩატვირთვა ჩავარდა.", "Failed to load file content.": "ფაილის შემცველობის ჩატვირთვა ჩავარდა.",
"Failed to move chat": "ჩატის გადატანა ჩავარდა", "Failed to move chat": "ჩატის გადატანა ჩავარდა",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა", "Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "დიაგრამის რენდერი ჩავარდა", "Failed to render diagram": "დიაგრამის რენდერი ჩავარდა",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API გასაღები", "Google PSE API Key": "Google PSE API გასაღები",
"Google PSE Engine Id": "Google PSE ძრავის Id", "Google PSE Engine Id": "Google PSE ძრავის Id",
"Gravatar": "გრავატარი", "Gravatar": "გრავატარი",
"Grid": "",
"Group": "ჯგუფი", "Group": "ჯგუფი",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "ჯგუფი წარმატებით შეიქმნა", "Group created successfully": "ჯგუფი წარმატებით შეიქმნა",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "შემოტანა ბმულიდან", "Import From Link": "შემოტანა ბმულიდან",
"Import Models": "", "Import Models": "",
"Import Notes": "შენიშვნების შემოტანა",
"Import Presets": "პრესეტების შემოტანა", "Import Presets": "პრესეტების შემოტანა",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "შემოტანა წარმატებულია", "Import successful": "შემოტანა წარმატებულია",
@ -989,6 +998,8 @@
"License": "ლიცენზია", "License": "ლიცენზია",
"Lift List": "სიის აწევა", "Lift List": "სიის აწევა",
"Light": "ღია", "Light": "ღია",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "ვისმენ...", "Listening...": "ვისმენ...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM-ებმა, შეიძლება, შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.", "LLMs can make mistakes. Verify important information.": "LLM-ებმა, შეიძლება, შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "საკუთარი", "Native": "საკუთარი",
"New": "",
"New Button": "ახალი ღილაკი", "New Button": "ახალი ღილაკი",
"New Chat": "ახალი მიმოწერა", "New Chat": "ახალი მიმოწერა",
"New Folder": "ახალი საქაღალდე", "New Folder": "ახალი საქაღალდე",
"New Function": "ახალი ფუნქცია", "New Function": "ახალი ფუნქცია",
"New Knowledge": "ახალი ცოდნა", "New Knowledge": "ახალი ცოდნა",
"New Model": "ახალი მოდელი", "New Model": "ახალი მოდელი",
"New Note": "",
"New Password": "ახალი პაროლი", "New Password": "ახალი პაროლი",
"New Prompt": "ახალი შეყვანა", "New Prompt": "ახალი შეყვანა",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "ჩატების გარეშე.", "No chats found.": "ჩატების გარეშე.",
"No content": "შიგთავსის გარეშე", "No content": "შიგთავსის გარეშე",
"No content found": "შემცველობა აღმოჩენილი არაა", "No content found": "შემცველობა აღმოჩენილი არაა",
"No content found in file.": "ფაილში შემცველობა აღმოჩენილი არაა.",
"No content to speak": "წარმოსათქმელი შემცველობის გარეშე", "No content to speak": "წარმოსათქმელი შემცველობის გარეშე",
"No conversation to save": "შესანახი საუბრების გარეშე", "No conversation to save": "შესანახი საუბრების გარეშე",
"No distance available": "მანძილი ხელმისაწვდომი არაა", "No distance available": "მანძილი ხელმისაწვდომი არაა",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "უკუკავშირები აღმოჩენილი არაა", "No feedbacks found": "უკუკავშირები აღმოჩენილი არაა",
"No file selected": "ფაილი არჩეული არაა", "No file selected": "ფაილი არჩეული არაა",
"No files in this knowledge base.": "",
"No functions found": "ფუნქციები აღმოჩენილი არაა", "No functions found": "ფუნქციები აღმოჩენილი არაა",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "ცოდნა აღმოჩენილი არაა", "No knowledge found": "ცოდნა აღმოჩენილი არაა",
"No memories to clear": "გასასუფთავებელი მოგონებების გარეშე", "No memories to clear": "გასასუფთავებელი მოგონებების გარეშე",
"No model IDs": "მოდელის ID-ების გარეშე", "No model IDs": "მოდელის ID-ების გარეშე",
@ -1309,6 +1323,8 @@
"Read": "წაკითხვა", "Read": "წაკითხვა",
"Read Aloud": "ხმამაღლა წაკითხვა", "Read Aloud": "ხმამაღლა წაკითხვა",
"Read more →": "მეტის წაკითხვა →", "Read more →": "მეტის წაკითხვა →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "მიზეზი", "Reason": "მიზეზი",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "ძებნა ცოდნაში სტრიქონისთვის \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "ძებნა ცოდნაში სტრიქონისთვის \"{{searchQuery}}\"",
"Searching the web": "ძებნა ვებში", "Searching the web": "ძებნა ვებში",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ინსტრუქციებისთვის იხილეთ readme.md", "See readme.md for instructions": "ინსტრუქციებისთვის იხილეთ readme.md",
"See what's new": "ნახეთ, რა არის ახალი", "See what's new": "ნახეთ, რა არის ახალი",
"Seed": "თესლი", "Seed": "თესლი",
@ -1491,6 +1508,7 @@
"Show": "ჩვენება", "Show": "ჩვენება",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება", "Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება",
"Show image preview": "გამოსახულების გადახედვის ჩვენება", "Show image preview": "გამოსახულების გადახედვის ჩვენება",
"Show Model": "მოდელის ჩვენება", "Show Model": "მოდელის ჩვენება",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "წყარო", "Source": "წყარო",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika-ის სერვერის URL აუცილებელია.", "Tika Server URL required.": "Tika-ის სერვერის URL აუცილებელია.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "სათაური", "Title": "სათაური",
"Title Auto-Generation": "სათაურის ავტოგენერაცია", "Title Auto-Generation": "სათაურის ავტოგენერაცია",
"Title cannot be an empty string.": "სათაურის ველი ცარიელი სტრიქონი ვერ იქნება.", "Title cannot be an empty string.": "სათაურის ველი ცარიელი სტრიქონი ვერ იქნება.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "ტოპ K", "Top K": "ტოპ K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "ვებგვერდის ბმული", "Webpage URLs": "",
"WebUI Settings": "WebUI პარამეტრები", "WebUI Settings": "WebUI პარამეტრები",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "ცარიელ ფაილს ვერ ატვირთავთ.", "You cannot upload an empty file.": "ცარიელ ფაილს ვერ ატვირთავთ.",
"You do not have permission to send messages in this channel.": "ამ არხზე შეტყობინების გაგზავნის უფლება არ გაქვთ.", "You do not have permission to send messages in this channel.": "ამ არხზე შეტყობინების გაგზავნის უფლება არ გაქვთ.",
"You do not have permission to send messages in this thread.": "ამ ნაკადში შეტყობინების გაგზავნის უფლება არ გაქვთ.", "You do not have permission to send messages in this thread.": "ამ ნაკადში შეტყობინების გაგზავნის უფლება არ გაქვთ.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "ფაილების ატვირთვის უფლება არ გაქვთ.", "You do not have permission to upload files.": "ფაილების ატვირთვის უფლება არ გაქვთ.",
"You have no archived conversations.": "დაარქივებული საუბრები არ გაქვთ.", "You have no archived conversations.": "დაარქივებული საუბრები არ გაქვთ.",
"You have shared this chat": "თქვენ გააზიარეთ ეს ჩატი", "You have shared this chat": "თქვენ გააზიარეთ ეს ჩატი",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "Amḍan n yifecka i yellan {{COUNT}}", "{{COUNT}} Available Tools": "Amḍan n yifecka i yellan {{COUNT}}",
"{{COUNT}} characters": "{{COUNT}} n isekkilen", "{{COUNT}} characters": "{{COUNT}} n isekkilen",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren", "{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren",
"{{COUNT}} Replies": "{{COUNT}} n tririyin", "{{COUNT}} Replies": "{{COUNT}} n tririyin",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} n yiɣbula", "{{COUNT}} Sources": "{{COUNT}} n yiɣbula",
"{{COUNT}} words": "{{COUNT}} n wawalen", "{{COUNT}} words": "{{COUNT}} n wawalen",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ɣef {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ɣef {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Rnu agbur aḍrisan", "Add text content": "Rnu agbur aḍrisan",
"Add User": "Rnu aseqdac", "Add User": "Rnu aseqdac",
"Add User Group": "Rnu agraw n iseqdacen", "Add User Group": "Rnu agraw n iseqdacen",
"Add webpage": "",
"Additional Config": "Tawila tamernant", "Additional Config": "Tawila tamernant",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "Iɣewwaren nniḍen", "Additional Parameters": "Iɣewwaren nniḍen",
@ -84,7 +87,6 @@
"AI": "TT", "AI": "TT",
"All": "Akk", "All": "Akk",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Akk isemliyen",
"All models deleted successfully": "Akk timudmiwin ttwakksent akken iwata", "All models deleted successfully": "Akk timudmiwin ttwakksent akken iwata",
"Allow Call": "Sireg asiwel", "Allow Call": "Sireg asiwel",
"Allow Chat Controls": "Sireg isenqaden n usqerdec", "Allow Chat Controls": "Sireg isenqaden n usqerdec",
@ -136,6 +138,7 @@
"API keys": "Tisura API", "API keys": "Tisura API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Lqem n API", "API Version": "Lqem n API",
"API Version is required": "Lqem n API yettwasra", "API Version is required": "Lqem n API yettwasra",
"Application DN": "DN n wesnas", "Application DN": "DN n wesnas",
@ -154,6 +157,7 @@
"Are you sure?": "S tidett?", "Are you sure?": "S tidett?",
"Arena Models": "Timudmiwin n Arena", "Arena Models": "Timudmiwin n Arena",
"Artifacts": "Tarkisant", "Artifacts": "Tarkisant",
"Asc": "",
"Ask": "Suter", "Ask": "Suter",
"Ask a question": "Efk-d asteqsi", "Ask a question": "Efk-d asteqsi",
"Assistant": "Amallal", "Assistant": "Amallal",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Tamahilt n usiwel ur tettwasefrak ara mi ara tesqedceḍ amsedday Web STT", "Call feature is not supported when using Web STT engine": "Tamahilt n usiwel ur tettwasefrak ara mi ara tesqedceḍ amsedday Web STT",
"Camera": "Takamiṛatt", "Camera": "Takamiṛatt",
"Cancel": "Semmet", "Cancel": "Semmet",
"Cannot create an empty note.": "",
"Capabilities": "Tizemmar", "Capabilities": "Tizemmar",
"Capture": "Tuṭṭfa", "Capture": "Tuṭṭfa",
"Capture Audio": "Asekles n umeslaw", "Capture Audio": "Asekles n umeslaw",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Yettwakkes ubadu akken iwata", "Channel deleted successfully": "Yettwakkes ubadu akken iwata",
"Channel Name": "Isem n ubadu", "Channel Name": "Isem n ubadu",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Yettwaleqqem ubadu akken iwata", "Channel updated successfully": "Yettwaleqqem ubadu akken iwata",
"Channels": "Ibuda", "Channels": "Ibuda",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Sneḍfes", "Collapse": "Sneḍfes",
"Collection": "Tagrumma", "Collection": "Tagrumma",
"Collections": "",
"Color": "Ini", "Color": "Ini",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Tasarut API n ComfyUI", "ComfyUI API Key": "Tasarut API n ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Snulfu-d tamudemt", "Create Model": "Snulfu-d tamudemt",
"Create new key": "Snulfu-d tasarut tamaynut", "Create new key": "Snulfu-d tasarut tamaynut",
"Create new secret key": "Snulfu-d tasarut tuffirt tamaynut", "Create new secret key": "Snulfu-d tasarut tuffirt tamaynut",
"Create note": "",
"Create Note": "Snulfu-d tazmilt", "Create Note": "Snulfu-d tazmilt",
"Create your first note by clicking on the plus button below.": "Rnu tazmilt-ik⋅im tamezwarut s usiti ɣef tqeffalt ddaw.", "Create your first note by clicking on the plus button below.": "Rnu tazmilt-ik⋅im tamezwarut s usiti ɣef tqeffalt ddaw.",
"Created at": "Yettwarna di", "Created at": "Yettwarna di",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Yettwakkes {{name}}", "Deleted {{name}}": "Yettwakkes {{name}}",
"Deleted User": "Yettwakkes useqdac", "Deleted User": "Yettwakkes useqdac",
"Deployment names are required for Azure OpenAI": "Ismawen n usleɣmu laqen i Azure OpenAIAI", "Deployment names are required for Azure OpenAI": "Ismawen n usleɣmu laqen i Azure OpenAIAI",
"Desc": "",
"Describe your knowledge base and objectives": "Glem-d azadur-nwen n tmussni d yiswan-nwen", "Describe your knowledge base and objectives": "Glem-d azadur-nwen n tmussni d yiswan-nwen",
"Description": "Aglam", "Description": "Aglam",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Zdem am SVG", "Download as SVG": "Zdem am SVG",
"Download canceled": "Ittwasefsex usider", "Download canceled": "Ittwasefsex usider",
"Download Database": "Zdem-d tafa n isefka", "Download Database": "Zdem-d tafa n isefka",
"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ɣ", "Draw": "Suneɣ",
"Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ", "Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Tiyunin n wakud ameɣtu d 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Tiyunin n wakud ameɣtu d 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Sekcem-d tasarut API n Kagi Search", "Enter Kagi Search API Key": "Sekcem-d tasarut API n Kagi Search",
"Enter Key Behavior": "Kcem ɣer tsarut Behavior", "Enter Key Behavior": "Kcem ɣer tsarut Behavior",
"Enter language codes": "Sekcem-d tangalin n tutlayin", "Enter language codes": "Sekcem-d tangalin n tutlayin",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Enter Mistral API Tasarut", "Enter Mistral API Key": "Enter Mistral API Tasarut",
"Enter Model ID": "Senkcem-d asulay n tmudemt", "Enter Model ID": "Senkcem-d asulay n tmudemt",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Sekcem-d tasarut API n SearchApi", "Enter SearchApi API Key": "Sekcem-d tasarut API n SearchApi",
"Enter SearchApi Engine": "Sekcem-d amsadday SearchApi", "Enter SearchApi Engine": "Sekcem-d amsadday SearchApi",
"Enter Searxng Query URL": "Sekcem tansa URL n Searxng Query", "Enter Searxng Query URL": "Sekcem tansa URL n Searxng Query",
"Enter Searxng search language": "",
"Enter Seed": "Sekcem-d Seed", "Enter Seed": "Sekcem-d Seed",
"Enter SerpApi API Key": "Kcem ar Serp Tasarut API", "Enter SerpApi API Key": "Kcem ar Serp Tasarut API",
"Enter SerpApi Engine": "Sekcem-d amsedday n SerpApi", "Enter SerpApi Engine": "Sekcem-d amsedday n SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Yecceḍ usali n teskant n udiwenni", "Failed to load chat preview": "Yecceḍ usali n teskant n udiwenni",
"Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.", "Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.",
"Failed to move chat": "Tuccḍa deg unkaz n udiwenni", "Failed to move chat": "Tuccḍa deg unkaz n udiwenni",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit", "Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Tasarut API n Google PSE", "Google PSE API Key": "Tasarut API n Google PSE",
"Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google", "Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Agraw", "Group": "Agraw",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Agraw yennulfa-d akken iwata", "Group created successfully": "Agraw yennulfa-d akken iwata",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Kter-d Config seg ufaylu JSON", "Import Config from JSON File": "Kter-d Config seg ufaylu JSON",
"Import From Link": "Kter seg useɣwen", "Import From Link": "Kter seg useɣwen",
"Import Models": "", "Import Models": "",
"Import Notes": "Kter tizmilin",
"Import Presets": "Kter iɣewwaren uzwiren", "Import Presets": "Kter iɣewwaren uzwiren",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Taktert tella-d akken iwata", "Import successful": "Taktert tella-d akken iwata",
@ -989,6 +998,8 @@
"License": "Turagt", "License": "Turagt",
"Lift List": "Tabdart n usali", "Lift List": "Tabdart n usali",
"Light": "Aceɛlal", "Light": "Aceɛlal",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Yettmaḥsis…", "Listening...": "Yettmaḥsis…",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs yezmer ad yecceḍ. Senqed talɣut yesɛan azal.", "LLMs can make mistakes. Verify important information.": "LLMs yezmer ad yecceḍ. Senqed talɣut yesɛan azal.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Mudd isem i taffa-k⋅m n tmussniwin", "Name your knowledge base": "Mudd isem i taffa-k⋅m n tmussniwin",
"Native": "Asrew", "Native": "Asrew",
"New": "",
"New Button": "Taqeffalt tamaynut", "New Button": "Taqeffalt tamaynut",
"New Chat": "Asqerdec amaynut", "New Chat": "Asqerdec amaynut",
"New Folder": "Akaram amaynut", "New Folder": "Akaram amaynut",
"New Function": "Tasɣent tamaynut", "New Function": "Tasɣent tamaynut",
"New Knowledge": "", "New Knowledge": "",
"New Model": "Tamudemt tamaynut", "New Model": "Tamudemt tamaynut",
"New Note": "",
"New Password": "Awal n uɛeddi amaynut", "New Password": "Awal n uɛeddi amaynut",
"New Prompt": "Aneftaɣ amaynut", "New Prompt": "Aneftaɣ amaynut",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Ulac kra n usqerdec.", "No chats found.": "Ulac kra n usqerdec.",
"No content": "Ulac agbur", "No content": "Ulac agbur",
"No content found": "Ulac agbur yettwafen", "No content found": "Ulac agbur yettwafen",
"No content found in file.": "Ulac agbur yettwafen sdaxel ufaylu.",
"No content to speak": "Ulac ara d-yettwabedren", "No content to speak": "Ulac ara d-yettwabedren",
"No conversation to save": "Ulac adiwenni i usekles", "No conversation to save": "Ulac adiwenni i usekles",
"No distance available": "Ulac ameccaq yettwafen", "No distance available": "Ulac ameccaq yettwafen",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Ulac awennit i yettwafen", "No feedbacks found": "Ulac awennit i yettwafen",
"No file selected": "Ulac afaylu i yettwafernen", "No file selected": "Ulac afaylu i yettwafernen",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Ulac agraw i yesɛan anekcum, rnu agraw i umuddu n unekcum", "No groups with access, add a group to grant access": "Ulac agraw i yesɛan anekcum, rnu agraw i umuddu n unekcum",
"No HTML, CSS, or JavaScript content found.": "Ulac agbur HTML, CSS neɣ JavaScript i d-yufraren.", "No HTML, CSS, or JavaScript content found.": "Ulac agbur HTML, CSS neɣ JavaScript i d-yufraren.",
"No inference engine with management support found": "Ulac amsedday n unalkam s tallelt n usefrek i yettwafen", "No inference engine with management support found": "Ulac amsedday n unalkam s tallelt n usefrek i yettwafen",
"No knowledge bases found.": "",
"No knowledge found": "Ulac tamussni i yettwafen", "No knowledge found": "Ulac tamussni i yettwafen",
"No memories to clear": "Ulac aktayen ibanen", "No memories to clear": "Ulac aktayen ibanen",
"No model IDs": "Ulac asulay n tmudemt", "No model IDs": "Ulac asulay n tmudemt",
@ -1309,6 +1323,8 @@
"Read": "Ɣeṛ", "Read": "Ɣeṛ",
"Read Aloud": "Ɣeṛ-it-id s taɣect ɛlayen", "Read Aloud": "Ɣeṛ-it-id s taɣect ɛlayen",
"Read more →": "Ɣeṛ ugar →", "Read more →": "Ɣeṛ ugar →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Ssebba", "Reason": "Ssebba",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Anadi n tmessunin ɣef \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Anadi n tmessunin ɣef \"{{searchQuery}}\"",
"Searching the web": "Anadi deg web", "Searching the web": "Anadi deg web",
"Searxng Query URL": "URL n unadi Searxng", "Searxng Query URL": "URL n unadi Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya", "See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya",
"See what's new": "Wali d acu i yellan d amaynut", "See what's new": "Wali d acu i yellan d amaynut",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Sken-d", "Show": "Sken-d",
"Show \"What's New\" modal on login": "Sken-d \"D acu i d askar amaynut\" deg uɣmis", "Show \"What's New\" modal on login": "Sken-d \"D acu i d askar amaynut\" deg uɣmis",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka", "Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka",
"Show image preview": "Sken taskant n tugna", "Show image preview": "Sken taskant n tugna",
"Show Model": "Sken-d tamudemt", "Show Model": "Sken-d tamudemt",
@ -1515,6 +1533,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Asulay API n Sougou Search (sID)", "Sougou Search API sID": "Asulay API n Sougou Search (sID)",
"Sougou Search API SK": "Tasarut tuffirt n API Sougou Search (SK)", "Sougou Search API SK": "Tasarut tuffirt n API Sougou Search (SK)",
"Source": "Aɣbalu", "Source": "Aɣbalu",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tansa URL n Tika Server tettwasra.", "Tika Server URL required.": "Tansa URL n Tika Server tettwasra.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Azwel", "Title": "Azwel",
"Title Auto-Generation": "Asirew awurman n izwilen", "Title Auto-Generation": "Asirew awurman n izwilen",
"Title cannot be an empty string.": "Azwel ur yettili ara d azrir ilem.", "Title cannot be an empty string.": "Azwel ur yettili ara d azrir ilem.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "Beṭṭu azayaz n yifecka", "Tools Public Sharing": "Beṭṭu azayaz n yifecka",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Anadi Web deg udiwenni", "Web Search in Chat": "Anadi Web deg udiwenni",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Tansa URL n webhook", "Webhook URL": "Tansa URL n webhook",
"Webpage URL": "URL n usebter web", "Webpage URLs": "",
"WebUI Settings": "Iɣewwaṛen n WebUI", "WebUI Settings": "Iɣewwaṛen n WebUI",
"WebUI URL": "Tansa URL WebUI", "WebUI URL": "Tansa URL WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI ad ssutreɣ \"{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI ad ssutreɣ \"{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Ur tezmireḍ ad tessaliḍ afaylu ilem.", "You cannot upload an empty file.": "Ur tezmireḍ ad tessaliḍ afaylu ilem.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Ur tesɛiḍ ara turagt i uceggeɛ n yifuyla.", "You do not have permission to upload files.": "Ur tesɛiḍ ara turagt i uceggeɛ n yifuyla.",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "Tebḍiḍ aqesosoer-a", "You have shared this chat": "Tebḍiḍ aqesosoer-a",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개", "{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개",
"{{COUNT}} characters": "{{COUNT}} 문자", "{{COUNT}} characters": "{{COUNT}} 문자",
"{{COUNT}} extracted lines": "추출된 줄 {{COUNT}}개", "{{COUNT}} extracted lines": "추출된 줄 {{COUNT}}개",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "숨겨진 줄 {{COUNT}}개", "{{COUNT}} hidden lines": "숨겨진 줄 {{COUNT}}개",
"{{COUNT}} Replies": "답글 {{COUNT}}개", "{{COUNT}} Replies": "답글 {{COUNT}}개",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}}개의 소스", "{{COUNT}} Sources": "{{COUNT}}개의 소스",
"{{COUNT}} words": "{{COUNT}} 단어", "{{COUNT}} words": "{{COUNT}} 단어",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "글 추가", "Add text content": "글 추가",
"Add User": "사용자 추가", "Add User": "사용자 추가",
"Add User Group": "사용자 그룹 추가", "Add User Group": "사용자 그룹 추가",
"Add webpage": "",
"Additional Config": "추가 설정", "Additional Config": "추가 설정",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Marker에 대한 추가 설정 옵션입니다. 키-값 쌍으로 이루어진 JSON 문자열이어야 합니다. 예를 들어, '{\"key\": \"value\"}'와 같습니다. 지원되는 키는 다음과 같습니다: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Marker에 대한 추가 설정 옵션입니다. 키-값 쌍으로 이루어진 JSON 문자열이어야 합니다. 예를 들어, '{\"key\": \"value\"}'와 같습니다. 지원되는 키는 다음과 같습니다: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "추가 매개변수", "Additional Parameters": "추가 매개변수",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "전체", "All": "전체",
"All chats have been unarchived.": "모든 채팅이 보관 해제되었습니다.", "All chats have been unarchived.": "모든 채팅이 보관 해제되었습니다.",
"All Documents": "모든 문서",
"All models deleted successfully": "성공적으로 모든 모델이 삭제되었습니다", "All models deleted successfully": "성공적으로 모든 모델이 삭제되었습니다",
"Allow Call": "음성 통화 허용", "Allow Call": "음성 통화 허용",
"Allow Chat Controls": "채팅 제어 허용", "Allow Chat Controls": "채팅 제어 허용",
@ -136,6 +138,7 @@
"API keys": "API 키", "API keys": "API 키",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API 버전", "API Version": "API 버전",
"API Version is required": "", "API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
@ -154,6 +157,7 @@
"Are you sure?": "확실합니까?", "Are you sure?": "확실합니까?",
"Arena Models": "Arena 모델", "Arena Models": "Arena 모델",
"Artifacts": "아티팩트", "Artifacts": "아티팩트",
"Asc": "",
"Ask": "질문", "Ask": "질문",
"Ask a question": "질문하기", "Ask a question": "질문하기",
"Assistant": "어시스턴트", "Assistant": "어시스턴트",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.", "Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
"Camera": "카메라", "Camera": "카메라",
"Cancel": "취소", "Cancel": "취소",
"Cannot create an empty note.": "",
"Capabilities": "기능", "Capabilities": "기능",
"Capture": "캡처", "Capture": "캡처",
"Capture Audio": "오디오 캡처", "Capture Audio": "오디오 캡처",
@ -228,6 +233,7 @@
"Channel deleted successfully": "채널 삭제 성공", "Channel deleted successfully": "채널 삭제 성공",
"Channel Name": "채널 이름", "Channel Name": "채널 이름",
"Channel name cannot be empty.": "채널 이름은 비워둘 수 없습니다.", "Channel name cannot be empty.": "채널 이름은 비워둘 수 없습니다.",
"Channel name must be less than 128 characters": "",
"Channel Type": "채널 타입", "Channel Type": "채널 타입",
"Channel updated successfully": "채널 업데이트 성공", "Channel updated successfully": "채널 업데이트 성공",
"Channels": "채널", "Channels": "채널",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "사람들이 멤버로 참여하는 협업 채널", "Collaboration channel where people join as members": "사람들이 멤버로 참여하는 협업 채널",
"Collapse": "접기", "Collapse": "접기",
"Collection": "컬렉션", "Collection": "컬렉션",
"Collections": "",
"Color": "색상", "Color": "색상",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API 키", "ComfyUI API Key": "ComfyUI API 키",
@ -365,6 +372,7 @@
"Create Model": "모델 생성", "Create Model": "모델 생성",
"Create new key": "새로운 키 생성", "Create new key": "새로운 키 생성",
"Create new secret key": "새로운 비밀 키 생성", "Create new secret key": "새로운 비밀 키 생성",
"Create note": "",
"Create Note": "노트 생성", "Create Note": "노트 생성",
"Create your first note by clicking on the plus button below.": "아래의 플러스 버튼을 클릭하여 첫 번째 노트를 생성하세요.", "Create your first note by clicking on the plus button below.": "아래의 플러스 버튼을 클릭하여 첫 번째 노트를 생성하세요.",
"Created at": "생성일", "Created at": "생성일",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}}을(를) 삭제했습니다.", "Deleted {{name}}": "{{name}}을(를) 삭제했습니다.",
"Deleted User": "삭제된 사용자", "Deleted User": "삭제된 사용자",
"Deployment names are required for Azure OpenAI": "Azure OpenAI 사용 시 배포 이름은 필수입니다.", "Deployment names are required for Azure OpenAI": "Azure OpenAI 사용 시 배포 이름은 필수입니다.",
"Desc": "",
"Describe your knowledge base and objectives": "지식 기반에 대한 설명과 목적을 입력하세요", "Describe your knowledge base and objectives": "지식 기반에 대한 설명과 목적을 입력하세요",
"Description": "설명", "Description": "설명",
"Detect Artifacts Automatically": "아티팩트 자동 감지", "Detect Artifacts Automatically": "아티팩트 자동 감지",
@ -487,7 +496,6 @@
"Download as SVG": "SVG로 다운로드", "Download as SVG": "SVG로 다운로드",
"Download canceled": "다운로드 취소", "Download canceled": "다운로드 취소",
"Download Database": "데이터베이스 다운로드", "Download Database": "데이터베이스 다운로드",
"Drag and drop a file to upload or select a file to view": "파일을 끌어다 놓아 업로드하거나 파일을 선택하여 보기",
"Draw": "그리기", "Draw": "그리기",
"Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요", "Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 올바른 시간 단위는 '초', '분', '시'입니다.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 올바른 시간 단위는 '초', '분', '시'입니다.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search API 키 입력", "Enter Kagi Search API Key": "Kagi Search API 키 입력",
"Enter Key Behavior": "키 동작 입력", "Enter Key Behavior": "키 동작 입력",
"Enter language codes": "언어 코드 입력", "Enter language codes": "언어 코드 입력",
"Enter MinerU API Key": "MinerU API 키 입력",
"Enter Mistral API Base URL": "Mistral API Base URL 입력", "Enter Mistral API Base URL": "Mistral API Base URL 입력",
"Enter Mistral API Key": "Mistral API 키 입력", "Enter Mistral API Key": "Mistral API 키 입력",
"Enter Model ID": "모델 ID 입력", "Enter Model ID": "모델 ID 입력",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API 키 입력", "Enter SearchApi API Key": "SearchApi API 키 입력",
"Enter SearchApi Engine": "SearchApi 엔진 입력", "Enter SearchApi Engine": "SearchApi 엔진 입력",
"Enter Searxng Query URL": "Searxng 쿼리 URL 입력", "Enter Searxng Query URL": "Searxng 쿼리 URL 입력",
"Enter Searxng search language": "",
"Enter Seed": "Seed 입력", "Enter Seed": "Seed 입력",
"Enter SerpApi API Key": "SerpApi API 키 입력", "Enter SerpApi API Key": "SerpApi API 키 입력",
"Enter SerpApi Engine": "SerpApi 엔진 입력", "Enter SerpApi Engine": "SerpApi 엔진 입력",
@ -730,6 +738,7 @@
"Failed to load chat preview": "채팅 미리보기 로드 실패", "Failed to load chat preview": "채팅 미리보기 로드 실패",
"Failed to load file content.": "파일 내용 로드 실패.", "Failed to load file content.": "파일 내용 로드 실패.",
"Failed to move chat": "채팅 이동 실패", "Failed to move chat": "채팅 이동 실패",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다", "Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다",
"Failed to remove member": "멤버 삭제에 실패했습니다", "Failed to remove member": "멤버 삭제에 실패했습니다",
"Failed to render diagram": "다이어그램을 표시할 수 없습니다", "Failed to render diagram": "다이어그램을 표시할 수 없습니다",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API 키", "Google PSE API Key": "Google PSE API 키",
"Google PSE Engine Id": "Google PSE 엔진 ID", "Google PSE Engine Id": "Google PSE 엔진 ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "그룹", "Group": "그룹",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "성공적으로 그룹을 생성했습니다", "Group created successfully": "성공적으로 그룹을 생성했습니다",
@ -891,7 +901,6 @@
"Import Config from JSON File": "JSON 파일에서 설정 가져오기", "Import Config from JSON File": "JSON 파일에서 설정 가져오기",
"Import From Link": "링크에서 가져오기", "Import From Link": "링크에서 가져오기",
"Import Models": "", "Import Models": "",
"Import Notes": "노트 가져오기",
"Import Presets": "프리셋 가져오기", "Import Presets": "프리셋 가져오기",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "라이선스", "License": "라이선스",
"Lift List": "리스트 올리기", "Lift List": "리스트 올리기",
"Light": "라이트", "Light": "라이트",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "듣는 중...", "Listening...": "듣는 중...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.", "LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "지식 기반 이름을 지정하세요", "Name your knowledge base": "지식 기반 이름을 지정하세요",
"Native": "네이티브", "Native": "네이티브",
"New": "",
"New Button": "새 버튼", "New Button": "새 버튼",
"New Chat": "새 채팅", "New Chat": "새 채팅",
"New Folder": "새 폴더", "New Folder": "새 폴더",
"New Function": "새 함수", "New Function": "새 함수",
"New Knowledge": "새 지식 기반", "New Knowledge": "새 지식 기반",
"New Model": "새 모델", "New Model": "새 모델",
"New Note": "",
"New Password": "새 비밀번호", "New Password": "새 비밀번호",
"New Prompt": "새 프롬프트", "New Prompt": "새 프롬프트",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "채팅을 찾을 수 없습니다.", "No chats found.": "채팅을 찾을 수 없습니다.",
"No content": "내용이 없습니다", "No content": "내용이 없습니다",
"No content found": "내용을 찾을 수 없습니다", "No content found": "내용을 찾을 수 없습니다",
"No content found in file.": "파일에서 내용을 찾을 수 없습니다.",
"No content to speak": "음성 출력할 내용을 찾을 수 없습니다", "No content to speak": "음성 출력할 내용을 찾을 수 없습니다",
"No conversation to save": "저장할 대화가 없습니다", "No conversation to save": "저장할 대화가 없습니다",
"No distance available": "거리 불가능", "No distance available": "거리 불가능",
"No expiration can pose security risks.": "만료 기한이 없으면 보안 위험이 발생할 수 있습니다.", "No expiration can pose security risks.": "만료 기한이 없으면 보안 위험이 발생할 수 있습니다.",
"No feedbacks found": "피드백을 찾을 수 없습니다", "No feedbacks found": "피드백을 찾을 수 없습니다",
"No file selected": "파일이 선택되지 않았습니다", "No file selected": "파일이 선택되지 않았습니다",
"No files in this knowledge base.": "",
"No functions found": "함수를 찾을 수 없습니다", "No functions found": "함수를 찾을 수 없습니다",
"No groups with access, add a group to grant access": "접근 권한이 있는 그룹이 없습니다. 접근 권한을 부여하려면 그룹을 추가하세요.", "No groups with access, add a group to grant access": "접근 권한이 있는 그룹이 없습니다. 접근 권한을 부여하려면 그룹을 추가하세요.",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS, JavaScript이 발견되지 않았습니다", "No HTML, CSS, or JavaScript content found.": "HTML, CSS, JavaScript이 발견되지 않았습니다",
"No inference engine with management support found": "관리 지원이 포함된 추론 엔진을 찾을 수 없습니다", "No inference engine with management support found": "관리 지원이 포함된 추론 엔진을 찾을 수 없습니다",
"No knowledge bases found.": "",
"No knowledge found": "지식 기반을 찾을 수 없습니다", "No knowledge found": "지식 기반을 찾을 수 없습니다",
"No memories to clear": "메모리를 정리할 수 없습니다", "No memories to clear": "메모리를 정리할 수 없습니다",
"No model IDs": "모델 ID가 없습니다", "No model IDs": "모델 ID가 없습니다",
@ -1309,6 +1323,8 @@
"Read": "읽기", "Read": "읽기",
"Read Aloud": "읽어주기", "Read Aloud": "읽어주기",
"Read more →": "더 읽기 →", "Read more →": "더 읽기 →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "근거", "Reason": "근거",
"Reasoning Effort": "추론 난이도", "Reasoning Effort": "추론 난이도",
"Reasoning Tags": "추론 태그", "Reasoning Tags": "추론 태그",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\"에 대한 지식 기반 검색 중", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\"에 대한 지식 기반 검색 중",
"Searching the web": "웹에서 검색 중...", "Searching the web": "웹에서 검색 중...",
"Searxng Query URL": "Searxng 쿼리 URL", "Searxng Query URL": "Searxng 쿼리 URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "설명은 readme.md를 참조하세요.", "See readme.md for instructions": "설명은 readme.md를 참조하세요.",
"See what's new": "새로운 기능 보기", "See what's new": "새로운 기능 보기",
"Seed": "시드", "Seed": "시드",
@ -1490,6 +1507,7 @@
"Show": "보기", "Show": "보기",
"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기", "Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출", "Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
"Show Files": "",
"Show Formatting Toolbar": "서식 툴바 표시", "Show Formatting Toolbar": "서식 툴바 표시",
"Show image preview": "이미지 미리보기", "Show image preview": "이미지 미리보기",
"Show Model": "모델 보기", "Show Model": "모델 보기",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "출처", "Source": "출처",
@ -1624,6 +1643,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "Tika 서버 URL이 필요합니다.", "Tika Server URL required.": "Tika 서버 URL이 필요합니다.",
"Tiktoken": "틱토큰 (Tiktoken)", "Tiktoken": "틱토큰 (Tiktoken)",
"Timeout": "",
"Title": "제목", "Title": "제목",
"Title Auto-Generation": "제목 자동 생성", "Title Auto-Generation": "제목 자동 생성",
"Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.", "Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.", "Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
"Tools Public Sharing": "도구 공개 및 공유", "Tools Public Sharing": "도구 공개 및 공유",
"Tools Sharing": "도구 공유", "Tools Sharing": "도구 공유",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K 리랭커", "Top K Reranker": "Top K 리랭커",
"Transformers": "트랜스포머", "Transformers": "트랜스포머",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "채팅에서 웹 검색", "Web Search in Chat": "채팅에서 웹 검색",
"Web Search Query Generation": "웹 검색 쿼리 생성", "Web Search Query Generation": "웹 검색 쿼리 생성",
"Webhook URL": "웹훅 URL", "Webhook URL": "웹훅 URL",
"Webpage URL": "웹페이지 URL", "Webpage URLs": "",
"WebUI Settings": "WebUI 설정", "WebUI Settings": "WebUI 설정",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "WebUI가 \"{{url}}\"로 요청을 보냅니다", "WebUI will make requests to \"{{url}}\"": "WebUI가 \"{{url}}\"로 요청을 보냅니다",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다", "You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "파일을 업로드할 권한이 없습니다.", "You do not have permission to upload files.": "파일을 업로드할 권한이 없습니다.",
"You have no archived conversations.": "채팅을 보관한 적이 없습니다.", "You have no archived conversations.": "채팅을 보관한 적이 없습니다.",
"You have shared this chat": "이 채팅을 공유했습니다.", "You have shared this chat": "이 채팅을 공유했습니다.",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Pridėti naudotoją", "Add User": "Pridėti naudotoją",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Visi dokumentai",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API raktai", "API keys": "API raktai",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Are esate tikri?", "Are you sure?": "Are esate tikri?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį", "Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Atšaukti", "Cancel": "Atšaukti",
"Cannot create an empty note.": "",
"Capabilities": "Gebėjimai", "Capabilities": "Gebėjimai",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Sukurti naują raktą", "Create new key": "Sukurti naują raktą",
"Create new secret key": "Sukurti naują slaptą raktą", "Create new secret key": "Sukurti naują slaptą raktą",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Sukurta", "Created at": "Sukurta",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Ištrinta {{name}}", "Deleted {{name}}": "Ištrinta {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Aprašymas", "Description": "Aprašymas",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Parsisiuntimas atšauktas", "Download canceled": "Parsisiuntimas atšauktas",
"Download Database": "Parsisiųsti duomenų bazę", "Download Database": "Parsisiųsti duomenų bazę",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Įveskite kalbos kodus", "Enter language codes": "Įveskite kalbos kodus",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Įveskite Searxng Query nuorodą", "Enter Searxng Query URL": "Įveskite Searxng Query nuorodą",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės", "Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API raktas", "Google PSE API Key": "Google PSE API raktas",
"Google PSE Engine Id": "Google PSE variklio ID", "Google PSE Engine Id": "Google PSE variklio ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupė", "Group": "Grupė",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Šviesus", "Light": "Šviesus",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Klausoma...", "Listening...": "Klausoma...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.", "LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Naujas pokalbis", "New Chat": "Naujas pokalbis",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Naujas slaptažodis", "New Password": "Naujas slaptažodis",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "Nėra turinio kalbėjimui", "No content to speak": "Nėra turinio kalbėjimui",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "Nėra pasirinktų dokumentų", "No file selected": "Nėra pasirinktų dokumentų",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Skaityti garsiai", "Read Aloud": "Skaityti garsiai",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng užklausos URL", "Searxng Query URL": "Searxng užklausos URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Žiūrėti readme.md papildomoms instrukcijoms", "See readme.md for instructions": "Žiūrėti readme.md papildomoms instrukcijoms",
"See what's new": "Žiūrėti naujoves", "See what's new": "Žiūrėti naujoves",
"Seed": "Sėkla", "Seed": "Sėkla",
@ -1493,6 +1510,7 @@
"Show": "Rodyti", "Show": "Rodyti",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo", "Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1517,6 +1535,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Šaltinis", "Source": "Šaltinis",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Reiklainga Tika serverio nuorodą", "Tika Server URL required.": "Reiklainga Tika serverio nuorodą",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Pavadinimas", "Title": "Pavadinimas",
"Title Auto-Generation": "Automatinis pavadinimų generavimas", "Title Auto-Generation": "Automatinis pavadinimų generavimas",
"Title cannot be an empty string.": "Pavadinimas negali būti tuščias", "Title cannot be an empty string.": "Pavadinimas negali būti tuščias",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą", "Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Webhook nuoroda", "Webhook URL": "Webhook nuoroda",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI parametrai", "WebUI Settings": "WebUI parametrai",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Jūs neturite archyvuotų pokalbių", "You have no archived conversations.": "Jūs neturite archyvuotų pokalbių",
"You have shared this chat": "Pasidalinote šiuo pokalbiu", "You have shared this chat": "Pasidalinote šiuo pokalbiu",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Tambah Pengguna", "Add User": "Tambah Pengguna",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Semua Dokumen",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "Kekunci API", "API keys": "Kekunci API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Adakah anda pasti", "Are you sure?": "Adakah anda pasti",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT", "Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Batal", "Cancel": "Batal",
"Cannot create an empty note.": "",
"Capabilities": "Keupayaan", "Capabilities": "Keupayaan",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksi", "Collection": "Koleksi",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Cipta kekunci baharu", "Create new key": "Cipta kekunci baharu",
"Create new secret key": "Cipta kekunci rahsia baharu", "Create new secret key": "Cipta kekunci rahsia baharu",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Dicipta di", "Created at": "Dicipta di",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} dipadam", "Deleted {{name}}": "{{name}} dipadam",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Penerangan", "Description": "Penerangan",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Muat Turun dibatalkan", "Download canceled": "Muat Turun dibatalkan",
"Download Database": "Muat turun Pangkalan Data", "Download Database": "Muat turun Pangkalan Data",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Masukkan kod bahasa", "Enter language codes": "Masukkan kod bahasa",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Masukkan URL 'Searxng Query'", "Enter Searxng Query URL": "Masukkan URL 'Searxng Query'",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip", "Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Kunci API Google PSE", "Google PSE API Key": "Kunci API Google PSE",
"Google PSE Engine Id": "ID Enjin Google PSE", "Google PSE Engine Id": "ID Enjin Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Kumpulan", "Group": "Kumpulan",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Cerah", "Light": "Cerah",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Mendengar...", "Listening...": "Mendengar...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting", "LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Perbualan Baru", "New Chat": "Perbualan Baru",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Kata Laluan Baru", "New Password": "Kata Laluan Baru",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "Tiada kandungan untuk bercakap", "No content to speak": "Tiada kandungan untuk bercakap",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "Tiada fail dipilih", "No file selected": "Tiada fail dipilih",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Baca dengan lantang", "Read Aloud": "Baca dengan lantang",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "URL Pertanyaan Searxng", "Searxng Query URL": "URL Pertanyaan Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Lihat readme.md untuk arahan", "See readme.md for instructions": "Lihat readme.md untuk arahan",
"See what's new": "Lihat apa yang terbaru", "See what's new": "Lihat apa yang terbaru",
"Seed": "Benih", "Seed": "Benih",
@ -1490,6 +1507,7 @@
"Show": "Tunjukkan", "Show": "Tunjukkan",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan", "Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sumber", "Source": "Sumber",
@ -1624,6 +1643,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL Pelayan Tika diperlukan.", "Tika Server URL required.": "URL Pelayan Tika diperlukan.",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Tajuk", "Title": "Tajuk",
"Title Auto-Generation": "Penjanaan Auto Tajuk", "Title Auto-Generation": "Penjanaan Auto Tajuk",
"Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong", "Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.", "Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "'Top K'", "Top K": "'Top K'",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL 'Webhook'", "Webhook URL": "URL 'Webhook'",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Tetapan WebUI", "WebUI Settings": "Tetapan WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan", "You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan",
"You have shared this chat": "Anda telah berkongsi perbualan ini", "You have shared this chat": "Anda telah berkongsi perbualan ini",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Legg til tekstinnhold", "Add text content": "Legg til tekstinnhold",
"Add User": "Legg til bruker", "Add User": "Legg til bruker",
"Add User Group": "Legg til brukergruppe", "Add User Group": "Legg til brukergruppe",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Alle dokumenter",
"All models deleted successfully": "Alle modeller er slettet", "All models deleted successfully": "Alle modeller er slettet",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Tillatt chatkontroller", "Allow Chat Controls": "Tillatt chatkontroller",
@ -136,6 +138,7 @@
"API keys": "API-nøkler", "API keys": "API-nøkler",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Applikasjonens DN", "Application DN": "Applikasjonens DN",
@ -154,6 +157,7 @@
"Are you sure?": "Er du sikker?", "Are you sure?": "Er du sikker?",
"Arena Models": "Arena-modeller", "Arena Models": "Arena-modeller",
"Artifacts": "Artifakter", "Artifacts": "Artifakter",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Still et spørsmål", "Ask a question": "Still et spørsmål",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren", "Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Avbryt", "Cancel": "Avbryt",
"Cannot create an empty note.": "",
"Capabilities": "Muligheter", "Capabilities": "Muligheter",
"Capture": "Opptak", "Capture": "Opptak",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanalens navn", "Channel Name": "Kanalens navn",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Samling", "Collection": "Samling",
"Collections": "",
"Color": "Farge", "Color": "Farge",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "API-nøkkel for ComfyUI", "ComfyUI API Key": "API-nøkkel for ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Lag ny nøkkel", "Create new key": "Lag ny nøkkel",
"Create new secret key": "Lag ny hemmelig nøkkel", "Create new secret key": "Lag ny hemmelig nøkkel",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Opprettet", "Created at": "Opprettet",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Slettet {{name}}", "Deleted {{name}}": "Slettet {{name}}",
"Deleted User": "Slettet bruker", "Deleted User": "Slettet bruker",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Beskriv kunnskapsbasen din og målene dine", "Describe your knowledge base and objectives": "Beskriv kunnskapsbasen din og målene dine",
"Description": "Beskrivelse", "Description": "Beskrivelse",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Last ned som SVG", "Download as SVG": "Last ned som SVG",
"Download canceled": "Nedlasting avbrutt", "Download canceled": "Nedlasting avbrutt",
"Download Database": "Last ned database", "Download Database": "Last ned database",
"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", "Draw": "Tegne",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Angi API-nøkkel for Kagi Search", "Enter Kagi Search API Key": "Angi API-nøkkel for Kagi Search",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Angi språkkoder", "Enter language codes": "Angi språkkoder",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Angi modellens ID", "Enter Model ID": "Angi modellens ID",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Angi API-nøkkel for SearchApi", "Enter SearchApi API Key": "Angi API-nøkkel for SearchApi",
"Enter SearchApi Engine": "Angi motor for SearchApi", "Enter SearchApi Engine": "Angi motor for SearchApi",
"Enter Searxng Query URL": "Angi spørrings-URL for Searxng", "Enter Searxng Query URL": "Angi spørrings-URL for Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Angi Seed", "Enter Seed": "Angi Seed",
"Enter SerpApi API Key": "Angi API-nøkkel for SerpApi", "Enter SerpApi API Key": "Angi API-nøkkel for SerpApi",
"Enter SerpApi Engine": "Angi motor for SerpApi", "Enter SerpApi Engine": "Angi motor for SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold", "Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "API-nøkkel for Google PSE", "Google PSE API Key": "API-nøkkel for Google PSE",
"Google PSE Engine Id": "Motor-ID for Google PSE", "Google PSE Engine Id": "Motor-ID for Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Gruppe opprettet", "Group created successfully": "Gruppe opprettet",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importer konfigurasjon fra en JSON-fil", "Import Config from JSON File": "Importer konfigurasjon fra en JSON-fil",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Importer forhåndsinnstillinger", "Import Presets": "Importer forhåndsinnstillinger",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Lisens", "License": "Lisens",
"Lift List": "", "Lift List": "",
"Light": "Lys", "Light": "Lys",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Lytter ...", "Listening...": "Lytter ...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.", "LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Gi kunnskapsbasen et navn", "Name your knowledge base": "Gi kunnskapsbasen et navn",
"Native": "Opprinnelig", "Native": "Opprinnelig",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Ny chat", "New Chat": "Ny chat",
"New Folder": "Ny mappe", "New Folder": "Ny mappe",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nytt passord", "New Password": "Nytt passord",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Finner ikke noe innhold", "No content found": "Finner ikke noe innhold",
"No content found in file.": "",
"No content to speak": "Mangler innhold for tale", "No content to speak": "Mangler innhold for tale",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Ingen avstand tilgjengelig", "No distance available": "Ingen avstand tilgjengelig",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Finner ingen tilbakemeldinger", "No feedbacks found": "Finner ingen tilbakemeldinger",
"No file selected": "Ingen fil valgt", "No file selected": "Ingen fil valgt",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Ingen grupper med tilgang. Legg til en gruppe som skal ha tilgang.", "No groups with access, add a group to grant access": "Ingen grupper med tilgang. Legg til en gruppe som skal ha tilgang.",
"No HTML, CSS, or JavaScript content found.": "Finner ikke noe HTML, CSS- eller JavaScript-innhold.", "No HTML, CSS, or JavaScript content found.": "Finner ikke noe HTML, CSS- eller JavaScript-innhold.",
"No inference engine with management support found": "Fant ingen konklusjonsmotor med støtte for administrasjon", "No inference engine with management support found": "Fant ingen konklusjonsmotor med støtte for administrasjon",
"No knowledge bases found.": "",
"No knowledge found": "Finner ingen kunnskaper", "No knowledge found": "Finner ingen kunnskaper",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "Ingen modell-ID-er", "No model IDs": "Ingen modell-ID-er",
@ -1309,6 +1323,8 @@
"Read": "Les", "Read": "Les",
"Read Aloud": "Les høyt", "Read Aloud": "Les høyt",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Resonneringsinnsats", "Reasoning Effort": "Resonneringsinnsats",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Søker etter kunnskap for \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Søker etter kunnskap for \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng forespørsels-URL", "Searxng Query URL": "Searxng forespørsels-URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Se readme.md for å få instruksjoner", "See readme.md for instructions": "Se readme.md for å få instruksjoner",
"See what's new": "Se hva som er nytt", "See what's new": "Se hva som er nytt",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Vis", "Show": "Vis",
"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging", "Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning", "Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Kilde", "Source": "Kilde",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Server-URL for Tika kreves.", "Tika Server URL required.": "Server-URL for Tika kreves.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Tittel", "Title": "Tittel",
"Title Auto-Generation": "Automatisk tittelgenerering", "Title Auto-Generation": "Automatisk tittelgenerering",
"Title cannot be an empty string.": "Tittel kan ikke være en tom streng.", "Title cannot be an empty string.": "Tittel kan ikke være en tom streng.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.", "Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformatorer", "Transformers": "Transformatorer",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Nettsøk i chat", "Web Search in Chat": "Nettsøk i chat",
"Web Search Query Generation": "Genering av spørringer for nettsøk", "Web Search Query Generation": "Genering av spørringer for nettsøk",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Innstillinger for WebUI", "WebUI Settings": "Innstillinger for WebUI",
"WebUI URL": "URL for WebUI", "WebUI URL": "URL for WebUI",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.", "You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.", "You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.",
"You have no archived conversations.": "Du har ingen arkiverte samtaler.", "You have no archived conversations.": "Du har ingen arkiverte samtaler.",
"You have shared this chat": "Du har delt denne chatten", "You have shared this chat": "Du har delt denne chatten",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} beschikbare tools", "{{COUNT}} Available Tools": "{{COUNT}} beschikbare tools",
"{{COUNT}} characters": "{{COUNT}} karakters", "{{COUNT}} characters": "{{COUNT}} karakters",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} verborgen regels", "{{COUNT}} hidden lines": "{{COUNT}} verborgen regels",
"{{COUNT}} Replies": "{{COUNT}} antwoorden", "{{COUNT}} Replies": "{{COUNT}} antwoorden",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "{{COUNT}} woorden", "{{COUNT}} words": "{{COUNT}} woorden",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Voeg tekstinhoud toe", "Add text content": "Voeg tekstinhoud toe",
"Add User": "Voeg gebruiker toe", "Add User": "Voeg gebruiker toe",
"Add User Group": "Voeg gebruikersgroep toe", "Add User Group": "Voeg gebruikersgroep toe",
"Add webpage": "",
"Additional Config": "Extra configuratie", "Additional Config": "Extra configuratie",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Alle", "All": "Alle",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Alle documenten",
"All models deleted successfully": "Alle modellen zijn succesvol verwijderd", "All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
"Allow Call": "Bellen toestaan", "Allow Call": "Bellen toestaan",
"Allow Chat Controls": "Chatbesturing toestaan", "Allow Chat Controls": "Chatbesturing toestaan",
@ -136,6 +138,7 @@
"API keys": "API-sleutels", "API keys": "API-sleutels",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "Applicatie DN", "Application DN": "Applicatie DN",
@ -154,6 +157,7 @@
"Are you sure?": "Weet je het zeker?", "Are you sure?": "Weet je het zeker?",
"Arena Models": "Arenamodellen", "Arena Models": "Arenamodellen",
"Artifacts": "Artefacten", "Artifacts": "Artefacten",
"Asc": "",
"Ask": "Vraag", "Ask": "Vraag",
"Ask a question": "Stel een vraag", "Ask a question": "Stel een vraag",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine", "Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
"Camera": "Camera", "Camera": "Camera",
"Cancel": "Annuleren", "Cancel": "Annuleren",
"Cannot create an empty note.": "",
"Capabilities": "Mogelijkheden", "Capabilities": "Mogelijkheden",
"Capture": "Vastleggen", "Capture": "Vastleggen",
"Capture Audio": "Audio opnemen", "Capture Audio": "Audio opnemen",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanaalnaam", "Channel Name": "Kanaalnaam",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanalen", "Channels": "Kanalen",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Inklappen", "Collapse": "Inklappen",
"Collection": "Verzameling", "Collection": "Verzameling",
"Collections": "",
"Color": "Kleur", "Color": "Kleur",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API-sleutel", "ComfyUI API Key": "ComfyUI API-sleutel",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Maak nieuwe sleutel", "Create new key": "Maak nieuwe sleutel",
"Create new secret key": "Maak nieuwe geheime sleutel", "Create new secret key": "Maak nieuwe geheime sleutel",
"Create note": "",
"Create Note": "Maak notitie", "Create Note": "Maak notitie",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Gemaakt op", "Created at": "Gemaakt op",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} verwijderd", "Deleted {{name}}": "{{name}} verwijderd",
"Deleted User": "Gebruiker verwijderd", "Deleted User": "Gebruiker verwijderd",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Beschrijf je kennisbasis en doelstellingen", "Describe your knowledge base and objectives": "Beschrijf je kennisbasis en doelstellingen",
"Description": "Beschrijving", "Description": "Beschrijving",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Download als SVG", "Download as SVG": "Download als SVG",
"Download canceled": "Download geannuleerd", "Download canceled": "Download geannuleerd",
"Download Database": "Download database", "Download Database": "Download database",
"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", "Draw": "Teken",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Voer Kagi Search API-sleutel in", "Enter Kagi Search API Key": "Voer Kagi Search API-sleutel in",
"Enter Key Behavior": "Voer sleutelgedrag in", "Enter Key Behavior": "Voer sleutelgedrag in",
"Enter language codes": "Voeg taalcodes toe", "Enter language codes": "Voeg taalcodes toe",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Voer model-ID in", "Enter Model ID": "Voer model-ID in",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Voer SearchApi API-sleutel in", "Enter SearchApi API Key": "Voer SearchApi API-sleutel in",
"Enter SearchApi Engine": "Voer SearchApi-Engine in", "Enter SearchApi Engine": "Voer SearchApi-Engine in",
"Enter Searxng Query URL": "Voer de URL van de Searxng-query in", "Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
"Enter Searxng search language": "",
"Enter Seed": "Voer Seed in", "Enter Seed": "Voer Seed in",
"Enter SerpApi API Key": "Voer SerpApi API-sleutel in", "Enter SerpApi API Key": "Voer SerpApi API-sleutel in",
"Enter SerpApi Engine": "Voer SerpApi-engine in", "Enter SerpApi Engine": "Voer SerpApi-engine in",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen", "Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API-sleutel", "Google PSE API Key": "Google PSE API-sleutel",
"Google PSE Engine Id": "Google PSE-engine-ID", "Google PSE Engine Id": "Google PSE-engine-ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Groep", "Group": "Groep",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Groep succesvol aangemaakt", "Group created successfully": "Groep succesvol aangemaakt",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand", "Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Importeer voorinstellingen", "Import Presets": "Importeer voorinstellingen",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licentie", "License": "Licentie",
"Lift List": "", "Lift List": "",
"Light": "Licht", "Light": "Licht",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Aan het luisteren...", "Listening...": "Aan het luisteren...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.", "LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Geef je kennisbasis een naam", "Name your knowledge base": "Geef je kennisbasis een naam",
"Native": "Native", "Native": "Native",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nieuwe Chat", "New Chat": "Nieuwe Chat",
"New Folder": "Nieuwe map", "New Folder": "Nieuwe map",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nieuw Wachtwoord", "New Password": "Nieuw Wachtwoord",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Geen content gevonden", "No content found": "Geen content gevonden",
"No content found in file.": "",
"No content to speak": "Geen inhoud om over te spreken", "No content to speak": "Geen inhoud om over te spreken",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Geen afstand beschikbaar", "No distance available": "Geen afstand beschikbaar",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Geen feedback gevonden", "No feedbacks found": "Geen feedback gevonden",
"No file selected": "Geen bestand geselecteerd", "No file selected": "Geen bestand geselecteerd",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Geen groepen met toegang, voeg een groep toe om toegang te geven", "No groups with access, add a group to grant access": "Geen groepen met toegang, voeg een groep toe om toegang te geven",
"No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden", "No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden",
"No inference engine with management support found": "Geen inferentie-engine met beheerondersteuning gevonden", "No inference engine with management support found": "Geen inferentie-engine met beheerondersteuning gevonden",
"No knowledge bases found.": "",
"No knowledge found": "Geen kennis gevonden", "No knowledge found": "Geen kennis gevonden",
"No memories to clear": "Geen herinneringen om op te ruimen", "No memories to clear": "Geen herinneringen om op te ruimen",
"No model IDs": "Geen model-ID's", "No model IDs": "Geen model-ID's",
@ -1309,6 +1323,8 @@
"Read": "Voorlezen", "Read": "Voorlezen",
"Read Aloud": "Voorlezen", "Read Aloud": "Voorlezen",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Redeneerinspanning", "Reasoning Effort": "Redeneerinspanning",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Zoek kennis bij \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Zoek kennis bij \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Zie readme.md voor instructies", "See readme.md for instructions": "Zie readme.md voor instructies",
"See what's new": "Zie wat er nieuw is", "See what's new": "Zie wat er nieuw is",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Toon", "Show": "Toon",
"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen", "Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account", "Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Toon model", "Show Model": "Toon model",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Bron", "Source": "Bron",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika Server-URL vereist", "Tika Server URL required.": "Tika Server-URL vereist",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titel", "Title": "Titel",
"Title Auto-Generation": "Titel Auto-Generatie", "Title Auto-Generation": "Titel Auto-Generatie",
"Title cannot be an empty string.": "Titel kan niet leeg zijn.", "Title cannot be an empty string.": "Titel kan niet leeg zijn.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd", "Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
"Tools Public Sharing": "Gereedschappen publiek delen", "Tools Public Sharing": "Gereedschappen publiek delen",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K herranker", "Top K Reranker": "Top K herranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Zoekopdracht in chat", "Web Search in Chat": "Zoekopdracht in chat",
"Web Search Query Generation": "Zoekopdracht generatie", "Web Search Query Generation": "Zoekopdracht generatie",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI Instellingen", "WebUI Settings": "WebUI Instellingen",
"WebUI URL": "WebUI-URL", "WebUI URL": "WebUI-URL",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.", "You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden", "You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
"You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.", "You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
"You have shared this chat": "Je hebt dit gesprek gedeeld", "You have shared this chat": "Je hebt dit gesprek gedeeld",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "ਉਪਭੋਗਤਾ ਸ਼ਾਮਲ ਕਰੋ", "Add User": "ਉਪਭੋਗਤਾ ਸ਼ਾਮਲ ਕਰੋ",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API ਕੁੰਜੀਆਂ", "API keys": "API ਕੁੰਜੀਆਂ",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?", "Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "ਰੱਦ ਕਰੋ", "Cancel": "ਰੱਦ ਕਰੋ",
"Cannot create an empty note.": "",
"Capabilities": "ਸਮਰੱਥਾਵਾਂ", "Capabilities": "ਸਮਰੱਥਾਵਾਂ",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "ਸੰਗ੍ਰਹਿ", "Collection": "ਸੰਗ੍ਰਹਿ",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ਕੰਫੀਯੂਆਈ", "ComfyUI": "ਕੰਫੀਯੂਆਈ",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ", "Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ",
"Create new secret key": "ਨਵੀਂ ਗੁਪਤ ਕੁੰਜੀ ਬਣਾਓ", "Create new secret key": "ਨਵੀਂ ਗੁਪਤ ਕੁੰਜੀ ਬਣਾਓ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ", "Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
@ -429,6 +437,7 @@
"Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}", "Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "ਵਰਣਨਾ", "Description": "ਵਰਣਨਾ",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ", "Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ",
"Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ", "Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "ਭਾਸ਼ਾ ਕੋਡ ਦਰਜ ਕਰੋ", "Enter language codes": "ਭਾਸ਼ਾ ਕੋਡ ਦਰਜ ਕਰੋ",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Searxng Query URL ਦਾਖਲ ਕਰੋ", "Enter Searxng Query URL": "Searxng Query URL ਦਾਖਲ ਕਰੋ",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ", "Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ਕੁੰਜੀ", "Google PSE API Key": "Google PSE API ਕੁੰਜੀ",
"Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID", "Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "ਗਰੁੱਪ", "Group": "ਗਰੁੱਪ",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "ਹਲਕਾ", "Light": "ਹਲਕਾ",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।", "LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ", "New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ", "New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ", "Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ਹਦਾਇਤਾਂ ਲਈ readme.md ਵੇਖੋ", "See readme.md for instructions": "ਹਦਾਇਤਾਂ ਲਈ readme.md ਵੇਖੋ",
"See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ", "See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ",
"Seed": "ਬੀਜ", "Seed": "ਬੀਜ",
@ -1491,6 +1508,7 @@
"Show": "ਦਿਖਾਓ", "Show": "ਦਿਖਾਓ",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "ਸਰੋਤ", "Source": "ਸਰੋਤ",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "ਸਿਰਲੇਖ", "Title": "ਸਿਰਲੇਖ",
"Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ", "Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ",
"Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।", "Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "ਸਿਖਰ K", "Top K": "ਸਿਖਰ K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "ਵੈਬਹੁੱਕ URL", "Webhook URL": "ਵੈਬਹੁੱਕ URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "ਵੈਬਯੂਆਈ ਸੈਟਿੰਗਾਂ", "WebUI Settings": "ਵੈਬਯੂਆਈ ਸੈਟਿੰਗਾਂ",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।", "You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ", "You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} dostępnych narzędzi", "{{COUNT}} Available Tools": "{{COUNT}} dostępnych narzędzi",
"{{COUNT}} characters": "{{COUNT}} znaków", "{{COUNT}} characters": "{{COUNT}} znaków",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} ukrytych linii", "{{COUNT}} hidden lines": "{{COUNT}} ukrytych linii",
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi", "{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "{{COUNT}} słów", "{{COUNT}} words": "{{COUNT}} słów",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Dodaj zawartość tekstową", "Add text content": "Dodaj zawartość tekstową",
"Add User": "Dodaj użytkownika", "Add User": "Dodaj użytkownika",
"Add User Group": "Dodaj grupę użytkowników", "Add User Group": "Dodaj grupę użytkowników",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Wszystkie", "All": "Wszystkie",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Wszystkie dokumenty",
"All models deleted successfully": "Wszystkie modele zostały usunięte pomyślnie.", "All models deleted successfully": "Wszystkie modele zostały usunięte pomyślnie.",
"Allow Call": "Zezwól na tryb głosowy", "Allow Call": "Zezwól na tryb głosowy",
"Allow Chat Controls": "Zezwól na dostęp do ustawień czatu", "Allow Chat Controls": "Zezwól na dostęp do ustawień czatu",
@ -136,6 +138,7 @@
"API keys": "Klucze API", "API keys": "Klucze API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Wersja API", "API Version": "Wersja API",
"API Version is required": "", "API Version is required": "",
"Application DN": "Konto techniczne - Format DN", "Application DN": "Konto techniczne - Format DN",
@ -154,6 +157,7 @@
"Are you sure?": "Czy jesteś pewien?", "Are you sure?": "Czy jesteś pewien?",
"Arena Models": "Modele Areny", "Arena Models": "Modele Areny",
"Artifacts": "Artefakty", "Artifacts": "Artefakty",
"Asc": "",
"Ask": "Zapytaj", "Ask": "Zapytaj",
"Ask a question": "Zadaj pytanie", "Ask a question": "Zadaj pytanie",
"Assistant": "Asystent", "Assistant": "Asystent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana podczas korzystania z silnika Web STT", "Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana podczas korzystania z silnika Web STT",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Anuluj", "Cancel": "Anuluj",
"Cannot create an empty note.": "",
"Capabilities": "Możliwości", "Capabilities": "Możliwości",
"Capture": "Przechwyć", "Capture": "Przechwyć",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nazwa kanału", "Channel Name": "Nazwa kanału",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanały", "Channels": "Kanały",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcja", "Collection": "Kolekcja",
"Collections": "",
"Color": "Kolor", "Color": "Kolor",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Klucz API ComfyUI", "ComfyUI API Key": "Klucz API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Utwórz nowy klucz", "Create new key": "Utwórz nowy klucz",
"Create new secret key": "Utwórz nowy secret key", "Create new secret key": "Utwórz nowy secret key",
"Create note": "",
"Create Note": "Utwórz notatkę", "Create Note": "Utwórz notatkę",
"Create your first note by clicking on the plus button below.": "Utwórz swoją pierwszą notatkę klikając w plus poniżej.", "Create your first note by clicking on the plus button below.": "Utwórz swoją pierwszą notatkę klikając w plus poniżej.",
"Created at": "Utworzono o", "Created at": "Utworzono o",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Usunięto użytkownika {{name}}", "Deleted {{name}}": "Usunięto użytkownika {{name}}",
"Deleted User": "Usunięty użytkownik", "Deleted User": "Usunięty użytkownik",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Opisz swoją bazę wiedzy i cele", "Describe your knowledge base and objectives": "Opisz swoją bazę wiedzy i cele",
"Description": "Opis", "Description": "Opis",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Pobierz jako SVG", "Download as SVG": "Pobierz jako SVG",
"Download canceled": "Pobieranie anulowane", "Download canceled": "Pobieranie anulowane",
"Download Database": "Pobierz bazę danych", "Download Database": "Pobierz bazę danych",
"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", "Draw": "Rysuj",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to: 's' (sekunda), 'm' (minuta), 'h' (godzina).", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to: 's' (sekunda), 'm' (minuta), 'h' (godzina).",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Wprowadź klucz wyszukiwania Kagi", "Enter Kagi Search API Key": "Wprowadź klucz wyszukiwania Kagi",
"Enter Key Behavior": "Zachowanie klawisza Enter", "Enter Key Behavior": "Zachowanie klawisza Enter",
"Enter language codes": "Wprowadź kody języków", "Enter language codes": "Wprowadź kody języków",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Wprowadź ID modelu", "Enter Model ID": "Wprowadź ID modelu",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Wprowadź klucz API SearchApi", "Enter SearchApi API Key": "Wprowadź klucz API SearchApi",
"Enter SearchApi Engine": "Wprowadź zapytanie do silnika wyszukiwania SearchApi", "Enter SearchApi Engine": "Wprowadź zapytanie do silnika wyszukiwania SearchApi",
"Enter Searxng Query URL": "Wprowadź adres URL zapytania wyszukiwania Searxng", "Enter Searxng Query URL": "Wprowadź adres URL zapytania wyszukiwania Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Wprowadź Seed", "Enter Seed": "Wprowadź Seed",
"Enter SerpApi API Key": "Wprowadź klucz API SerpApi", "Enter SerpApi API Key": "Wprowadź klucz API SerpApi",
"Enter SerpApi Engine": "Wprowadź silnik SerpApi", "Enter SerpApi Engine": "Wprowadź silnik SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Nie udało się załadować zawartości pliku.", "Failed to load file content.": "Nie udało się załadować zawartości pliku.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka", "Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Klucz API Google PSE", "Google PSE API Key": "Klucz API Google PSE",
"Google PSE Engine Id": "Identyfikator silnika Google PSE", "Google PSE Engine Id": "Identyfikator silnika Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Grupa utworzona pomyślnie", "Group created successfully": "Grupa utworzona pomyślnie",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importuj konfigurację z pliku JSON", "Import Config from JSON File": "Importuj konfigurację z pliku JSON",
"Import From Link": "Importuj z linku", "Import From Link": "Importuj z linku",
"Import Models": "", "Import Models": "",
"Import Notes": "Importuj notatki",
"Import Presets": "Importuj ustawienia", "Import Presets": "Importuj ustawienia",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Licencja", "License": "Licencja",
"Lift List": "", "Lift List": "",
"Light": "Jasny", "Light": "Jasny",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Słuchanie...", "Listening...": "Słuchanie...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Upewnij się, że ważne informacje są poprawne.", "LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Upewnij się, że ważne informacje są poprawne.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nazwij swoją bazę wiedzy", "Name your knowledge base": "Nazwij swoją bazę wiedzy",
"Native": "Rodzimy", "Native": "Rodzimy",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nowy czat", "New Chat": "Nowy czat",
"New Folder": "Nowy folder", "New Folder": "Nowy folder",
"New Function": "Nowa funkcja", "New Function": "Nowa funkcja",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nowe hasło", "New Password": "Nowe hasło",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Nie znaleziono czatów.", "No chats found.": "Nie znaleziono czatów.",
"No content": "Brak zawartości", "No content": "Brak zawartości",
"No content found": "Nie znaleziono żadnej zawartości.", "No content found": "Nie znaleziono żadnej zawartości.",
"No content found in file.": "Brak zawartości w pliku.",
"No content to speak": "Brak treści do omówienia", "No content to speak": "Brak treści do omówienia",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Brak dostępnej odległości", "No distance available": "Brak dostępnej odległości",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Nie znaleziono żadnych opinii", "No feedbacks found": "Nie znaleziono żadnych opinii",
"No file selected": "Nie wybrano żadnego pliku", "No file selected": "Nie wybrano żadnego pliku",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Brak grup z dostępem, dodaj grupę, aby przyznać dostęp", "No groups with access, add a group to grant access": "Brak grup z dostępem, dodaj grupę, aby przyznać dostęp",
"No HTML, CSS, or JavaScript content found.": "Nie znaleziono żadnej zawartości HTML, CSS ani JavaScript.", "No HTML, CSS, or JavaScript content found.": "Nie znaleziono żadnej zawartości HTML, CSS ani JavaScript.",
"No inference engine with management support found": "Nie znaleziono silnika wnioskującego z obsługą zarządzania", "No inference engine with management support found": "Nie znaleziono silnika wnioskującego z obsługą zarządzania",
"No knowledge bases found.": "",
"No knowledge found": "Brak znalezionej wiedzy", "No knowledge found": "Brak znalezionej wiedzy",
"No memories to clear": "Brak wspomnień do wyczyszczenia", "No memories to clear": "Brak wspomnień do wyczyszczenia",
"No model IDs": "Brak identyfikatorów modeli", "No model IDs": "Brak identyfikatorów modeli",
@ -1309,6 +1323,8 @@
"Read": "Czytaj", "Read": "Czytaj",
"Read Aloud": "Czytaj na głos", "Read Aloud": "Czytaj na głos",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Powód", "Reason": "Powód",
"Reasoning Effort": "Wysiłek rozumowania", "Reasoning Effort": "Wysiłek rozumowania",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Przeszukiwanie wiedzy dla \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Przeszukiwanie wiedzy dla \"{{searchQuery}}\"",
"Searching the web": "Przeszukuję sieć Web...", "Searching the web": "Przeszukuję sieć Web...",
"Searxng Query URL": "Adres URL zapytania Searxng", "Searxng Query URL": "Adres URL zapytania Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Sprawdź readme.md dla instrukcji", "See readme.md for instructions": "Sprawdź readme.md dla instrukcji",
"See what's new": "Sprawdź nowości", "See what's new": "Sprawdź nowości",
"Seed": "Seed", "Seed": "Seed",
@ -1493,6 +1510,7 @@
"Show": "Wyświetl", "Show": "Wyświetl",
"Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania", "Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania",
"Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika", "Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1517,6 +1535,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Źródło", "Source": "Źródło",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Wymagany jest adres URL serwera Tika.", "Tika Server URL required.": "Wymagany jest adres URL serwera Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Tytuł", "Title": "Tytuł",
"Title Auto-Generation": "Automatyczne tworzenie tytułu", "Title Auto-Generation": "Automatyczne tworzenie tytułu",
"Title cannot be an empty string.": "Tytuł nie może być pustym stringiem.", "Title cannot be an empty string.": "Tytuł nie może być pustym stringiem.",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.", "Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Najlepsze K", "Top K": "Najlepsze K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Transformery", "Transformers": "Transformery",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "Wyszukiwanie w sieci Web na czacie", "Web Search in Chat": "Wyszukiwanie w sieci Web na czacie",
"Web Search Query Generation": "Generowanie zapytań Wyszukiwania Sieciowego", "Web Search Query Generation": "Generowanie zapytań Wyszukiwania Sieciowego",
"Webhook URL": "Adres URL webhooka", "Webhook URL": "Adres URL webhooka",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Ustawienia interfejsu WebUI", "WebUI Settings": "Ustawienia interfejsu WebUI",
"WebUI URL": "Adres URL interfejsu internetowego", "WebUI URL": "Adres URL interfejsu internetowego",
"WebUI will make requests to \"{{url}}\"": "WebUI będzie wysyłać żądania do \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI będzie wysyłać żądania do \"{{url}}\"",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "Nie możesz przesłać pustego pliku.", "You cannot upload an empty file.": "Nie możesz przesłać pustego pliku.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Nie masz uprawnień do przesyłania plików.", "You do not have permission to upload files.": "Nie masz uprawnień do przesyłania plików.",
"You have no archived conversations.": "Nie posiadasz zarchiwizowanych konwersacji.", "You have no archived conversations.": "Nie posiadasz zarchiwizowanych konwersacji.",
"You have shared this chat": "Udostępniłeś tę rozmowę", "You have shared this chat": "Udostępniłeś tę rozmowę",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Ferramentas disponíveis", "{{COUNT}} Available Tools": "{{COUNT}} Ferramentas disponíveis",
"{{COUNT}} characters": "{{COUNT}} caracteres", "{{COUNT}} characters": "{{COUNT}} caracteres",
"{{COUNT}} extracted lines": "{{COUNT}} linhas extraídas", "{{COUNT}} extracted lines": "{{COUNT}} linhas extraídas",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} linhas ocultas", "{{COUNT}} hidden lines": "{{COUNT}} linhas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Origens", "{{COUNT}} Sources": "{{COUNT}} Origens",
"{{COUNT}} words": "{{COUNT}} palavras", "{{COUNT}} words": "{{COUNT}} palavras",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} às {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} às {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Adicionar conteúdo de texto", "Add text content": "Adicionar conteúdo de texto",
"Add User": "Adicionar Usuário", "Add User": "Adicionar Usuário",
"Add User Group": "Adicionar grupo de usuários", "Add User Group": "Adicionar grupo de usuários",
"Add webpage": "",
"Additional Config": "Configuração adicional", "Additional Config": "Configuração adicional",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opções de configuração adicionais para o marcador. Deve ser uma string JSON com pares chave-valor. Por exemplo, '{\"key\": \"value\"}'. As chaves suportadas incluem: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opções de configuração adicionais para o marcador. Deve ser uma string JSON com pares chave-valor. Por exemplo, '{\"key\": \"value\"}'. As chaves suportadas incluem: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "Parâmetros adicionais", "Additional Parameters": "Parâmetros adicionais",
@ -84,7 +87,6 @@
"AI": "IA", "AI": "IA",
"All": "Tudo", "All": "Tudo",
"All chats have been unarchived.": "Todos os chats foram desarquivados.", "All chats have been unarchived.": "Todos os chats foram desarquivados.",
"All Documents": "Todos os Documentos",
"All models deleted successfully": "Todos os modelos foram excluídos com sucesso", "All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
"Allow Call": "Permitir chamada", "Allow Call": "Permitir chamada",
"Allow Chat Controls": "Permitir Controles de Chats", "Allow Chat Controls": "Permitir Controles de Chats",
@ -136,6 +138,7 @@
"API keys": "Chaves API", "API keys": "Chaves API",
"API Keys": "Chaves API", "API Keys": "Chaves API",
"API Mode": "Modo API", "API Mode": "Modo API",
"API Timeout": "",
"API Version": "Versão da API", "API Version": "Versão da API",
"API Version is required": "Versão da API é obrigatória", "API Version is required": "Versão da API é obrigatória",
"Application DN": "DN da Aplicação", "Application DN": "DN da Aplicação",
@ -154,6 +157,7 @@
"Are you sure?": "Você tem certeza?", "Are you sure?": "Você tem certeza?",
"Arena Models": "Arena de Modelos", "Arena Models": "Arena de Modelos",
"Artifacts": "Artefatos", "Artifacts": "Artefatos",
"Asc": "",
"Ask": "Perguntar", "Ask": "Perguntar",
"Ask a question": "Faça uma pergunta", "Ask a question": "Faça uma pergunta",
"Assistant": "Assistente", "Assistant": "Assistente",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT", "Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
"Camera": "Câmera", "Camera": "Câmera",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Cannot create an empty note.": "",
"Capabilities": "Capacidades", "Capabilities": "Capacidades",
"Capture": "Capturar", "Capture": "Capturar",
"Capture Audio": "Capturar Audio", "Capture Audio": "Capturar Audio",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Canal apagado com sucesso", "Channel deleted successfully": "Canal apagado com sucesso",
"Channel Name": "Nome do canal", "Channel Name": "Nome do canal",
"Channel name cannot be empty.": "O nome do canal não pode estar vazio.", "Channel name cannot be empty.": "O nome do canal não pode estar vazio.",
"Channel name must be less than 128 characters": "",
"Channel Type": "Tipo de canal", "Channel Type": "Tipo de canal",
"Channel updated successfully": "Canal atualizado com sucesso", "Channel updated successfully": "Canal atualizado com sucesso",
"Channels": "Canais", "Channels": "Canais",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "Canal de colaboração onde as pessoas se juntam como membros.", "Collaboration channel where people join as members": "Canal de colaboração onde as pessoas se juntam como membros.",
"Collapse": "Recolher", "Collapse": "Recolher",
"Collection": "Coleção", "Collection": "Coleção",
"Collections": "",
"Color": "Cor", "Color": "Cor",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Chave de API do ComfyUI", "ComfyUI API Key": "Chave de API do ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "Criar modelo", "Create Model": "Criar modelo",
"Create new key": "Criar nova chave", "Create new key": "Criar nova chave",
"Create new secret key": "Criar nova chave secreta", "Create new secret key": "Criar nova chave secreta",
"Create note": "",
"Create Note": "Criar Nota", "Create Note": "Criar Nota",
"Create your first note by clicking on the plus button below.": "Crie sua primeira nota clicando no botão de adição abaixo.", "Create your first note by clicking on the plus button below.": "Crie sua primeira nota clicando no botão de adição abaixo.",
"Created at": "Criado em", "Created at": "Criado em",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Excluído {{name}}", "Deleted {{name}}": "Excluído {{name}}",
"Deleted User": "Usuário Excluído", "Deleted User": "Usuário Excluído",
"Deployment names are required for Azure OpenAI": "Nomes de implantação são necessários para o Azure OpenAI", "Deployment names are required for Azure OpenAI": "Nomes de implantação são necessários para o Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos", "Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
"Description": "Descrição", "Description": "Descrição",
"Detect Artifacts Automatically": "Detectar artefatos automaticamente", "Detect Artifacts Automatically": "Detectar artefatos automaticamente",
@ -487,7 +496,6 @@
"Download as SVG": "Baixar como SVG", "Download as SVG": "Baixar como SVG",
"Download canceled": "Download cancelado", "Download canceled": "Download cancelado",
"Download Database": "Download do Banco de Dados", "Download Database": "Download do Banco de Dados",
"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", "Draw": "Empate",
"Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload", "Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Insira a chave da API de pesquisa do Kagi", "Enter Kagi Search API Key": "Insira a chave da API de pesquisa do Kagi",
"Enter Key Behavior": "Comportamento da tecla Enter", "Enter Key Behavior": "Comportamento da tecla Enter",
"Enter language codes": "Digite os códigos de idioma", "Enter language codes": "Digite os códigos de idioma",
"Enter MinerU API Key": "Insira a chave da API MinerU",
"Enter Mistral API Base URL": "Insira a URL base da API Mistral", "Enter Mistral API Base URL": "Insira a URL base da API Mistral",
"Enter Mistral API Key": "Insira a chave da API Mistral", "Enter Mistral API Key": "Insira a chave da API Mistral",
"Enter Model ID": "Digite o ID do modelo", "Enter Model ID": "Digite o ID do modelo",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Digite a Chave API do SearchApi", "Enter SearchApi API Key": "Digite a Chave API do SearchApi",
"Enter SearchApi Engine": "Digite o Motor do SearchApi", "Enter SearchApi Engine": "Digite o Motor do SearchApi",
"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng", "Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Digite a Seed", "Enter Seed": "Digite a Seed",
"Enter SerpApi API Key": "Insira a chave da API SerpApi", "Enter SerpApi API Key": "Insira a chave da API SerpApi",
"Enter SerpApi Engine": "Digite o mecanismo/engine SerpApi", "Enter SerpApi Engine": "Digite o mecanismo/engine SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Falha ao carregar a pré-visualização do chat", "Failed to load chat preview": "Falha ao carregar a pré-visualização do chat",
"Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.", "Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.",
"Failed to move chat": "Falha ao mover o chat", "Failed to move chat": "Falha ao mover o chat",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência", "Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Failed to remove member": "Falha ao remover membro", "Failed to remove member": "Falha ao remover membro",
"Failed to render diagram": "Falha ao renderizar o diagrama", "Failed to render diagram": "Falha ao renderizar o diagrama",
@ -831,6 +840,7 @@
"Google PSE API Key": "Chave API do Google PSE", "Google PSE API Key": "Chave API do Google PSE",
"Google PSE Engine Id": "ID do Motor do Google PSE", "Google PSE Engine Id": "ID do Motor do Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "Canal do grupo", "Group Channel": "Canal do grupo",
"Group created successfully": "Grupo criado com sucesso", "Group created successfully": "Grupo criado com sucesso",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importar Configurações de JSON", "Import Config from JSON File": "Importar Configurações de JSON",
"Import From Link": "Importar do link", "Import From Link": "Importar do link",
"Import Models": "Importar Modelos", "Import Models": "Importar Modelos",
"Import Notes": "Importar Notas",
"Import Presets": "Importar Presets", "Import Presets": "Importar Presets",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Import successful": "Importação bem-sucedida", "Import successful": "Importação bem-sucedida",
@ -989,6 +998,8 @@
"License": "Licença", "License": "Licença",
"Lift List": "", "Lift List": "",
"Light": "Claro", "Light": "Claro",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Escutando...", "Listening...": "Escutando...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.", "LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Nome e documento de identidade são obrigatórios, por favor preencha-os", "Name and ID are required, please fill them out": "Nome e documento de identidade são obrigatórios, por favor preencha-os",
"Name your knowledge base": "Nome da sua base de conhecimento", "Name your knowledge base": "Nome da sua base de conhecimento",
"Native": "Nativo", "Native": "Nativo",
"New": "",
"New Button": "Novo Botão", "New Button": "Novo Botão",
"New Chat": "Novo Chat", "New Chat": "Novo Chat",
"New Folder": "Nova Pasta", "New Folder": "Nova Pasta",
"New Function": "Nova Função", "New Function": "Nova Função",
"New Knowledge": "Novo Conhecimento", "New Knowledge": "Novo Conhecimento",
"New Model": "Novo Modelo", "New Model": "Novo Modelo",
"New Note": "",
"New Password": "Nova Senha", "New Password": "Nova Senha",
"New Prompt": "Novo Prompt", "New Prompt": "Novo Prompt",
"New Temporary Chat": "Novo chat temporário", "New Temporary Chat": "Novo chat temporário",
@ -1112,17 +1125,18 @@
"No chats found.": "Nenhum chat encontrado.", "No chats found.": "Nenhum chat encontrado.",
"No content": "Nenhum conteúdo", "No content": "Nenhum conteúdo",
"No content found": "Nenhum conteúdo encontrado", "No content found": "Nenhum conteúdo encontrado",
"No content found in file.": "Nenhum conteúdo encontrado no arquivo.",
"No content to speak": "Sem conteúdo para falar", "No content to speak": "Sem conteúdo para falar",
"No conversation to save": "Nenhuma conversa para salvar", "No conversation to save": "Nenhuma conversa para salvar",
"No distance available": "Sem distância disponível", "No distance available": "Sem distância disponível",
"No expiration can pose security risks.": "Nenhuma expiração pode representar riscos de segurança.", "No expiration can pose security risks.": "Nenhuma expiração pode representar riscos de segurança.",
"No feedbacks found": "Comentários não encontrados", "No feedbacks found": "Comentários não encontrados",
"No file selected": "Nenhum arquivo selecionado", "No file selected": "Nenhum arquivo selecionado",
"No files in this knowledge base.": "",
"No functions found": "Nenhuma função encontrada", "No functions found": "Nenhuma função encontrada",
"No groups with access, add a group to grant access": "Nenhum grupo com acesso, adicione um grupo para dar acesso", "No groups with access, add a group to grant access": "Nenhum grupo com acesso, adicione um grupo para dar acesso",
"No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.", "No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.",
"No inference engine with management support found": "Nenhum mecanismo de inferência com suporte de gerenciamento encontrado", "No inference engine with management support found": "Nenhum mecanismo de inferência com suporte de gerenciamento encontrado",
"No knowledge bases found.": "",
"No knowledge found": "Nenhum conhecimento encontrado", "No knowledge found": "Nenhum conhecimento encontrado",
"No memories to clear": "Nenhuma memória para limpar", "No memories to clear": "Nenhuma memória para limpar",
"No model IDs": "Nenhum ID de modelo", "No model IDs": "Nenhum ID de modelo",
@ -1309,6 +1323,8 @@
"Read": "Ler", "Read": "Ler",
"Read Aloud": "Ler em Voz Alta", "Read Aloud": "Ler em Voz Alta",
"Read more →": "Leia mais →", "Read more →": "Leia mais →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Razão", "Reason": "Razão",
"Reasoning Effort": "Esforço de raciocínio", "Reasoning Effort": "Esforço de raciocínio",
"Reasoning Tags": "Tags de raciocínio", "Reasoning Tags": "Tags de raciocínio",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Buscando conhecimento para \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Buscando conhecimento para \"{{searchQuery}}\"",
"Searching the web": "Pesquisando na Internet...", "Searching the web": "Pesquisando na Internet...",
"Searxng Query URL": "URL da Consulta Searxng", "Searxng Query URL": "URL da Consulta Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Veja readme.md para instruções", "See readme.md for instructions": "Veja readme.md para instruções",
"See what's new": "Veja o que há de novo", "See what's new": "Veja o que há de novo",
"Seed": "Seed", "Seed": "Seed",
@ -1492,6 +1509,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login", "Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes", "Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
"Show Files": "",
"Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação", "Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação",
"Show image preview": "Mostrar pré-visualização da imagem", "Show image preview": "Mostrar pré-visualização da imagem",
"Show Model": "Mostrar modelo", "Show Model": "Mostrar modelo",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "URL do servidor Tika necessária.", "Tika Server URL required.": "URL do servidor Tika necessária.",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Título", "Title": "Título",
"Title Auto-Generation": "Geração Automática de Título", "Title Auto-Generation": "Geração Automática de Título",
"Title cannot be an empty string.": "O Título não pode ser uma string vazia.", "Title cannot be an empty string.": "O Título não pode ser uma string vazia.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.", "Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
"Tools Public Sharing": "Compartilhamento Público de Ferramentas", "Tools Public Sharing": "Compartilhamento Público de Ferramentas",
"Tools Sharing": "Compartilhamento de Ferramentas", "Tools Sharing": "Compartilhamento de Ferramentas",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "Pesquisa na Web no Chat", "Web Search in Chat": "Pesquisa na Web no Chat",
"Web Search Query Generation": "Geração de consulta de pesquisa na Web", "Web Search Query Generation": "Geração de consulta de pesquisa na Web",
"Webhook URL": "URL do Webhook", "Webhook URL": "URL do Webhook",
"Webpage URL": "URL da página da web", "Webpage URLs": "",
"WebUI Settings": "Configurações da WebUI", "WebUI Settings": "Configurações da WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "A WebUI fará requisições para \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "A WebUI fará requisições para \"{{url}}\"",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.", "You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
"You do not have permission to send messages in this channel.": "Você não tem permissão para enviar mensagens neste canal.", "You do not have permission to send messages in this channel.": "Você não tem permissão para enviar mensagens neste canal.",
"You do not have permission to send messages in this thread.": "Você não tem permissão para enviar mensagens neste tópico.", "You do not have permission to send messages in this thread.": "Você não tem permissão para enviar mensagens neste tópico.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.", "You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.",
"You have no archived conversations.": "Você não tem conversas arquivadas.", "You have no archived conversations.": "Você não tem conversas arquivadas.",
"You have shared this chat": "Você compartilhou este chat", "You have shared this chat": "Você compartilhou este chat",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Adicionar Utilizador", "Add User": "Adicionar Utilizador",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Todos os Documentos",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "Chaves da API", "API keys": "Chaves da API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Tem a certeza?", "Are you sure?": "Tem a certeza?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT", "Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
"Camera": "Camera", "Camera": "Camera",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Cannot create an empty note.": "",
"Capabilities": "Capacidades", "Capabilities": "Capacidades",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Coleção", "Collection": "Coleção",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Criar nova chave", "Create new key": "Criar nova chave",
"Create new secret key": "Criar nova chave secreta", "Create new secret key": "Criar nova chave secreta",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Criado em", "Created at": "Criado em",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Apagado {{name}}", "Deleted {{name}}": "Apagado {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Descrição", "Description": "Descrição",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Download cancelado", "Download canceled": "Download cancelado",
"Download Database": "Descarregar Base de Dados", "Download Database": "Descarregar Base de Dados",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Escreva os códigos de idioma", "Enter language codes": "Escreva os códigos de idioma",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Escreva o URL da Pesquisa Searxng", "Enter Searxng Query URL": "Escreva o URL da Pesquisa Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência", "Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Chave da API PSE do Google", "Google PSE API Key": "Chave da API PSE do Google",
"Google PSE Engine Id": "ID do mecanismo PSE do Google", "Google PSE Engine Id": "ID do mecanismo PSE do Google",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Claro", "Light": "Claro",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "A escutar...", "Listening...": "A escutar...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.", "LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nova Conversa", "New Chat": "Nova Conversa",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nova Senha", "New Password": "Nova Senha",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Ler em Voz Alta", "Read Aloud": "Ler em Voz Alta",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "URL de consulta Searxng", "Searxng Query URL": "URL de consulta Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Consulte readme.md para obter instruções", "See readme.md for instructions": "Consulte readme.md para obter instruções",
"See what's new": "Veja o que há de novo", "See what's new": "Veja o que há de novo",
"Seed": "Semente", "Seed": "Semente",
@ -1492,6 +1509,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente", "Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1626,6 +1645,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Título", "Title": "Título",
"Title Auto-Generation": "Geração Automática de Título", "Title Auto-Generation": "Geração Automática de Título",
"Title cannot be an empty string.": "Título não pode ser uma string vazia.", "Title cannot be an empty string.": "Título não pode ser uma string vazia.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL do Webhook", "Webhook URL": "URL do Webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Configurações WebUI", "WebUI Settings": "Configurações WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Você não tem conversas arquivadas.", "You have no archived conversations.": "Você não tem conversas arquivadas.",
"You have shared this chat": "Você partilhou esta conversa", "You have shared this chat": "Você partilhou esta conversa",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Adăugați conținut textual", "Add text content": "Adăugați conținut textual",
"Add User": "Adaugă utilizator", "Add User": "Adaugă utilizator",
"Add User Group": "Adaugă grup de utilizatori", "Add User Group": "Adaugă grup de utilizatori",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Toate", "All": "Toate",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Toate documentele",
"All models deleted successfully": "Toate modelele au fost șterse cu succes", "All models deleted successfully": "Toate modelele au fost șterse cu succes",
"Allow Call": "Permite apelarea", "Allow Call": "Permite apelarea",
"Allow Chat Controls": "Permite controalele chat-ului", "Allow Chat Controls": "Permite controalele chat-ului",
@ -136,6 +138,7 @@
"API keys": "Chei API", "API keys": "Chei API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Ești sigur?", "Are you sure?": "Ești sigur?",
"Arena Models": "Arena Models", "Arena Models": "Arena Models",
"Artifacts": "Artefacte", "Artifacts": "Artefacte",
"Asc": "",
"Ask": "Întreabă", "Ask": "Întreabă",
"Ask a question": "Pune o întrebare", "Ask a question": "Pune o întrebare",
"Assistant": "Asistent", "Assistant": "Asistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT", "Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
"Camera": "Cameră", "Camera": "Cameră",
"Cancel": "Anulează", "Cancel": "Anulează",
"Cannot create an empty note.": "",
"Capabilities": "Capabilități", "Capabilities": "Capabilități",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Colecție", "Collection": "Colecție",
"Collections": "",
"Color": "Culoare", "Color": "Culoare",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Creează cheie nouă", "Create new key": "Creează cheie nouă",
"Create new secret key": "Creează cheie secretă nouă", "Create new secret key": "Creează cheie secretă nouă",
"Create note": "",
"Create Note": "Creează notiță", "Create Note": "Creează notiță",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Creat la", "Created at": "Creat la",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} șters", "Deleted {{name}}": "{{name}} șters",
"Deleted User": "Utilizator șters", "Deleted User": "Utilizator șters",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Descriere", "Description": "Descriere",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Descărcare anulată", "Download canceled": "Descărcare anulată",
"Download Database": "Descarcă Baza de Date", "Download Database": "Descarcă Baza de Date",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Desenează", "Draw": "Desenează",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Introduceți codurile limbilor", "Enter language codes": "Introduceți codurile limbilor",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Introdu codul modelului", "Enter Model ID": "Introdu codul modelului",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Introduceți cheia API SearchApi", "Enter SearchApi API Key": "Introduceți cheia API SearchApi",
"Enter SearchApi Engine": "Introduceți motorul SearchApi", "Enter SearchApi Engine": "Introduceți motorul SearchApi",
"Enter Searxng Query URL": "Introduceți URL-ul Interogării Searxng", "Enter Searxng Query URL": "Introduceți URL-ul Interogării Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat", "Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Cheie API Google PSE", "Google PSE API Key": "Cheie API Google PSE",
"Google PSE Engine Id": "ID Motor Google PSE", "Google PSE Engine Id": "ID Motor Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grup", "Group": "Grup",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importarea configurației dintr-un fișier JSON", "Import Config from JSON File": "Importarea configurației dintr-un fișier JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Luminos", "Light": "Luminos",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Ascult...", "Listening...": "Ascult...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.", "LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Conversație Nouă", "New Chat": "Conversație Nouă",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Parolă Nouă", "New Password": "Parolă Nouă",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Nu a fost găsit niciun conținut", "No content found": "Nu a fost găsit niciun conținut",
"No content found in file.": "",
"No content to speak": "Nu există conținut de vorbit", "No content to speak": "Nu există conținut de vorbit",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Nicio distanță disponibilă", "No distance available": "Nicio distanță disponibilă",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Niciun feedback găsit", "No feedbacks found": "Niciun feedback găsit",
"No file selected": "Nu a fost selectat niciun fișier", "No file selected": "Nu a fost selectat niciun fișier",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "Niciun conținut HTML, CSS sau JavaScript găsit.", "No HTML, CSS, or JavaScript content found.": "Niciun conținut HTML, CSS sau JavaScript găsit.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Nu au fost găsite informații.", "No knowledge found": "Nu au fost găsite informații.",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "Citește", "Read": "Citește",
"Read Aloud": "Citește cu Voce Tare", "Read Aloud": "Citește cu Voce Tare",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Căutare cunoștințe pentru \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Căutare cunoștințe pentru \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "URL Interogare Searxng", "Searxng Query URL": "URL Interogare Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Consultați readme.md pentru instrucțiuni", "See readme.md for instructions": "Consultați readme.md pentru instrucțiuni",
"See what's new": "Vezi ce e nou", "See what's new": "Vezi ce e nou",
"Seed": "", "Seed": "",
@ -1492,6 +1509,7 @@
"Show": "Afișează", "Show": "Afișează",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare", "Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sursă", "Source": "Sursă",
@ -1626,6 +1645,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Este necesar URL-ul serverului Tika.", "Tika Server URL required.": "Este necesar URL-ul serverului Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titlu", "Title": "Titlu",
"Title Auto-Generation": "Generare Automată a Titlului", "Title Auto-Generation": "Generare Automată a Titlului",
"Title cannot be an empty string.": "Titlul nu poate fi un șir gol.", "Title cannot be an empty string.": "Titlul nu poate fi un șir gol.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.", "Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Setări WebUI", "WebUI Settings": "Setări WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "Nu poți încărca un fișier gol.", "You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Nu aveți conversații arhivate.", "You have no archived conversations.": "Nu aveți conversații arhivate.",
"You have shared this chat": "Ați partajat această conversație", "You have shared this chat": "Ați partajat această conversație",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов", "{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов",
"{{COUNT}} characters": "{{COUNT}} символов", "{{COUNT}} characters": "{{COUNT}} символов",
"{{COUNT}} extracted lines": "{{COUNT}} извлеченных строк", "{{COUNT}} extracted lines": "{{COUNT}} извлеченных строк",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк", "{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
"{{COUNT}} Replies": "{{COUNT}} Ответов", "{{COUNT}} Replies": "{{COUNT}} Ответов",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} Источников", "{{COUNT}} Sources": "{{COUNT}} Источников",
"{{COUNT}} words": "{{COUNT}} слов", "{{COUNT}} words": "{{COUNT}} слов",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} в {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} в {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Добавить текстовый контент", "Add text content": "Добавить текстовый контент",
"Add User": "Добавить пользователя", "Add User": "Добавить пользователя",
"Add User Group": "Добавить группу пользователей", "Add User Group": "Добавить группу пользователей",
"Add webpage": "",
"Additional Config": "Дополнительные настройки", "Additional Config": "Дополнительные настройки",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Дополнительные настройки для marker. Это должна быть строка JSON с ключами и значениями. Например, '{\"key\": \"value\"}'. Поддерживаемые ключи включают: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Дополнительные настройки для marker. Это должна быть строка JSON с ключами и значениями. Например, '{\"key\": \"value\"}'. Поддерживаемые ключи включают: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "Все", "All": "Все",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Все документы",
"All models deleted successfully": "Все модели успешно удалены", "All models deleted successfully": "Все модели успешно удалены",
"Allow Call": "Разрешить звонки", "Allow Call": "Разрешить звонки",
"Allow Chat Controls": "Разрешить управление чатом", "Allow Chat Controls": "Разрешить управление чатом",
@ -136,6 +138,7 @@
"API keys": "Ключи API", "API keys": "Ключи API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Версия API", "API Version": "Версия API",
"API Version is required": "Обязательна версия API", "API Version is required": "Обязательна версия API",
"Application DN": "DN приложения", "Application DN": "DN приложения",
@ -154,6 +157,7 @@
"Are you sure?": "Вы уверены?", "Are you sure?": "Вы уверены?",
"Arena Models": "Арена моделей", "Arena Models": "Арена моделей",
"Artifacts": "Артефакты", "Artifacts": "Артефакты",
"Asc": "",
"Ask": "Спросить", "Ask": "Спросить",
"Ask a question": "Задать вопрос", "Ask a question": "Задать вопрос",
"Assistant": "Ассистент", "Assistant": "Ассистент",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка", "Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
"Camera": "Камера", "Camera": "Камера",
"Cancel": "Отменить", "Cancel": "Отменить",
"Cannot create an empty note.": "",
"Capabilities": "Возможности", "Capabilities": "Возможности",
"Capture": "Захват", "Capture": "Захват",
"Capture Audio": "Захват аудио", "Capture Audio": "Захват аудио",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Канал успешно удалён", "Channel deleted successfully": "Канал успешно удалён",
"Channel Name": "Название канала", "Channel Name": "Название канала",
"Channel name cannot be empty.": "Название канала не может быть пустым.", "Channel name cannot be empty.": "Название канала не может быть пустым.",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Канал успешно обновлён", "Channel updated successfully": "Канал успешно обновлён",
"Channels": "Каналы", "Channels": "Каналы",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Свернуть", "Collapse": "Свернуть",
"Collection": "Коллекция", "Collection": "Коллекция",
"Collections": "",
"Color": "Цвет", "Color": "Цвет",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI ключ API", "ComfyUI API Key": "ComfyUI ключ API",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Создать новый ключ", "Create new key": "Создать новый ключ",
"Create new secret key": "Создать новый секретный ключ", "Create new secret key": "Создать новый секретный ключ",
"Create note": "",
"Create Note": "Создать заметку", "Create Note": "Создать заметку",
"Create your first note by clicking on the plus button below.": "Создайте свою первую заметку, нажав на кнопку плюс ниже.", "Create your first note by clicking on the plus button below.": "Создайте свою первую заметку, нажав на кнопку плюс ниже.",
"Created at": "Создан(а)", "Created at": "Создан(а)",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Удалено {{name}}", "Deleted {{name}}": "Удалено {{name}}",
"Deleted User": "Удалённый пользователь", "Deleted User": "Удалённый пользователь",
"Deployment names are required for Azure OpenAI": "Для Azure OpenAI требуются названия развертываний", "Deployment names are required for Azure OpenAI": "Для Azure OpenAI требуются названия развертываний",
"Desc": "",
"Describe your knowledge base and objectives": "Опишите свою базу знаний и цели", "Describe your knowledge base and objectives": "Опишите свою базу знаний и цели",
"Description": "Описание", "Description": "Описание",
"Detect Artifacts Automatically": "Автоматическое обнаружение артефактов", "Detect Artifacts Automatically": "Автоматическое обнаружение артефактов",
@ -487,7 +496,6 @@
"Download as SVG": "Загрузить как SVG", "Download as SVG": "Загрузить как SVG",
"Download canceled": "Загрузка отменена", "Download canceled": "Загрузка отменена",
"Download Database": "Загрузить базу данных", "Download Database": "Загрузить базу данных",
"Drag and drop a file to upload or select a file to view": "Перетащите файл для загрузки или выберите файл для просмотра.",
"Draw": "Рисовать", "Draw": "Рисовать",
"Drop any files here to upload": "Переместите сюда любые файлы для загрузки", "Drop any files here to upload": "Переместите сюда любые файлы для загрузки",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Введите ключ API поиска Kagi", "Enter Kagi Search API Key": "Введите ключ API поиска Kagi",
"Enter Key Behavior": "Введите ключ поведения", "Enter Key Behavior": "Введите ключ поведения",
"Enter language codes": "Введите коды языков", "Enter language codes": "Введите коды языков",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Введите ключ API для Mistral", "Enter Mistral API Key": "Введите ключ API для Mistral",
"Enter Model ID": "Введите ID модели", "Enter Model ID": "Введите ID модели",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Введите ключ API SearchApi", "Enter SearchApi API Key": "Введите ключ API SearchApi",
"Enter SearchApi Engine": "Введите SearchApi движок", "Enter SearchApi Engine": "Введите SearchApi движок",
"Enter Searxng Query URL": "Введите URL-адрес запроса Searxng", "Enter Searxng Query URL": "Введите URL-адрес запроса Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Введите Seed", "Enter Seed": "Введите Seed",
"Enter SerpApi API Key": "Введите ключ API SerpApi", "Enter SerpApi API Key": "Введите ключ API SerpApi",
"Enter SerpApi Engine": "Введите движок SerpApi", "Enter SerpApi Engine": "Введите движок SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "Не удалось загрузить предпросмотр чата", "Failed to load chat preview": "Не удалось загрузить предпросмотр чата",
"Failed to load file content.": "Не удалось загрузить содержимое файла.", "Failed to load file content.": "Не удалось загрузить содержимое файла.",
"Failed to move chat": "Не удалось переместить чат", "Failed to move chat": "Не удалось переместить чат",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена", "Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Ключ API Google PSE", "Google PSE API Key": "Ключ API Google PSE",
"Google PSE Engine Id": "Id движка Google PSE", "Google PSE Engine Id": "Id движка Google PSE",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Группа", "Group": "Группа",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Группа успешно создана", "Group created successfully": "Группа успешно создана",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Импорт конфигурации из JSON-файла", "Import Config from JSON File": "Импорт конфигурации из JSON-файла",
"Import From Link": "Импортировать по ссылке", "Import From Link": "Импортировать по ссылке",
"Import Models": "", "Import Models": "",
"Import Notes": "Импортировать Заметки",
"Import Presets": "Импортировать Пресеты", "Import Presets": "Импортировать Пресеты",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Лицензия", "License": "Лицензия",
"Lift List": "Поднять список", "Lift List": "Поднять список",
"Light": "Светлый", "Light": "Светлый",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Слушаю...", "Listening...": "Слушаю...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.", "LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Имя и ID обязательны, пожалуйста, заполните их", "Name and ID are required, please fill them out": "Имя и ID обязательны, пожалуйста, заполните их",
"Name your knowledge base": "Назовите свою базу знаний", "Name your knowledge base": "Назовите свою базу знаний",
"Native": "Нативно", "Native": "Нативно",
"New": "",
"New Button": "Новая кнопка", "New Button": "Новая кнопка",
"New Chat": "Новый чат", "New Chat": "Новый чат",
"New Folder": "Новая папка", "New Folder": "Новая папка",
"New Function": "Новая функция", "New Function": "Новая функция",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Новый пароль", "New Password": "Новый пароль",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Не найдено ни одного чата", "No chats found.": "Не найдено ни одного чата",
"No content": "Нет контента", "No content": "Нет контента",
"No content found": "Контент не найден", "No content found": "Контент не найден",
"No content found in file.": "В файле не найдено никакого содержимого",
"No content to speak": "Нечего говорить", "No content to speak": "Нечего говорить",
"No conversation to save": "Нет разговора для сохранения", "No conversation to save": "Нет разговора для сохранения",
"No distance available": "Никаких доступных растояний", "No distance available": "Никаких доступных растояний",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Никаких обратных связей не найдено", "No feedbacks found": "Никаких обратных связей не найдено",
"No file selected": "Файлы не выбраны", "No file selected": "Файлы не выбраны",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Нет групп с доступом, добавьте группу для предоставления доступа", "No groups with access, add a group to grant access": "Нет групп с доступом, добавьте группу для предоставления доступа",
"No HTML, CSS, or JavaScript content found.": "Содержимое в формате HTML, CSS или JavaScript не найдено.", "No HTML, CSS, or JavaScript content found.": "Содержимое в формате HTML, CSS или JavaScript не найдено.",
"No inference engine with management support found": "Механизм логического вывода с поддержкой управления не найден", "No inference engine with management support found": "Механизм логического вывода с поддержкой управления не найден",
"No knowledge bases found.": "",
"No knowledge found": "Знания не найдены", "No knowledge found": "Знания не найдены",
"No memories to clear": "Нет воспоминаний, которые нужно было бы очистить", "No memories to clear": "Нет воспоминаний, которые нужно было бы очистить",
"No model IDs": "Нет ID модели", "No model IDs": "Нет ID модели",
@ -1309,6 +1323,8 @@
"Read": "Прочитать", "Read": "Прочитать",
"Read Aloud": "Прочитать вслух", "Read Aloud": "Прочитать вслух",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Причина", "Reason": "Причина",
"Reasoning Effort": "Усилия для рассуждения", "Reasoning Effort": "Усилия для рассуждения",
"Reasoning Tags": "Теги рассуждения", "Reasoning Tags": "Теги рассуждения",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Поиск знания для \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Поиск знания для \"{{searchQuery}}\"",
"Searching the web": "Поиск в интернете...", "Searching the web": "Поиск в интернете...",
"Searxng Query URL": "URL-адрес запроса Searxng", "Searxng Query URL": "URL-адрес запроса Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Смотрите readme.md для инструкций", "See readme.md for instructions": "Смотрите readme.md для инструкций",
"See what's new": "Посмотреть, что нового", "See what's new": "Посмотреть, что нового",
"Seed": "Начальное значение", "Seed": "Начальное значение",
@ -1493,6 +1510,7 @@
"Show": "Показать", "Show": "Показать",
"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему", "Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи", "Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
"Show Files": "",
"Show Formatting Toolbar": "Показать панель форматирования", "Show Formatting Toolbar": "Показать панель форматирования",
"Show image preview": "Показать предварительный просмотр изображения", "Show image preview": "Показать предварительный просмотр изображения",
"Show Model": "Показать модель", "Show Model": "Показать модель",
@ -1517,6 +1535,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "Sonar Reasoning", "Sonar Reasoning": "Sonar Reasoning",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Источник", "Source": "Источник",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Требуется URL-адрес сервера Tika.", "Tika Server URL required.": "Требуется URL-адрес сервера Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Заголовок", "Title": "Заголовок",
"Title Auto-Generation": "Автогенерация заголовка", "Title Auto-Generation": "Автогенерация заголовка",
"Title cannot be an empty string.": "Заголовок не может быть пустой строкой.", "Title cannot be an empty string.": "Заголовок не может быть пустой строкой.",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.", "Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
"Tools Public Sharing": "Публичный обмен инструментами", "Tools Public Sharing": "Публичный обмен инструментами",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K переранжировщик", "Top K Reranker": "Top K переранжировщик",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "Поисковая система в чате", "Web Search in Chat": "Поисковая система в чате",
"Web Search Query Generation": "Генерация запросов веб-поиска", "Web Search Query Generation": "Генерация запросов веб-поиска",
"Webhook URL": "URL-адрес веб-хука", "Webhook URL": "URL-адрес веб-хука",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Настройки WebUI", "WebUI Settings": "Настройки WebUI",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI будет отправлять запросы к \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI будет отправлять запросы к \"{{url}}\"",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.", "You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.", "You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.",
"You have no archived conversations.": "У вас нет архивированных бесед.", "You have no archived conversations.": "У вас нет архивированных бесед.",
"You have shared this chat": "Вы поделились этим чатом", "You have shared this chat": "Вы поделились этим чатом",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Pridajte textový obsah", "Add text content": "Pridajte textový obsah",
"Add User": "Pridať užívateľa", "Add User": "Pridať užívateľa",
"Add User Group": "Pridať skupinu užívateľov", "Add User Group": "Pridať skupinu užívateľov",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Všetky dokumenty",
"All models deleted successfully": "Všetky modely úspešne odstránené", "All models deleted successfully": "Všetky modely úspešne odstránené",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API kľúče", "API keys": "API kľúče",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Ste si istý?", "Are you sure?": "Ste si istý?",
"Arena Models": "Arena modely", "Arena Models": "Arena modely",
"Artifacts": "Artefakty", "Artifacts": "Artefakty",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Opýtajte sa otázku", "Ask a question": "Opýtajte sa otázku",
"Assistant": "Asistent", "Assistant": "Asistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.", "Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Zrušiť", "Cancel": "Zrušiť",
"Cannot create an empty note.": "",
"Capabilities": "Schopnosti", "Capabilities": "Schopnosti",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "", "Collection": "",
"Collections": "",
"Color": "Farba", "Color": "Farba",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Vytvoriť nový kľúč", "Create new key": "Vytvoriť nový kľúč",
"Create new secret key": "Vytvoriť nový tajný kľúč", "Create new secret key": "Vytvoriť nový tajný kľúč",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Vytvorené dňa", "Created at": "Vytvorené dňa",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Odstránené {{name}}", "Deleted {{name}}": "Odstránené {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Popis", "Description": "Popis",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Sťahovanie zrušené", "Download canceled": "Sťahovanie zrušené",
"Download Database": "Stiahnuť databázu", "Download Database": "Stiahnuť databázu",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Nakresliť", "Draw": "Nakresliť",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Zadajte kódy jazykov", "Enter language codes": "Zadajte kódy jazykov",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Zadajte ID modelu", "Enter Model ID": "Zadajte ID modelu",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Zadajte API kľúč pre SearchApi", "Enter SearchApi API Key": "Zadajte API kľúč pre SearchApi",
"Enter SearchApi Engine": "Zadajte vyhľadávací engine SearchApi", "Enter SearchApi Engine": "Zadajte vyhľadávací engine SearchApi",
"Enter Searxng Query URL": "Zadajte URL dopytu Searxng", "Enter Searxng Query URL": "Zadajte URL dopytu Searxng",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky", "Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Kľúč API pre Google PSE (Programmatically Search Engine)", "Google PSE API Key": "Kľúč API pre Google PSE (Programmatically Search Engine)",
"Google PSE Engine Id": "Google PSE Engine Id (Identifikátor vyhľadávacieho modulu Google PSE)", "Google PSE Engine Id": "Google PSE Engine Id (Identifikátor vyhľadávacieho modulu Google PSE)",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Skupina", "Group": "Skupina",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importovanie konfigurácie z JSON súboru", "Import Config from JSON File": "Importovanie konfigurácie z JSON súboru",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Svetlo", "Light": "Svetlo",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Počúvanie...", "Listening...": "Počúvanie...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.", "LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Nový chat", "New Chat": "Nový chat",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Nové heslo", "New Password": "Nové heslo",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Nebol nájdený žiadny obsah.", "No content found": "Nebol nájdený žiadny obsah.",
"No content found in file.": "",
"No content to speak": "Žiadny obsah na diskusiu.", "No content to speak": "Žiadny obsah na diskusiu.",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Nie je dostupná žiadna vzdialenosť", "No distance available": "Nie je dostupná žiadna vzdialenosť",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Žiadna spätná väzba nenájdená", "No feedbacks found": "Žiadna spätná väzba nenájdená",
"No file selected": "Nebola vybratá žiadna súbor", "No file selected": "Nebola vybratá žiadna súbor",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "Nebola nájdená žiadny obsah HTML, CSS ani JavaScript.", "No HTML, CSS, or JavaScript content found.": "Nebola nájdená žiadny obsah HTML, CSS ani JavaScript.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Neboli nájdené žiadne znalosti", "No knowledge found": "Neboli nájdené žiadne znalosti",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "Čítať nahlas", "Read Aloud": "Čítať nahlas",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Vyhľadávanie znalostí pre \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Vyhľadávanie znalostí pre \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Adresa URL dotazu Searxng", "Searxng Query URL": "Adresa URL dotazu Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Pozrite si {{readme.md}} pre pokyny.", "See readme.md for instructions": "Pozrite si {{readme.md}} pre pokyny.",
"See what's new": "Pozrite sa, čo je nové", "See what's new": "Pozrite sa, čo je nové",
"Seed": "Semienko", "Seed": "Semienko",
@ -1493,6 +1510,7 @@
"Show": "Zobraziť", "Show": "Zobraziť",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom", "Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1517,6 +1535,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Zdroj", "Source": "Zdroj",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Je vyžadovaná URL adresa servera Tika.", "Tika Server URL required.": "Je vyžadovaná URL adresa servera Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Názov", "Title": "Názov",
"Title Auto-Generation": "Automatické generovanie názvu", "Title Auto-Generation": "Automatické generovanie názvu",
"Title cannot be an empty string.": "Názov nemôže byť prázdny reťazec.", "Title cannot be an empty string.": "Názov nemôže byť prázdny reťazec.",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Nastavenia WebUI", "WebUI Settings": "Nastavenia WebUI",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.", "You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Nemáte žiadne archivované konverzácie.", "You have no archived conversations.": "Nemáte žiadne archivované konverzácie.",
"You have shared this chat": "Zdieľali ste tento chat.", "You have shared this chat": "Zdieľali ste tento chat.",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} одговора", "{{COUNT}} Replies": "{{COUNT}} одговора",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Додај садржај текста", "Add text content": "Додај садржај текста",
"Add User": "Додај корисника", "Add User": "Додај корисника",
"Add User Group": "Додај корисничку групу", "Add User Group": "Додај корисничку групу",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Сви документи",
"All models deleted successfully": "Сви модели су успешно обрисани", "All models deleted successfully": "Сви модели су успешно обрисани",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Дозволи контроле ћаскања", "Allow Chat Controls": "Дозволи контроле ћаскања",
@ -136,6 +138,7 @@
"API keys": "API кључеви", "API keys": "API кључеви",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Да ли сте сигурни?", "Are you sure?": "Да ли сте сигурни?",
"Arena Models": "Модели са Арене", "Arena Models": "Модели са Арене",
"Artifacts": "Артефакти", "Artifacts": "Артефакти",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "Постави питање", "Ask a question": "Постави питање",
"Assistant": "Помоћник", "Assistant": "Помоћник",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "Камера", "Camera": "Камера",
"Cancel": "Откажи", "Cancel": "Откажи",
"Cannot create an empty note.": "",
"Capabilities": "Могућности", "Capabilities": "Могућности",
"Capture": "Ухвати", "Capture": "Ухвати",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Назив канала", "Channel Name": "Назив канала",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Колекција", "Collection": "Колекција",
"Collections": "",
"Color": "Боја", "Color": "Боја",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API кључ", "ComfyUI API Key": "ComfyUI API кључ",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Направи нови кључ", "Create new key": "Направи нови кључ",
"Create new secret key": "Направи нови тајни кључ", "Create new secret key": "Направи нови тајни кључ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Направљено у", "Created at": "Направљено у",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Избрисано {{наме}}", "Deleted {{name}}": "Избрисано {{наме}}",
"Deleted User": "Обрисани корисници", "Deleted User": "Обрисани корисници",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Опишите вашу базу знања и циљеве", "Describe your knowledge base and objectives": "Опишите вашу базу знања и циљеве",
"Description": "Опис", "Description": "Опис",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "Преузимање отказано", "Download canceled": "Преузимање отказано",
"Download Database": "Преузми базу података", "Download Database": "Преузми базу података",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "Нацртај", "Draw": "Нацртај",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Унесите кодове језика", "Enter language codes": "Унесите кодове језика",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "Унесите УРЛ адресу Сеарг упита", "Enter Searxng Query URL": "Унесите УРЛ адресу Сеарг упита",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе", "Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Гоогле ПСЕ АПИ кључ", "Google PSE API Key": "Гоогле ПСЕ АПИ кључ",
"Google PSE Engine Id": "Гоогле ПСЕ ИД мотора", "Google PSE Engine Id": "Гоогле ПСЕ ИД мотора",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Група", "Group": "Група",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Група направљена успешно", "Group created successfully": "Група направљена успешно",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "Светла", "Light": "Светла",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Слушам...", "Listening...": "Слушам...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.", "LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Ново ћаскање", "New Chat": "Ново ћаскање",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Нова лозинка", "New Password": "Нова лозинка",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "Читање", "Read": "Читање",
"Read Aloud": "Прочитај наглас", "Read Aloud": "Прочитај наглас",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Јачина размишљања", "Reasoning Effort": "Јачина размишљања",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1418,6 +1434,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "УРЛ адреса Сеарг упита", "Searxng Query URL": "УРЛ адреса Сеарг упита",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Погледај readme.md за упутства", "See readme.md for instructions": "Погледај readme.md за упутства",
"See what's new": "Погледај шта је ново", "See what's new": "Погледај шта је ново",
"Seed": "Семе", "Seed": "Семе",
@ -1492,6 +1509,7 @@
"Show": "Прикажи", "Show": "Прикажи",
"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави", "Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1516,6 +1534,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Извор", "Source": "Извор",
@ -1626,6 +1645,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Наслов", "Title": "Наслов",
"Title Auto-Generation": "Самостално стварање наслова", "Title Auto-Generation": "Самостално стварање наслова",
"Title cannot be an empty string.": "Наслов не може бити празан низ.", "Title cannot be an empty string.": "Наслов не може бити празан низ.",
@ -1662,6 +1682,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Топ К", "Top K": "Топ К",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1768,7 +1789,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "Адреса веб-куке", "Webhook URL": "Адреса веб-куке",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Подешавања веб интерфејса", "WebUI Settings": "Подешавања веб интерфејса",
"WebUI URL": "WebUI адреса", "WebUI URL": "WebUI адреса",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1805,6 +1826,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "Немате архивиране разговоре.", "You have no archived conversations.": "Немате архивиране разговоре.",
"You have shared this chat": "Поделили сте ово ћаскање", "You have shared this chat": "Поделили сте ово ћаскање",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Tillgängliga verktyg", "{{COUNT}} Available Tools": "{{COUNT}} Tillgängliga verktyg",
"{{COUNT}} characters": "{{COUNT}} tecken", "{{COUNT}} characters": "{{COUNT}} tecken",
"{{COUNT}} extracted lines": "{{COUNT}} extraherade textrader", "{{COUNT}} extracted lines": "{{COUNT}} extraherade textrader",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} dolda rader", "{{COUNT}} hidden lines": "{{COUNT}} dolda rader",
"{{COUNT}} Replies": "{{COUNT}} Svar", "{{COUNT}} Replies": "{{COUNT}} Svar",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} källor", "{{COUNT}} Sources": "{{COUNT}} källor",
"{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}} words": "{{COUNT}} ord",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kl {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kl {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "Lägg till textinnehåll", "Add text content": "Lägg till textinnehåll",
"Add User": "Lägg till användare", "Add User": "Lägg till användare",
"Add User Group": "Lägg till användargrupp", "Add User Group": "Lägg till användargrupp",
"Add webpage": "",
"Additional Config": "Ytterligare inställningar", "Additional Config": "Ytterligare inställningar",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "Ytterligare parametrar", "Additional Parameters": "Ytterligare parametrar",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Alla", "All": "Alla",
"All chats have been unarchived.": "Alla konversationer har avarkiverats.", "All chats have been unarchived.": "Alla konversationer har avarkiverats.",
"All Documents": "Alla dokument",
"All models deleted successfully": "Alla modeller har raderats framgångsrikt", "All models deleted successfully": "Alla modeller har raderats framgångsrikt",
"Allow Call": "Tillåt samtal", "Allow Call": "Tillåt samtal",
"Allow Chat Controls": "Tillåt chattkontroller", "Allow Chat Controls": "Tillåt chattkontroller",
@ -136,6 +138,7 @@
"API keys": "API-nycklar", "API keys": "API-nycklar",
"API Keys": "", "API Keys": "",
"API Mode": "API-läge", "API Mode": "API-läge",
"API Timeout": "",
"API Version": "API-version", "API Version": "API-version",
"API Version is required": "API-version krävs", "API Version is required": "API-version krävs",
"Application DN": "Applikations-DN", "Application DN": "Applikations-DN",
@ -154,6 +157,7 @@
"Are you sure?": "Är du säker?", "Are you sure?": "Är du säker?",
"Arena Models": "Arenamodeller", "Arena Models": "Arenamodeller",
"Artifacts": "Artefakter", "Artifacts": "Artefakter",
"Asc": "",
"Ask": "Fråga", "Ask": "Fråga",
"Ask a question": "Ställ en fråga", "Ask a question": "Ställ en fråga",
"Assistant": "Assistent", "Assistant": "Assistent",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor", "Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Avbryt", "Cancel": "Avbryt",
"Cannot create an empty note.": "",
"Capabilities": "Förmågor", "Capabilities": "Förmågor",
"Capture": "Ta bild", "Capture": "Ta bild",
"Capture Audio": "Spela in ljud", "Capture Audio": "Spela in ljud",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanalen raderad", "Channel deleted successfully": "Kanalen raderad",
"Channel Name": "Kanalnamn", "Channel Name": "Kanalnamn",
"Channel name cannot be empty.": "Kanalnamnet kan inte vara tomt.", "Channel name cannot be empty.": "Kanalnamnet kan inte vara tomt.",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Kanalen uppdaterad", "Channel updated successfully": "Kanalen uppdaterad",
"Channels": "Kanaler", "Channels": "Kanaler",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Fäll ihop", "Collapse": "Fäll ihop",
"Collection": "Samling", "Collection": "Samling",
"Collections": "",
"Color": "Färg", "Color": "Färg",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API-nyckel", "ComfyUI API Key": "ComfyUI API-nyckel",
@ -365,6 +372,7 @@
"Create Model": "Skapa modell", "Create Model": "Skapa modell",
"Create new key": "Skapa ny nyckel", "Create new key": "Skapa ny nyckel",
"Create new secret key": "Skapa ny hemlig nyckel", "Create new secret key": "Skapa ny hemlig nyckel",
"Create note": "",
"Create Note": "Skapa anteckning", "Create Note": "Skapa anteckning",
"Create your first note by clicking on the plus button below.": "Skapa din första anteckning genom att klicka på plusknappen nedan.", "Create your first note by clicking on the plus button below.": "Skapa din första anteckning genom att klicka på plusknappen nedan.",
"Created at": "Skapad", "Created at": "Skapad",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Borttagen {{name}}", "Deleted {{name}}": "Borttagen {{name}}",
"Deleted User": "Raderad användare", "Deleted User": "Raderad användare",
"Deployment names are required for Azure OpenAI": "Distributionsnamn krävs för Azure OpenAI", "Deployment names are required for Azure OpenAI": "Distributionsnamn krävs för Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "Beskriv din kunskapsbas och dina mål", "Describe your knowledge base and objectives": "Beskriv din kunskapsbas och dina mål",
"Description": "Beskrivning", "Description": "Beskrivning",
"Detect Artifacts Automatically": "Detektera artefakter automatiskt", "Detect Artifacts Automatically": "Detektera artefakter automatiskt",
@ -487,7 +496,6 @@
"Download as SVG": "Ladda ner som SVG", "Download as SVG": "Ladda ner som SVG",
"Download canceled": "Nedladdning avbruten", "Download canceled": "Nedladdning avbruten",
"Download Database": "Ladda ner databas", "Download Database": "Ladda ner databas",
"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", "Draw": "Rita",
"Drop any files here to upload": "Släpp alla filer här för att ladda upp", "Drop any files here to upload": "Släpp alla filer här för att ladda upp",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Ange Kagi Search API-nyckel", "Enter Kagi Search API Key": "Ange Kagi Search API-nyckel",
"Enter Key Behavior": "Ange nyckelbeteende", "Enter Key Behavior": "Ange nyckelbeteende",
"Enter language codes": "Skriv språkkoder", "Enter language codes": "Skriv språkkoder",
"Enter MinerU API Key": "Ange MinerU API-nyckel",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Ange Mistral API-nyckel", "Enter Mistral API Key": "Ange Mistral API-nyckel",
"Enter Model ID": "Ange modell-ID", "Enter Model ID": "Ange modell-ID",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Ange SearchApi API-nyckel", "Enter SearchApi API Key": "Ange SearchApi API-nyckel",
"Enter SearchApi Engine": "Ange SearchApi Engine", "Enter SearchApi Engine": "Ange SearchApi Engine",
"Enter Searxng Query URL": "Ange Searxng Query URL", "Enter Searxng Query URL": "Ange Searxng Query URL",
"Enter Searxng search language": "",
"Enter Seed": "Ange Seed", "Enter Seed": "Ange Seed",
"Enter SerpApi API Key": "Ange SerpApi API-nyckel", "Enter SerpApi API Key": "Ange SerpApi API-nyckel",
"Enter SerpApi Engine": "Ange SerpApi Engine", "Enter SerpApi Engine": "Ange SerpApi Engine",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Misslyckades med att läsa in filinnehåll.", "Failed to load file content.": "Misslyckades med att läsa in filinnehåll.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll", "Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API-nyckel", "Google PSE API Key": "Google PSE API-nyckel",
"Google PSE Engine Id": "Google PSE Engine Id", "Google PSE Engine Id": "Google PSE Engine Id",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "Grupp", "Group": "Grupp",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Gruppen har skapats", "Group created successfully": "Gruppen har skapats",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Importera konfiguration från JSON-fil", "Import Config from JSON File": "Importera konfiguration från JSON-fil",
"Import From Link": "Importera från länk", "Import From Link": "Importera från länk",
"Import Models": "", "Import Models": "",
"Import Notes": "Importera anteckningar",
"Import Presets": "Importera förinställningar", "Import Presets": "Importera förinställningar",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Importen lyckades", "Import successful": "Importen lyckades",
@ -989,6 +998,8 @@
"License": "Licens", "License": "Licens",
"Lift List": "", "Lift List": "",
"Light": "Ljus", "Light": "Ljus",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Lyssnar...", "Listening...": "Lyssnar...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.", "LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "Namn och ID krävs, fyll i dem", "Name and ID are required, please fill them out": "Namn och ID krävs, fyll i dem",
"Name your knowledge base": "Namnge din kunskapsbas", "Name your knowledge base": "Namnge din kunskapsbas",
"Native": "Inbyggd", "Native": "Inbyggd",
"New": "",
"New Button": "Ny knapp", "New Button": "Ny knapp",
"New Chat": "Ny chatt", "New Chat": "Ny chatt",
"New Folder": "Ny mapp", "New Folder": "Ny mapp",
"New Function": "Ny funktion", "New Function": "Ny funktion",
"New Knowledge": "Ny kunskapsbas", "New Knowledge": "Ny kunskapsbas",
"New Model": "Ny modell", "New Model": "Ny modell",
"New Note": "",
"New Password": "Nytt lösenord", "New Password": "Nytt lösenord",
"New Prompt": "Ny prompt", "New Prompt": "Ny prompt",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Inga konversationer hittades.", "No chats found.": "Inga konversationer hittades.",
"No content": "Inget innehåll", "No content": "Inget innehåll",
"No content found": "Inget innehåll hittades", "No content found": "Inget innehåll hittades",
"No content found in file.": "Inget innehåll hittades i filen.",
"No content to speak": "Inget innehåll att tala", "No content to speak": "Inget innehåll att tala",
"No conversation to save": "Ingen konversation att spara", "No conversation to save": "Ingen konversation att spara",
"No distance available": "Inget avstånd tillgängligt", "No distance available": "Inget avstånd tillgängligt",
"No expiration can pose security risks.": "Ingen utgångstid kan orsaka säkerhetsrisker.", "No expiration can pose security risks.": "Ingen utgångstid kan orsaka säkerhetsrisker.",
"No feedbacks found": "Ingen feedback hittades", "No feedbacks found": "Ingen feedback hittades",
"No file selected": "Ingen fil vald", "No file selected": "Ingen fil vald",
"No files in this knowledge base.": "",
"No functions found": "Inga funktioner hittades", "No functions found": "Inga funktioner hittades",
"No groups with access, add a group to grant access": "Inga grupper med åtkomst, lägg till en grupp för att ge åtkomst", "No groups with access, add a group to grant access": "Inga grupper med åtkomst, lägg till en grupp för att ge åtkomst",
"No HTML, CSS, or JavaScript content found.": "Inget HTML-, CSS- eller JavaScript-innehåll hittades.", "No HTML, CSS, or JavaScript content found.": "Inget HTML-, CSS- eller JavaScript-innehåll hittades.",
"No inference engine with management support found": "Ingen inferensmotor med stöd för hantering hittades", "No inference engine with management support found": "Ingen inferensmotor med stöd för hantering hittades",
"No knowledge bases found.": "",
"No knowledge found": "Ingen kunskapsbas hittades", "No knowledge found": "Ingen kunskapsbas hittades",
"No memories to clear": "Inga minnen att rensa", "No memories to clear": "Inga minnen att rensa",
"No model IDs": "Inga modell-ID:n", "No model IDs": "Inga modell-ID:n",
@ -1309,6 +1323,8 @@
"Read": "Läs", "Read": "Läs",
"Read Aloud": "Läs igenom", "Read Aloud": "Läs igenom",
"Read more →": "Läs mer →", "Read more →": "Läs mer →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "Anledning", "Reason": "Anledning",
"Reasoning Effort": "Resonemangsinsats", "Reasoning Effort": "Resonemangsinsats",
"Reasoning Tags": "Resonemangs-taggar (tags)", "Reasoning Tags": "Resonemangs-taggar (tags)",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Söker kunskap efter \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Söker kunskap efter \"{{searchQuery}}\"",
"Searching the web": "Söker på webben...", "Searching the web": "Söker på webben...",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Se readme.md för instruktioner", "See readme.md for instructions": "Se readme.md för instruktioner",
"See what's new": "Se vad som är nytt", "See what's new": "Se vad som är nytt",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Visa", "Show": "Visa",
"Show \"What's New\" modal on login": "Visa \"Vad är nytt\"-modalen vid inloggning", "Show \"What's New\" modal on login": "Visa \"Vad är nytt\"-modalen vid inloggning",
"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton", "Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
"Show Files": "",
"Show Formatting Toolbar": "Visa verktygsfält för textformatering", "Show Formatting Toolbar": "Visa verktygsfält för textformatering",
"Show image preview": "Visa förhandsvisning av bild", "Show image preview": "Visa förhandsvisning av bild",
"Show Model": "Visa modell", "Show Model": "Visa modell",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Sougou Sök API sID", "Sougou Search API sID": "Sougou Sök API sID",
"Sougou Search API SK": "Sougou Sök API SK", "Sougou Search API SK": "Sougou Sök API SK",
"Source": "Källa", "Source": "Källa",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika Server URL krävs.", "Tika Server URL required.": "Tika Server URL krävs.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Titel", "Title": "Titel",
"Title Auto-Generation": "Automatisk generering av titel", "Title Auto-Generation": "Automatisk generering av titel",
"Title cannot be an empty string.": "Titeln får inte vara en tom sträng.", "Title cannot be an empty string.": "Titeln får inte vara en tom sträng.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning", "Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
"Tools Public Sharing": "Offentlig delning av verktyg", "Tools Public Sharing": "Offentlig delning av verktyg",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Topp K", "Top K": "Topp K",
"Top K Reranker": "Topp K Reranker", "Top K Reranker": "Topp K Reranker",
"Transformers": "Transformatorer", "Transformers": "Transformatorer",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Webbsökning i chatten", "Web Search in Chat": "Webbsökning i chatten",
"Web Search Query Generation": "Generering av webbsökningsfrågor", "Web Search Query Generation": "Generering av webbsökningsfrågor",
"Webhook URL": "Webhook-URL", "Webhook URL": "Webhook-URL",
"Webpage URL": "Webbadress", "Webpage URLs": "",
"WebUI Settings": "WebUI-inställningar", "WebUI Settings": "WebUI-inställningar",
"WebUI URL": "WebUI-URL", "WebUI URL": "WebUI-URL",
"WebUI will make requests to \"{{url}}\"": "WebUI kommer att göra förfrågningar till \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI kommer att göra förfrågningar till \"{{url}}\"",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Du kan inte ladda upp en tom fil.", "You cannot upload an empty file.": "Du kan inte ladda upp en tom fil.",
"You do not have permission to send messages in this channel.": "Du har inte behörighet att skicka meddelanden i denna kanal.", "You do not have permission to send messages in this channel.": "Du har inte behörighet att skicka meddelanden i denna kanal.",
"You do not have permission to send messages in this thread.": "Du har inte behörighet att skicka meddelanden i denna tråd.", "You do not have permission to send messages in this thread.": "Du har inte behörighet att skicka meddelanden i denna tråd.",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Du har inte behörighet att ladda upp filer.", "You do not have permission to upload files.": "Du har inte behörighet att ladda upp filer.",
"You have no archived conversations.": "Du har inga arkiverade samtal.", "You have no archived conversations.": "Du har inga arkiverade samtal.",
"You have shared this chat": "Du har delat denna chatt", "You have shared this chat": "Du har delat denna chatt",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "เครื่องมือที่ใช้ได้ {{COUNT}} รายการ", "{{COUNT}} Available Tools": "เครื่องมือที่ใช้ได้ {{COUNT}} รายการ",
"{{COUNT}} characters": "{{COUNT}} ตัวอักษร", "{{COUNT}} characters": "{{COUNT}} ตัวอักษร",
"{{COUNT}} extracted lines": "{{COUNT}} บรรทัดที่ดึงออกมา", "{{COUNT}} extracted lines": "{{COUNT}} บรรทัดที่ดึงออกมา",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} บรรทัดที่ซ่อนอยู่", "{{COUNT}} hidden lines": "{{COUNT}} บรรทัดที่ซ่อนอยู่",
"{{COUNT}} Replies": "{{COUNT}} คำตอบ", "{{COUNT}} Replies": "{{COUNT}} คำตอบ",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา", "{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา",
"{{COUNT}} words": "{{COUNT}} คำ", "{{COUNT}} words": "{{COUNT}} คำ",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} เมื่อ {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} เมื่อ {{LOCALIZED_TIME}}",
@ -67,6 +69,7 @@
"Add text content": "เพิ่มเนื้อหาข้อความ", "Add text content": "เพิ่มเนื้อหาข้อความ",
"Add User": "เพิ่มผู้ใช้", "Add User": "เพิ่มผู้ใช้",
"Add User Group": "เพิ่มกลุ่มผู้ใช้", "Add User Group": "เพิ่มกลุ่มผู้ใช้",
"Add webpage": "",
"Additional Config": "การกำหนดค่าเพิ่มเติม", "Additional Config": "การกำหนดค่าเพิ่มเติม",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "ตัวเลือกการกำหนดค่าเพิ่มเติมสำหรับ marker ควรเป็นสตริง JSON ที่มีคู่ key-value เช่น '{\"key\": \"value\"}' คีย์ที่รองรับได้แก่: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "ตัวเลือกการกำหนดค่าเพิ่มเติมสำหรับ marker ควรเป็นสตริง JSON ที่มีคู่ key-value เช่น '{\"key\": \"value\"}' คีย์ที่รองรับได้แก่: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
"Additional Parameters": "พารามิเตอร์เพิ่มเติม", "Additional Parameters": "พารามิเตอร์เพิ่มเติม",
@ -84,7 +87,6 @@
"AI": "AI", "AI": "AI",
"All": "ทั้งหมด", "All": "ทั้งหมด",
"All chats have been unarchived.": "ยกเลิกการเก็บถาวรการแชททั้งหมดแล้ว", "All chats have been unarchived.": "ยกเลิกการเก็บถาวรการแชททั้งหมดแล้ว",
"All Documents": "เอกสารทั้งหมด",
"All models deleted successfully": "ลบโมเดลทั้งหมดเรียบร้อยแล้ว", "All models deleted successfully": "ลบโมเดลทั้งหมดเรียบร้อยแล้ว",
"Allow Call": "อนุญาตให้โทร", "Allow Call": "อนุญาตให้โทร",
"Allow Chat Controls": "อนุญาตการควบคุมแชท", "Allow Chat Controls": "อนุญาตการควบคุมแชท",
@ -136,6 +138,7 @@
"API keys": "คีย์ API", "API keys": "คีย์ API",
"API Keys": "", "API Keys": "",
"API Mode": "โหมด API", "API Mode": "โหมด API",
"API Timeout": "",
"API Version": "เวอร์ชัน API", "API Version": "เวอร์ชัน API",
"API Version is required": "ต้องระบุเวอร์ชัน API", "API Version is required": "ต้องระบุเวอร์ชัน API",
"Application DN": "DN ของแอปพลิเคชัน", "Application DN": "DN ของแอปพลิเคชัน",
@ -154,6 +157,7 @@
"Are you sure?": "คุณแน่ใจหรือไม่?", "Are you sure?": "คุณแน่ใจหรือไม่?",
"Arena Models": "โมเดลใน Arena", "Arena Models": "โมเดลใน Arena",
"Artifacts": "Artifacts", "Artifacts": "Artifacts",
"Asc": "",
"Ask": "ถาม", "Ask": "ถาม",
"Ask a question": "ถามคำถาม", "Ask a question": "ถามคำถาม",
"Assistant": "ผู้ช่วย", "Assistant": "ผู้ช่วย",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT", "Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT",
"Camera": "กล้อง", "Camera": "กล้อง",
"Cancel": "ยกเลิก", "Cancel": "ยกเลิก",
"Cannot create an empty note.": "",
"Capabilities": "ความสามารถ", "Capabilities": "ความสามารถ",
"Capture": "จับภาพ", "Capture": "จับภาพ",
"Capture Audio": "จับเสียง", "Capture Audio": "จับเสียง",
@ -228,6 +233,7 @@
"Channel deleted successfully": "ลบช่องสำเร็จแล้ว", "Channel deleted successfully": "ลบช่องสำเร็จแล้ว",
"Channel Name": "ชื่อช่องทาง", "Channel Name": "ชื่อช่องทาง",
"Channel name cannot be empty.": "ชื่อช่องไม่สามารถเว้นว่างได้", "Channel name cannot be empty.": "ชื่อช่องไม่สามารถเว้นว่างได้",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "อัปเดตช่องสำเร็จแล้ว", "Channel updated successfully": "อัปเดตช่องสำเร็จแล้ว",
"Channels": "ช่องทาง", "Channels": "ช่องทาง",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "ยุบ", "Collapse": "ยุบ",
"Collection": "คอลเลกชัน", "Collection": "คอลเลกชัน",
"Collections": "",
"Color": "สี", "Color": "สี",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "API Key ของ ComfyUI", "ComfyUI API Key": "API Key ของ ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "สร้างโมเดล", "Create Model": "สร้างโมเดล",
"Create new key": "สร้างคีย์ใหม่", "Create new key": "สร้างคีย์ใหม่",
"Create new secret key": "สร้างคีย์ลับใหม่", "Create new secret key": "สร้างคีย์ลับใหม่",
"Create note": "",
"Create Note": "สร้างบันทึก", "Create Note": "สร้างบันทึก",
"Create your first note by clicking on the plus button below.": "สร้างบันทึกแรกของคุณโดยคลิกที่ปุ่มบวกด้านล่าง", "Create your first note by clicking on the plus button below.": "สร้างบันทึกแรกของคุณโดยคลิกที่ปุ่มบวกด้านล่าง",
"Created at": "สร้างเมื่อ", "Created at": "สร้างเมื่อ",
@ -429,6 +437,7 @@
"Deleted {{name}}": "ลบแล้ว {{name}}", "Deleted {{name}}": "ลบแล้ว {{name}}",
"Deleted User": "ผู้ใช้ที่ถูกลบ", "Deleted User": "ผู้ใช้ที่ถูกลบ",
"Deployment names are required for Azure OpenAI": "ต้องระบุชื่อการปรับใช้สำหรับ Azure OpenAI", "Deployment names are required for Azure OpenAI": "ต้องระบุชื่อการปรับใช้สำหรับ Azure OpenAI",
"Desc": "",
"Describe your knowledge base and objectives": "อธิบายฐานความรู้และวัตถุประสงค์ของคุณ", "Describe your knowledge base and objectives": "อธิบายฐานความรู้และวัตถุประสงค์ของคุณ",
"Description": "คำอธิบาย", "Description": "คำอธิบาย",
"Detect Artifacts Automatically": "ตรวจจับ Artifacts โดยอัตโนมัติ", "Detect Artifacts Automatically": "ตรวจจับ Artifacts โดยอัตโนมัติ",
@ -487,7 +496,6 @@
"Download as SVG": "ดาวน์โหลดเป็น SVG", "Download as SVG": "ดาวน์โหลดเป็น SVG",
"Download canceled": "ยกเลิกการดาวน์โหลด", "Download canceled": "ยกเลิกการดาวน์โหลด",
"Download Database": "ดาวน์โหลดฐานข้อมูล", "Download Database": "ดาวน์โหลดฐานข้อมูล",
"Drag and drop a file to upload or select a file to view": "ลากและวางไฟล์เพื่ออัปโหลด หรือเลือกไฟล์เพื่อดู",
"Draw": "วาด", "Draw": "วาด",
"Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด", "Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "ใส่ Kagi Search API Key", "Enter Kagi Search API Key": "ใส่ Kagi Search API Key",
"Enter Key Behavior": "การทำงานของปุ่ม Enter", "Enter Key Behavior": "การทำงานของปุ่ม Enter",
"Enter language codes": "ใส่รหัสภาษา", "Enter language codes": "ใส่รหัสภาษา",
"Enter MinerU API Key": "ใส่ MinerU API Key",
"Enter Mistral API Base URL": "ป้อน URL ฐานของ Mistral API", "Enter Mistral API Base URL": "ป้อน URL ฐานของ Mistral API",
"Enter Mistral API Key": "กรอก API Key ของ Mistral", "Enter Mistral API Key": "กรอก API Key ของ Mistral",
"Enter Model ID": "ป้อน ID โมเดล", "Enter Model ID": "ป้อน ID โมเดล",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "ป้อน API Key ของ SearchApi", "Enter SearchApi API Key": "ป้อน API Key ของ SearchApi",
"Enter SearchApi Engine": "ป้อน SearchApi Engine", "Enter SearchApi Engine": "ป้อน SearchApi Engine",
"Enter Searxng Query URL": "ใส่ URL คำค้นหาของ Searxng", "Enter Searxng Query URL": "ใส่ URL คำค้นหาของ Searxng",
"Enter Searxng search language": "",
"Enter Seed": "ป้อนค่า Seed", "Enter Seed": "ป้อนค่า Seed",
"Enter SerpApi API Key": "กรอก SerpApi API Key", "Enter SerpApi API Key": "กรอก SerpApi API Key",
"Enter SerpApi Engine": "ป้อนเอนจิน SerpApi", "Enter SerpApi Engine": "ป้อนเอนจิน SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "ไม่สามารถโหลดตัวอย่างแชทได้", "Failed to load chat preview": "ไม่สามารถโหลดตัวอย่างแชทได้",
"Failed to load file content.": "โหลดเนื้อหาไฟล์ไม่สำเร็จ", "Failed to load file content.": "โหลดเนื้อหาไฟล์ไม่สำเร็จ",
"Failed to move chat": "ย้ายแชทไม่สำเร็จ", "Failed to move chat": "ย้ายแชทไม่สำเร็จ",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดไม่สำเร็จ", "Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดไม่สำเร็จ",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "ไม่สามารถเรนเดอร์ไดอะแกรมได้", "Failed to render diagram": "ไม่สามารถเรนเดอร์ไดอะแกรมได้",
@ -831,6 +840,7 @@
"Google PSE API Key": "คีย์ API ของ Google PSE", "Google PSE API Key": "คีย์ API ของ Google PSE",
"Google PSE Engine Id": "รหัสเอนจินของ Google PSE", "Google PSE Engine Id": "รหัสเอนจินของ Google PSE",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Grid": "",
"Group": "กลุ่ม", "Group": "กลุ่ม",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "สร้างกลุ่มสำเร็จแล้ว", "Group created successfully": "สร้างกลุ่มสำเร็จแล้ว",
@ -891,7 +901,6 @@
"Import Config from JSON File": "นำเข้า Config จากไฟล์ JSON", "Import Config from JSON File": "นำเข้า Config จากไฟล์ JSON",
"Import From Link": "นำเข้าโดยใช้ลิงก์", "Import From Link": "นำเข้าโดยใช้ลิงก์",
"Import Models": "", "Import Models": "",
"Import Notes": "นำเข้าบันทึก",
"Import Presets": "นำเข้าพรีเซ็ต", "Import Presets": "นำเข้าพรีเซ็ต",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "นำเข้าเรียบร้อยแล้ว", "Import successful": "นำเข้าเรียบร้อยแล้ว",
@ -989,6 +998,8 @@
"License": "ใบอนุญาต", "License": "ใบอนุญาต",
"Lift List": "รายการลิฟต์", "Lift List": "รายการลิฟต์",
"Light": "โหมดสว่าง", "Light": "โหมดสว่าง",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "กำลังฟัง...", "Listening...": "กำลังฟัง...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM อาจทำผิดพลาดได้ โปรดตรวจสอบข้อมูลสำคัญ", "LLMs can make mistakes. Verify important information.": "LLM อาจทำผิดพลาดได้ โปรดตรวจสอบข้อมูลสำคัญ",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "จำเป็นต้องกรอกชื่อและ ID โปรดกรอกข้อมูลให้ครบ", "Name and ID are required, please fill them out": "จำเป็นต้องกรอกชื่อและ ID โปรดกรอกข้อมูลให้ครบ",
"Name your knowledge base": "ตั้งชื่อฐานความรู้ของคุณ", "Name your knowledge base": "ตั้งชื่อฐานความรู้ของคุณ",
"Native": "Native", "Native": "Native",
"New": "",
"New Button": "ปุ่มใหม่", "New Button": "ปุ่มใหม่",
"New Chat": "แชทใหม่", "New Chat": "แชทใหม่",
"New Folder": "โฟลเดอร์ใหม่", "New Folder": "โฟลเดอร์ใหม่",
"New Function": "ฟังก์ชันใหม่", "New Function": "ฟังก์ชันใหม่",
"New Knowledge": "ฐานความรู้ใหม่", "New Knowledge": "ฐานความรู้ใหม่",
"New Model": "โมเดลใหม่", "New Model": "โมเดลใหม่",
"New Note": "",
"New Password": "รหัสผ่านใหม่", "New Password": "รหัสผ่านใหม่",
"New Prompt": "พรอมต์ใหม่", "New Prompt": "พรอมต์ใหม่",
"New Temporary Chat": "แชทชั่วคราวใหม่", "New Temporary Chat": "แชทชั่วคราวใหม่",
@ -1112,17 +1125,18 @@
"No chats found.": "ไม่พบแชท", "No chats found.": "ไม่พบแชท",
"No content": "ไม่มีเนื้อหา", "No content": "ไม่มีเนื้อหา",
"No content found": "ไม่พบเนื้อหา", "No content found": "ไม่พบเนื้อหา",
"No content found in file.": "ไม่พบเนื้อหาในไฟล์",
"No content to speak": "ไม่มีเนื้อหาสำหรับอ่านออกเสียง", "No content to speak": "ไม่มีเนื้อหาสำหรับอ่านออกเสียง",
"No conversation to save": "ไม่มีการสนทนาที่จะบันทึก", "No conversation to save": "ไม่มีการสนทนาที่จะบันทึก",
"No distance available": "ไม่มีข้อมูลระยะทาง", "No distance available": "ไม่มีข้อมูลระยะทาง",
"No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย", "No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย",
"No feedbacks found": "ไม่พบความคิดเห็น", "No feedbacks found": "ไม่พบความคิดเห็น",
"No file selected": "ไม่ได้เลือกไฟล์", "No file selected": "ไม่ได้เลือกไฟล์",
"No files in this knowledge base.": "",
"No functions found": "ไม่พบฟังก์ชัน", "No functions found": "ไม่พบฟังก์ชัน",
"No groups with access, add a group to grant access": "ยังไม่มีกลุ่มที่มีสิทธิ์เข้าถึง เพิ่มกลุ่มเพื่อให้สิทธิ์เข้าถึง", "No groups with access, add a group to grant access": "ยังไม่มีกลุ่มที่มีสิทธิ์เข้าถึง เพิ่มกลุ่มเพื่อให้สิทธิ์เข้าถึง",
"No HTML, CSS, or JavaScript content found.": "ไม่พบเนื้อหา HTML, CSS หรือ JavaScript", "No HTML, CSS, or JavaScript content found.": "ไม่พบเนื้อหา HTML, CSS หรือ JavaScript",
"No inference engine with management support found": "ไม่พบเอนจินอนุมานที่รองรับการจัดการ", "No inference engine with management support found": "ไม่พบเอนจินอนุมานที่รองรับการจัดการ",
"No knowledge bases found.": "",
"No knowledge found": "ไม่พบฐานความรู้", "No knowledge found": "ไม่พบฐานความรู้",
"No memories to clear": "ไม่มีความจำให้ลบ", "No memories to clear": "ไม่มีความจำให้ลบ",
"No model IDs": "ไม่มีรหัสโมเดล", "No model IDs": "ไม่มีรหัสโมเดล",
@ -1309,6 +1323,8 @@
"Read": "อ่าน", "Read": "อ่าน",
"Read Aloud": "อ่านออกเสียง", "Read Aloud": "อ่านออกเสียง",
"Read more →": "อ่านเพิ่มเติม →", "Read more →": "อ่านเพิ่มเติม →",
"Read Only": "",
"Read-Only Access": "",
"Reason": "เหตุผล", "Reason": "เหตุผล",
"Reasoning Effort": "ระดับการใช้เหตุผล", "Reasoning Effort": "ระดับการใช้เหตุผล",
"Reasoning Tags": "ป้ายกำกับการให้เหตุผล", "Reasoning Tags": "ป้ายกำกับการให้เหตุผล",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "กำลังค้นหาความรู้สำหรับ \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "กำลังค้นหาความรู้สำหรับ \"{{searchQuery}}\"",
"Searching the web": "กำลังค้นหาบนเว็บ", "Searching the web": "กำลังค้นหาบนเว็บ",
"Searxng Query URL": "URL การค้นหา Searxng", "Searxng Query URL": "URL การค้นหา Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ดู readme.md สำหรับคำแนะนำ", "See readme.md for instructions": "ดู readme.md สำหรับคำแนะนำ",
"See what's new": "ดูมีอะไรใหม่", "See what's new": "ดูมีอะไรใหม่",
"Seed": "Seed", "Seed": "Seed",
@ -1490,6 +1507,7 @@
"Show": "แสดง", "Show": "แสดง",
"Show \"What's New\" modal on login": "แสดงหน้าต่าง \"มีอะไรใหม่\" เมื่อเข้าสู่ระบบ", "Show \"What's New\" modal on login": "แสดงหน้าต่าง \"มีอะไรใหม่\" เมื่อเข้าสู่ระบบ",
"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าต่างซ้อนรอการอนุมัติบัญชี", "Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าต่างซ้อนรอการอนุมัติบัญชี",
"Show Files": "",
"Show Formatting Toolbar": "แสดงแถบเครื่องมือการจัดรูปแบบ", "Show Formatting Toolbar": "แสดงแถบเครื่องมือการจัดรูปแบบ",
"Show image preview": "แสดงตัวอย่างรูปภาพ", "Show image preview": "แสดงตัวอย่างรูปภาพ",
"Show Model": "แสดงโมเดล", "Show Model": "แสดงโมเดล",
@ -1514,6 +1532,7 @@
"Sonar Pro": "Sonar Pro", "Sonar Pro": "Sonar Pro",
"Sonar Reasoning": "การให้เหตุผลของ Sonar", "Sonar Reasoning": "การให้เหตุผลของ Sonar",
"Sonar Reasoning Pro": "Sonar Reasoning Pro", "Sonar Reasoning Pro": "Sonar Reasoning Pro",
"Sort": "",
"Sougou Search API sID": "sID ของ Sougou Search API", "Sougou Search API sID": "sID ของ Sougou Search API",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "แหล่งที่มา", "Source": "แหล่งที่มา",
@ -1624,6 +1643,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika", "Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "ชื่อเรื่อง", "Title": "ชื่อเรื่อง",
"Title Auto-Generation": "การสร้างชื่ออัตโนมัติ", "Title Auto-Generation": "การสร้างชื่ออัตโนมัติ",
"Title cannot be an empty string.": "ชื่อเรื่องต้องไม่เป็นสตริงว่าง", "Title cannot be an empty string.": "ชื่อเรื่องต้องไม่เป็นสตริงว่าง",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ได้", "Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ได้",
"Tools Public Sharing": "การแชร์เครื่องมือสาธารณะ", "Tools Public Sharing": "การแชร์เครื่องมือสาธารณะ",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "ตัวจัดเรียงใหม่ตามค่า Top K", "Top K Reranker": "ตัวจัดเรียงใหม่ตามค่า Top K",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "การค้นหาเว็บในการแชท", "Web Search in Chat": "การค้นหาเว็บในการแชท",
"Web Search Query Generation": "การสร้างคำค้นหาเว็บ", "Web Search Query Generation": "การสร้างคำค้นหาเว็บ",
"Webhook URL": "URL ของ Webhook", "Webhook URL": "URL ของ Webhook",
"Webpage URL": "URL หน้าเว็บ", "Webpage URLs": "",
"WebUI Settings": "การตั้งค่า WebUI", "WebUI Settings": "การตั้งค่า WebUI",
"WebUI URL": "URL ของ WebUI", "WebUI URL": "URL ของ WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI จะส่งคำขอไปยัง \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI จะส่งคำขอไปยัง \"{{url}}\"",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "คุณไม่สามารถอัปโหลดไฟล์เปล่าได้", "You cannot upload an empty file.": "คุณไม่สามารถอัปโหลดไฟล์เปล่าได้",
"You do not have permission to send messages in this channel.": "คุณไม่มีสิทธิ์ส่งข้อความในช่องทางนี้", "You do not have permission to send messages in this channel.": "คุณไม่มีสิทธิ์ส่งข้อความในช่องทางนี้",
"You do not have permission to send messages in this thread.": "คุณไม่มีสิทธิ์ส่งข้อความในเธรดนี้", "You do not have permission to send messages in this thread.": "คุณไม่มีสิทธิ์ส่งข้อความในเธรดนี้",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "คุณไม่มีสิทธิ์อัปโหลดไฟล์", "You do not have permission to upload files.": "คุณไม่มีสิทธิ์อัปโหลดไฟล์",
"You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร", "You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร",
"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว", "You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "", "Add text content": "",
"Add User": "Ulanyjy goş", "Add User": "Ulanyjy goş",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Ähli Resminamalar",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API açarlary", "API keys": "API açarlary",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "Kepillikmi?", "Are you sure?": "Kepillikmi?",
"Arena Models": "", "Arena Models": "",
"Artifacts": "", "Artifacts": "",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "", "Call feature is not supported when using Web STT engine": "",
"Camera": "", "Camera": "",
"Cancel": "Ýatyrmak", "Cancel": "Ýatyrmak",
"Cannot create an empty note.": "",
"Capabilities": "Ukyplar", "Capabilities": "Ukyplar",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolleksiýa", "Collection": "Kolleksiýa",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Täze açar döret", "Create new key": "Täze açar döret",
"Create new secret key": "Täze gizlin açar döret", "Create new secret key": "Täze gizlin açar döret",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Döredilen wagty", "Created at": "Döredilen wagty",
@ -429,6 +437,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "Düşündiriş", "Description": "Düşündiriş",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "", "Download canceled": "",
"Download Database": "", "Download Database": "",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "", "Draw": "",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "", "Enter language codes": "",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "", "Enter Model ID": "",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "", "Enter SearchApi API Key": "",
"Enter SearchApi Engine": "", "Enter SearchApi Engine": "",
"Enter Searxng Query URL": "", "Enter Searxng Query URL": "",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "", "Google PSE API Key": "",
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Topar", "Group": "Topar",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "", "Import Config from JSON File": "",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Rugsat", "License": "Rugsat",
"Lift List": "", "Lift List": "",
"Light": "Açyk", "Light": "Açyk",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "", "Listening...": "",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "", "New Chat": "",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Täze Parol", "New Password": "Täze Parol",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "", "No content found": "",
"No content found in file.": "",
"No content to speak": "", "No content to speak": "",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "", "No distance available": "",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "", "No feedbacks found": "",
"No file selected": "", "No file selected": "",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "", "No HTML, CSS, or JavaScript content found.": "",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "", "No knowledge found": "",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "", "Read Aloud": "",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "", "Searching Knowledge for \"{{searchQuery}}\"": "",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "", "Searxng Query URL": "",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
@ -1491,6 +1508,7 @@
"Show": "Görkez", "Show": "Görkez",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "", "Show Admin Details in Account Pending Overlay": "",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modeli Görkez", "Show Model": "Modeli Görkez",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Çeşme", "Source": "Çeşme",
@ -1625,6 +1644,7 @@
"Tika": "", "Tika": "",
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Timeout": "",
"Title": "Ady", "Title": "Ady",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "", "Top K": "",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "", "Webhook URL": "",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "", "WebUI Settings": "",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "", "You cannot upload an empty file.": "",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Yanıt", "{{COUNT}} Replies": "{{COUNT}} Yanıt",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Metin içeriği ekleme", "Add text content": "Metin içeriği ekleme",
"Add User": "Kullanıcı Ekle", "Add User": "Kullanıcı Ekle",
"Add User Group": "Kullanıcı Grubu Ekle", "Add User Group": "Kullanıcı Grubu Ekle",
"Add webpage": "",
"Additional Config": "Ek Yapılandırma", "Additional Config": "Ek Yapılandırma",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "Ek Parametreler", "Additional Parameters": "Ek Parametreler",
@ -84,7 +87,6 @@
"AI": "Yapay Zeka", "AI": "Yapay Zeka",
"All": "Tüm", "All": "Tüm",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Tüm Belgeler",
"All models deleted successfully": "Tüm modeller başarıyla silindi", "All models deleted successfully": "Tüm modeller başarıyla silindi",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Sohbet Kontrollerine İzin Ver", "Allow Chat Controls": "Sohbet Kontrollerine İzin Ver",
@ -136,6 +138,7 @@
"API keys": "API anahtarları", "API keys": "API anahtarları",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API Sürümü", "API Version": "API Sürümü",
"API Version is required": "", "API Version is required": "",
"Application DN": "Uygulama DN", "Application DN": "Uygulama DN",
@ -154,6 +157,7 @@
"Are you sure?": "Emin misiniz?", "Are you sure?": "Emin misiniz?",
"Arena Models": "Arena Modelleri", "Arena Models": "Arena Modelleri",
"Artifacts": "Eserler", "Artifacts": "Eserler",
"Asc": "",
"Ask": "Sor", "Ask": "Sor",
"Ask a question": "Bir soru sorun", "Ask a question": "Bir soru sorun",
"Assistant": "Asistan", "Assistant": "Asistan",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor", "Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "İptal", "Cancel": "İptal",
"Cannot create an empty note.": "",
"Capabilities": "Yetenekler", "Capabilities": "Yetenekler",
"Capture": "Kayıt", "Capture": "Kayıt",
"Capture Audio": "Sesi Kaydet", "Capture Audio": "Sesi Kaydet",
@ -228,6 +233,7 @@
"Channel deleted successfully": "Kanal başarıyla silindi", "Channel deleted successfully": "Kanal başarıyla silindi",
"Channel Name": "Kanal Adı", "Channel Name": "Kanal Adı",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "Kanal başarıyla güncellendi", "Channel updated successfully": "Kanal başarıyla güncellendi",
"Channels": "Kanallar", "Channels": "Kanallar",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Daralt", "Collapse": "Daralt",
"Collection": "Koleksiyon", "Collection": "Koleksiyon",
"Collections": "",
"Color": "Renk", "Color": "Renk",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API Anahtarı", "ComfyUI API Key": "ComfyUI API Anahtarı",
@ -365,6 +372,7 @@
"Create Model": "Model Oluştur", "Create Model": "Model Oluştur",
"Create new key": "Yeni anahtar oluştur", "Create new key": "Yeni anahtar oluştur",
"Create new secret key": "Yeni gizli anahtar oluştur", "Create new secret key": "Yeni gizli anahtar oluştur",
"Create note": "",
"Create Note": "Not Oluştur", "Create Note": "Not Oluştur",
"Create your first note by clicking on the plus button below.": "İlk notunuzu aşağıdaki artı düğmesine basarak oluşturun.", "Create your first note by clicking on the plus button below.": "İlk notunuzu aşağıdaki artı düğmesine basarak oluşturun.",
"Created at": "Oluşturulma tarihi", "Created at": "Oluşturulma tarihi",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} silindi", "Deleted {{name}}": "{{name}} silindi",
"Deleted User": "Kullanıcı Silindi", "Deleted User": "Kullanıcı Silindi",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Bilgi tabanınızı ve hedeflerinizi açıklayın", "Describe your knowledge base and objectives": "Bilgi tabanınızı ve hedeflerinizi açıklayın",
"Description": "Açıklama", "Description": "Açıklama",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "SVG olarak İndir", "Download as SVG": "SVG olarak İndir",
"Download canceled": "İndirme iptal edildi", "Download canceled": "İndirme iptal edildi",
"Download Database": "Veritabanını İndir", "Download Database": "Veritabanını İndir",
"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", "Draw": "Çiz",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search API Anahtarını Girin", "Enter Kagi Search API Key": "Kagi Search API Anahtarını Girin",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "Dil kodlarını girin", "Enter language codes": "Dil kodlarını girin",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Model ID'sini Girin", "Enter Model ID": "Model ID'sini Girin",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Arama-API Anahtarını Girin", "Enter SearchApi API Key": "Arama-API Anahtarını Girin",
"Enter SearchApi Engine": "Arama-API Motorunu Girin", "Enter SearchApi Engine": "Arama-API Motorunu Girin",
"Enter Searxng Query URL": "Searxng Sorgu URL'sini girin", "Enter Searxng Query URL": "Searxng Sorgu URL'sini girin",
"Enter Searxng search language": "",
"Enter Seed": " Tohum(seed) Girin", "Enter Seed": " Tohum(seed) Girin",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Pano içeriği okunamadı", "Failed to read clipboard contents": "Pano içeriği okunamadı",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API Anahtarı", "Google PSE API Key": "Google PSE API Anahtarı",
"Google PSE Engine Id": "Google PSE Engine Id", "Google PSE Engine Id": "Google PSE Engine Id",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Grup", "Group": "Grup",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Grup başarıyla oluşturuldu", "Group created successfully": "Grup başarıyla oluşturuldu",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Yapılandırmayı JSON Dosyasından İçe Aktar", "Import Config from JSON File": "Yapılandırmayı JSON Dosyasından İçe Aktar",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "Notları İçe Aktar",
"Import Presets": "Ön Ayarları İçe Aktar", "Import Presets": "Ön Ayarları İçe Aktar",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Lisans", "License": "Lisans",
"Lift List": "", "Lift List": "",
"Light": "Açık", "Light": "Açık",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Dinleniyor...", "Listening...": "Dinleniyor...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.", "LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilgi tabanınıza bir ad verin", "Name your knowledge base": "Bilgi tabanınıza bir ad verin",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Yeni Sohbet", "New Chat": "Yeni Sohbet",
"New Folder": "Yeni Klasör", "New Folder": "Yeni Klasör",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Yeni Parola", "New Password": "Yeni Parola",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "İçerik yok", "No content": "İçerik yok",
"No content found": "İçerik bulunamadı", "No content found": "İçerik bulunamadı",
"No content found in file.": "Dosyada içerik bulunamadı",
"No content to speak": "Konuşacak içerik yok", "No content to speak": "Konuşacak içerik yok",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Mesafe mevcut değil", "No distance available": "Mesafe mevcut değil",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Geri bildirim bulunamadı", "No feedbacks found": "Geri bildirim bulunamadı",
"No file selected": "Hiçbir dosya seçilmedi", "No file selected": "Hiçbir dosya seçilmedi",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Erişimi olan grup yok, erişim sağlamak için bir grup ekleyin", "No groups with access, add a group to grant access": "Erişimi olan grup yok, erişim sağlamak için bir grup ekleyin",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS veya JavaScript içeriği bulunamadı.", "No HTML, CSS, or JavaScript content found.": "HTML, CSS veya JavaScript içeriği bulunamadı.",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "Bilgi bulunamadı", "No knowledge found": "Bilgi bulunamadı",
"No memories to clear": "Temizlenecek bellek yok", "No memories to clear": "Temizlenecek bellek yok",
"No model IDs": "Model ID yok", "No model IDs": "Model ID yok",
@ -1309,6 +1323,8 @@
"Read": "Oku", "Read": "Oku",
"Read Aloud": "Sesli Oku", "Read Aloud": "Sesli Oku",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" için Bilgi aranıyor", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" için Bilgi aranıyor",
"Searching the web": "İnternette aranıyor...", "Searching the web": "İnternette aranıyor...",
"Searxng Query URL": "Searxng Sorgu URL'si", "Searxng Query URL": "Searxng Sorgu URL'si",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın", "See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın",
"See what's new": "Yeniliklere göz atın", "See what's new": "Yeniliklere göz atın",
"Seed": "Seed", "Seed": "Seed",
@ -1491,6 +1508,7 @@
"Show": "Göster", "Show": "Göster",
"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster", "Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster", "Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modeli Göster", "Show Model": "Modeli Göster",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Kaynak", "Source": "Kaynak",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika Sunucu URL'si gereklidir.", "Tika Server URL required.": "Tika Sunucu URL'si gereklidir.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Başlık", "Title": "Başlık",
"Title Auto-Generation": "Otomatik Başlık Oluşturma", "Title Auto-Generation": "Otomatik Başlık Oluşturma",
"Title cannot be an empty string.": "Başlık boş bir dize olamaz.", "Title cannot be an empty string.": "Başlık boş bir dize olamaz.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.", "Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "Dönüştürücüler", "Transformers": "Dönüştürücüler",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "Web Arama Sorgusu Oluşturma", "Web Search Query Generation": "Web Arama Sorgusu Oluşturma",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI Ayarları", "WebUI Settings": "WebUI Ayarları",
"WebUI URL": "WebUI URL'si", "WebUI URL": "WebUI URL'si",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.", "You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Dosya yüklemek için izniniz yok.", "You do not have permission to upload files.": "Dosya yüklemek için izniniz yok.",
"You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.", "You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.",
"You have shared this chat": "Bu sohbeti paylaştınız", "You have shared this chat": "Bu sohbeti paylaştınız",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} بار قوراللار", "{{COUNT}} Available Tools": "{{COUNT}} بار قوراللار",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} يوشۇرۇن قۇرلار", "{{COUNT}} hidden lines": "{{COUNT}} يوشۇرۇن قۇرلار",
"{{COUNT}} Replies": "{{COUNT}} ئىنكاس", "{{COUNT}} Replies": "{{COUNT}} ئىنكاس",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "تېكست مەزمۇن قوشۇش", "Add text content": "تېكست مەزمۇن قوشۇش",
"Add User": "ئىشلەتكۈچى قوشۇش", "Add User": "ئىشلەتكۈچى قوشۇش",
"Add User Group": "ئىشلەتكۈچى گۇرۇپپىسى قوشۇش", "Add User Group": "ئىشلەتكۈچى گۇرۇپپىسى قوشۇش",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "ھەممىسى", "All": "ھەممىسى",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "ھەممە ھۆججەتلەر",
"All models deleted successfully": "بارلىق مودېللار مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", "All models deleted successfully": "بارلىق مودېللار مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
"Allow Call": "چاقىرىشقا ئىجازەت", "Allow Call": "چاقىرىشقا ئىجازەت",
"Allow Chat Controls": "سۆھبەت باشقۇرۇشقا ئىجازەت", "Allow Chat Controls": "سۆھبەت باشقۇرۇشقا ئىجازەت",
@ -136,6 +138,7 @@
"API keys": "API ئاچقۇچلىرى", "API keys": "API ئاچقۇچلىرى",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API نەشرى", "API Version": "API نەشرى",
"API Version is required": "", "API Version is required": "",
"Application DN": "قوللىنىشچان DN", "Application DN": "قوللىنىشچان DN",
@ -154,6 +157,7 @@
"Are you sure?": "جەزم قىلدىڭىزمۇ؟", "Are you sure?": "جەزم قىلدىڭىزمۇ؟",
"Arena Models": "Arena مودېللىرى", "Arena Models": "Arena مودېللىرى",
"Artifacts": "ئۇزۇقلار", "Artifacts": "ئۇزۇقلار",
"Asc": "",
"Ask": "سوراڭ", "Ask": "سوراڭ",
"Ask a question": "سؤئال سوراڭ", "Ask a question": "سؤئال سوراڭ",
"Assistant": "ياردەمچى", "Assistant": "ياردەمچى",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ", "Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ",
"Camera": "كامېرا", "Camera": "كامېرا",
"Cancel": "بىكار قىلىش", "Cancel": "بىكار قىلىش",
"Cannot create an empty note.": "",
"Capabilities": "ئىقتىدارلار", "Capabilities": "ئىقتىدارلار",
"Capture": "رەسىم تارتقۇزۇش", "Capture": "رەسىم تارتقۇزۇش",
"Capture Audio": "ئاۋاز تارتقۇزۇش", "Capture Audio": "ئاۋاز تارتقۇزۇش",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "قانال ئاتى", "Channel Name": "قانال ئاتى",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "قاناللار", "Channels": "قاناللار",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "يىغىش", "Collapse": "يىغىش",
"Collection": "توپلام", "Collection": "توپلام",
"Collections": "",
"Color": "رەڭ", "Color": "رەڭ",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API ئاچقۇچى", "ComfyUI API Key": "ComfyUI API ئاچقۇچى",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "يېڭى ئاچقۇچ قۇرۇش", "Create new key": "يېڭى ئاچقۇچ قۇرۇش",
"Create new secret key": "يېڭى مەخپىي ئاچقۇچ قۇرۇش", "Create new secret key": "يېڭى مەخپىي ئاچقۇچ قۇرۇش",
"Create note": "",
"Create Note": "خاتىرە قۇرۇش", "Create Note": "خاتىرە قۇرۇش",
"Create your first note by clicking on the plus button below.": "تۆۋەندىكى قوشۇش كۇنۇپكىسىنى چېكىپ بىرىنچى خاتىرىڭىزنى قۇرۇڭ.", "Create your first note by clicking on the plus button below.": "تۆۋەندىكى قوشۇش كۇنۇپكىسىنى چېكىپ بىرىنچى خاتىرىڭىزنى قۇرۇڭ.",
"Created at": "قۇرۇلغان ۋاقتى", "Created at": "قۇرۇلغان ۋاقتى",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} ئۆچۈرۈلدى", "Deleted {{name}}": "{{name}} ئۆچۈرۈلدى",
"Deleted User": "ئۆچۈرۈلگەن ئىشلەتكۈچى", "Deleted User": "ئۆچۈرۈلگەن ئىشلەتكۈچى",
"Deployment names are required for Azure OpenAI": "Azure OpenAI ئۈچۈن ئورۇنلاشتۇرۇش ئىسمى زۆرۈر ", "Deployment names are required for Azure OpenAI": "Azure OpenAI ئۈچۈن ئورۇنلاشتۇرۇش ئىسمى زۆرۈر ",
"Desc": "",
"Describe your knowledge base and objectives": "بىلىم ئاساسى ۋە نىشانلىرىڭىزنى چۈشەندۈرۈڭ", "Describe your knowledge base and objectives": "بىلىم ئاساسى ۋە نىشانلىرىڭىزنى چۈشەندۈرۈڭ",
"Description": "چۈشەندۈرۈش", "Description": "چۈشەندۈرۈش",
"Detect Artifacts Automatically": "ئۇزۇقلارنى ئاپتوماتىك بايقايدۇ", "Detect Artifacts Automatically": "ئۇزۇقلارنى ئاپتوماتىك بايقايدۇ",
@ -487,7 +496,6 @@
"Download as SVG": "SVG شەكلىدە چۈشۈرۈش", "Download as SVG": "SVG شەكلىدە چۈشۈرۈش",
"Download canceled": "چۈشۈرۈش بىكار قىلىندى", "Download canceled": "چۈشۈرۈش بىكار قىلىندى",
"Download Database": "ساندان چۈشۈرۈش", "Download Database": "ساندان چۈشۈرۈش",
"Drag and drop a file to upload or select a file to view": "يۈكلەش ياكى كۆرۈش ئۈچۈن ھۆججەتنى سۆرەپ تاشلاڭ ياكى تاللاڭ",
"Draw": "سىزىش", "Draw": "سىزىش",
"Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ", "Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مەسىلەن: '30s', '10m'. توغرا ۋاقىت بىرلىكى: 's' (سېكۇنت), 'm' (مىنۇت), 'h' (سائەت).", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مەسىلەن: '30s', '10m'. توغرا ۋاقىت بىرلىكى: 's' (سېكۇنت), 'm' (مىنۇت), 'h' (سائەت).",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi ئىزدەش API ئاچقۇچى كىرگۈزۈڭ", "Enter Kagi Search API Key": "Kagi ئىزدەش API ئاچقۇچى كىرگۈزۈڭ",
"Enter Key Behavior": "ئاچقۇچ ئىشلىتىش ئۇسۇلى كىرگۈزۈڭ", "Enter Key Behavior": "ئاچقۇچ ئىشلىتىش ئۇسۇلى كىرگۈزۈڭ",
"Enter language codes": "تىل كودلىرى كىرگۈزۈڭ", "Enter language codes": "تىل كودلىرى كىرگۈزۈڭ",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Mistral API ئاچقۇچى كىرگۈزۈڭ", "Enter Mistral API Key": "Mistral API ئاچقۇچى كىرگۈزۈڭ",
"Enter Model ID": "مودېل ID كىرگۈزۈڭ", "Enter Model ID": "مودېل ID كىرگۈزۈڭ",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API ئاچقۇچى كىرگۈزۈڭ", "Enter SearchApi API Key": "SearchApi API ئاچقۇچى كىرگۈزۈڭ",
"Enter SearchApi Engine": "SearchApi ماتورى كىرگۈزۈڭ", "Enter SearchApi Engine": "SearchApi ماتورى كىرگۈزۈڭ",
"Enter Searxng Query URL": "Searxng ئىزدەش URL كىرگۈزۈڭ", "Enter Searxng Query URL": "Searxng ئىزدەش URL كىرگۈزۈڭ",
"Enter Searxng search language": "",
"Enter Seed": "ئۇرۇق كىرگۈزۈڭ", "Enter Seed": "ئۇرۇق كىرگۈزۈڭ",
"Enter SerpApi API Key": "SerpApi API ئاچقۇچى كىرگۈزۈڭ", "Enter SerpApi API Key": "SerpApi API ئاچقۇچى كىرگۈزۈڭ",
"Enter SerpApi Engine": "SerpApi ماتورى كىرگۈزۈڭ", "Enter SerpApi Engine": "SerpApi ماتورى كىرگۈزۈڭ",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.", "Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى", "Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API ئاچقۇچى", "Google PSE API Key": "Google PSE API ئاچقۇچى",
"Google PSE Engine Id": "Google PSE ماتور ID", "Google PSE Engine Id": "Google PSE ماتور ID",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "گۇرۇپپا", "Group": "گۇرۇپپا",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك قۇرۇلدى", "Group created successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك قۇرۇلدى",
@ -891,7 +901,6 @@
"Import Config from JSON File": "JSON ھۆججىتىدىن تەڭشەك ئىمپورت قىلىش", "Import Config from JSON File": "JSON ھۆججىتىدىن تەڭشەك ئىمپورت قىلىش",
"Import From Link": "ئۇلانمىدىن ئىمپورت قىلىش", "Import From Link": "ئۇلانمىدىن ئىمپورت قىلىش",
"Import Models": "", "Import Models": "",
"Import Notes": "خاتىرە ئىمپورت قىلىش",
"Import Presets": "ئالدىن تەڭشەك ئىمپورت قىلىش", "Import Presets": "ئالدىن تەڭشەك ئىمپورت قىلىش",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "كېنىشكا", "License": "كېنىشكا",
"Lift List": "", "Lift List": "",
"Light": "نۇر", "Light": "نۇر",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "ئاڭلاۋاتىدۇ...", "Listening...": "ئاڭلاۋاتىدۇ...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLM خاتالىق ئۆتكۈزۈشى مۇمكىن. مۇھىم ئۇچۇرنى تەكشۈرۈڭ.", "LLMs can make mistakes. Verify important information.": "LLM خاتالىق ئۆتكۈزۈشى مۇمكىن. مۇھىم ئۇچۇرنى تەكشۈرۈڭ.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ", "Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ",
"Native": "يەرلىك", "Native": "يەرلىك",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "يېڭى سۆھبەت", "New Chat": "يېڭى سۆھبەت",
"New Folder": "يېڭى قىسقۇچ", "New Folder": "يېڭى قىسقۇچ",
"New Function": "يېڭى فۇنكسىيە", "New Function": "يېڭى فۇنكسىيە",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "يېڭى پارول", "New Password": "يېڭى پارول",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "سۆھبەت تېپىلمىدى.", "No chats found.": "سۆھبەت تېپىلمىدى.",
"No content": "مەزمۇن يوق", "No content": "مەزمۇن يوق",
"No content found": "مەزمۇن تېپىلمىدى", "No content found": "مەزمۇن تېپىلمىدى",
"No content found in file.": "ھۆججەتتە مەزمۇن تېپىلمىدى.",
"No content to speak": "تاپشۇرىدىغان مەزمۇن يوق", "No content to speak": "تاپشۇرىدىغان مەزمۇن يوق",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "ئارىلىق ئۇچۇرى يوق", "No distance available": "ئارىلىق ئۇچۇرى يوق",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "پىكىرلەر تېپىلمىدى", "No feedbacks found": "پىكىرلەر تېپىلمىدى",
"No file selected": "ھۆججەت تاللانمىدى", "No file selected": "ھۆججەت تاللانمىدى",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "ھوقۇقى بار گۇرۇپپا يوق، گۇرۇپپا قوشۇپ ھوقۇق بېرىڭ", "No groups with access, add a group to grant access": "ھوقۇقى بار گۇرۇپپا يوق، گۇرۇپپا قوشۇپ ھوقۇق بېرىڭ",
"No HTML, CSS, or JavaScript content found.": "HTML، CSS ياكى JavaScript مەزمۇنى تېپىلمىدى.", "No HTML, CSS, or JavaScript content found.": "HTML، CSS ياكى JavaScript مەزمۇنى تېپىلمىدى.",
"No inference engine with management support found": "باشقۇرۇشنى قوللايدىغان يەكۈن ماتورى تېپىلمىدى", "No inference engine with management support found": "باشقۇرۇشنى قوللايدىغان يەكۈن ماتورى تېپىلمىدى",
"No knowledge bases found.": "",
"No knowledge found": "بىلىم تېپىلمىدى", "No knowledge found": "بىلىم تېپىلمىدى",
"No memories to clear": "تازلاشقا ئەسلەتمە يوق", "No memories to clear": "تازلاشقا ئەسلەتمە يوق",
"No model IDs": "مودېل ID يوق", "No model IDs": "مودېل ID يوق",
@ -1309,6 +1323,8 @@
"Read": "ئوقۇش", "Read": "ئوقۇش",
"Read Aloud": "ئوقۇپ ئېيتىش", "Read Aloud": "ئوقۇپ ئېيتىش",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "سەۋەب", "Reason": "سەۋەب",
"Reasoning Effort": "چۈشەندۈرۈش كۈچى", "Reasoning Effort": "چۈشەندۈرۈش كۈچى",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" ئۈچۈن بىلىم ئىزدەۋاتىدۇ", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" ئۈچۈن بىلىم ئىزدەۋاتىدۇ",
"Searching the web": "تور ئىزدەۋاتىدۇ...", "Searching the web": "تور ئىزدەۋاتىدۇ...",
"Searxng Query URL": "Searxng ئىزدەش URL", "Searxng Query URL": "Searxng ئىزدەش URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "قوللانما ئۈچۈن readme.md غا قاراڭ", "See readme.md for instructions": "قوللانما ئۈچۈن readme.md غا قاراڭ",
"See what's new": "يېڭىلىقلارنى كۆرۈش", "See what's new": "يېڭىلىقلارنى كۆرۈش",
"Seed": "ئۇرۇق", "Seed": "ئۇرۇق",
@ -1491,6 +1508,7 @@
"Show": "كۆرسىتىش", "Show": "كۆرسىتىش",
"Show \"What's New\" modal on login": "كىرىشتە \"يېڭىلىق\" مودىلىنى كۆرسىتىش", "Show \"What's New\" modal on login": "كىرىشتە \"يېڭىلىق\" مودىلىنى كۆرسىتىش",
"Show Admin Details in Account Pending Overlay": "ھېسابات كۈتۈۋاتقان قاپلىماسىدا باشقۇرغۇچى تەپسىلاتىنى كۆرسىتىش", "Show Admin Details in Account Pending Overlay": "ھېسابات كۈتۈۋاتقان قاپلىماسىدا باشقۇرغۇچى تەپسىلاتىنى كۆرسىتىش",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "مودېل كۆرسىتىش", "Show Model": "مودېل كۆرسىتىش",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Sougou ئىزدەش API sID", "Sougou Search API sID": "Sougou ئىزدەش API sID",
"Sougou Search API SK": "Sougou ئىزدەش API SK", "Sougou Search API SK": "Sougou ئىزدەش API SK",
"Source": "مەنبە", "Source": "مەنبە",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika مۇلازىمېتىر URL زۆرۈر.", "Tika Server URL required.": "Tika مۇلازىمېتىر URL زۆرۈر.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "تېما", "Title": "تېما",
"Title Auto-Generation": "ئاپتوماتىك تېما ھاسىل قىلىش", "Title Auto-Generation": "ئاپتوماتىك تېما ھاسىل قىلىش",
"Title cannot be an empty string.": "تېما بوش بولسا بولمايدۇ.", "Title cannot be an empty string.": "تېما بوش بولسا بولمايدۇ.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "قوراللار خالىغان كود ئىجرا قىلىشقا ئىمكان بېرىدىغان فۇنكسىيە چاقىرىش سىستېمىسىغا ئىگە.", "Tools have a function calling system that allows arbitrary code execution.": "قوراللار خالىغان كود ئىجرا قىلىشقا ئىمكان بېرىدىغان فۇنكسىيە چاقىرىش سىستېمىسىغا ئىگە.",
"Tools Public Sharing": "قوراللارنى ئاممىغا ھەمبەھىرلەش", "Tools Public Sharing": "قوراللارنى ئاممىغا ھەمبەھىرلەش",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K قايتا تەرتىپلەش", "Top K Reranker": "Top K قايتا تەرتىپلەش",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "سۆھبەتتە تور ئىزدەش", "Web Search in Chat": "سۆھبەتتە تور ئىزدەش",
"Web Search Query Generation": "تور ئىزدەش سۇئالى ھاسىل قىلىش", "Web Search Query Generation": "تور ئىزدەش سۇئالى ھاسىل قىلىش",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI تەڭشەكلىرى", "WebUI Settings": "WebUI تەڭشەكلىرى",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI \"{{url}}\" غا تەلەپ يوللايدۇ", "WebUI will make requests to \"{{url}}\"": "WebUI \"{{url}}\" غا تەلەپ يوللايدۇ",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "قۇرۇق ھۆججەت چىقىرىشقا بولمايدۇ.", "You cannot upload an empty file.": "قۇرۇق ھۆججەت چىقىرىشقا بولمايدۇ.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "ھۆججەت چىقىرىش ھوقۇقىڭىز يوق.", "You do not have permission to upload files.": "ھۆججەت چىقىرىش ھوقۇقىڭىز يوق.",
"You have no archived conversations.": "ئارخىپلانغان سۆھبەت يوق.", "You have no archived conversations.": "ئارخىپلانغان سۆھبەت يوق.",
"You have shared this chat": "بۇ سۆھبەتنى ھەمبەھىرلىدىڭىز", "You have shared this chat": "بۇ سۆھبەتنى ھەمبەھىرلىدىڭىز",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків", "{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
"{{COUNT}} Replies": "{{COUNT}} Відповіді", "{{COUNT}} Replies": "{{COUNT}} Відповіді",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Додати текстовий вміст", "Add text content": "Додати текстовий вміст",
"Add User": "Додати користувача", "Add User": "Додати користувача",
"Add User Group": "Додати групу користувачів", "Add User Group": "Додати групу користувачів",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Усі", "All": "Усі",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Усі документи",
"All models deleted successfully": "Усі моделі видалені успішно", "All models deleted successfully": "Усі моделі видалені успішно",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Дозволити керування чатом", "Allow Chat Controls": "Дозволити керування чатом",
@ -136,6 +138,7 @@
"API keys": "Ключі API", "API keys": "Ключі API",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN застосунку", "Application DN": "DN застосунку",
@ -154,6 +157,7 @@
"Are you sure?": "Ви впевнені?", "Are you sure?": "Ви впевнені?",
"Arena Models": "Моделі Arena", "Arena Models": "Моделі Arena",
"Artifacts": "Артефакти", "Artifacts": "Артефакти",
"Asc": "",
"Ask": "Запитати", "Ask": "Запитати",
"Ask a question": "Задати питання", "Ask a question": "Задати питання",
"Assistant": "Асистент", "Assistant": "Асистент",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія", "Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
"Camera": "Камера", "Camera": "Камера",
"Cancel": "Скасувати", "Cancel": "Скасувати",
"Cannot create an empty note.": "",
"Capabilities": "Можливості", "Capabilities": "Можливості",
"Capture": "Захоплення", "Capture": "Захоплення",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Назва каналу", "Channel Name": "Назва каналу",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Згорнути", "Collapse": "Згорнути",
"Collection": "Колекція", "Collection": "Колекція",
"Collections": "",
"Color": "Колір", "Color": "Колір",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API ключ", "ComfyUI API Key": "ComfyUI API ключ",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Створити новий ключ", "Create new key": "Створити новий ключ",
"Create new secret key": "Створити новий секретний ключ", "Create new secret key": "Створити новий секретний ключ",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Створено у", "Created at": "Створено у",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Видалено {{name}}", "Deleted {{name}}": "Видалено {{name}}",
"Deleted User": "Видалений користувач", "Deleted User": "Видалений користувач",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Опишіть вашу базу знань та цілі", "Describe your knowledge base and objectives": "Опишіть вашу базу знань та цілі",
"Description": "Опис", "Description": "Опис",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Завантажити як SVG", "Download as SVG": "Завантажити як SVG",
"Download canceled": "Завантаження скасовано", "Download canceled": "Завантаження скасовано",
"Download Database": "Завантажити базу даних", "Download Database": "Завантажити базу даних",
"Drag and drop a file to upload or select a file to view": "Перетягніть файл для завантаження або виберіть файл для перегляду",
"Draw": "Малювати", "Draw": "Малювати",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Введіть ключ API Kagi Search", "Enter Kagi Search API Key": "Введіть ключ API Kagi Search",
"Enter Key Behavior": "Введіть поведінку клавіші", "Enter Key Behavior": "Введіть поведінку клавіші",
"Enter language codes": "Введіть мовні коди", "Enter language codes": "Введіть мовні коди",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "Введіть ID моделі", "Enter Model ID": "Введіть ID моделі",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Введіть ключ API для SearchApi", "Enter SearchApi API Key": "Введіть ключ API для SearchApi",
"Enter SearchApi Engine": "Введіть SearchApi рушія", "Enter SearchApi Engine": "Введіть SearchApi рушія",
"Enter Searxng Query URL": "Введіть URL-адресу запиту Searxng", "Enter Searxng Query URL": "Введіть URL-адресу запиту Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Введіть насіння", "Enter Seed": "Введіть насіння",
"Enter SerpApi API Key": "Введіть ключ API для SerpApi", "Enter SerpApi API Key": "Введіть ключ API для SerpApi",
"Enter SerpApi Engine": "Введіть рушій SerpApi", "Enter SerpApi Engine": "Введіть рушій SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну", "Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Ключ API Google PSE", "Google PSE API Key": "Ключ API Google PSE",
"Google PSE Engine Id": "Id рушія Google PSE", "Google PSE Engine Id": "Id рушія Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Група", "Group": "Група",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Групу успішно створено", "Group created successfully": "Групу успішно створено",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Імпорт конфігурації з файлу JSON", "Import Config from JSON File": "Імпорт конфігурації з файлу JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Імпорт пресетів", "Import Presets": "Імпорт пресетів",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Ліцензія", "License": "Ліцензія",
"Lift List": "", "Lift List": "",
"Light": "Світла", "Light": "Світла",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Слухаю...", "Listening...": "Слухаю...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.", "LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Назвіть вашу базу знань", "Name your knowledge base": "Назвіть вашу базу знань",
"Native": "Рідний", "Native": "Рідний",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Новий чат", "New Chat": "Новий чат",
"New Folder": "Нова папка", "New Folder": "Нова папка",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Новий пароль", "New Password": "Новий пароль",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Контент не знайдено.", "No content found": "Контент не знайдено.",
"No content found in file.": "",
"No content to speak": "Нема чого говорити", "No content to speak": "Нема чого говорити",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Відстань недоступна", "No distance available": "Відстань недоступна",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Відгуків не знайдено", "No feedbacks found": "Відгуків не знайдено",
"No file selected": "Файл не обрано", "No file selected": "Файл не обрано",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Немає груп з доступом, додайте групу для надання доступу", "No groups with access, add a group to grant access": "Немає груп з доступом, додайте групу для надання доступу",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS або JavaScript контент не знайдено.", "No HTML, CSS, or JavaScript content found.": "HTML, CSS або JavaScript контент не знайдено.",
"No inference engine with management support found": "Не знайдено двигуна висновків з підтримкою керування", "No inference engine with management support found": "Не знайдено двигуна висновків з підтримкою керування",
"No knowledge bases found.": "",
"No knowledge found": "Знання не знайдено.", "No knowledge found": "Знання не знайдено.",
"No memories to clear": "Немає спогадів для очищення", "No memories to clear": "Немає спогадів для очищення",
"No model IDs": "Немає ID моделей", "No model IDs": "Немає ID моделей",
@ -1309,6 +1323,8 @@
"Read": "Читати", "Read": "Читати",
"Read Aloud": "Читати вголос", "Read Aloud": "Читати вголос",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Зусилля на міркування", "Reasoning Effort": "Зусилля на міркування",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1419,6 +1435,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Пошук знань для \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Пошук знань для \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "Searxng Query URL", "Searxng Query URL": "Searxng Query URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Див. readme.md для інструкцій", "See readme.md for instructions": "Див. readme.md для інструкцій",
"See what's new": "Подивіться, що нового", "See what's new": "Подивіться, що нового",
"Seed": "Сід", "Seed": "Сід",
@ -1493,6 +1510,7 @@
"Show": "Показати", "Show": "Показати",
"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу", "Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису", "Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Показати модель", "Show Model": "Показати модель",
@ -1517,6 +1535,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Джерело", "Source": "Джерело",
@ -1627,6 +1646,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Потрібна URL-адреса сервера Tika.", "Tika Server URL required.": "Потрібна URL-адреса сервера Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Заголовок", "Title": "Заголовок",
"Title Auto-Generation": "Автогенерація заголовків", "Title Auto-Generation": "Автогенерація заголовків",
"Title cannot be an empty string.": "Заголовок не може бути порожнім рядком.", "Title cannot be an empty string.": "Заголовок не може бути порожнім рядком.",
@ -1663,6 +1683,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.", "Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
"Tools Public Sharing": "Публічний обмін інструментами", "Tools Public Sharing": "Публічний обмін інструментами",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Реранкер", "Top K Reranker": "Top K Реранкер",
"Transformers": "Трансформери", "Transformers": "Трансформери",
@ -1769,7 +1790,7 @@
"Web Search in Chat": "Пошук в інтернеті в чаті", "Web Search in Chat": "Пошук в інтернеті в чаті",
"Web Search Query Generation": "Генерація запиту для пошуку в мережі", "Web Search Query Generation": "Генерація запиту для пошуку в мережі",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Налаштування WebUI", "WebUI Settings": "Налаштування WebUI",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1806,6 +1827,7 @@
"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.", "You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.", "You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
"You have no archived conversations.": "У вас немає архівованих розмов.", "You have no archived conversations.": "У вас немає архівованих розмов.",
"You have shared this chat": "Ви поділилися цим чатом", "You have shared this chat": "Ви поділилися цим чатом",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "", "{{COUNT}} Available Tools": "",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "متن کا مواد شامل کریں", "Add text content": "متن کا مواد شامل کریں",
"Add User": "صارف شامل کریں", "Add User": "صارف شامل کریں",
"Add User Group": "", "Add User Group": "",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "", "All": "",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "تمام دستاویزات",
"All models deleted successfully": "", "All models deleted successfully": "",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "", "Allow Chat Controls": "",
@ -136,6 +138,7 @@
"API keys": "API کیز", "API keys": "API کیز",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "", "Application DN": "",
@ -154,6 +157,7 @@
"Are you sure?": "کیا آپ کو یقین ہے؟", "Are you sure?": "کیا آپ کو یقین ہے؟",
"Arena Models": "ارینا ماڈلز", "Arena Models": "ارینا ماڈلز",
"Artifacts": "نوادرات", "Artifacts": "نوادرات",
"Asc": "",
"Ask": "", "Ask": "",
"Ask a question": "سوال پوچھیں", "Ask a question": "سوال پوچھیں",
"Assistant": "اسسٹنٹ", "Assistant": "اسسٹنٹ",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے", "Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
"Camera": "کیمرہ", "Camera": "کیمرہ",
"Cancel": "منسوخ کریں", "Cancel": "منسوخ کریں",
"Cannot create an empty note.": "",
"Capabilities": "صلاحیتیں", "Capabilities": "صلاحیتیں",
"Capture": "", "Capture": "",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "کلیکشن", "Collection": "کلیکشن",
"Collections": "",
"Color": "", "Color": "",
"ComfyUI": "کومفی یو آئی", "ComfyUI": "کومفی یو آئی",
"ComfyUI API Key": "", "ComfyUI API Key": "",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "نیا کلید بنائیں", "Create new key": "نیا کلید بنائیں",
"Create new secret key": "نیا خفیہ کلید بنائیں", "Create new secret key": "نیا خفیہ کلید بنائیں",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "پر بنایا گیا", "Created at": "پر بنایا گیا",
@ -429,6 +437,7 @@
"Deleted {{name}}": "حذف کر دیا گیا {{name}}", "Deleted {{name}}": "حذف کر دیا گیا {{name}}",
"Deleted User": "", "Deleted User": "",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "", "Describe your knowledge base and objectives": "",
"Description": "تفصیل", "Description": "تفصیل",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "", "Download as SVG": "",
"Download canceled": "ڈاؤن لوڈ منسوخ کر دیا گیا", "Download canceled": "ڈاؤن لوڈ منسوخ کر دیا گیا",
"Download Database": "ڈیٹا بیس ڈاؤن لوڈ کریں", "Download Database": "ڈیٹا بیس ڈاؤن لوڈ کریں",
"Drag and drop a file to upload or select a file to view": "",
"Draw": "ڈرائنگ کریں", "Draw": "ڈرائنگ کریں",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "", "Enter Kagi Search API Key": "",
"Enter Key Behavior": "", "Enter Key Behavior": "",
"Enter language codes": "زبان کے کوڈ درج کریں", "Enter language codes": "زبان کے کوڈ درج کریں",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "", "Enter Mistral API Key": "",
"Enter Model ID": "ماڈل آئی ڈی درج کریں", "Enter Model ID": "ماڈل آئی ڈی درج کریں",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "تلاش API کلید داخل کریں", "Enter SearchApi API Key": "تلاش API کلید داخل کریں",
"Enter SearchApi Engine": "تلاش انجن درج کریں", "Enter SearchApi Engine": "تلاش انجن درج کریں",
"Enter Searxng Query URL": "سیرنگ استفسار یو آر ایل درج کریں", "Enter Searxng Query URL": "سیرنگ استفسار یو آر ایل درج کریں",
"Enter Searxng search language": "",
"Enter Seed": "", "Enter Seed": "",
"Enter SerpApi API Key": "", "Enter SerpApi API Key": "",
"Enter SerpApi Engine": "", "Enter SerpApi Engine": "",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام", "Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "گوگل پی ایس ای API کی کلید", "Google PSE API Key": "گوگل پی ایس ای API کی کلید",
"Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی", "Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "گروپ", "Group": "گروپ",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
@ -891,7 +901,6 @@
"Import Config from JSON File": "JSON فائل سے تشکیلات درآمد کریں", "Import Config from JSON File": "JSON فائل سے تشکیلات درآمد کریں",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "", "License": "",
"Lift List": "", "Lift List": "",
"Light": "روشنی", "Light": "روشنی",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "سن رہے ہیں...", "Listening...": "سن رہے ہیں...",
"Llama.cpp": "", "Llama.cpp": "",
"LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں", "LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "نئی بات چیت", "New Chat": "نئی بات چیت",
"New Folder": "", "New Folder": "",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "نیا پاس ورڈ", "New Password": "نیا پاس ورڈ",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "کوئی مواد نہیں ملا", "No content found": "کوئی مواد نہیں ملا",
"No content found in file.": "",
"No content to speak": "بولنے کے لیے کوئی مواد نہیں", "No content to speak": "بولنے کے لیے کوئی مواد نہیں",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "فاصلہ دستیاب نہیں ہے", "No distance available": "فاصلہ دستیاب نہیں ہے",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "کوئی تبصرے نہیں ملے", "No feedbacks found": "کوئی تبصرے نہیں ملے",
"No file selected": "کوئی فائل منتخب نہیں کی گئی", "No file selected": "کوئی فائل منتخب نہیں کی گئی",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "", "No groups with access, add a group to grant access": "",
"No HTML, CSS, or JavaScript content found.": "کوئی HTML، CSS، یا جاوا اسکرپٹ مواد نہیں ملا", "No HTML, CSS, or JavaScript content found.": "کوئی HTML، CSS، یا جاوا اسکرپٹ مواد نہیں ملا",
"No inference engine with management support found": "", "No inference engine with management support found": "",
"No knowledge bases found.": "",
"No knowledge found": "کوئی معلومات نہیں ملی", "No knowledge found": "کوئی معلومات نہیں ملی",
"No memories to clear": "", "No memories to clear": "",
"No model IDs": "", "No model IDs": "",
@ -1309,6 +1323,8 @@
"Read": "", "Read": "",
"Read Aloud": "بُلند آواز میں پڑھیں", "Read Aloud": "بُلند آواز میں پڑھیں",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "", "Reasoning Effort": "",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" کے لیے علم کی تلاش", "Searching Knowledge for \"{{searchQuery}}\"": "\"{{searchQuery}}\" کے لیے علم کی تلاش",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "تلاش کا سوال URL", "Searxng Query URL": "تلاش کا سوال URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "ہدایات کے لیے readme.md دیکھیں", "See readme.md for instructions": "ہدایات کے لیے readme.md دیکھیں",
"See what's new": "نیا کیا ہے دیکھیں", "See what's new": "نیا کیا ہے دیکھیں",
"Seed": "بیج", "Seed": "بیج",
@ -1491,6 +1508,7 @@
"Show": "دکھائیں", "Show": "دکھائیں",
"Show \"What's New\" modal on login": "", "Show \"What's New\" modal on login": "",
"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں", "Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "ماخذ", "Source": "ماخذ",
@ -1625,6 +1644,7 @@
"Tika": "ٹیکہ", "Tika": "ٹیکہ",
"Tika Server URL required.": "ٹکا سرور یو آر ایل درکار ہے", "Tika Server URL required.": "ٹکا سرور یو آر ایل درکار ہے",
"Tiktoken": "ٹک ٹوکن", "Tiktoken": "ٹک ٹوکن",
"Timeout": "",
"Title": "عنوان", "Title": "عنوان",
"Title Auto-Generation": "خودکار عنوان تخلیق", "Title Auto-Generation": "خودکار عنوان تخلیق",
"Title cannot be an empty string.": "عنوان خالی اسٹرنگ نہیں ہو سکتا", "Title cannot be an empty string.": "عنوان خالی اسٹرنگ نہیں ہو سکتا",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے", "Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
"Tools Public Sharing": "", "Tools Public Sharing": "",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "اوپر کے K", "Top K": "اوپر کے K",
"Top K Reranker": "", "Top K Reranker": "",
"Transformers": "", "Transformers": "",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "", "Web Search in Chat": "",
"Web Search Query Generation": "", "Web Search Query Generation": "",
"Webhook URL": "ویب ہُک یو آر ایل", "Webhook URL": "ویب ہُک یو آر ایل",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "ویب UI ترتیبات", "WebUI Settings": "ویب UI ترتیبات",
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}\"": "", "WebUI will make requests to \"{{url}}\"": "",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے", "You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "", "You do not have permission to upload files.": "",
"You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں", "You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں",
"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے", "You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} та мавжуд воситалар", "{{COUNT}} Available Tools": "{{COUNT}} та мавжуд воситалар",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} та яширин чизиқ", "{{COUNT}} hidden lines": "{{COUNT}} та яширин чизиқ",
"{{COUNT}} Replies": "{{COUNT}} та жавоб", "{{COUNT}} Replies": "{{COUNT}} та жавоб",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Матн таркибини қўшинг", "Add text content": "Матн таркибини қўшинг",
"Add User": "Фойдаланувчи қўшиш", "Add User": "Фойдаланувчи қўшиш",
"Add User Group": "Фойдаланувчилар гуруҳини қўшиш", "Add User Group": "Фойдаланувчилар гуруҳини қўшиш",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Ҳаммаси", "All": "Ҳаммаси",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Барча Ҳужжатлар",
"All models deleted successfully": "Барча моделлар муваффақиятли ўчирилди", "All models deleted successfully": "Барча моделлар муваффақиятли ўчирилди",
"Allow Call": "Қўнғироққа рухсат бериш", "Allow Call": "Қўнғироққа рухсат бериш",
"Allow Chat Controls": "Чат бошқарувига рухсат беринг", "Allow Chat Controls": "Чат бошқарувига рухсат беринг",
@ -136,6 +138,7 @@
"API keys": "Дастурий Илова Интерфейси(API) калитлари", "API keys": "Дастурий Илова Интерфейси(API) калитлари",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "Дастурий Илова Интерфейси(API) версияси", "API Version": "Дастурий Илова Интерфейси(API) версияси",
"API Version is required": "", "API Version is required": "",
"Application DN": "Ilovaning noyob aniqlovchisi(DN)", "Application DN": "Ilovaning noyob aniqlovchisi(DN)",
@ -154,6 +157,7 @@
"Are you sure?": "Ишончингиз комилми?", "Are you sure?": "Ишончингиз комилми?",
"Arena Models": "Арена моделлари", "Arena Models": "Арена моделлари",
"Artifacts": "Артефактлар", "Artifacts": "Артефактлар",
"Asc": "",
"Ask": "Сўранг", "Ask": "Сўранг",
"Ask a question": "Савол беринг", "Ask a question": "Савол беринг",
"Assistant": "Ёрдамчи", "Assistant": "Ёрдамчи",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди", "Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди",
"Camera": "Камера", "Camera": "Камера",
"Cancel": "Бекор қилиш", "Cancel": "Бекор қилиш",
"Cannot create an empty note.": "",
"Capabilities": "Имкониятлар", "Capabilities": "Имкониятлар",
"Capture": "Қўлга олиш", "Capture": "Қўлга олиш",
"Capture Audio": "Аудио ёзиб олиш", "Capture Audio": "Аудио ёзиб олиш",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Канал номи", "Channel Name": "Канал номи",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Каналлар", "Channels": "Каналлар",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Йиқилиш", "Collapse": "Йиқилиш",
"Collection": "Тўплам", "Collection": "Тўплам",
"Collections": "",
"Color": "Ранг", "Color": "Ранг",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API Key", "ComfyUI API Key": "ComfyUI API Key",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Янги калит яратинг", "Create new key": "Янги калит яратинг",
"Create new secret key": "Янги махфий калит яратинг", "Create new secret key": "Янги махфий калит яратинг",
"Create note": "",
"Create Note": "Эслатма яратиш", "Create Note": "Эслатма яратиш",
"Create your first note by clicking on the plus button below.": "Қуйидаги ортиқча тугмасини босиш орқали биринчи қайдингизни яратинг.", "Create your first note by clicking on the plus button below.": "Қуйидаги ортиқча тугмасини босиш орқали биринчи қайдингизни яратинг.",
"Created at": "Яратилган", "Created at": "Яратилган",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} ўчирилди", "Deleted {{name}}": "{{name}} ўчирилди",
"Deleted User": "Ўчирилган фойдаланувчи", "Deleted User": "Ўчирилган фойдаланувчи",
"Deployment names are required for Azure OpenAI": "Azure OpenAI учун тарқатиш номлари талаб қилинади", "Deployment names are required for Azure OpenAI": "Azure OpenAI учун тарқатиш номлари талаб қилинади",
"Desc": "",
"Describe your knowledge base and objectives": "Билим базаси ва мақсадларингизни тавсифланг", "Describe your knowledge base and objectives": "Билим базаси ва мақсадларингизни тавсифланг",
"Description": "Тавсиф", "Description": "Тавсиф",
"Detect Artifacts Automatically": "Артефактларни автоматик аниқлаш", "Detect Artifacts Automatically": "Артефактларни автоматик аниқлаш",
@ -487,7 +496,6 @@
"Download as SVG": "СВГ сифатида юклаб олинг", "Download as SVG": "СВГ сифатида юклаб олинг",
"Download canceled": "Юклаб олиш бекор қилинди", "Download canceled": "Юклаб олиш бекор қилинди",
"Download Database": "Маълумотлар базасини юклаб олиш", "Download Database": "Маълумотлар базасини юклаб олиш",
"Drag and drop a file to upload or select a file to view": "Юклаш учун файлни судраб ташланг ёки кўриш учун файлни танланг",
"Draw": "Чизиш", "Draw": "Чизиш",
"Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг", "Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "масалан. 30s, 10m. Яроқли вақт бирликлари 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "масалан. 30s, 10m. Яроқли вақт бирликлари 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search АПИ калитини киритинг", "Enter Kagi Search API Key": "Kagi Search АПИ калитини киритинг",
"Enter Key Behavior": "Асосий хатти-ҳаракатни киритинг", "Enter Key Behavior": "Асосий хатти-ҳаракатни киритинг",
"Enter language codes": "Тил кодларини киритинг", "Enter language codes": "Тил кодларини киритинг",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Mistral АПИ калитини киритинг", "Enter Mistral API Key": "Mistral АПИ калитини киритинг",
"Enter Model ID": "Модел идентификаторини киритинг", "Enter Model ID": "Модел идентификаторини киритинг",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi АПИ калитини киритинг", "Enter SearchApi API Key": "SearchApi АПИ калитини киритинг",
"Enter SearchApi Engine": "SearchApi тизимига киринг", "Enter SearchApi Engine": "SearchApi тизимига киринг",
"Enter Searxng Query URL": "Searxng сўрови УРЛ манзилини киритинг", "Enter Searxng Query URL": "Searxng сўрови УРЛ манзилини киритинг",
"Enter Searxng search language": "",
"Enter Seed": "Seedга киринг", "Enter Seed": "Seedга киринг",
"Enter SerpApi API Key": "SerpApi АПИ калитини киритинг", "Enter SerpApi API Key": "SerpApi АПИ калитини киритинг",
"Enter SerpApi Engine": "SerpApi двигателига киринг", "Enter SerpApi Engine": "SerpApi двигателига киринг",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Файл таркибини юклаб бўлмади.", "Failed to load file content.": "Файл таркибини юклаб бўлмади.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади", "Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Гоогле ПСЕ АПИ калити", "Google PSE API Key": "Гоогле ПСЕ АПИ калити",
"Google PSE Engine Id": "Гоогле ПСЕ Энгине идентификатори", "Google PSE Engine Id": "Гоогле ПСЕ Энгине идентификатори",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Гуруҳ", "Group": "Гуруҳ",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Гуруҳ муваффақиятли яратилди", "Group created successfully": "Гуруҳ муваффақиятли яратилди",
@ -891,7 +901,6 @@
"Import Config from JSON File": "ЖСОН файлидан конфигурацияни импорт қилинг", "Import Config from JSON File": "ЖСОН файлидан конфигурацияни импорт қилинг",
"Import From Link": "Ҳаволадан импорт қилиш", "Import From Link": "Ҳаволадан импорт қилиш",
"Import Models": "", "Import Models": "",
"Import Notes": "Эслатмаларни импорт қилиш",
"Import Presets": "Олдиндан созламаларни импорт қилиш", "Import Presets": "Олдиндан созламаларни импорт қилиш",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Литсензия", "License": "Литсензия",
"Lift List": "", "Lift List": "",
"Light": "Нур", "Light": "Нур",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Тингланмоқда...", "Listening...": "Тингланмоқда...",
"Llama.cpp": "Ллама.cпп", "Llama.cpp": "Ллама.cпп",
"LLMs can make mistakes. Verify important information.": "ЛЛМлар хато қилишлари мумкин. Муҳим маълумотларни тасдиқланг.", "LLMs can make mistakes. Verify important information.": "ЛЛМлар хато қилишлари мумкин. Муҳим маълумотларни тасдиқланг.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Билимлар базасини номланг", "Name your knowledge base": "Билимлар базасини номланг",
"Native": "Маҳаллий", "Native": "Маҳаллий",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Янги чат", "New Chat": "Янги чат",
"New Folder": "Янги жилд", "New Folder": "Янги жилд",
"New Function": "Янги функсия", "New Function": "Янги функсия",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Янги парол", "New Password": "Янги парол",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Ҳеч қандай чат топилмади.", "No chats found.": "Ҳеч қандай чат топилмади.",
"No content": "Контент йўқ", "No content": "Контент йўқ",
"No content found": "Ҳеч қандай контент топилмади", "No content found": "Ҳеч қандай контент топилмади",
"No content found in file.": "Файлда контент топилмади.",
"No content to speak": "Гапирадиган таркиб йўқ", "No content to speak": "Гапирадиган таркиб йўқ",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Масофа мавжуд эмас", "No distance available": "Масофа мавжуд эмас",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Ҳеч қандай фикр топилмади", "No feedbacks found": "Ҳеч қандай фикр топилмади",
"No file selected": "Ҳеч қандай файл танланмаган", "No file selected": "Ҳеч қандай файл танланмаган",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Рухсат берилган гуруҳлар йўқ, рухсат бериш учун гуруҳ қўшинг", "No groups with access, add a group to grant access": "Рухсат берилган гуруҳлар йўқ, рухсат бериш учун гуруҳ қўшинг",
"No HTML, CSS, or JavaScript content found.": "HTML, CСС ёки ЖаваСcрипт контенти топилмади.", "No HTML, CSS, or JavaScript content found.": "HTML, CСС ёки ЖаваСcрипт контенти топилмади.",
"No inference engine with management support found": "Бошқарув ёрдами билан хулоса чиқариш механизми топилмади", "No inference engine with management support found": "Бошқарув ёрдами билан хулоса чиқариш механизми топилмади",
"No knowledge bases found.": "",
"No knowledge found": "Ҳеч қандай билим топилмади", "No knowledge found": "Ҳеч қандай билим топилмади",
"No memories to clear": "Тозалаш учун хотиралар йўқ", "No memories to clear": "Тозалаш учун хотиралар йўқ",
"No model IDs": "Модел идентификаторлари йўқ", "No model IDs": "Модел идентификаторлари йўқ",
@ -1309,6 +1323,8 @@
"Read": "Ўқинг", "Read": "Ўқинг",
"Read Aloud": "Овоз чиқариб ўқинг", "Read Aloud": "Овоз чиқариб ўқинг",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Мулоҳаза юритиш ҳаракатлари", "Reasoning Effort": "Мулоҳаза юритиш ҳаракатлари",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "“{{searchQuery}}” бўйича маълумотлар қидирилмоқда", "Searching Knowledge for \"{{searchQuery}}\"": "“{{searchQuery}}” бўйича маълумотлар қидирилмоқда",
"Searching the web": "Интернетда қидирилмоқда...", "Searching the web": "Интернетда қидирилмоқда...",
"Searxng Query URL": "Searxng сўрови УРЛ", "Searxng Query URL": "Searxng сўрови УРЛ",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Кўрсатмалар учун readme.md га қаранг", "See readme.md for instructions": "Кўрсатмалар учун readme.md га қаранг",
"See what's new": "Нима янгиликлар борлигини кўринг", "See what's new": "Нима янгиликлар борлигини кўринг",
"Seed": "Дастлабки маълумот", "Seed": "Дастлабки маълумот",
@ -1491,6 +1508,7 @@
"Show": "Кўрсатиш", "Show": "Кўрсатиш",
"Show \"What's New\" modal on login": "Киришда \"Янги нарсалар\" модалини кўрсатинг", "Show \"What's New\" modal on login": "Киришда \"Янги нарсалар\" модалини кўрсатинг",
"Show Admin Details in Account Pending Overlay": "Ҳисоб кутилаётган қатламда администратор маълумотларини кўрсатиш", "Show Admin Details in Account Pending Overlay": "Ҳисоб кутилаётган қатламда администратор маълумотларини кўрсатиш",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Моделни кўрсатиш", "Show Model": "Моделни кўрсатиш",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Sougou Сеарч АПИ сИД", "Sougou Search API sID": "Sougou Сеарч АПИ сИД",
"Sougou Search API SK": "Sougou Сеарч АПИ СК", "Sougou Search API SK": "Sougou Сеарч АПИ СК",
"Source": "Манба", "Source": "Манба",
@ -1625,6 +1644,7 @@
"Tika": "Тика", "Tika": "Тика",
"Tika Server URL required.": "Тика Сервер УРЛ манзили талаб қилинади.", "Tika Server URL required.": "Тика Сервер УРЛ манзили талаб қилинади.",
"Tiktoken": "Тиктокен", "Tiktoken": "Тиктокен",
"Timeout": "",
"Title": "Сарлавҳа", "Title": "Сарлавҳа",
"Title Auto-Generation": "Сарлавҳани автоматик яратиш", "Title Auto-Generation": "Сарлавҳани автоматик яратиш",
"Title cannot be an empty string.": "Сарлавҳа бўш қатор бўлиши мумкин эмас.", "Title cannot be an empty string.": "Сарлавҳа бўш қатор бўлиши мумкин эмас.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Асбоблар ўзбошимчалик билан кодни бажаришга имкон берувчи функсияларни чақириш тизимига эга.", "Tools have a function calling system that allows arbitrary code execution.": "Асбоблар ўзбошимчалик билан кодни бажаришга имкон берувчи функсияларни чақириш тизимига эга.",
"Tools Public Sharing": "Умумий алмашиш воситалари", "Tools Public Sharing": "Умумий алмашиш воситалари",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Юқори К", "Top K": "Юқори К",
"Top K Reranker": "Топ К Реранкер", "Top K Reranker": "Топ К Реранкер",
"Transformers": "Трансформаторлар", "Transformers": "Трансформаторлар",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Чатда веб-қидирув", "Web Search in Chat": "Чатда веб-қидирув",
"Web Search Query Generation": "Веб-қидирув сўровларини яратиш", "Web Search Query Generation": "Веб-қидирув сўровларини яратиш",
"Webhook URL": "Webhook УРЛ манзили", "Webhook URL": "Webhook УРЛ манзили",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI созламалари", "WebUI Settings": "WebUI созламалари",
"WebUI URL": "WebUI УРЛ", "WebUI URL": "WebUI УРЛ",
"WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” манзилига сўров юборади", "WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” манзилига сўров юборади",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Сиз бўш файлни юклай олмайсиз.", "You cannot upload an empty file.": "Сиз бўш файлни юклай олмайсиз.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Сизда файлларни юклаш учун рухсат йўқ.", "You do not have permission to upload files.": "Сизда файлларни юклаш учун рухсат йўқ.",
"You have no archived conversations.": "Сизда архивланган суҳбатлар йўқ.", "You have no archived conversations.": "Сизда архивланган суҳбатлар йўқ.",
"You have shared this chat": "Сиз бу чатни баҳам кўрдингиз", "You have shared this chat": "Сиз бу чатни баҳам кўрдингиз",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} ta mavjud vositalar", "{{COUNT}} Available Tools": "{{COUNT}} ta mavjud vositalar",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} ta yashirin chiziq", "{{COUNT}} hidden lines": "{{COUNT}} ta yashirin chiziq",
"{{COUNT}} Replies": "{{COUNT}} ta javob", "{{COUNT}} Replies": "{{COUNT}} ta javob",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Matn tarkibini qo'shing", "Add text content": "Matn tarkibini qo'shing",
"Add User": "Foydalanuvchi qo'shish", "Add User": "Foydalanuvchi qo'shish",
"Add User Group": "Foydalanuvchilar guruhini qo'shish", "Add User Group": "Foydalanuvchilar guruhini qo'shish",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Hammasi", "All": "Hammasi",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Barcha Hujjatlar",
"All models deleted successfully": "Barcha modellar muvaffaqiyatli o'chirildi", "All models deleted successfully": "Barcha modellar muvaffaqiyatli o'chirildi",
"Allow Call": "Qo'ng'iroqqa ruxsat berish", "Allow Call": "Qo'ng'iroqqa ruxsat berish",
"Allow Chat Controls": "Chat boshqaruviga ruxsat bering", "Allow Chat Controls": "Chat boshqaruviga ruxsat bering",
@ -136,6 +138,7 @@
"API keys": "API kalitlari", "API keys": "API kalitlari",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "API versiyasi", "API Version": "API versiyasi",
"API Version is required": "", "API Version is required": "",
"Application DN": "Ilova DN", "Application DN": "Ilova DN",
@ -154,6 +157,7 @@
"Are you sure?": "Ishonchingiz komilmi?", "Are you sure?": "Ishonchingiz komilmi?",
"Arena Models": "Arena modellari", "Arena Models": "Arena modellari",
"Artifacts": "Artefaktlar", "Artifacts": "Artefaktlar",
"Asc": "",
"Ask": "So'rang", "Ask": "So'rang",
"Ask a question": "Savol bering", "Ask a question": "Savol bering",
"Assistant": "Yordamchi", "Assistant": "Yordamchi",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi", "Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi",
"Camera": "Kamera", "Camera": "Kamera",
"Cancel": "Bekor qilish", "Cancel": "Bekor qilish",
"Cannot create an empty note.": "",
"Capabilities": "Imkoniyatlar", "Capabilities": "Imkoniyatlar",
"Capture": "Qo'lga olish", "Capture": "Qo'lga olish",
"Capture Audio": "Audio yozib olish", "Capture Audio": "Audio yozib olish",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanal nomi", "Channel Name": "Kanal nomi",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanallar", "Channels": "Kanallar",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Yiqilish", "Collapse": "Yiqilish",
"Collection": "To'plam", "Collection": "To'plam",
"Collections": "",
"Color": "Rang", "Color": "Rang",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "ComfyUI API kaliti", "ComfyUI API Key": "ComfyUI API kaliti",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Yangi kalit yarating", "Create new key": "Yangi kalit yarating",
"Create new secret key": "Yangi maxfiy kalit yarating", "Create new secret key": "Yangi maxfiy kalit yarating",
"Create note": "",
"Create Note": "Eslatma yaratish", "Create Note": "Eslatma yaratish",
"Create your first note by clicking on the plus button below.": "Quyidagi ortiqcha tugmasini bosish orqali birinchi qaydingizni yarating.", "Create your first note by clicking on the plus button below.": "Quyidagi ortiqcha tugmasini bosish orqali birinchi qaydingizni yarating.",
"Created at": "Yaratilgan", "Created at": "Yaratilgan",
@ -429,6 +437,7 @@
"Deleted {{name}}": "{{name}} oʻchirildi", "Deleted {{name}}": "{{name}} oʻchirildi",
"Deleted User": "O'chirilgan foydalanuvchi", "Deleted User": "O'chirilgan foydalanuvchi",
"Deployment names are required for Azure OpenAI": "Azure OpenAI uchun tarqatish nomlari talab qilinadi", "Deployment names are required for Azure OpenAI": "Azure OpenAI uchun tarqatish nomlari talab qilinadi",
"Desc": "",
"Describe your knowledge base and objectives": "Bilim bazasi va maqsadlaringizni tavsiflang", "Describe your knowledge base and objectives": "Bilim bazasi va maqsadlaringizni tavsiflang",
"Description": "Tavsif", "Description": "Tavsif",
"Detect Artifacts Automatically": "Artefaktlarni avtomatik aniqlash", "Detect Artifacts Automatically": "Artefaktlarni avtomatik aniqlash",
@ -487,7 +496,6 @@
"Download as SVG": "SVG sifatida yuklab oling", "Download as SVG": "SVG sifatida yuklab oling",
"Download canceled": "Yuklab olish bekor qilindi", "Download canceled": "Yuklab olish bekor qilindi",
"Download Database": "Ma'lumotlar bazasini yuklab olish", "Download Database": "Ma'lumotlar bazasini yuklab olish",
"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", "Draw": "Chizish",
"Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang", "Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "masalan. '30s', '10m'. Yaroqli vaqt birliklari 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "masalan. '30s', '10m'. Yaroqli vaqt birliklari 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Kagi Search API kalitini kiriting", "Enter Kagi Search API Key": "Kagi Search API kalitini kiriting",
"Enter Key Behavior": "Asosiy xatti-harakatni kiriting", "Enter Key Behavior": "Asosiy xatti-harakatni kiriting",
"Enter language codes": "Til kodlarini kiriting", "Enter language codes": "Til kodlarini kiriting",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Mistral API kalitini kiriting", "Enter Mistral API Key": "Mistral API kalitini kiriting",
"Enter Model ID": "Model identifikatorini kiriting", "Enter Model ID": "Model identifikatorini kiriting",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "SearchApi API kalitini kiriting", "Enter SearchApi API Key": "SearchApi API kalitini kiriting",
"Enter SearchApi Engine": "SearchApi tizimiga kiring", "Enter SearchApi Engine": "SearchApi tizimiga kiring",
"Enter Searxng Query URL": "Searxng so'rovi URL manzilini kiriting", "Enter Searxng Query URL": "Searxng so'rovi URL manzilini kiriting",
"Enter Searxng search language": "",
"Enter Seed": "Seed-ga kiring", "Enter Seed": "Seed-ga kiring",
"Enter SerpApi API Key": "SerpApi API kalitini kiriting", "Enter SerpApi API Key": "SerpApi API kalitini kiriting",
"Enter SerpApi Engine": "SerpApi dvigateliga kiring", "Enter SerpApi Engine": "SerpApi dvigateliga kiring",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "Fayl tarkibini yuklab bolmadi.", "Failed to load file content.": "Fayl tarkibini yuklab bolmadi.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Bufer tarkibini oqib bolmadi", "Failed to read clipboard contents": "Bufer tarkibini oqib bolmadi",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Google PSE API kaliti", "Google PSE API Key": "Google PSE API kaliti",
"Google PSE Engine Id": "Google PSE Engine identifikatori", "Google PSE Engine Id": "Google PSE Engine identifikatori",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Guruh", "Group": "Guruh",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Guruh muvaffaqiyatli yaratildi", "Group created successfully": "Guruh muvaffaqiyatli yaratildi",
@ -891,7 +901,6 @@
"Import Config from JSON File": "JSON faylidan konfiguratsiyani import qiling", "Import Config from JSON File": "JSON faylidan konfiguratsiyani import qiling",
"Import From Link": "Havoladan import qilish", "Import From Link": "Havoladan import qilish",
"Import Models": "", "Import Models": "",
"Import Notes": "Eslatmalarni import qilish",
"Import Presets": "Oldindan sozlamalarni import qilish", "Import Presets": "Oldindan sozlamalarni import qilish",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Litsenziya", "License": "Litsenziya",
"Lift List": "", "Lift List": "",
"Light": "Nur", "Light": "Nur",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Tinglanmoqda...", "Listening...": "Tinglanmoqda...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"LLMs can make mistakes. Verify important information.": "LLMlar xato qilishlari mumkin. Muhim ma'lumotlarni tasdiqlang.", "LLMs can make mistakes. Verify important information.": "LLMlar xato qilishlari mumkin. Muhim ma'lumotlarni tasdiqlang.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilimlar bazasini nomlang", "Name your knowledge base": "Bilimlar bazasini nomlang",
"Native": "Mahalliy", "Native": "Mahalliy",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Yangi chat", "New Chat": "Yangi chat",
"New Folder": "Yangi jild", "New Folder": "Yangi jild",
"New Function": "Yangi funksiya", "New Function": "Yangi funksiya",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Yangi parol", "New Password": "Yangi parol",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "Hech qanday chat topilmadi.", "No chats found.": "Hech qanday chat topilmadi.",
"No content": "Kontent yo'q", "No content": "Kontent yo'q",
"No content found": "Hech qanday kontent topilmadi", "No content found": "Hech qanday kontent topilmadi",
"No content found in file.": "Faylda kontent topilmadi.",
"No content to speak": "Gapiradigan tarkib yo'q", "No content to speak": "Gapiradigan tarkib yo'q",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Masofa mavjud emas", "No distance available": "Masofa mavjud emas",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Hech qanday fikr topilmadi", "No feedbacks found": "Hech qanday fikr topilmadi",
"No file selected": "Hech qanday fayl tanlanmagan", "No file selected": "Hech qanday fayl tanlanmagan",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Ruxsat berilgan guruhlar yoq, ruxsat berish uchun guruh qoshing", "No groups with access, add a group to grant access": "Ruxsat berilgan guruhlar yoq, ruxsat berish uchun guruh qoshing",
"No HTML, CSS, or JavaScript content found.": "HTML, CSS yoki JavaScript kontenti topilmadi.", "No HTML, CSS, or JavaScript content found.": "HTML, CSS yoki JavaScript kontenti topilmadi.",
"No inference engine with management support found": "Boshqaruv yordami bilan xulosa chiqarish mexanizmi topilmadi", "No inference engine with management support found": "Boshqaruv yordami bilan xulosa chiqarish mexanizmi topilmadi",
"No knowledge bases found.": "",
"No knowledge found": "Hech qanday bilim topilmadi", "No knowledge found": "Hech qanday bilim topilmadi",
"No memories to clear": "Tozalash uchun xotiralar yo'q", "No memories to clear": "Tozalash uchun xotiralar yo'q",
"No model IDs": "Model identifikatorlari yo'q", "No model IDs": "Model identifikatorlari yo'q",
@ -1309,6 +1323,8 @@
"Read": "O'qing", "Read": "O'qing",
"Read Aloud": "Ovoz chiqarib o'qing", "Read Aloud": "Ovoz chiqarib o'qing",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Mulohaza yuritish harakatlari", "Reasoning Effort": "Mulohaza yuritish harakatlari",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1417,6 +1433,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "“{{searchQuery}}” boʻyicha maʼlumotlar qidirilmoqda", "Searching Knowledge for \"{{searchQuery}}\"": "“{{searchQuery}}” boʻyicha maʼlumotlar qidirilmoqda",
"Searching the web": "Internetda qidirilmoqda...", "Searching the web": "Internetda qidirilmoqda...",
"Searxng Query URL": "Searchxng so'rovi URL", "Searxng Query URL": "Searchxng so'rovi URL",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Ko'rsatmalar uchun readme.md ga qarang", "See readme.md for instructions": "Ko'rsatmalar uchun readme.md ga qarang",
"See what's new": "Nima yangiliklar borligini ko'ring", "See what's new": "Nima yangiliklar borligini ko'ring",
"Seed": "Urug'", "Seed": "Urug'",
@ -1491,6 +1508,7 @@
"Show": "Ko'rsatish", "Show": "Ko'rsatish",
"Show \"What's New\" modal on login": "Kirishda \"Yangi narsalar\" modalini ko'rsating", "Show \"What's New\" modal on login": "Kirishda \"Yangi narsalar\" modalini ko'rsating",
"Show Admin Details in Account Pending Overlay": "Hisob kutilayotgan qatlamda administrator malumotlarini korsatish", "Show Admin Details in Account Pending Overlay": "Hisob kutilayotgan qatlamda administrator malumotlarini korsatish",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modelni ko'rsatish", "Show Model": "Modelni ko'rsatish",
@ -1515,6 +1533,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Manba", "Source": "Manba",
@ -1625,6 +1644,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Tika Server URL manzili talab qilinadi.", "Tika Server URL required.": "Tika Server URL manzili talab qilinadi.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Sarlavha", "Title": "Sarlavha",
"Title Auto-Generation": "Sarlavhani avtomatik yaratish", "Title Auto-Generation": "Sarlavhani avtomatik yaratish",
"Title cannot be an empty string.": "Sarlavha bo'sh qator bo'lishi mumkin emas.", "Title cannot be an empty string.": "Sarlavha bo'sh qator bo'lishi mumkin emas.",
@ -1661,6 +1681,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Asboblar o'zboshimchalik bilan kodni bajarishga imkon beruvchi funksiyalarni chaqirish tizimiga ega.", "Tools have a function calling system that allows arbitrary code execution.": "Asboblar o'zboshimchalik bilan kodni bajarishga imkon beruvchi funksiyalarni chaqirish tizimiga ega.",
"Tools Public Sharing": "Umumiy almashish vositalari", "Tools Public Sharing": "Umumiy almashish vositalari",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Yuqori K", "Top K": "Yuqori K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformatorlar", "Transformers": "Transformatorlar",
@ -1767,7 +1788,7 @@
"Web Search in Chat": "Chatda veb-qidiruv", "Web Search in Chat": "Chatda veb-qidiruv",
"Web Search Query Generation": "Veb-qidiruv so'rovlarini yaratish", "Web Search Query Generation": "Veb-qidiruv so'rovlarini yaratish",
"Webhook URL": "Webhook URL manzili", "Webhook URL": "Webhook URL manzili",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "WebUI sozlamalari", "WebUI Settings": "WebUI sozlamalari",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” manziliga sorov yuboradi", "WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” manziliga sorov yuboradi",
@ -1804,6 +1825,7 @@
"You cannot upload an empty file.": "Siz bo'sh faylni yuklay olmaysiz.", "You cannot upload an empty file.": "Siz bo'sh faylni yuklay olmaysiz.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Sizda fayllarni yuklash uchun ruxsat yo'q.", "You do not have permission to upload files.": "Sizda fayllarni yuklash uchun ruxsat yo'q.",
"You have no archived conversations.": "Sizda arxivlangan suhbatlar yoʻq.", "You have no archived conversations.": "Sizda arxivlangan suhbatlar yoʻq.",
"You have shared this chat": "Siz bu chatni baham ko'rdingiz", "You have shared this chat": "Siz bu chatni baham ko'rdingiz",

View file

@ -12,8 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn", "{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn",
"{{COUNT}} characters": "", "{{COUNT}} characters": "",
"{{COUNT}} extracted lines": "", "{{COUNT}} extracted lines": "",
"{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn", "{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn",
"{{COUNT}} Replies": "{{COUNT}} Trả lời", "{{COUNT}} Replies": "{{COUNT}} Trả lời",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "", "{{COUNT}} Sources": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
@ -67,6 +69,7 @@
"Add text content": "Thêm nội dung văn bản", "Add text content": "Thêm nội dung văn bản",
"Add User": "Thêm người dùng", "Add User": "Thêm người dùng",
"Add User Group": "Thêm Nhóm Người dùng", "Add User Group": "Thêm Nhóm Người dùng",
"Add webpage": "",
"Additional Config": "", "Additional Config": "",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
"Additional Parameters": "", "Additional Parameters": "",
@ -84,7 +87,6 @@
"AI": "", "AI": "",
"All": "Tất cả", "All": "Tất cả",
"All chats have been unarchived.": "", "All chats have been unarchived.": "",
"All Documents": "Tất cả tài liệu",
"All models deleted successfully": "Tất cả các mô hình đã được xóa thành công", "All models deleted successfully": "Tất cả các mô hình đã được xóa thành công",
"Allow Call": "", "Allow Call": "",
"Allow Chat Controls": "Cho phép Điều khiển Chat", "Allow Chat Controls": "Cho phép Điều khiển Chat",
@ -136,6 +138,7 @@
"API keys": "API Keys", "API keys": "API Keys",
"API Keys": "", "API Keys": "",
"API Mode": "", "API Mode": "",
"API Timeout": "",
"API Version": "", "API Version": "",
"API Version is required": "", "API Version is required": "",
"Application DN": "DN Ứng dụng", "Application DN": "DN Ứng dụng",
@ -154,6 +157,7 @@
"Are you sure?": "Bạn có chắc chắn không?", "Are you sure?": "Bạn có chắc chắn không?",
"Arena Models": "Các Mô hình Arena", "Arena Models": "Các Mô hình Arena",
"Artifacts": "Kết quả tạo ra", "Artifacts": "Kết quả tạo ra",
"Asc": "",
"Ask": "Hỏi", "Ask": "Hỏi",
"Ask a question": "Đặt câu hỏi", "Ask a question": "Đặt câu hỏi",
"Assistant": "Trợ lý", "Assistant": "Trợ lý",
@ -219,6 +223,7 @@
"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT", "Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
"Camera": "Máy ảnh", "Camera": "Máy ảnh",
"Cancel": "Hủy bỏ", "Cancel": "Hủy bỏ",
"Cannot create an empty note.": "",
"Capabilities": "Năng lực", "Capabilities": "Năng lực",
"Capture": "Chụp", "Capture": "Chụp",
"Capture Audio": "", "Capture Audio": "",
@ -228,6 +233,7 @@
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Tên Kênh", "Channel Name": "Tên Kênh",
"Channel name cannot be empty.": "", "Channel name cannot be empty.": "",
"Channel name must be less than 128 characters": "",
"Channel Type": "", "Channel Type": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kênh", "Channels": "Kênh",
@ -297,6 +303,7 @@
"Collaboration channel where people join as members": "", "Collaboration channel where people join as members": "",
"Collapse": "Thu gọn", "Collapse": "Thu gọn",
"Collection": "Tổng hợp mọi tài liệu", "Collection": "Tổng hợp mọi tài liệu",
"Collections": "",
"Color": "Màu sắc", "Color": "Màu sắc",
"ComfyUI": "ComfyUI", "ComfyUI": "ComfyUI",
"ComfyUI API Key": "Khóa API ComfyUI", "ComfyUI API Key": "Khóa API ComfyUI",
@ -365,6 +372,7 @@
"Create Model": "", "Create Model": "",
"Create new key": "Tạo key mới", "Create new key": "Tạo key mới",
"Create new secret key": "Tạo key bí mật mới", "Create new secret key": "Tạo key bí mật mới",
"Create note": "",
"Create Note": "", "Create Note": "",
"Create your first note by clicking on the plus button below.": "", "Create your first note by clicking on the plus button below.": "",
"Created at": "Được tạo vào lúc", "Created at": "Được tạo vào lúc",
@ -429,6 +437,7 @@
"Deleted {{name}}": "Đã xóa {{name}}", "Deleted {{name}}": "Đã xóa {{name}}",
"Deleted User": "Người dùng đã xóa", "Deleted User": "Người dùng đã xóa",
"Deployment names are required for Azure OpenAI": "", "Deployment names are required for Azure OpenAI": "",
"Desc": "",
"Describe your knowledge base and objectives": "Mô tả cơ sở kiến thức và mục tiêu của bạn", "Describe your knowledge base and objectives": "Mô tả cơ sở kiến thức và mục tiêu của bạn",
"Description": "Mô tả", "Description": "Mô tả",
"Detect Artifacts Automatically": "", "Detect Artifacts Automatically": "",
@ -487,7 +496,6 @@
"Download as SVG": "Tải xuống dưới dạng SVG", "Download as SVG": "Tải xuống dưới dạng SVG",
"Download canceled": "Đã hủy download", "Download canceled": "Đã hủy download",
"Download Database": "Tải xuống Cơ sở dữ liệu", "Download Database": "Tải xuống Cơ sở dữ liệu",
"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ẽ", "Draw": "Vẽ",
"Drop any files here to upload": "", "Drop any files here to upload": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
@ -603,7 +611,6 @@
"Enter Kagi Search API Key": "Nhập Khóa API Kagi Search", "Enter Kagi Search API Key": "Nhập Khóa API Kagi Search",
"Enter Key Behavior": "Nhập Hành vi phím", "Enter Key Behavior": "Nhập Hành vi phím",
"Enter language codes": "Nhập mã ngôn ngữ", "Enter language codes": "Nhập mã ngôn ngữ",
"Enter MinerU API Key": "",
"Enter Mistral API Base URL": "", "Enter Mistral API Base URL": "",
"Enter Mistral API Key": "Nhập Khóa API Mistral", "Enter Mistral API Key": "Nhập Khóa API Mistral",
"Enter Model ID": "Nhập ID Mô hình", "Enter Model ID": "Nhập ID Mô hình",
@ -623,6 +630,7 @@
"Enter SearchApi API Key": "Nhập Khóa API SearchApi", "Enter SearchApi API Key": "Nhập Khóa API SearchApi",
"Enter SearchApi Engine": "Nhập Engine SearchApi", "Enter SearchApi Engine": "Nhập Engine SearchApi",
"Enter Searxng Query URL": "Nhập Query URL cho Searxng", "Enter Searxng Query URL": "Nhập Query URL cho Searxng",
"Enter Searxng search language": "",
"Enter Seed": "Nhập Seed", "Enter Seed": "Nhập Seed",
"Enter SerpApi API Key": "Nhập Khóa API SerpApi", "Enter SerpApi API Key": "Nhập Khóa API SerpApi",
"Enter SerpApi Engine": "Nhập Engine SerpApi", "Enter SerpApi Engine": "Nhập Engine SerpApi",
@ -730,6 +738,7 @@
"Failed to load chat preview": "", "Failed to load chat preview": "",
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard", "Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
"Failed to remove member": "", "Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
@ -831,6 +840,7 @@
"Google PSE API Key": "Khóa API Google PSE", "Google PSE API Key": "Khóa API Google PSE",
"Google PSE Engine Id": "ID công cụ Google PSE", "Google PSE Engine Id": "ID công cụ Google PSE",
"Gravatar": "", "Gravatar": "",
"Grid": "",
"Group": "Nhóm", "Group": "Nhóm",
"Group Channel": "", "Group Channel": "",
"Group created successfully": "Đã tạo nhóm thành công", "Group created successfully": "Đã tạo nhóm thành công",
@ -891,7 +901,6 @@
"Import Config from JSON File": "Nhập Cấu hình từ Tệp JSON", "Import Config from JSON File": "Nhập Cấu hình từ Tệp JSON",
"Import From Link": "", "Import From Link": "",
"Import Models": "", "Import Models": "",
"Import Notes": "",
"Import Presets": "Nhập các Preset", "Import Presets": "Nhập các Preset",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
@ -989,6 +998,8 @@
"License": "Giấy phép", "License": "Giấy phép",
"Lift List": "", "Lift List": "",
"Light": "Sáng", "Light": "Sáng",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "",
"Listening...": "Đang nghe...", "Listening...": "Đang nghe...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
"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.", "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.",
@ -1094,12 +1105,14 @@
"Name and ID are required, please fill them out": "", "Name and ID are required, please fill them out": "",
"Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn", "Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn",
"Native": "Gốc", "Native": "Gốc",
"New": "",
"New Button": "", "New Button": "",
"New Chat": "Tạo chat mới", "New Chat": "Tạo chat mới",
"New Folder": "Thư mục Mới", "New Folder": "Thư mục Mới",
"New Function": "", "New Function": "",
"New Knowledge": "", "New Knowledge": "",
"New Model": "", "New Model": "",
"New Note": "",
"New Password": "Mật khẩu mới", "New Password": "Mật khẩu mới",
"New Prompt": "", "New Prompt": "",
"New Temporary Chat": "", "New Temporary Chat": "",
@ -1112,17 +1125,18 @@
"No chats found.": "", "No chats found.": "",
"No content": "", "No content": "",
"No content found": "Không tìm thấy nội dung", "No content found": "Không tìm thấy nội dung",
"No content found in file.": "",
"No content to speak": "Không có nội dung để nói", "No content to speak": "Không có nội dung để nói",
"No conversation to save": "", "No conversation to save": "",
"No distance available": "Không có khoảng cách khả dụng", "No distance available": "Không có khoảng cách khả dụng",
"No expiration can pose security risks.": "", "No expiration can pose security risks.": "",
"No feedbacks found": "Không tìm thấy phản hồi nào", "No feedbacks found": "Không tìm thấy phản hồi nào",
"No file selected": "Chưa có tệp nào được chọn", "No file selected": "Chưa có tệp nào được chọn",
"No files in this knowledge base.": "",
"No functions found": "", "No functions found": "",
"No groups with access, add a group to grant access": "Không có nhóm nào có quyền truy cập, hãy thêm một nhóm để cấp quyền truy cập", "No groups with access, add a group to grant access": "Không có nhóm nào có quyền truy cập, hãy thêm một nhóm để cấp quyền truy cập",
"No HTML, CSS, or JavaScript content found.": "Không tìm thấy nội dung HTML, CSS hoặc JavaScript.", "No HTML, CSS, or JavaScript content found.": "Không tìm thấy nội dung HTML, CSS hoặc JavaScript.",
"No inference engine with management support found": "Không tìm thấy engine suy luận nào có hỗ trợ quản lý", "No inference engine with management support found": "Không tìm thấy engine suy luận nào có hỗ trợ quản lý",
"No knowledge bases found.": "",
"No knowledge found": "Không tìm thấy kiến thức", "No knowledge found": "Không tìm thấy kiến thức",
"No memories to clear": "Không có bộ nhớ nào để xóa", "No memories to clear": "Không có bộ nhớ nào để xóa",
"No model IDs": "Không có ID mô hình", "No model IDs": "Không có ID mô hình",
@ -1309,6 +1323,8 @@
"Read": "Đọc", "Read": "Đọc",
"Read Aloud": "Đọc ra loa", "Read Aloud": "Đọc ra loa",
"Read more →": "", "Read more →": "",
"Read Only": "",
"Read-Only Access": "",
"Reason": "", "Reason": "",
"Reasoning Effort": "Nỗ lực Suy luận", "Reasoning Effort": "Nỗ lực Suy luận",
"Reasoning Tags": "", "Reasoning Tags": "",
@ -1416,6 +1432,7 @@
"Searching Knowledge for \"{{searchQuery}}\"": "Đang tìm kiếm Kiến thức cho \"{{searchQuery}}\"", "Searching Knowledge for \"{{searchQuery}}\"": "Đang tìm kiếm Kiến thức cho \"{{searchQuery}}\"",
"Searching the web": "", "Searching the web": "",
"Searxng Query URL": "URL truy vấn Searxng", "Searxng Query URL": "URL truy vấn Searxng",
"Searxng search language (all, en, es, de, fr, etc.)": "",
"See readme.md for instructions": "Xem readme.md để biết hướng dẫn", "See readme.md for instructions": "Xem readme.md để biết hướng dẫn",
"See what's new": "Xem những cập nhật mới", "See what's new": "Xem những cập nhật mới",
"Seed": "Seed", "Seed": "Seed",
@ -1490,6 +1507,7 @@
"Show": "Hiển thị", "Show": "Hiển thị",
"Show \"What's New\" modal on login": "Hiển thị cửa sổ \"Có gì mới\" khi đăng nhập", "Show \"What's New\" modal on login": "Hiển thị cửa sổ \"Có gì mới\" khi đăng nhập",
"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý", "Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
"Show Files": "",
"Show Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Hiển thị Mô hình", "Show Model": "Hiển thị Mô hình",
@ -1514,6 +1532,7 @@
"Sonar Pro": "", "Sonar Pro": "",
"Sonar Reasoning": "", "Sonar Reasoning": "",
"Sonar Reasoning Pro": "", "Sonar Reasoning Pro": "",
"Sort": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Nguồn", "Source": "Nguồn",
@ -1624,6 +1643,7 @@
"Tika": "Tika", "Tika": "Tika",
"Tika Server URL required.": "Bắt buộc phải nhập URL cho Tika Server ", "Tika Server URL required.": "Bắt buộc phải nhập URL cho Tika Server ",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Timeout": "",
"Title": "Tiêu đề", "Title": "Tiêu đề",
"Title Auto-Generation": "Tự động Tạo Tiêu đề", "Title Auto-Generation": "Tự động Tạo Tiêu đề",
"Title cannot be an empty string.": "Tiêu đề không được phép bỏ trống", "Title cannot be an empty string.": "Tiêu đề không được phép bỏ trống",
@ -1660,6 +1680,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.", "Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
"Tools Public Sharing": "Chia sẻ Công khai Tools", "Tools Public Sharing": "Chia sẻ Công khai Tools",
"Tools Sharing": "", "Tools Sharing": "",
"Top": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "Top K Reranker", "Top K Reranker": "Top K Reranker",
"Transformers": "Transformers", "Transformers": "Transformers",
@ -1766,7 +1787,7 @@
"Web Search in Chat": "Tìm kiếm Web trong Chat", "Web Search in Chat": "Tìm kiếm Web trong Chat",
"Web Search Query Generation": "Tạo Truy vấn Tìm kiếm Web", "Web Search Query Generation": "Tạo Truy vấn Tìm kiếm Web",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "", "Webpage URLs": "",
"WebUI Settings": "Cài đặt WebUI", "WebUI Settings": "Cài đặt WebUI",
"WebUI URL": "URL WebUI", "WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}\"", "WebUI will make requests to \"{{url}}\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}\"",
@ -1803,6 +1824,7 @@
"You cannot upload an empty file.": "Bạn không thể tải lên một tệp trống.", "You cannot upload an empty file.": "Bạn không thể tải lên một tệp trống.",
"You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this channel.": "",
"You do not have permission to send messages in this thread.": "", "You do not have permission to send messages in this thread.": "",
"You do not have permission to upload files to this knowledge base.": "",
"You do not have permission to upload files.": "Bạn không có quyền tải lên tệp.", "You do not have permission to upload files.": "Bạn không có quyền tải lên tệp.",
"You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào", "You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào",
"You have shared this chat": "Bạn vừa chia sẻ chat này", "You have shared this chat": "Bạn vừa chia sẻ chat này",

View file

@ -12,9 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} 个可用工具", "{{COUNT}} Available Tools": "{{COUNT}} 个可用工具",
"{{COUNT}} characters": "{{COUNT}} 个字符", "{{COUNT}} characters": "{{COUNT}} 个字符",
"{{COUNT}} extracted lines": "已提取 {{COUNT}} 行", "{{COUNT}} extracted lines": "已提取 {{COUNT}} 行",
"{{count}} files_other": "{{count}} 个文件", "{{COUNT}} files": "",
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏", "{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
"{{COUNT}} Replies": "{{COUNT}} 条回复", "{{COUNT}} Replies": "{{COUNT}} 条回复",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} 个引用来源", "{{COUNT}} Sources": "{{COUNT}} 个引用来源",
"{{COUNT}} words": "{{COUNT}} 个字", "{{COUNT}} words": "{{COUNT}} 个字",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}",
@ -68,6 +69,7 @@
"Add text content": "添加文本内容", "Add text content": "添加文本内容",
"Add User": "添加用户", "Add User": "添加用户",
"Add User Group": "添加权限组", "Add User Group": "添加权限组",
"Add webpage": "",
"Additional Config": "额外配置项", "Additional Config": "额外配置项",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的额外配置项,可以填写一个包含键值对的 JSON 字符串。例如:{\"key\": \"value\"}。支持的键包括disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的额外配置项,可以填写一个包含键值对的 JSON 字符串。例如:{\"key\": \"value\"}。支持的键包括disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
"Additional Parameters": "额外参数", "Additional Parameters": "额外参数",
@ -136,6 +138,7 @@
"API keys": "API 密钥", "API keys": "API 密钥",
"API Keys": "API 密钥", "API Keys": "API 密钥",
"API Mode": "API 模式", "API Mode": "API 模式",
"API Timeout": "",
"API Version": "API 版本", "API Version": "API 版本",
"API Version is required": "API 版本是必填项。", "API Version is required": "API 版本是必填项。",
"Application DN": "Application DN", "Application DN": "Application DN",
@ -370,6 +373,7 @@
"Create new key": "创建新密钥", "Create new key": "创建新密钥",
"Create new secret key": "创建新安全密钥", "Create new secret key": "创建新安全密钥",
"Create note": "创建笔记", "Create note": "创建笔记",
"Create Note": "",
"Create your first note by clicking on the plus button below.": "点击下面的加号按钮创建您的第一个笔记", "Create your first note by clicking on the plus button below.": "点击下面的加号按钮创建您的第一个笔记",
"Created at": "创建于", "Created at": "创建于",
"Created At": "创建于", "Created At": "创建于",
@ -607,7 +611,6 @@
"Enter Kagi Search API Key": "输入 Kagi Search 接口密钥", "Enter Kagi Search API Key": "输入 Kagi Search 接口密钥",
"Enter Key Behavior": "Enter 键行为", "Enter Key Behavior": "Enter 键行为",
"Enter language codes": "输入语言代码", "Enter language codes": "输入语言代码",
"Enter MinerU API Key": "输入 MinerU 接口密钥",
"Enter Mistral API Base URL": "输入 Mistral 接口地址", "Enter Mistral API Base URL": "输入 Mistral 接口地址",
"Enter Mistral API Key": "输入 Mistral 接口密钥", "Enter Mistral API Key": "输入 Mistral 接口密钥",
"Enter Model ID": "输入模型 ID", "Enter Model ID": "输入模型 ID",
@ -735,6 +738,7 @@
"Failed to load chat preview": "对话预览加载失败", "Failed to load chat preview": "对话预览加载失败",
"Failed to load file content.": "文件内容加载失败", "Failed to load file content.": "文件内容加载失败",
"Failed to move chat": "移动对话失败", "Failed to move chat": "移动对话失败",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "读取剪贴板内容失败", "Failed to read clipboard contents": "读取剪贴板内容失败",
"Failed to remove member": "移除成员失败", "Failed to remove member": "移除成员失败",
"Failed to render diagram": "图表渲染失败", "Failed to render diagram": "图表渲染失败",
@ -994,6 +998,7 @@
"License": "授权", "License": "授权",
"Lift List": "上移列表", "Lift List": "上移列表",
"Light": "浅色", "Light": "浅色",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "列表", "List": "列表",
"Listening...": "正在倾听...", "Listening...": "正在倾听...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
@ -1782,7 +1787,7 @@
"Web Search in Chat": "在对话时进行联网搜索", "Web Search in Chat": "在对话时进行联网搜索",
"Web Search Query Generation": "联网搜索关键词生成", "Web Search Query Generation": "联网搜索关键词生成",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "网页 URL", "Webpage URLs": "",
"WebUI Settings": "WebUI 设置", "WebUI Settings": "WebUI 设置",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI 将向 \"{{url}}\" 发出请求", "WebUI will make requests to \"{{url}}\"": "WebUI 将向 \"{{url}}\" 发出请求",

View file

@ -12,9 +12,10 @@
"{{COUNT}} Available Tools": "{{COUNT}} 個可用工具", "{{COUNT}} Available Tools": "{{COUNT}} 個可用工具",
"{{COUNT}} characters": "{{COUNT}} 個字元", "{{COUNT}} characters": "{{COUNT}} 個字元",
"{{COUNT}} extracted lines": "已擷取 {{COUNT}} 行", "{{COUNT}} extracted lines": "已擷取 {{COUNT}} 行",
"{{count}} files_other": "{{count}} 個文件", "{{COUNT}} files": "",
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行", "{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
"{{COUNT}} Replies": "{{COUNT}} 回覆", "{{COUNT}} Replies": "{{COUNT}} 回覆",
"{{COUNT}} Rows": "",
"{{COUNT}} Sources": "{{COUNT}} 個來源", "{{COUNT}} Sources": "{{COUNT}} 個來源",
"{{COUNT}} words": "{{COUNT}} 個詞", "{{COUNT}} words": "{{COUNT}} 個詞",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}",
@ -68,6 +69,7 @@
"Add text content": "新增文字內容", "Add text content": "新增文字內容",
"Add User": "新增使用者", "Add User": "新增使用者",
"Add User Group": "新增使用者群組", "Add User Group": "新增使用者群組",
"Add webpage": "",
"Additional Config": "額外設定", "Additional Config": "額外設定",
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的額外設定選項,可以填寫一個包含鍵值對的 JSON 字串。例如:{\"key\": \"value\"}。支援的鍵包括disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。", "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的額外設定選項,可以填寫一個包含鍵值對的 JSON 字串。例如:{\"key\": \"value\"}。支援的鍵包括disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
"Additional Parameters": "額外參數", "Additional Parameters": "額外參數",
@ -136,6 +138,7 @@
"API keys": "API 金鑰", "API keys": "API 金鑰",
"API Keys": "API 金鑰", "API Keys": "API 金鑰",
"API Mode": "API 模式", "API Mode": "API 模式",
"API Timeout": "",
"API Version": "API 版本", "API Version": "API 版本",
"API Version is required": "API 版本為必填項目", "API Version is required": "API 版本為必填項目",
"Application DN": "應用程式 DN", "Application DN": "應用程式 DN",
@ -370,6 +373,7 @@
"Create new key": "建立新的金鑰", "Create new key": "建立新的金鑰",
"Create new secret key": "建立新的金鑰", "Create new secret key": "建立新的金鑰",
"Create note": "建立筆記", "Create note": "建立筆記",
"Create Note": "",
"Create your first note by clicking on the plus button below.": "點選下方加號按鈕建立您的第一則筆記。", "Create your first note by clicking on the plus button below.": "點選下方加號按鈕建立您的第一則筆記。",
"Created at": "建立於", "Created at": "建立於",
"Created At": "建立於", "Created At": "建立於",
@ -607,7 +611,6 @@
"Enter Kagi Search API Key": "輸入 Kagi 搜尋 API 金鑰", "Enter Kagi Search API Key": "輸入 Kagi 搜尋 API 金鑰",
"Enter Key Behavior": "Enter 鍵行為", "Enter Key Behavior": "Enter 鍵行為",
"Enter language codes": "輸入語言代碼", "Enter language codes": "輸入語言代碼",
"Enter MinerU API Key": "輸入 MinerU API 金鑰",
"Enter Mistral API Base URL": "輸入 Mistral API 基底 URL", "Enter Mistral API Base URL": "輸入 Mistral API 基底 URL",
"Enter Mistral API Key": "輸入 Mistral API 金鑰", "Enter Mistral API Key": "輸入 Mistral API 金鑰",
"Enter Model ID": "輸入模型 ID", "Enter Model ID": "輸入模型 ID",
@ -735,6 +738,7 @@
"Failed to load chat preview": "對話預覽載入失敗", "Failed to load chat preview": "對話預覽載入失敗",
"Failed to load file content.": "載入檔案內容失敗。", "Failed to load file content.": "載入檔案內容失敗。",
"Failed to move chat": "移動對話失敗", "Failed to move chat": "移動對話失敗",
"Failed to process URL: {{url}}": "",
"Failed to read clipboard contents": "讀取剪貼簿內容失敗", "Failed to read clipboard contents": "讀取剪貼簿內容失敗",
"Failed to remove member": "移除成員失敗", "Failed to remove member": "移除成員失敗",
"Failed to render diagram": "繪製圖表失敗", "Failed to render diagram": "繪製圖表失敗",
@ -994,6 +998,7 @@
"License": "授權", "License": "授權",
"Lift List": "上移清單", "Lift List": "上移清單",
"Light": "淺色", "Light": "淺色",
"Limit concurrent search queries. 0 = unlimited (default). Set to 1 for sequential execution (recommended for APIs with strict rate limits like Brave free tier).": "",
"List": "列表", "List": "列表",
"Listening...": "正在聆聽...", "Listening...": "正在聆聽...",
"Llama.cpp": "Llama.cpp", "Llama.cpp": "Llama.cpp",
@ -1782,7 +1787,7 @@
"Web Search in Chat": "在對話中進行網頁搜尋", "Web Search in Chat": "在對話中進行網頁搜尋",
"Web Search Query Generation": "網頁搜尋查詢生成", "Web Search Query Generation": "網頁搜尋查詢生成",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"Webpage URL": "網頁 URL", "Webpage URLs": "",
"WebUI Settings": "WebUI 設定", "WebUI Settings": "WebUI 設定",
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}\"": "WebUI 將向 \"{{url}}\" 傳送請求", "WebUI will make requests to \"{{url}}\"": "WebUI 將向 \"{{url}}\" 傳送請求",