chore: format

This commit is contained in:
Timothy Jaeryang Baek 2025-10-26 19:33:39 -07:00
parent 54c05ac6e0
commit a70bc52c34
70 changed files with 378 additions and 1417 deletions

View file

@ -591,7 +591,11 @@ OAUTH_ALLOWED_ROLES = PersistentConfig(
OAUTH_ADMIN_ROLES = PersistentConfig( OAUTH_ADMIN_ROLES = PersistentConfig(
"OAUTH_ADMIN_ROLES", "OAUTH_ADMIN_ROLES",
"oauth.admin_roles", "oauth.admin_roles",
[role.strip() for role in os.environ.get("OAUTH_ADMIN_ROLES", "admin").split(SEP) if role], [
role.strip()
for role in os.environ.get("OAUTH_ADMIN_ROLES", "admin").split(SEP)
if role
],
) )
OAUTH_ALLOWED_DOMAINS = PersistentConfig( OAUTH_ALLOWED_DOMAINS = PersistentConfig(

View file

@ -1556,13 +1556,15 @@ async def chat_completion(
log.info("Chat processing was cancelled") log.info("Chat processing was cancelled")
try: try:
event_emitter = get_event_emitter(metadata) event_emitter = get_event_emitter(metadata)
await asyncio.shield(event_emitter( await asyncio.shield(
{"type": "chat:tasks:cancel"}, event_emitter(
)) {"type": "chat:tasks:cancel"},
)
)
except Exception as e: except Exception as e:
pass pass
finally: finally:
raise # re-raise to ensure proper task cancellation handling raise # re-raise to ensure proper task cancellation handling
except Exception as e: except Exception as e:
log.debug(f"Error processing chat payload: {e}") log.debug(f"Error processing chat payload: {e}")
if metadata.get("chat_id") and metadata.get("message_id"): if metadata.get("chat_id") and metadata.get("message_id"):

View file

@ -83,7 +83,7 @@ class YoutubeLoader:
TranscriptsDisabled, TranscriptsDisabled,
YouTubeTranscriptApi, YouTubeTranscriptApi,
) )
from youtube_transcript_api.proxies import (GenericProxyConfig) from youtube_transcript_api.proxies import GenericProxyConfig
except ImportError: except ImportError:
raise ImportError( raise ImportError(
'Could not import "youtube_transcript_api" Python package. ' 'Could not import "youtube_transcript_api" Python package. '
@ -91,7 +91,9 @@ class YoutubeLoader:
) )
if self.proxy_url: if self.proxy_url:
youtube_proxies = GenericProxyConfig(http_url=self.proxy_url, https_url=self.proxy_url) youtube_proxies = GenericProxyConfig(
http_url=self.proxy_url, https_url=self.proxy_url
)
log.debug(f"Using proxy URL: {self.proxy_url[:14]}...") log.debug(f"Using proxy URL: {self.proxy_url[:14]}...")
else: else:
youtube_proxies = None youtube_proxies = None

View file

@ -9,6 +9,7 @@ from mcp.client.auth import OAuthClientProvider, TokenStorage
from mcp.client.streamable_http import streamablehttp_client from mcp.client.streamable_http import streamablehttp_client
from mcp.shared.auth import OAuthClientInformationFull, OAuthClientMetadata, OAuthToken from mcp.shared.auth import OAuthClientInformationFull, OAuthClientMetadata, OAuthToken
class MCPClient: class MCPClient:
def __init__(self): def __init__(self):
self.session: Optional[ClientSession] = None self.session: Optional[ClientSession] = None
@ -35,7 +36,6 @@ class MCPClient:
except Exception as e: except Exception as e:
await asyncio.shield(self.disconnect()) await asyncio.shield(self.disconnect())
raise e raise e
async def list_tool_specs(self) -> Optional[dict]: async def list_tool_specs(self) -> Optional[dict]:
if not self.session: if not self.session:

View file

@ -44,7 +44,7 @@ We appreciate the community's interest in identifying potential vulnerabilities.
> - Screenshots/videos demonstrating the exploit (supplementary to written steps) > - Screenshots/videos demonstrating the exploit (supplementary to written steps)
> >
> **Failure to provide a reproducible PoC may lead to closure of the report** > **Failure to provide a reproducible PoC may lead to closure of the report**
> >
> We will notify you, if we struggle to reproduce the exploit using your PoC to allow you to improve your PoC. > We will notify you, if we struggle to reproduce the exploit using your PoC to allow you to improve your PoC.
> However, if we repeatedly cannot reproduce the exploit using the PoC, the report may be closed. > However, if we repeatedly cannot reproduce the exploit using the PoC, the report may be closed.
@ -65,8 +65,7 @@ We appreciate the community's interest in identifying potential vulnerabilities.
9. **CVSS Scoring Accuracy:** If you include a CVSS score with your report, it must accurately reflect the vulnerability according to CVSS methodology. Common errors include 1) rating PR:N (None) when authentication is required, 2) scoring hypothetical attack chains instead of the actual vulnerability, or 3) inflating severity without evidence. **We will adjust inaccurate CVSS scores.** Intentionally inflated scores may result in report rejection. 9. **CVSS Scoring Accuracy:** If you include a CVSS score with your report, it must accurately reflect the vulnerability according to CVSS methodology. Common errors include 1) rating PR:N (None) when authentication is required, 2) scoring hypothetical attack chains instead of the actual vulnerability, or 3) inflating severity without evidence. **We will adjust inaccurate CVSS scores.** Intentionally inflated scores may result in report rejection.
> [!WARNING] > [!WARNING] > **Using CVE Precedents:** If you cite other CVEs to support your report, ensure they are **genuinely comparable** in vulnerability type, threat model, and attack vector. Citing CVEs from different product categories, different vulnerability classes or different deployment models will lead us to suspect the use of AI in your report.
> **Using CVE Precedents:** If you cite other CVEs to support your report, ensure they are **genuinely comparable** in vulnerability type, threat model, and attack vector. Citing CVEs from different product categories, different vulnerability classes or different deployment models will lead us to suspect the use of AI in your report.
11. **Admin Actions Are Out of Scope:** Vulnerabilities that require an administrator to actively perform unsafe actions are **not considered valid vulnerabilities**. Admins have full system control and are expected to understand the security implications of their actions and configurations. This includes but is not limited to: adding malicious external servers (models, tools, webhooks), pasting untrusted code into Functions/Tools, or intentionally weakening security settings. **Reports requiring admin negligence or social engineering of admins may be rejected.** 11. **Admin Actions Are Out of Scope:** Vulnerabilities that require an administrator to actively perform unsafe actions are **not considered valid vulnerabilities**. Admins have full system control and are expected to understand the security implications of their actions and configurations. This includes but is not limited to: adding malicious external servers (models, tools, webhooks), pasting untrusted code into Functions/Tools, or intentionally weakening security settings. **Reports requiring admin negligence or social engineering of admins may be rejected.**

View file

@ -152,10 +152,10 @@ select {
-webkit-appearance: none; -webkit-appearance: none;
} }
.dark select:not([class*="bg-transparent"]) { .dark select:not([class*='bg-transparent']) {
@apply bg-gray-900 text-gray-300; @apply bg-gray-900 text-gray-300;
} }
.dark select option { .dark select option {
@apply bg-gray-850 text-white; @apply bg-gray-850 text-white;
} }

View file

@ -23,11 +23,7 @@
href="/static/apple-touch-icon.png" href="/static/apple-touch-icon.png"
crossorigin="use-credentials" crossorigin="use-credentials"
/> />
<link <link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
rel="manifest"
href="/manifest.json"
crossorigin="use-credentials"
/>
<meta <meta
name="viewport" name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover"

View file

@ -1443,7 +1443,9 @@
</InputMenu> </InputMenu>
{#if showWebSearchButton || showImageGenerationButton || showCodeInterpreterButton || showToolsButton || (toggleFilters && toggleFilters.length > 0)} {#if showWebSearchButton || showImageGenerationButton || showCodeInterpreterButton || showToolsButton || (toggleFilters && toggleFilters.length > 0)}
<div class="flex self-center w-[1px] h-4 mx-1 bg-gray-200/50 dark:bg-gray-800/50" /> <div
class="flex self-center w-[1px] h-4 mx-1 bg-gray-200/50 dark:bg-gray-800/50"
/>
<IntegrationsMenu <IntegrationsMenu
selectedModels={atSelectedModel ? [atSelectedModel.id] : selectedModels} selectedModels={atSelectedModel ? [atSelectedModel.id] : selectedModels}

View file

@ -55,7 +55,7 @@
$: fileUploadEnabled = $: fileUploadEnabled =
fileUploadCapableModels.length === selectedModels.length && fileUploadCapableModels.length === selectedModels.length &&
($user?.role === 'admin' || $user?.permissions?.chat?.file_upload); ($user?.role === 'admin' || $user?.permissions?.chat?.file_upload);
$: if (!fileUploadEnabled && files.length > 0) { $: if (!fileUploadEnabled && files.length > 0) {
files = []; files = [];
} }

View file

@ -34,4 +34,4 @@
> >
<span>{keys.map(formatKey).join(isMac ? '' : '+')}</span> <span>{keys.map(formatKey).join(isMac ? '' : '+')}</span>
</div> </div>
{/if} {/if}

View file

@ -34,18 +34,18 @@
<div class=" flex items-center gap-2 mr-3"> <div class=" flex items-center gap-2 mr-3">
<div class="self-center flex items-center"> <div class="self-center flex items-center">
<Checkbox <Checkbox
state={_actions[action].is_global state={_actions[action].is_global
? 'checked' ? 'checked'
: _actions[action].selected : _actions[action].selected
? 'checked' ? 'checked'
: 'unchecked'} : 'unchecked'}
disabled={_actions[action].is_global} disabled={_actions[action].is_global}
on:change={(e) => { on:change={(e) => {
if (!_actions[action].is_global) { if (!_actions[action].is_global) {
_actions[action].selected = e.detail === 'checked'; _actions[action].selected = e.detail === 'checked';
selectedActionIds = Object.keys(_actions).filter((t) => _actions[t].selected); selectedActionIds = Object.keys(_actions).filter((t) => _actions[t].selected);
} }
}} }}
/> />
</div> </div>

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب", "A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب",
"a user": "مستخدم", "a user": "مستخدم",
"About": "عن", "About": "عن",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "أضافة مطالبة مخصصه",
"Add Details": "", "Add Details": "",
"Add Files": "إضافة ملفات", "Add Files": "إضافة ملفات",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "نسخ", "Copy": "نسخ",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة",
"Copy last response": "انسخ الرد الأخير",
"Copy link": "", "Copy link": "",
"Copy Link": "أنسخ الرابط", "Copy Link": "أنسخ الرابط",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "حذف الموديل", "Delete a model": "حذف الموديل",
"Delete All Chats": "حذف جميع الدردشات", "Delete All Chats": "حذف جميع الدردشات",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "حذف المحادثه",
"Delete Chat": "حذف المحادثه.", "Delete Chat": "حذف المحادثه.",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "التركيز على إدخال الدردشة",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "إنشاء استعلام بحث", "Generating search query": "إنشاء استعلام بحث",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح", "Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "جارٍ التحميل...", "Loading...": "جارٍ التحميل...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama الاصدار", "Ollama Version": "Ollama الاصدار",
"On": "تشغيل", "On": "تشغيل",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.", "Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "فتح محادثة جديده",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "أخر 30 يوم", "Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام", "Previous 7 days": "أخر 7 أيام",
@ -1400,7 +1390,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور", "Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "تم", "Send": "تم",
"Send a Message": "يُرجى إدخال طلبك هنا", "Send a Message": "يُرجى إدخال طلبك هنا",
@ -1442,14 +1431,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "إظهار الاختصارات",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "أظهر الإبداع", "Showcased creativity": "أظهر الإبداع",
"Sign in": "تسجيل الدخول", "Sign in": "تسجيل الدخول",
@ -1484,7 +1471,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "وقف التسلسل", "Stop Sequence": "وقف التسلسل",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1514,7 +1500,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "تحدث إلى النموذج",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1596,9 +1581,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "اليوم", "Today": "اليوم",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "فتح وأغلاق الاعدادات",
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب", "A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب",
"a user": "مستخدم", "a user": "مستخدم",
"About": "حول", "About": "حول",
"Accept autocomplete generation / Jump to prompt variable": "قبول توليد الإكمال التلقائي / الانتقال إلى متغير الموجه",
"Access": "الوصول", "Access": "الوصول",
"Access Control": "التحكم في الوصول", "Access Control": "التحكم في الوصول",
"Accessible to all users": "متاح لجميع المستخدمين", "Accessible to all users": "متاح لجميع المستخدمين",
@ -51,7 +50,6 @@
"Add Content": "إضافة محتوى", "Add Content": "إضافة محتوى",
"Add content here": "أضف المحتوى هنا", "Add content here": "أضف المحتوى هنا",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "إضافة موجه مخصص",
"Add Details": "", "Add Details": "",
"Add Files": "إضافة ملفات", "Add Files": "إضافة ملفات",
"Add Group": "إضافة مجموعة", "Add Group": "إضافة مجموعة",
@ -151,7 +149,6 @@
"Ask": "اسأل", "Ask": "اسأل",
"Ask a question": "اطرح سؤالاً", "Ask a question": "اطرح سؤالاً",
"Assistant": "المساعد", "Assistant": "المساعد",
"Attach file from knowledge": "إرفاق ملف من المعرفة",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "اسم القناة", "Channel Name": "اسم القناة",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "القنوات", "Channels": "القنوات",
"Character": "الشخصية", "Character": "الشخصية",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "تنفيذ الشيفرة", "Code execution": "تنفيذ الشيفرة",
@ -331,8 +330,6 @@
"Copied to clipboard": "تم النسخ إلى الحافظة", "Copied to clipboard": "تم النسخ إلى الحافظة",
"Copy": "نسخ", "Copy": "نسخ",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "نسخ آخر كتلة شيفرة",
"Copy last response": "نسخ آخر رد",
"Copy link": "", "Copy link": "",
"Copy Link": "نسخ الرابط", "Copy Link": "نسخ الرابط",
"Copy to clipboard": "نسخ إلى الحافظة", "Copy to clipboard": "نسخ إلى الحافظة",
@ -396,7 +393,6 @@
"Delete a model": "حذف الموديل", "Delete a model": "حذف الموديل",
"Delete All Chats": "حذف جميع الدردشات", "Delete All Chats": "حذف جميع الدردشات",
"Delete All Models": "حذف جميع النماذج", "Delete All Models": "حذف جميع النماذج",
"Delete chat": "حذف المحادثه",
"Delete Chat": "حذف المحادثه.", "Delete Chat": "حذف المحادثه.",
"Delete chat?": "هل تريد حذف المحادثة؟", "Delete chat?": "هل تريد حذف المحادثة؟",
"Delete folder?": "هل تريد حذف المجلد؟", "Delete folder?": "هل تريد حذف المجلد؟",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "التركيز على إدخال الدردشة",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "تم حذف المجلد بنجاح", "Folder deleted successfully": "تم حذف المجلد بنجاح",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "توليد صورة", "Generate an image": "توليد صورة",
"Generate Image": "توليد صورة", "Generate Image": "توليد صورة",
"Generate prompt pair": "توليد زوج من التعليمات",
"Generated Image": "", "Generated Image": "",
"Generating search query": "إنشاء استعلام بحث", "Generating search query": "إنشاء استعلام بحث",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "المفتاح", "Key": "المفتاح",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح", "Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Keyboard Shortcuts": "",
"Knowledge": "المعرفة", "Knowledge": "المعرفة",
"Knowledge Access": "الوصول إلى المعرفة", "Knowledge Access": "الوصول إلى المعرفة",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "المحمّل", "Loader": "المحمّل",
"Loading Kokoro.js...": "جارٍ تحميل Kokoro.js...", "Loading Kokoro.js...": "جارٍ تحميل Kokoro.js...",
"Loading...": "جارٍ تحميل...", "Loading...": "جارٍ تحميل...",
"local": "",
"Local": "محلي", "Local": "محلي",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "لا يُسمح بالوصول إلى الموقع", "Location access not allowed": "لا يُسمح بالوصول إلى الموقع",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "النموذج", "Model": "النموذج",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama الاصدار", "Ollama Version": "Ollama الاصدار",
"On": "تشغيل", "On": "تشغيل",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات", "Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات",
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.", "Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "فتح محادثة جديده",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "معرف البادئة", "Prefix ID": "معرف البادئة",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج اتركه فارغًا لتعطيله", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج اتركه فارغًا لتعطيله",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "أخر 30 يوم", "Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام", "Previous 7 days": "أخر 7 أيام",
@ -1400,7 +1390,6 @@
"Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء", "Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور", "Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "تم", "Send": "تم",
"Send a Message": "يُرجى إدخال طلبك هنا", "Send a Message": "يُرجى إدخال طلبك هنا",
@ -1442,14 +1431,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "إظهار الاختصارات",
"Show your support!": "أظهر دعمك!", "Show your support!": "أظهر دعمك!",
"Showcased creativity": "أظهر الإبداع", "Showcased creativity": "أظهر الإبداع",
"Sign in": "تسجيل الدخول", "Sign in": "تسجيل الدخول",
@ -1484,7 +1471,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "إيقاف", "Stop": "إيقاف",
"Stop Generating": "",
"Stop Sequence": "وقف التسلسل", "Stop Sequence": "وقف التسلسل",
"Stream Chat Response": "بث استجابة الدردشة", "Stream Chat Response": "بث استجابة الدردشة",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1514,7 +1500,6 @@
"Tags Generation": "إنشاء الوسوم", "Tags Generation": "إنشاء الوسوم",
"Tags Generation Prompt": "توجيه إنشاء الوسوم", "Tags Generation Prompt": "توجيه إنشاء الوسوم",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "يتم استخدام أخذ العينات بدون ذيل لتقليل تأثير الرموز الأقل احتمالًا. القيمة الأعلى (مثل 2.0) تقلل التأثير أكثر، والقيمة 1.0 تعطل هذا الإعداد.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "يتم استخدام أخذ العينات بدون ذيل لتقليل تأثير الرموز الأقل احتمالًا. القيمة الأعلى (مثل 2.0) تقلل التأثير أكثر، والقيمة 1.0 تعطل هذا الإعداد.",
"Talk to model": "تحدث إلى النموذج",
"Tap to interrupt": "اضغط للمقاطعة", "Tap to interrupt": "اضغط للمقاطعة",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1596,9 +1581,6 @@
"Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة", "Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة",
"Today": "اليوم", "Today": "اليوم",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "فتح وأغلاق الاعدادات",
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "رمز", "Token": "رمز",
"Too verbose": "مفرط في التفاصيل", "Too verbose": "مفرط في التفاصيل",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата",
"a user": "потребител", "a user": "потребител",
"About": "Относно", "About": "Относно",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Достъп", "Access": "Достъп",
"Access Control": "Контрол на достъпа", "Access Control": "Контрол на достъпа",
"Accessible to all users": "Достъпно за всички потребители", "Accessible to all users": "Достъпно за всички потребители",
@ -51,7 +50,6 @@
"Add Content": "Добавяне на съдържание", "Add Content": "Добавяне на съдържание",
"Add content here": "Добавете съдържание тук", "Add content here": "Добавете съдържание тук",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Добавяне на собствен промпт",
"Add Details": "", "Add Details": "",
"Add Files": "Добавяне на Файлове", "Add Files": "Добавяне на Файлове",
"Add Group": "Добавяне на група", "Add Group": "Добавяне на група",
@ -151,7 +149,6 @@
"Ask": "Питай", "Ask": "Питай",
"Ask a question": "Задайте въпрос", "Ask a question": "Задайте въпрос",
"Assistant": "Асистент", "Assistant": "Асистент",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Име на канала", "Channel Name": "Име на канала",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Герой", "Character": "Герой",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Изпълнение на код", "Code execution": "Изпълнение на код",
@ -331,8 +330,6 @@
"Copied to clipboard": "Копирано в клипборда", "Copied to clipboard": "Копирано в клипборда",
"Copy": "Копирай", "Copy": "Копирай",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Копиране на последен код блок",
"Copy last response": "Копиране на последен отговор",
"Copy link": "", "Copy link": "",
"Copy Link": "Копиране на връзка", "Copy Link": "Копиране на връзка",
"Copy to clipboard": "Копиране в клипборда", "Copy to clipboard": "Копиране в клипборда",
@ -396,7 +393,6 @@
"Delete a model": "Изтриване на модела", "Delete a model": "Изтриване на модела",
"Delete All Chats": "Изтриване на всички чатове", "Delete All Chats": "Изтриване на всички чатове",
"Delete All Models": "Изтриване на всички модели", "Delete All Models": "Изтриване на всички модели",
"Delete chat": "Изтриване на чат",
"Delete Chat": "Изтриване на Чат", "Delete Chat": "Изтриване на Чат",
"Delete chat?": "Изтриване на чата?", "Delete chat?": "Изтриване на чата?",
"Delete folder?": "Изтриване на папката?", "Delete folder?": "Изтриване на папката?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Фокусиране на чат вход",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Папката е изтрита успешно", "Folder deleted successfully": "Папката е изтрита успешно",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Генериране на изображение", "Generate an image": "Генериране на изображение",
"Generate Image": "Генериране на изображение", "Generate Image": "Генериране на изображение",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Генериране на заявка за търсене", "Generating search query": "Генериране на заявка за търсене",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Въведете команди",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Ключ", "Key": "Ключ",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Клавиши за бърз достъп", "Keyboard shortcuts": "Клавиши за бърз достъп",
"Keyboard Shortcuts": "",
"Knowledge": "Знания", "Knowledge": "Знания",
"Knowledge Access": "Достъп до знания", "Knowledge Access": "Достъп до знания",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "Зареждане на Kokoro.js...", "Loading Kokoro.js...": "Зареждане на Kokoro.js...",
"Loading...": "Зареждане на...", "Loading...": "Зареждане на...",
"local": "",
"Local": "Локално", "Local": "Локално",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Модел", "Model": "Модел",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama Версия", "Ollama Version": "Ollama Версия",
"On": "Вкл.", "On": "Вкл.",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета", "Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Отвори нов чат",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Префикс ID", "Prefix ID": "Префикс ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Предишните 30 дни", "Previous 30 days": "Предишните 30 дни",
"Previous 7 days": "Предишните 7 дни", "Previous 7 days": "Предишните 7 дни",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Изберете само един модел за извикване", "Select only one model to call": "Изберете само един модел за извикване",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения", "Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Изпрати", "Send": "Изпрати",
"Send a Message": "Изпращане на Съобщение", "Send a Message": "Изпращане на Съобщение",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Права за споделяне", "Sharing Permissions": "Права за споделяне",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Покажи модел", "Show Model": "Покажи модел",
"Show shortcuts": "Покажи преки пътища",
"Show your support!": "Покажете вашата подкрепа!", "Show your support!": "Покажете вашата подкрепа!",
"Showcased creativity": "Показана креативност", "Showcased creativity": "Показана креативност",
"Sign in": "Вписване", "Sign in": "Вписване",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Спри", "Stop": "Спри",
"Stop Generating": "",
"Stop Sequence": "Стоп последователност", "Stop Sequence": "Стоп последователност",
"Stream Chat Response": "Поточен чат отговор", "Stream Chat Response": "Поточен чат отговор",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Генериране на тагове", "Tags Generation": "Генериране на тагове",
"Tags Generation Prompt": "Промпт за генериране на тагове", "Tags Generation Prompt": "Промпт за генериране на тагове",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Говорете с модела",
"Tap to interrupt": "Докоснете за прекъсване", "Tap to interrupt": "Докоснете за прекъсване",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Изскачащи известия за нови актуализации", "Toast notifications for new updates": "Изскачащи известия за нови актуализации",
"Today": "Днес", "Today": "Днес",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Превключване на настройките",
"Toggle sidebar": "Превключване на страничната лента",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Токен", "Token": "Токен",
"Too verbose": "Прекалено многословно", "Too verbose": "Прекалено многословно",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়", "A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়",
"a user": "একজন ব্যাবহারকারী", "a user": "একজন ব্যাবহারকারী",
"About": "সম্পর্কে", "About": "সম্পর্কে",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "একটি কাস্টম প্রম্পট যোগ করুন",
"Add Details": "", "Add Details": "",
"Add Files": "ফাইল যোগ করুন", "Add Files": "ফাইল যোগ করুন",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "অনুলিপি", "Copy": "অনুলিপি",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন",
"Copy last response": "সর্বশেষ রেসপন্স কপি করুন",
"Copy link": "", "Copy link": "",
"Copy Link": "লিংক কপি করুন", "Copy Link": "লিংক কপি করুন",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "একটি মডেল মুছে ফেলুন", "Delete a model": "একটি মডেল মুছে ফেলুন",
"Delete All Chats": "সব চ্যাট মুছে ফেলুন", "Delete All Chats": "সব চ্যাট মুছে ফেলুন",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "চ্যাট মুছে ফেলুন",
"Delete Chat": "চ্যাট মুছে ফেলুন", "Delete Chat": "চ্যাট মুছে ফেলুন",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "চ্যাট ইনপুট ফোকাস করুন",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে", "Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "ইনপুট কমান্ডস",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ", "Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "লোড হচ্ছে...", "Loading...": "লোড হচ্ছে...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama ভার্সন", "Ollama Version": "Ollama ভার্সন",
"On": "চালু", "On": "চালু",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।", "Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "নতুন চ্যাট খুলুন",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "পূর্ব ৩০ দিন", "Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব দিন", "Previous 7 days": "পূর্ব দিন",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না", "Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "পাঠান", "Send": "পাঠান",
"Send a Message": "একটি মেসেজ পাঠান", "Send a Message": "একটি মেসেজ পাঠান",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "শর্টকাটগুলো দেখান",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "সৃজনশীলতা প্রদর্শন", "Showcased creativity": "সৃজনশীলতা প্রদর্শন",
"Sign in": "সাইন ইন", "Sign in": "সাইন ইন",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "সিকোয়েন্স থামান", "Stop Sequence": "সিকোয়েন্স থামান",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "মডেলের সাথে কথা বলুন",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "আজ", "Today": "আজ",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "সেটিংস টোগল",
"Toggle sidebar": "সাইডবার টোগল",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།",
"a user": "བེད་སྤྱོད་མཁན་ཞིག", "a user": "བེད་སྤྱོད་མཁན་ཞིག",
"About": "སྐོར་ལོ།", "About": "སྐོར་ལོ།",
"Accept autocomplete generation / Jump to prompt variable": "རང་འཚང་བཟོ་བསྐྲུན་དང་ལེན་བྱེད་པ། / འགུལ་སློང་འགྱུར་ཚད་ལ་མཆོངས་པ།",
"Access": "འཛུལ་སྤྱོད།", "Access": "འཛུལ་སྤྱོད།",
"Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།", "Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།",
"Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།", "Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།",
@ -51,7 +50,6 @@
"Add Content": "ནང་དོན་སྣོན་པ།", "Add Content": "ནང་དོན་སྣོན་པ།",
"Add content here": "ནང་དོན་འདིར་སྣོན་པ།", "Add content here": "ནང་དོན་འདིར་སྣོན་པ།",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "སྲོལ་བཟོས་འགུལ་སློང་སྣོན་པ།",
"Add Details": "", "Add Details": "",
"Add Files": "ཡིག་ཆ་སྣོན་པ།", "Add Files": "ཡིག་ཆ་སྣོན་པ།",
"Add Group": "ཚོགས་པ་སྣོན་པ།", "Add Group": "ཚོགས་པ་སྣོན་པ།",
@ -151,7 +149,6 @@
"Ask": "འདྲི་བ།", "Ask": "འདྲི་བ།",
"Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།", "Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།",
"Assistant": "ལག་རོགས་པ།", "Assistant": "ལག་རོགས་པ།",
"Attach file from knowledge": "ཤེས་བྱའི་ནང་ནས་ཡིག་ཆ་འཇོག་པ།",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "བགྲོ་གླེང་གི་མིང་།", "Channel Name": "བགྲོ་གླེང་གི་མིང་།",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "བགྲོ་གླེང་།", "Channels": "བགྲོ་གླེང་།",
"Character": "ཡིག་འབྲུ།", "Character": "ཡིག་འབྲུ།",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "ཀོཌ་ལག་བསྟར།", "Code execution": "ཀོཌ་ལག་བསྟར།",
@ -331,8 +330,6 @@
"Copied to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་པ།", "Copied to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་པ།",
"Copy": "འདྲ་བཤུས།", "Copy": "འདྲ་བཤུས།",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "ཀོཌ་གཏོགས་ཁོངས་མཐའ་མ་འདྲ་བཤུས།",
"Copy last response": "ལན་མཐའ་མ་འདྲ་བཤུས།",
"Copy link": "", "Copy link": "",
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།", "Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།", "Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
@ -396,7 +393,6 @@
"Delete a model": "དཔེ་དབྱིབས་ཤིག་བསུབ་པ།", "Delete a model": "དཔེ་དབྱིབས་ཤིག་བསུབ་པ།",
"Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།", "Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།",
"Delete All Models": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་པ།", "Delete All Models": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་པ།",
"Delete chat": "ཁ་བརྡ་བསུབ་པ།",
"Delete Chat": "ཁ་བརྡ་བསུབ་པ།", "Delete Chat": "ཁ་བརྡ་བསུབ་པ།",
"Delete chat?": "ཁ་བརྡ་བསུབ་པ།?", "Delete chat?": "ཁ་བརྡ་བསུབ་པ།?",
"Delete folder?": "ཡིག་སྣོད་བསུབ་པ།?", "Delete folder?": "ཡིག་སྣོད་བསུབ་པ།?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "ཁ་བརྡའི་ནང་འཇུག་ལ་དམིགས་པ།",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།", "Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "པར་ཞིག་བཟོ་བ།", "Generate an image": "པར་ཞིག་བཟོ་བ།",
"Generate Image": "པར་བཟོ་བ།", "Generate Image": "པར་བཟོ་བ།",
"Generate prompt pair": "འགུལ་སློང་ཆ་ཞིག་བཟོ་བ།",
"Generated Image": "", "Generated Image": "",
"Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།", "Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
"Input": "", "Input": "",
"Input commands": "ནང་འཇུག་བཀའ་བརྡ།",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "ལྡེ་མིག", "Key": "ལྡེ་མིག",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "མཐེབ་གནོན་མྱུར་ལམ།", "Keyboard shortcuts": "མཐེབ་གནོན་མྱུར་ལམ།",
"Keyboard Shortcuts": "",
"Knowledge": "ཤེས་བྱ།", "Knowledge": "ཤེས་བྱ།",
"Knowledge Access": "ཤེས་བྱར་འཛུལ་སྤྱོད།", "Knowledge Access": "ཤེས་བྱར་འཛུལ་སྤྱོད།",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "ནང་འཇུག་བྱེད་པོ།", "Loader": "ནང་འཇུག་བྱེད་པོ།",
"Loading Kokoro.js...": "Kokoro.js ནང་འཇུག་བྱེད་བཞིན་པ།...", "Loading Kokoro.js...": "Kokoro.js ནང་འཇུག་བྱེད་བཞིན་པ།...",
"Loading...": "མངོན་འཁོར་འགྲེལ་འཁོད་བཞིན...", "Loading...": "མངོན་འཁོར་འགྲེལ་འཁོད་བཞིན...",
"local": "",
"Local": "ས་གནས།", "Local": "ས་གནས།",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "གནས་ཡུལ་འཛུལ་སྤྱོད་ལ་གནང་བ་མ་སྤྲད།", "Location access not allowed": "གནས་ཡུལ་འཛུལ་སྤྱོད་ལ་གནང་བ་མ་སྤྲད།",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "དཔེ་དབྱིབས།", "Model": "དཔེ་དབྱིབས།",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama པར་གཞི།", "Ollama Version": "Ollama པར་གཞི།",
"On": "ཁ་ཕྱེ་བ།", "On": "ཁ་ཕྱེ་བ།",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།", "Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།", "Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།", "Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "ཁ་བརྡ་གསར་པ་ཁ་ཕྱེ་བ།",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "སྔོན་སྦྱོར་ ID", "Prefix ID": "སྔོན་སྦྱོར་ ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།", "Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།", "Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
@ -1395,7 +1385,6 @@
"Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།", "Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "གདམ་ཟིན་པའི་དཔེ་དབྱིབས་(ཚོ)ས་པར་གྱི་ནང་འཇུག་ལ་རྒྱབ་སྐྱོར་མི་བྱེད།", "Selected model(s) do not support image inputs": "གདམ་ཟིན་པའི་དཔེ་དབྱིབས་(ཚོ)ས་པར་གྱི་ནང་འཇུག་ལ་རྒྱབ་སྐྱོར་མི་བྱེད།",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "གཏོང་བ།", "Send": "གཏོང་བ།",
"Send a Message": "འཕྲིན་ཞིག་གཏོང་བ།", "Send a Message": "འཕྲིན་ཞིག་གཏོང་བ།",
@ -1437,14 +1426,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།", "Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "དཔེ་དབྱིབས་སྟོན་པ།", "Show Model": "དཔེ་དབྱིབས་སྟོན་པ།",
"Show shortcuts": "མྱུར་ལམ་སྟོན་པ།",
"Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།", "Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།",
"Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།", "Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།",
"Sign in": "ནང་འཛུལ།", "Sign in": "ནང་འཛུལ།",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "མཚམས་འཇོག", "Stop": "མཚམས་འཇོག",
"Stop Generating": "",
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།", "Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།", "Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1509,7 +1495,6 @@
"Tags Generation": "རྟགས་བཟོ་སྐྲུན།", "Tags Generation": "རྟགས་བཟོ་སྐྲུན།",
"Tags Generation Prompt": "རྟགས་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།", "Tags Generation Prompt": "རྟགས་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "མཇུག་མ་རང་དབང་མ་དཔེ་འདེམས་པ་ནི་ཐོན་འབྲས་ནས་ཆགས་ཚུལ་དམའ་བའི་ཊོཀ་ཀེན་གྱི་ཤུགས་རྐྱེན་ཉུང་དུ་གཏོང་བར་བེད་སྤྱོད་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 2.0) ཡིས་ཤུགས་རྐྱེན་དེ་སྔར་ལས་ཉུང་དུ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་ 1.0 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "མཇུག་མ་རང་དབང་མ་དཔེ་འདེམས་པ་ནི་ཐོན་འབྲས་ནས་ཆགས་ཚུལ་དམའ་བའི་ཊོཀ་ཀེན་གྱི་ཤུགས་རྐྱེན་ཉུང་དུ་གཏོང་བར་བེད་སྤྱོད་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 2.0) ཡིས་ཤུགས་རྐྱེན་དེ་སྔར་ལས་ཉུང་དུ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་ 1.0 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།",
"Talk to model": "དཔེ་དབྱིབས་ལ་སྐད་ཆ་ཤོད།",
"Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།", "Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།", "Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།",
"Today": "དེ་རིང་།", "Today": "དེ་རིང་།",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "སྒྲིག་འགོད་བརྗེ་བ།",
"Toggle sidebar": "ཟུར་ངོས་བརྗེ་བ།",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "ཊོཀ་ཀེན།", "Token": "ཊོཀ་ཀེན།",
"Too verbose": "རིང་དྲགས།", "Too verbose": "རིང་དྲགས།",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
"a user": "korisnik", "a user": "korisnik",
"About": "O aplikaciji", "About": "O aplikaciji",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Dodaj prilagođeni prompt",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj datoteke", "Add Files": "Dodaj datoteke",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "Pitaj", "Ask": "Pitaj",
"Ask a question": "Pitaj pitanje", "Ask a question": "Pitaj pitanje",
"Assistant": "Asistent", "Assistant": "Asistent",
"Attach file from knowledge": "Prikaci file iz 'knowledge' baze",
"Attach Knowledge": "Prikazi znanje", "Attach Knowledge": "Prikazi znanje",
"Attach Notes": "Prikazi zapise", "Attach Notes": "Prikazi zapise",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Kopiraj", "Copy": "Kopiraj",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopiraj zadnji blok koda",
"Copy last response": "Kopiraj zadnji odgovor",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopiraj vezu", "Copy Link": "Kopiraj vezu",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Izbriši model", "Delete a model": "Izbriši model",
"Delete All Chats": "Izbriši sve razgovore", "Delete All Chats": "Izbriši sve razgovore",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Izbriši razgovor",
"Delete Chat": "Izbriši razgovor", "Delete Chat": "Izbriši razgovor",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokusiraj unos razgovora",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Gneriraj sliku", "Generate Image": "Gneriraj sliku",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generiranje upita za pretraživanje", "Generating search query": "Generiranje upita za pretraživanje",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Unos naredbi",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Tipkovnički prečaci", "Keyboard shortcuts": "Tipkovnički prečaci",
"Keyboard Shortcuts": "",
"Knowledge": "Znanje", "Knowledge": "Znanje",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Učitavanje...", "Loading...": "Učitavanje...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama verzija", "Ollama Version": "Ollama verzija",
"On": "Uključeno", "On": "Uključeno",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Otvorite novi razgovor",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Prethodnih 30 dana", "Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana", "Previous 7 days": "Prethodnih 7 dana",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Odaberite samo jedan model za poziv", "Select only one model to call": "Odaberite samo jedan model za poziv",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika", "Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Pošalji", "Send": "Pošalji",
"Send a Message": "Pošaljite poruku", "Send a Message": "Pošaljite poruku",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Pokaži prečace",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "Prikazana kreativnost", "Showcased creativity": "Prikazana kreativnost",
"Sign in": "Prijava", "Sign in": "Prijava",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Zaustavi sekvencu", "Stop Sequence": "Zaustavi sekvencu",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Razgovarajte s modelom",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Danas", "Today": "Danas",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Prebaci postavke",
"Toggle sidebar": "Prebaci bočnu traku",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web",
"a user": "un usuari", "a user": "un usuari",
"About": "Sobre", "About": "Sobre",
"Accept autocomplete generation / Jump to prompt variable": "Acceptar la generació autocompletada / Saltar a la variable d'indicació",
"Access": "Accés", "Access": "Accés",
"Access Control": "Control d'accés", "Access Control": "Control d'accés",
"Accessible to all users": "Accessible a tots els usuaris", "Accessible to all users": "Accessible a tots els usuaris",
@ -51,7 +50,6 @@
"Add Content": "Afegir contingut", "Add Content": "Afegir contingut",
"Add content here": "Afegir contingut aquí", "Add content here": "Afegir contingut aquí",
"Add Custom Parameter": "Afegir paràmetre personalitzat ", "Add Custom Parameter": "Afegir paràmetre personalitzat ",
"Add custom prompt": "Afegir una indicació personalitzada",
"Add Details": "Afegir detalls", "Add Details": "Afegir detalls",
"Add Files": "Afegir arxius", "Add Files": "Afegir arxius",
"Add Group": "Afegir grup", "Add Group": "Afegir grup",
@ -151,7 +149,6 @@
"Ask": "Preguntar", "Ask": "Preguntar",
"Ask a question": "Fer una pregunta", "Ask a question": "Fer una pregunta",
"Assistant": "Assistent", "Assistant": "Assistent",
"Attach file from knowledge": "Adjuntar arxiu del coneixement",
"Attach Knowledge": "Adjuntar coneixement", "Attach Knowledge": "Adjuntar coneixement",
"Attach Notes": "Adjuntar notes", "Attach Notes": "Adjuntar notes",
"Attach Webpage": "Adjuntar pàgina web", "Attach Webpage": "Adjuntar pàgina web",
@ -221,6 +218,7 @@
"Channel": "Canal", "Channel": "Canal",
"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.": "",
"Channel updated successfully": "Canal actualitzat correctament", "Channel updated successfully": "Canal actualitzat correctament",
"Channels": "Canals", "Channels": "Canals",
"Character": "Personatge", "Character": "Personatge",
@ -272,6 +270,7 @@
"Close modal": "Tancar el modal", "Close modal": "Tancar el modal",
"Close settings modal": "Tancar el modal de configuració", "Close settings modal": "Tancar el modal de configuració",
"Close Sidebar": "Tancar la barra lateral", "Close Sidebar": "Tancar la barra lateral",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Nom de l'altaveu d'incrustació CMU ARCTIC", "CMU ARCTIC speaker embedding name": "Nom de l'altaveu d'incrustació CMU ARCTIC",
"Code Block": "Bloc de codi", "Code Block": "Bloc de codi",
"Code execution": "Execució de codi", "Code execution": "Execució de codi",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiat al porta-retalls", "Copied to clipboard": "Copiat al porta-retalls",
"Copy": "Copiar", "Copy": "Copiar",
"Copy Formatted Text": "Copiar el text formatat", "Copy Formatted Text": "Copiar el text formatat",
"Copy last code block": "Copiar l'últim bloc de codi",
"Copy last response": "Copiar l'última resposta",
"Copy link": "Copiar l'enllaç", "Copy link": "Copiar l'enllaç",
"Copy Link": "Copiar l'enllaç", "Copy Link": "Copiar l'enllaç",
"Copy to clipboard": "Copiar al porta-retalls", "Copy to clipboard": "Copiar al porta-retalls",
@ -396,7 +393,6 @@
"Delete a model": "Eliminar un model", "Delete a model": "Eliminar un model",
"Delete All Chats": "Eliminar tots els xats", "Delete All Chats": "Eliminar tots els xats",
"Delete All Models": "Eliminar tots els models", "Delete All Models": "Eliminar tots els models",
"Delete chat": "Eliminar xat",
"Delete Chat": "Eliminar xat", "Delete Chat": "Eliminar xat",
"Delete chat?": "Eliminar el xat?", "Delete chat?": "Eliminar el xat?",
"Delete folder?": "Eliminar la carpeta?", "Delete folder?": "Eliminar la carpeta?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL de l'API de base de Firecrawl", "Firecrawl API Base URL": "URL de l'API de base de Firecrawl",
"Firecrawl API Key": "Clau API de Firecrawl", "Firecrawl API Key": "Clau API de Firecrawl",
"Floating Quick Actions": "Accions ràpides flotants", "Floating Quick Actions": "Accions ràpides flotants",
"Focus chat input": "Estableix el focus a l'entrada del xat",
"Folder": "Carpeta", "Folder": "Carpeta",
"Folder Background Image": "Imatge del fons de la carpeta", "Folder Background Image": "Imatge del fons de la carpeta",
"Folder deleted successfully": "Carpeta eliminada correctament", "Folder deleted successfully": "Carpeta eliminada correctament",
@ -786,7 +781,6 @@
"Generate": "Generar", "Generate": "Generar",
"Generate an image": "Generar una imatge", "Generate an image": "Generar una imatge",
"Generate Image": "Generar imatge", "Generate Image": "Generar imatge",
"Generate prompt pair": "Generar parella d'indicació",
"Generated Image": "Imatge generada", "Generated Image": "Imatge generada",
"Generating search query": "Generant consulta", "Generating search query": "Generant consulta",
"Generating...": "Generant...", "Generating...": "Generant...",
@ -870,7 +864,6 @@
"Initials": "Inicials", "Initials": "Inicials",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Entra comandes",
"Input Key (e.g. text, unet_name, steps)": "Entra la clau (p. ex. text, unet_name, steps)", "Input Key (e.g. text, unet_name, steps)": "Entra la clau (p. ex. text, unet_name, steps)",
"Input Variables": "Variables d'entrada", "Input Variables": "Variables d'entrada",
"Insert": "Inserir", "Insert": "Inserir",
@ -909,6 +902,7 @@
"Key": "Clau", "Key": "Clau",
"Key is required": "La clau és necessària", "Key is required": "La clau és necessària",
"Keyboard shortcuts": "Dreceres de teclat", "Keyboard shortcuts": "Dreceres de teclat",
"Keyboard Shortcuts": "",
"Knowledge": "Coneixement", "Knowledge": "Coneixement",
"Knowledge Access": "Accés al coneixement", "Knowledge Access": "Accés al coneixement",
"Knowledge Base": "Base de coneixement", "Knowledge Base": "Base de coneixement",
@ -952,6 +946,7 @@
"Loader": "Carregador", "Loader": "Carregador",
"Loading Kokoro.js...": "Carregant Kokoro.js", "Loading Kokoro.js...": "Carregant Kokoro.js",
"Loading...": "Carregant...", "Loading...": "Carregant...",
"local": "",
"Local": "Local", "Local": "Local",
"Local Task Model": "Model local de tasques", "Local Task Model": "Model local de tasques",
"Location access not allowed": "Accés a la ubicació no permesa", "Location access not allowed": "Accés a la ubicació no permesa",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (feina/escola)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (feina/escola)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "És necessària la clau API de Mistral OCR", "Mistral OCR API Key required.": "És necessària la clau API de Mistral OCR",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versió d'Ollama", "Ollama Version": "Versió d'Ollama",
"On": "Activat", "On": "Activat",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Només actiu quan la configuració \"Enganxar text gran com a fitxer\" està activa.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Només actiu quan la entrada de xat està en focus i un model de llenguatge està generant una resposta.",
"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions", "Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Obre el modal per configurar la connexió", "Open modal to configure connection": "Obre el modal per configurar la connexió",
"Open Modal To Manage Floating Quick Actions": "Obre el model per configurar les Accions ràpides flotants", "Open Modal To Manage Floating Quick Actions": "Obre el model per configurar les Accions ràpides flotants",
"Open Modal To Manage Image Compression": "Obrir un modal per gestionar la compressió d'imatges", "Open Modal To Manage Image Compression": "Obrir un modal per gestionar la compressió d'imatges",
"Open new chat": "Obre un xat nou",
"Open Sidebar": "Obre la barra lateral", "Open Sidebar": "Obre la barra lateral",
"Open User Profile Menu": "Obre el menú de perfil d'usuari", "Open User Profile Menu": "Obre el menú de perfil d'usuari",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Prefereixo no dir-ho", "Prefer not to say": "Prefereixo no dir-ho",
"Prefix ID": "Identificador del prefix", "Prefix ID": "Identificador del prefix",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
"Prevent file creation": "Impedir la creació d'arxius",
"Preview": "Previsualització", "Preview": "Previsualització",
"Previous 30 days": "30 dies anteriors", "Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors", "Previous 7 days": "7 dies anteriors",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Seleccionar només un model per trucar", "Select only one model to call": "Seleccionar només un model per trucar",
"Select view": "Seleccionar una vista", "Select view": "Seleccionar una vista",
"Selected model(s) do not support image inputs": "El(s) model(s) seleccionats no admeten l'entrada d'imatges", "Selected model(s) do not support image inputs": "El(s) model(s) seleccionats no admeten l'entrada d'imatges",
"Self-Hosted": "",
"semantic": "semàntic", "semantic": "semàntic",
"Send": "Enviar", "Send": "Enviar",
"Send a Message": "Enviar un missatge", "Send a Message": "Enviar un missatge",
@ -1439,14 +1428,12 @@
"Share your background and interests": "Compartir la teva informació i interessos", "Share your background and interests": "Compartir la teva informació i interessos",
"Shared with you": "Compartit amb tu", "Shared with you": "Compartit amb tu",
"Sharing Permissions": "Compartir els permisos", "Sharing Permissions": "Compartir els permisos",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les dreceres de teclat amb un asterisc (*) són situacionals i només actives sota condicions específiques.",
"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 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",
"Show shortcuts": "Mostrar dreceres",
"Show your support!": "Mostra el teu suport!", "Show your support!": "Mostra el teu suport!",
"Showcased creativity": "Creativitat mostrada", "Showcased creativity": "Creativitat mostrada",
"Sign in": "Iniciar sessió", "Sign in": "Iniciar sessió",
@ -1481,7 +1468,6 @@
"Status Updates": "Estat de les actualitzacions", "Status Updates": "Estat de les actualitzacions",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Atura", "Stop": "Atura",
"Stop Generating": "Atura la generació",
"Stop Sequence": "Atura la seqüència", "Stop Sequence": "Atura la seqüència",
"Stream Chat Response": "Fer streaming de la resposta del xat", "Stream Chat Response": "Fer streaming de la resposta del xat",
"Stream Delta Chunk Size": "Mida del fragment Delta del flux", "Stream Delta Chunk Size": "Mida del fragment Delta del flux",
@ -1511,7 +1497,6 @@
"Tags Generation": "Generació d'etiquetes", "Tags Generation": "Generació d'etiquetes",
"Tags Generation Prompt": "Indicació per a la generació d'etiquetes", "Tags Generation Prompt": "Indicació per a la generació d'etiquetes",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El mostreig sense cua s'utilitza per reduir l'impacte de tokens menys probables de la sortida. Un valor més alt (p. ex., 2,0) reduirà més l'impacte, mentre que un valor d'1,0 desactiva aquesta configuració.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El mostreig sense cua s'utilitza per reduir l'impacte de tokens menys probables de la sortida. Un valor més alt (p. ex., 2,0) reduirà més l'impacte, mentre que un valor d'1,0 desactiva aquesta configuració.",
"Talk to model": "Parlar amb el model",
"Tap to interrupt": "Prem per interrompre", "Tap to interrupt": "Prem per interrompre",
"Task List": "Llista de tasques", "Task List": "Llista de tasques",
"Task Model": "Model de tasques", "Task Model": "Model de tasques",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notificacions Toast de noves actualitzacions", "Toast notifications for new updates": "Notificacions Toast de noves actualitzacions",
"Today": "Avui", "Today": "Avui",
"Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}",
"Toggle search": "Alternar cerca",
"Toggle settings": "Alterna preferències",
"Toggle sidebar": "Alterna la barra lateral",
"Toggle whether current connection is active.": "Alterna si la connexió actual està activa.", "Toggle whether current connection is active.": "Alterna si la connexió actual està activa.",
"Token": "Token", "Token": "Token",
"Too verbose": "Massa explicit", "Too verbose": "Massa explicit",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "usa ka user", "a user": "usa ka user",
"About": "Mahitungod sa", "About": "Mahitungod sa",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Pagdugang og custom prompt",
"Add Details": "", "Add Details": "",
"Add Files": "Idugang ang mga file", "Add Files": "Idugang ang mga file",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "", "Copy": "",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopyaha ang katapusang bloke sa code",
"Copy last response": "Kopyaha ang kataposang tubag",
"Copy link": "", "Copy link": "",
"Copy Link": "", "Copy Link": "",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Pagtangtang sa usa ka template", "Delete a model": "Pagtangtang sa usa ka template",
"Delete All Chats": "", "Delete All Chats": "",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Pagtangtang sa panaghisgot",
"Delete Chat": "", "Delete Chat": "",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Pag-focus sa entry sa diskusyon",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "", "Generating search query": "",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Pagsulod sa input commands",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Mga shortcut sa keyboard", "Keyboard shortcuts": "Mga shortcut sa keyboard",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Nagkarga...", "Loading...": "Nagkarga...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama nga bersyon", "Ollama Version": "Ollama nga bersyon",
"On": "Gipaandar", "On": "Gipaandar",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ablihi ang bag-ong diskusyon",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "", "Send": "",
"Send a Message": "Magpadala ug mensahe", "Send a Message": "Magpadala ug mensahe",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Ipakita ang mga shortcut",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "Para maka log in", "Sign in": "Para maka log in",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Pagkasunod-sunod sa pagsira", "Stop Sequence": "Pagkasunod-sunod sa pagsira",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Pakig-istorya sa modelo",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "", "Today": "",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "I-toggle ang mga setting",
"Toggle sidebar": "I-toggle ang sidebar",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.",
"a user": "uživatel", "a user": "uživatel",
"About": "O aplikaci", "About": "O aplikaci",
"Accept autocomplete generation / Jump to prompt variable": "Přijmout automatické dokončení / Přejít na proměnnou instrukce",
"Access": "Přístup", "Access": "Přístup",
"Access Control": "Řízení přístupu", "Access Control": "Řízení přístupu",
"Accessible to all users": "Přístupné pro všechny uživatele", "Accessible to all users": "Přístupné pro všechny uživatele",
@ -51,7 +50,6 @@
"Add Content": "Přidat obsah", "Add Content": "Přidat obsah",
"Add content here": "Zde přidejte obsah", "Add content here": "Zde přidejte obsah",
"Add Custom Parameter": "Přidat vlastní parametr", "Add Custom Parameter": "Přidat vlastní parametr",
"Add custom prompt": "Přidat vlastní instrukce",
"Add Details": "Přidat podrobnosti", "Add Details": "Přidat podrobnosti",
"Add Files": "Přidat soubory", "Add Files": "Přidat soubory",
"Add Group": "Přidat skupinu", "Add Group": "Přidat skupinu",
@ -151,7 +149,6 @@
"Ask": "Zeptat se", "Ask": "Zeptat se",
"Ask a question": "Položit otázku", "Ask a question": "Položit otázku",
"Assistant": "Asistent", "Assistant": "Asistent",
"Attach file from knowledge": "Připojit soubor ze znalostní báze",
"Attach Knowledge": "Připojit znalosti", "Attach Knowledge": "Připojit znalosti",
"Attach Notes": "Přiojit poznámky", "Attach Notes": "Přiojit poznámky",
"Attach Webpage": "Připojit web", "Attach Webpage": "Připojit web",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"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 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",
"Character": "Postava", "Character": "Postava",
@ -272,6 +270,7 @@
"Close modal": "Zavřít modální okno", "Close modal": "Zavřít modální okno",
"Close settings modal": "Zavřít modální okno nastavení", "Close settings modal": "Zavřít modální okno nastavení",
"Close Sidebar": "Zavřít postranní panel", "Close Sidebar": "Zavřít postranní panel",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Název vektorizace mluvčího CMU ARCTIC", "CMU ARCTIC speaker embedding name": "Název vektorizace mluvčího CMU ARCTIC",
"Code Block": "Blok kódu", "Code Block": "Blok kódu",
"Code execution": "Spouštění kódu", "Code execution": "Spouštění kódu",
@ -331,8 +330,6 @@
"Copied to clipboard": "Zkopírováno do schránky", "Copied to clipboard": "Zkopírováno do schránky",
"Copy": "Kopírovat", "Copy": "Kopírovat",
"Copy Formatted Text": "Kopírovat formátovaný text", "Copy Formatted Text": "Kopírovat formátovaný text",
"Copy last code block": "Kopírovat poslední blok kódu",
"Copy last response": "Kopírovat poslední odpověď",
"Copy link": "Kopírovat odkaz", "Copy link": "Kopírovat odkaz",
"Copy Link": "Kopírovat odkaz", "Copy Link": "Kopírovat odkaz",
"Copy to clipboard": "Kopírovat do schránky", "Copy to clipboard": "Kopírovat do schránky",
@ -396,7 +393,6 @@
"Delete a model": "Smazat model", "Delete a model": "Smazat model",
"Delete All Chats": "Smazat všechny konverzace", "Delete All Chats": "Smazat všechny konverzace",
"Delete All Models": "Smazat všechny modely", "Delete All Models": "Smazat všechny modely",
"Delete chat": "Smazat konverzaci",
"Delete Chat": "Smazat konverzaci", "Delete Chat": "Smazat konverzaci",
"Delete chat?": "Smazat konverzaci?", "Delete chat?": "Smazat konverzaci?",
"Delete folder?": "Smazat složku?", "Delete folder?": "Smazat složku?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Základní URL API pro Firecrawl", "Firecrawl API Base URL": "Základní URL API pro Firecrawl",
"Firecrawl API Key": "API klíč pro Firecrawl", "Firecrawl API Key": "API klíč pro Firecrawl",
"Floating Quick Actions": "Plovoucí rychlé akce", "Floating Quick Actions": "Plovoucí rychlé akce",
"Focus chat input": "Zaměřit vstupní pole konverzace",
"Folder": "Složka", "Folder": "Složka",
"Folder Background Image": "Obrázek na pozadí složky", "Folder Background Image": "Obrázek na pozadí složky",
"Folder deleted successfully": "Složka byla úspěšně smazána", "Folder deleted successfully": "Složka byla úspěšně smazána",
@ -786,7 +781,6 @@
"Generate": "Generovat", "Generate": "Generovat",
"Generate an image": "Generovat obrázek", "Generate an image": "Generovat obrázek",
"Generate Image": "Generovat obrázek", "Generate Image": "Generovat obrázek",
"Generate prompt pair": "Generovat pár instrukcí",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generuji vyhledávací dotaz", "Generating search query": "Generuji vyhledávací dotaz",
"Generating...": "Generuji...", "Generating...": "Generuji...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Vložit celý obsah jako kontext pro komplexní zpracování, doporučeno pro složité dotazy.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Vložit celý obsah jako kontext pro komplexní zpracování, doporučeno pro složité dotazy.",
"Input": "Vstup", "Input": "Vstup",
"Input commands": "Vstupní příkazy",
"Input Key (e.g. text, unet_name, steps)": "Vstupní klíč (např. text, unet_name, steps)", "Input Key (e.g. text, unet_name, steps)": "Vstupní klíč (např. text, unet_name, steps)",
"Input Variables": "Vstupní proměnné", "Input Variables": "Vstupní proměnné",
"Insert": "Vložit", "Insert": "Vložit",
@ -909,6 +902,7 @@
"Key": "Klíč", "Key": "Klíč",
"Key is required": "Klíč je vyžadován", "Key is required": "Klíč je vyžadován",
"Keyboard shortcuts": "Klávesové zkratky", "Keyboard shortcuts": "Klávesové zkratky",
"Keyboard Shortcuts": "",
"Knowledge": "Znalosti", "Knowledge": "Znalosti",
"Knowledge Access": "Přístup ke znalostem", "Knowledge Access": "Přístup ke znalostem",
"Knowledge Base": "Znalostní báze", "Knowledge Base": "Znalostní báze",
@ -952,6 +946,7 @@
"Loader": "Zavaděč", "Loader": "Zavaděč",
"Loading Kokoro.js...": "Načítám Kokoro.js...", "Loading Kokoro.js...": "Načítám Kokoro.js...",
"Loading...": "Načítám...", "Loading...": "Načítám...",
"local": "",
"Local": "Lokální", "Local": "Lokální",
"Local Task Model": "Lokální model pro úkoly", "Local Task Model": "Lokální model pro úkoly",
"Location access not allowed": "Přístup k poloze nebyl povolen", "Location access not allowed": "Přístup k poloze nebyl povolen",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (pracovní/školní)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (pracovní/školní)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Je vyžadován API klíč pro Mistral OCR.", "Mistral OCR API Key required.": "Je vyžadován API klíč pro Mistral OCR.",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Verze Ollama", "Ollama Version": "Verze Ollama",
"On": "Zapnuto", "On": "Zapnuto",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Aktivní pouze pokud je zapnuta volba \"Vložit velký text jako soubor\".",
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktivní pouze pokud je zaměřeno vstupní pole konverzace a LLM generuje odpověď.",
"Only alphanumeric characters and hyphens are allowed": "Jsou povoleny pouze alfanumerické znaky a pomlčky", "Only alphanumeric characters and hyphens are allowed": "Jsou povoleny pouze alfanumerické znaky a pomlčky",
"Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.", "Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Otevřít modální okno pro konfiguraci připojení", "Open modal to configure connection": "Otevřít modální okno pro konfiguraci připojení",
"Open Modal To Manage Floating Quick Actions": "Otevřít modální okno pro správu plovoucích rychlých akcí", "Open Modal To Manage Floating Quick Actions": "Otevřít modální okno pro správu plovoucích rychlých akcí",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Otevřít novou konverzaci",
"Open Sidebar": "Otevřít postranní panel", "Open Sidebar": "Otevřít postranní panel",
"Open User Profile Menu": "Otevřít nabídku profilu uživatele", "Open User Profile Menu": "Otevřít nabídku profilu uživatele",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Raději nevyberu", "Prefer not to say": "Raději nevyberu",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID se používá k zamezení konfliktů s jinými připojeními přidáním prefixu k ID modelů - pro vypnutí ponechte prázdné", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID se používá k zamezení konfliktů s jinými připojeními přidáním prefixu k ID modelů - pro vypnutí ponechte prázdné",
"Prevent file creation": "Zabránit vytváření souborů",
"Preview": "Náhled", "Preview": "Náhled",
"Previous 30 days": "Posledních 30 dní", "Previous 30 days": "Posledních 30 dní",
"Previous 7 days": "Posledních 7 dní", "Previous 7 days": "Posledních 7 dní",
@ -1398,7 +1388,6 @@
"Select only one model to call": "Vyberte pouze jeden model k volání", "Select only one model to call": "Vyberte pouze jeden model k volání",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Vybraný model (modely) nepodporuje obrazové vstupy.", "Selected model(s) do not support image inputs": "Vybraný model (modely) nepodporuje obrazové vstupy.",
"Self-Hosted": "",
"semantic": "sémantický", "semantic": "sémantický",
"Send": "Odeslat", "Send": "Odeslat",
"Send a Message": "Odeslat zprávu", "Send a Message": "Odeslat zprávu",
@ -1440,14 +1429,12 @@
"Share your background and interests": "Sdílejte své zkušenosti a zájmy", "Share your background and interests": "Sdílejte své zkušenosti a zájmy",
"Shared with you": "Sdíleno s vámi", "Shared with you": "Sdíleno s vámi",
"Sharing Permissions": "Oprávnění pro sdílení", "Sharing Permissions": "Oprávnění pro sdílení",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Zkratky s hvězdičkou (*) jsou situační a aktivní pouze za specifických podmínek.",
"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 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",
"Show shortcuts": "Zobrazit zkratky",
"Show your support!": "Vyjádřete svou podporu!", "Show your support!": "Vyjádřete svou podporu!",
"Showcased creativity": "Předvedená kreativita", "Showcased creativity": "Předvedená kreativita",
"Sign in": "Přihlásit se", "Sign in": "Přihlásit se",
@ -1482,7 +1469,6 @@
"Status Updates": "Aktualizace stavu", "Status Updates": "Aktualizace stavu",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Zastavit", "Stop": "Zastavit",
"Stop Generating": "Zastavit generování",
"Stop Sequence": "stop sequence", "Stop Sequence": "stop sequence",
"Stream Chat Response": "stream chat response", "Stream Chat Response": "stream chat response",
"Stream Delta Chunk Size": "stream delta chunk size", "Stream Delta Chunk Size": "stream delta chunk size",
@ -1512,7 +1498,6 @@
"Tags Generation": "Generování štítků", "Tags Generation": "Generování štítků",
"Tags Generation Prompt": "Instrukce pro generování štítků", "Tags Generation Prompt": "Instrukce pro generování štítků",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Vzorkování bez konce (tail free sampling) se používá ke snížení vlivu méně pravděpodobných tokenů na výstup. Vyšší hodnota (např. 2.0) sníží vliv více, zatímco hodnota 1.0 toto nastavení vypne.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Vzorkování bez konce (tail free sampling) se používá ke snížení vlivu méně pravděpodobných tokenů na výstup. Vyšší hodnota (např. 2.0) sníží vliv více, zatímco hodnota 1.0 toto nastavení vypne.",
"Talk to model": "Mluvit s modelem",
"Tap to interrupt": "Klepnutím přerušíte", "Tap to interrupt": "Klepnutím přerušíte",
"Task List": "Seznam úkolů", "Task List": "Seznam úkolů",
"Task Model": "Model pro úkoly", "Task Model": "Model pro úkoly",
@ -1594,9 +1579,6 @@
"Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích", "Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích",
"Today": "Dnes", "Today": "Dnes",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Přepnout vyhledávání",
"Toggle settings": "Přepnout nastavení",
"Toggle sidebar": "Přepnout postranní panel",
"Toggle whether current connection is active.": "Přepnout, zda je aktuální připojení aktivní.", "Toggle whether current connection is active.": "Přepnout, zda je aktuální připojení aktivní.",
"Token": "Token", "Token": "Token",
"Too verbose": "Příliš rozvláčné", "Too verbose": "Příliš rozvláčné",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger", "A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger",
"a user": "en bruger", "a user": "en bruger",
"About": "Information", "About": "Information",
"Accept autocomplete generation / Jump to prompt variable": "Accepter generede autofuldførsel / Spring til prompt variabel",
"Access": "Adgang", "Access": "Adgang",
"Access Control": "Adgangskontrol", "Access Control": "Adgangskontrol",
"Accessible to all users": "Tilgængelig for alle brugere", "Accessible to all users": "Tilgængelig for alle brugere",
@ -51,7 +50,6 @@
"Add Content": "Tilføj indhold", "Add Content": "Tilføj indhold",
"Add content here": "Tilføj indhold her", "Add content here": "Tilføj indhold her",
"Add Custom Parameter": "Tilføj brugerdefineret parameter", "Add Custom Parameter": "Tilføj brugerdefineret parameter",
"Add custom prompt": "Tilføj en special-prompt",
"Add Details": "", "Add Details": "",
"Add Files": "Tilføj filer", "Add Files": "Tilføj filer",
"Add Group": "Tilføj gruppe", "Add Group": "Tilføj gruppe",
@ -151,7 +149,6 @@
"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",
"Attach file from knowledge": "Vedhæft fil fra viden",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanalnavn", "Channel Name": "Kanalnavn",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Karakterer", "Character": "Karakterer",
@ -272,6 +270,7 @@
"Close modal": "Luk dialogboks", "Close modal": "Luk dialogboks",
"Close settings modal": "Luk dialogboks med indstillinger", "Close settings modal": "Luk dialogboks med indstillinger",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "Kodeblok", "Code Block": "Kodeblok",
"Code execution": "Kode kørsel", "Code execution": "Kode kørsel",
@ -331,8 +330,6 @@
"Copied to clipboard": "Kopieret til udklipsholder", "Copied to clipboard": "Kopieret til udklipsholder",
"Copy": "Kopier", "Copy": "Kopier",
"Copy Formatted Text": "Kopier formateret tekst", "Copy Formatted Text": "Kopier formateret tekst",
"Copy last code block": "Kopier seneste kode",
"Copy last response": "Kopier senester svar",
"Copy link": "Kopier link", "Copy link": "Kopier link",
"Copy Link": "Kopier link", "Copy Link": "Kopier link",
"Copy to clipboard": "Kopier til udklipsholder", "Copy to clipboard": "Kopier til udklipsholder",
@ -396,7 +393,6 @@
"Delete a model": "Slet en model", "Delete a model": "Slet en model",
"Delete All Chats": "Slet alle chats", "Delete All Chats": "Slet alle chats",
"Delete All Models": "Slet alle modeller", "Delete All Models": "Slet alle modeller",
"Delete chat": "Slet chat",
"Delete Chat": "Slet chat", "Delete Chat": "Slet chat",
"Delete chat?": "Slet chat?", "Delete chat?": "Slet chat?",
"Delete folder?": "Slet mappe?", "Delete folder?": "Slet mappe?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Base URL": "Firecrawl API Base URL",
"Firecrawl API Key": "Firecrawl API nøgle", "Firecrawl API Key": "Firecrawl API nøgle",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokuser på chatinput",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Mappe fjernet.", "Folder deleted successfully": "Mappe fjernet.",
@ -786,7 +781,6 @@
"Generate": "Generer", "Generate": "Generer",
"Generate an image": "Generer et billede", "Generate an image": "Generer et billede",
"Generate Image": "Generer billede", "Generate Image": "Generer billede",
"Generate prompt pair": "Generer prompt par",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Genererer søgeforespørgsel", "Generating search query": "Genererer søgeforespørgsel",
"Generating...": "Genererer...", "Generating...": "Genererer...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.",
"Input": "", "Input": "",
"Input commands": "Inputkommandoer",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Input variable", "Input Variables": "Input variable",
"Insert": "Indsæt", "Insert": "Indsæt",
@ -909,6 +902,7 @@
"Key": "Nøgle", "Key": "Nøgle",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Tastaturgenveje", "Keyboard shortcuts": "Tastaturgenveje",
"Keyboard Shortcuts": "",
"Knowledge": "Viden", "Knowledge": "Viden",
"Knowledge Access": "Videnadgang", "Knowledge Access": "Videnadgang",
"Knowledge Base": "Vidensbase", "Knowledge Base": "Vidensbase",
@ -952,6 +946,7 @@
"Loader": "Loader", "Loader": "Loader",
"Loading Kokoro.js...": "Indlæser Kokoro.js...", "Loading Kokoro.js...": "Indlæser Kokoro.js...",
"Loading...": "Indlæser...", "Loading...": "Indlæser...",
"local": "",
"Local": "Lokal", "Local": "Lokal",
"Local Task Model": "Lokal opgavemodel", "Local Task Model": "Lokal opgavemodel",
"Location access not allowed": "Adgang til placering ikke tilladt", "Location access not allowed": "Adgang til placering ikke tilladt",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbejde/skole)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbejde/skole)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API nøgle påkrævet.", "Mistral OCR API Key required.": "Mistral OCR API nøgle påkrævet.",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama-version", "Ollama Version": "Ollama-version",
"On": "Til", "On": "Til",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Kun aktiv når \"Indsæt store tekster som fil\" indstillingen er slået til.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Kun aktiv når chat input er i fokus og en LLM genererer et svar.",
"Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt", "Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Åbn modal for at konfigurere forbindelse", "Open modal to configure connection": "Åbn modal for at konfigurere forbindelse",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Åbn ny chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
"Prevent file creation": "Forhindr filoprettelse",
"Preview": "Forhåndsvisning", "Preview": "Forhåndsvisning",
"Previous 30 days": "Seneste 30 dage", "Previous 30 days": "Seneste 30 dage",
"Previous 7 days": "Seneste 7 dage", "Previous 7 days": "Seneste 7 dage",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Vælg kun én model at kalde", "Select only one model to call": "Vælg kun én model at kalde",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Valgte model(ler) understøtter ikke billedinput", "Selected model(s) do not support image inputs": "Valgte model(ler) understøtter ikke billedinput",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Send", "Send": "Send",
"Send a Message": "Send en besked", "Send a Message": "Send en besked",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Delingstilladelser", "Sharing Permissions": "Delingstilladelser",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Genveje med en stjerne (*) er situationsbestemte og kun aktive under specifikke betingelser.",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "Vis billedforhåndsvisning", "Show image preview": "Vis billedforhåndsvisning",
"Show Model": "Vis model", "Show Model": "Vis model",
"Show shortcuts": "Vis genveje",
"Show your support!": "Vis din støtte!", "Show your support!": "Vis din støtte!",
"Showcased creativity": "Udstillet kreativitet", "Showcased creativity": "Udstillet kreativitet",
"Sign in": "Log ind", "Sign in": "Log ind",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stop", "Stop": "Stop",
"Stop Generating": "Stop generering",
"Stop Sequence": "Stopsekvens", "Stop Sequence": "Stopsekvens",
"Stream Chat Response": "Stream chatsvar", "Stream Chat Response": "Stream chatsvar",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Tag generering", "Tags Generation": "Tag generering",
"Tags Generation Prompt": "Tag genererings prompt", "Tags Generation Prompt": "Tag genererings prompt",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling bruges til at reducere påvirkningen af mindre sandsynlige tokens fra outputtet. En højere værdi (f.eks. 2,0) vil reducere påvirkningen mere, mens en værdi på 1,0 deaktiverer denne indstilling.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling bruges til at reducere påvirkningen af mindre sandsynlige tokens fra outputtet. En højere værdi (f.eks. 2,0) vil reducere påvirkningen mere, mens en værdi på 1,0 deaktiverer denne indstilling.",
"Talk to model": "Tal til model",
"Tap to interrupt": "Tryk for at afbryde", "Tap to interrupt": "Tryk for at afbryde",
"Task List": "Opgaveliste", "Task List": "Opgaveliste",
"Task Model": "Opgavemodel", "Task Model": "Opgavemodel",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Toast-notifikationer for nye opdateringer", "Toast notifications for new updates": "Toast-notifikationer for nye opdateringer",
"Today": "I dag", "Today": "I dag",
"Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}",
"Toggle search": "Skift søgning",
"Toggle settings": "Skift indstillinger",
"Toggle sidebar": "Skift sidebjælke",
"Toggle whether current connection is active.": "Skift om nuværende forbindelse er aktiv.", "Toggle whether current connection is active.": "Skift om nuværende forbindelse er aktiv.",
"Token": "Token", "Token": "Token",
"Too verbose": "For ordrigt", "Too verbose": "For ordrigt",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet",
"a user": "ein Benutzer", "a user": "ein Benutzer",
"About": "Über", "About": "Über",
"Accept autocomplete generation / Jump to prompt variable": "Automatische Vervollständigung akzeptieren / Zur Prompt-Variable springen",
"Access": "Zugang", "Access": "Zugang",
"Access Control": "Zugangskontrolle", "Access Control": "Zugangskontrolle",
"Accessible to all users": "Für alle Benutzer zugänglich", "Accessible to all users": "Für alle Benutzer zugänglich",
@ -51,7 +50,6 @@
"Add Content": "Inhalt hinzufügen", "Add Content": "Inhalt hinzufügen",
"Add content here": "Inhalt hier hinzufügen", "Add content here": "Inhalt hier hinzufügen",
"Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen", "Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen",
"Add custom prompt": "Benutzerdefinierten Prompt hinzufügen",
"Add Details": "Details hinzufügen", "Add Details": "Details hinzufügen",
"Add Files": "Dateien hinzufügen", "Add Files": "Dateien hinzufügen",
"Add Group": "Gruppe hinzufügen", "Add Group": "Gruppe hinzufügen",
@ -151,7 +149,6 @@
"Ask": "Fragen", "Ask": "Fragen",
"Ask a question": "Stellen Sie eine Frage", "Ask a question": "Stellen Sie eine Frage",
"Assistant": "Assistent", "Assistant": "Assistent",
"Attach file from knowledge": "Datei aus Wissensspeicher anhängen",
"Attach Knowledge": "Wissensspeicher anhängen", "Attach Knowledge": "Wissensspeicher anhängen",
"Attach Notes": "Notizen anhängen", "Attach Notes": "Notizen anhängen",
"Attach Webpage": "Webseite anhängen", "Attach Webpage": "Webseite anhängen",
@ -221,6 +218,7 @@
"Channel": "Kanal", "Channel": "Kanal",
"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.": "",
"Channel updated successfully": "Kanal erfolgreich aktualisiert", "Channel updated successfully": "Kanal erfolgreich aktualisiert",
"Channels": "Kanäle", "Channels": "Kanäle",
"Character": "Zeichen", "Character": "Zeichen",
@ -272,6 +270,7 @@
"Close modal": "Modal schließen", "Close modal": "Modal schließen",
"Close settings modal": "Einstellungsfenster schließen", "Close settings modal": "Einstellungsfenster schließen",
"Close Sidebar": "Seitenleiste schließen", "Close Sidebar": "Seitenleiste schließen",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Name des CMU ARCTIC Sprecher-Embeddings", "CMU ARCTIC speaker embedding name": "Name des CMU ARCTIC Sprecher-Embeddings",
"Code Block": "Codeblock", "Code Block": "Codeblock",
"Code execution": "Codeausführung", "Code execution": "Codeausführung",
@ -331,8 +330,6 @@
"Copied to clipboard": "In die Zwischenablage kopiert", "Copied to clipboard": "In die Zwischenablage kopiert",
"Copy": "Kopieren", "Copy": "Kopieren",
"Copy Formatted Text": "Formatierten Text kopieren", "Copy Formatted Text": "Formatierten Text kopieren",
"Copy last code block": "Letzten Codeblock kopieren",
"Copy last response": "Letzte Antwort kopieren",
"Copy link": "Link kopieren", "Copy link": "Link kopieren",
"Copy Link": "Link kopieren", "Copy Link": "Link kopieren",
"Copy to clipboard": "In die Zwischenablage kopieren", "Copy to clipboard": "In die Zwischenablage kopieren",
@ -396,7 +393,6 @@
"Delete a model": "Ein Modell löschen", "Delete a model": "Ein Modell löschen",
"Delete All Chats": "Alle Chats löschen", "Delete All Chats": "Alle Chats löschen",
"Delete All Models": "Alle Modelle löschen", "Delete All Models": "Alle Modelle löschen",
"Delete chat": "Chat löschen",
"Delete Chat": "Chat löschen", "Delete Chat": "Chat löschen",
"Delete chat?": "Chat löschen?", "Delete chat?": "Chat löschen?",
"Delete folder?": "Ordner löschen?", "Delete folder?": "Ordner löschen?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API Basis-URL", "Firecrawl API Base URL": "Firecrawl API Basis-URL",
"Firecrawl API Key": "Firecrawl API-Schlüssel", "Firecrawl API Key": "Firecrawl API-Schlüssel",
"Floating Quick Actions": "Schnellaktionen", "Floating Quick Actions": "Schnellaktionen",
"Focus chat input": "Chat-Eingabe fokussieren",
"Folder": "Ordner", "Folder": "Ordner",
"Folder Background Image": "Ordner Hintergrundbild", "Folder Background Image": "Ordner Hintergrundbild",
"Folder deleted successfully": "Ordner erfolgreich gelöscht", "Folder deleted successfully": "Ordner erfolgreich gelöscht",
@ -786,7 +781,6 @@
"Generate": "Generieren", "Generate": "Generieren",
"Generate an image": "Bild erzeugen", "Generate an image": "Bild erzeugen",
"Generate Image": "Bild erzeugen", "Generate Image": "Bild erzeugen",
"Generate prompt pair": "Prompt-Paar generieren",
"Generated Image": "Generiertes Bild", "Generated Image": "Generiertes Bild",
"Generating search query": "Suchanfrage wird erstellt", "Generating search query": "Suchanfrage wird erstellt",
"Generating...": "Generiere...", "Generating...": "Generiere...",
@ -870,7 +864,6 @@
"Initials": "Initialen", "Initials": "Initialen",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.",
"Input": "Eingabe", "Input": "Eingabe",
"Input commands": "Eingabebefehle",
"Input Key (e.g. text, unet_name, steps)": "Eingabe Schlüssel (z.B. text, unet_name, steps)", "Input Key (e.g. text, unet_name, steps)": "Eingabe Schlüssel (z.B. text, unet_name, steps)",
"Input Variables": "Eingabe Variablen", "Input Variables": "Eingabe Variablen",
"Insert": "Einfügen", "Insert": "Einfügen",
@ -909,6 +902,7 @@
"Key": "Schlüssel", "Key": "Schlüssel",
"Key is required": "Schlüssel ist erforderlich", "Key is required": "Schlüssel ist erforderlich",
"Keyboard shortcuts": "Tastenkombinationen", "Keyboard shortcuts": "Tastenkombinationen",
"Keyboard Shortcuts": "",
"Knowledge": "Wissen", "Knowledge": "Wissen",
"Knowledge Access": "Wissenszugriff", "Knowledge Access": "Wissenszugriff",
"Knowledge Base": "Wissensdatenbank", "Knowledge Base": "Wissensdatenbank",
@ -952,6 +946,7 @@
"Loader": "Loader", "Loader": "Loader",
"Loading Kokoro.js...": "Lade Kokoro.js...", "Loading Kokoro.js...": "Lade Kokoro.js...",
"Loading...": "Lade...", "Loading...": "Lade...",
"local": "",
"Local": "Lokal", "Local": "Lokal",
"Local Task Model": "Lokales Aufgabenmodell", "Local Task Model": "Lokales Aufgabenmodell",
"Location access not allowed": "Standortzugriff nicht erlaubt", "Location access not allowed": "Standortzugriff nicht erlaubt",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (Arbeit/Schule)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (Arbeit/Schule)",
"MinerU": "MinerU", "MinerU": "MinerU",
"MinerU API Key required for Cloud API mode.": "MinerU API-Schlüssel erforderlich für den Cloud-API-Modus.", "MinerU API Key required for Cloud API mode.": "MinerU API-Schlüssel erforderlich für den Cloud-API-Modus.",
"minerU managed (Cloud API)": "MinerU managed (Cloud-API)",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API-Schlüssel erforderlich.", "Mistral OCR API Key required.": "Mistral OCR API-Schlüssel erforderlich.",
"Model": "Modell", "Model": "Modell",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama-Version", "Ollama Version": "Ollama-Version",
"On": "Ein", "On": "Ein",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Nur aktiv, wenn die \"Großen Text als Datei einfügen\" Option aktiviert ist.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Nur aktiv, wenn die Eingabe im Chat ausgewählt ist und ein LLM gerade eine Antwort generiert.",
"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt", "Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.", "Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Modal öffnen, um die Verbindung zu konfigurieren", "Open modal to configure connection": "Modal öffnen, um die Verbindung zu konfigurieren",
"Open Modal To Manage Floating Quick Actions": "Modal öffnen, um Schnellaktionen zu verwalten", "Open Modal To Manage Floating Quick Actions": "Modal öffnen, um Schnellaktionen zu verwalten",
"Open Modal To Manage Image Compression": "Modal öffnen, um die Bildkompression zu verwalten", "Open Modal To Manage Image Compression": "Modal öffnen, um die Bildkompression zu verwalten",
"Open new chat": "Neuen Chat öffnen",
"Open Sidebar": "Seitenleiste öffnen", "Open Sidebar": "Seitenleiste öffnen",
"Open User Profile Menu": "Benutzerprofilmenü öffnen", "Open User Profile Menu": "Benutzerprofilmenü öffnen",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Keine Angabe", "Prefer not to say": "Keine Angabe",
"Prefix ID": "Präfix-ID", "Prefix ID": "Präfix-ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
"Prevent file creation": "Dateierstellung verhindern",
"Preview": "Vorschau", "Preview": "Vorschau",
"Previous 30 days": "Vorherige 30 Tage", "Previous 30 days": "Vorherige 30 Tage",
"Previous 7 days": "Vorherige 7 Tage", "Previous 7 days": "Vorherige 7 Tage",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Wählen Sie nur ein Modell zum Anrufen aus", "Select only one model to call": "Wählen Sie nur ein Modell zum Anrufen aus",
"Select view": "Ansicht wählen", "Select view": "Ansicht wählen",
"Selected model(s) do not support image inputs": "Ihre ausgewählten Modelle unterstützen keine Bildeingaben", "Selected model(s) do not support image inputs": "Ihre ausgewählten Modelle unterstützen keine Bildeingaben",
"Self-Hosted": "Selbstgehostet",
"semantic": "semantisch", "semantic": "semantisch",
"Send": "Senden", "Send": "Senden",
"Send a Message": "Eine Nachricht senden", "Send a Message": "Eine Nachricht senden",
@ -1438,14 +1427,12 @@
"Share your background and interests": "Teilen Sie Ihren Hintergrund und Ihre Interessen", "Share your background and interests": "Teilen Sie Ihren Hintergrund und Ihre Interessen",
"Shared with you": "Mit dir geteilt", "Shared with you": "Mit dir geteilt",
"Sharing Permissions": "Berechtigungen teilen", "Sharing Permissions": "Berechtigungen teilen",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Tastenkürzel mit einem Sternchen (*) sind situationsbedingt und nur unter bestimmten Bedingungen aktiv.",
"Show": "Anzeigen", "Show": "Anzeigen",
"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen", "Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen", "Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
"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",
"Show shortcuts": "Verknüpfungen anzeigen",
"Show your support!": "Zeigen Sie Ihre Unterstützung!", "Show your support!": "Zeigen Sie Ihre Unterstützung!",
"Showcased creativity": "Kreativität gezeigt", "Showcased creativity": "Kreativität gezeigt",
"Sign in": "Anmelden", "Sign in": "Anmelden",
@ -1480,7 +1467,6 @@
"Status Updates": "Statusaktualisierungen", "Status Updates": "Statusaktualisierungen",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stop", "Stop": "Stop",
"Stop Generating": "Generierung stoppen",
"Stop Sequence": "Stop-Sequenz", "Stop Sequence": "Stop-Sequenz",
"Stream Chat Response": "Chat-Antwort streamen", "Stream Chat Response": "Chat-Antwort streamen",
"Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe", "Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe",
@ -1510,7 +1496,6 @@
"Tags Generation": "Tag-Generierung", "Tags Generation": "Tag-Generierung",
"Tags Generation Prompt": "Prompt für Tag-Generierung", "Tags Generation Prompt": "Prompt für Tag-Generierung",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Token auf die Ausgabe zu reduzieren. Ein höherer Wert (z. B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Token auf die Ausgabe zu reduzieren. Ein höherer Wert (z. B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)",
"Talk to model": "Zu einem Modell sprechen",
"Tap to interrupt": "Zum Unterbrechen tippen", "Tap to interrupt": "Zum Unterbrechen tippen",
"Task List": "Aufgabenliste", "Task List": "Aufgabenliste",
"Task Model": "Aufgabenmodell", "Task Model": "Aufgabenmodell",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates", "Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates",
"Today": "Heute", "Today": "Heute",
"Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}",
"Toggle search": "Suche umschalten",
"Toggle settings": "Einstellungen umschalten",
"Toggle sidebar": "Seitenleiste umschalten",
"Toggle whether current connection is active.": "Aktuelle Verbindung umschalten.", "Toggle whether current connection is active.": "Aktuelle Verbindung umschalten.",
"Token": "Token", "Token": "Token",
"Too verbose": "Zu ausführlich", "Too verbose": "Zu ausführlich",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "such user", "a user": "such user",
"About": "Much About", "About": "Much About",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Add Files", "Add Files": "Add Files",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "", "Copy": "",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Copy last code block",
"Copy last response": "Copy last response",
"Copy link": "", "Copy link": "",
"Copy Link": "", "Copy Link": "",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Delete a model", "Delete a model": "Delete a model",
"Delete All Chats": "", "Delete All Chats": "",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Delete chat",
"Delete Chat": "", "Delete Chat": "",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Focus chat bork",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "", "Generating search query": "",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Input commands",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Keyboard Barkcuts", "Keyboard shortcuts": "Keyboard Barkcuts",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Much loading...", "Loading...": "Much loading...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama Version", "Ollama Version": "Ollama Version",
"On": "On", "On": "On",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Open new bark",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "", "Send": "",
"Send a Message": "Send a Message much message", "Send a Message": "Send a Message much message",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Show shortcuts much shortcut",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "Sign in very sign", "Sign in": "Sign in very sign",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Stop Sequence much stop", "Stop Sequence": "Stop Sequence much stop",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Talk to model",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "", "Today": "",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Toggle settings much toggle",
"Toggle sidebar": "Toggle sidebar much toggle",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο",
"a user": "ένας χρήστης", "a user": "ένας χρήστης",
"About": "Σχετικά", "About": "Σχετικά",
"Accept autocomplete generation / Jump to prompt variable": "Αποδοχή αυτόματης συμπλήρωσης / Μετάβαση στη μεταβλητή της προτροπή",
"Access": "Πρόσβαση", "Access": "Πρόσβαση",
"Access Control": "Έλεγχος Πρόσβασης", "Access Control": "Έλεγχος Πρόσβασης",
"Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες", "Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες",
@ -51,7 +50,6 @@
"Add Content": "Προσθήκη Περιεχομένου", "Add Content": "Προσθήκη Περιεχομένου",
"Add content here": "Προσθέστε περιεχόμενο εδώ", "Add content here": "Προσθέστε περιεχόμενο εδώ",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Προσθήκη προσαρμοσμένης προτροπής",
"Add Details": "", "Add Details": "",
"Add Files": "Προσθήκη Αρχείων", "Add Files": "Προσθήκη Αρχείων",
"Add Group": "Προσθήκη Ομάδας", "Add Group": "Προσθήκη Ομάδας",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Ρωτήστε μια ερώτηση", "Ask a question": "Ρωτήστε μια ερώτηση",
"Assistant": "Βοηθός", "Assistant": "Βοηθός",
"Attach file from knowledge": "Προσθήκη αρχείου από Knowledge",
"Attach Knowledge": "Προσθήκη Knowledge", "Attach Knowledge": "Προσθήκη Knowledge",
"Attach Notes": "Προσθήκη Σημειώσεων", "Attach Notes": "Προσθήκη Σημειώσεων",
"Attach Webpage": "Προσθήκη ιστότοπου", "Attach Webpage": "Προσθήκη ιστότοπου",
@ -221,6 +218,7 @@
"Channel": "Κανάλι", "Channel": "Κανάλι",
"Channel deleted successfully": "Το κανάλι διαγράφηκε επιτυχώς", "Channel deleted successfully": "Το κανάλι διαγράφηκε επιτυχώς",
"Channel Name": "Όνομα Καναλιού", "Channel Name": "Όνομα Καναλιού",
"Channel name cannot be empty.": "",
"Channel updated successfully": "Το κανάλι ενημερώθηκε επιτυχώς", "Channel updated successfully": "Το κανάλι ενημερώθηκε επιτυχώς",
"Channels": "Κανάλια", "Channels": "Κανάλια",
"Character": "Χαρακτήρας", "Character": "Χαρακτήρας",
@ -272,6 +270,7 @@
"Close modal": "Κλείσιμο παραθύρου διαλόγου", "Close modal": "Κλείσιμο παραθύρου διαλόγου",
"Close settings modal": "Κλείσιμο παραθύρου διαμόρφωσης ρυθμίσεων", "Close settings modal": "Κλείσιμο παραθύρου διαμόρφωσης ρυθμίσεων",
"Close Sidebar": "Κλείσιμο πλευρικής μπάρας", "Close Sidebar": "Κλείσιμο πλευρικής μπάρας",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Όνομα μοντέλου ενσωματώσεων ομιλητή CMU ARCTIC", "CMU ARCTIC speaker embedding name": "Όνομα μοντέλου ενσωματώσεων ομιλητή CMU ARCTIC",
"Code Block": "Μπλοκ Κώδικα", "Code Block": "Μπλοκ Κώδικα",
"Code execution": "Εκτέλεση κώδικα", "Code execution": "Εκτέλεση κώδικα",
@ -331,8 +330,6 @@
"Copied to clipboard": "Αντιγράφηκε στο πρόχειρο", "Copied to clipboard": "Αντιγράφηκε στο πρόχειρο",
"Copy": "Αντιγραφή", "Copy": "Αντιγραφή",
"Copy Formatted Text": "Αντιγραφή μορφοποιημένου κειμένου", "Copy Formatted Text": "Αντιγραφή μορφοποιημένου κειμένου",
"Copy last code block": "Αντιγραφή τελευταίου μπλοκ κώδικα",
"Copy last response": "Αντιγραφή τελευταίας απάντησης",
"Copy link": "Αντιγραφή συνδέσμου", "Copy link": "Αντιγραφή συνδέσμου",
"Copy Link": "Αντιγραφή Συνδέσμου", "Copy Link": "Αντιγραφή Συνδέσμου",
"Copy to clipboard": "Αντιγραφή στο πρόχειρο", "Copy to clipboard": "Αντιγραφή στο πρόχειρο",
@ -396,7 +393,6 @@
"Delete a model": "Διαγραφή ενός μοντέλου", "Delete a model": "Διαγραφή ενός μοντέλου",
"Delete All Chats": "Διαγραφή Όλων των Συνομιλιών", "Delete All Chats": "Διαγραφή Όλων των Συνομιλιών",
"Delete All Models": "Διαγραφή Όλων των Μοντέλων", "Delete All Models": "Διαγραφή Όλων των Μοντέλων",
"Delete chat": "Διαγραφή συνομιλίας",
"Delete Chat": "Διαγραφή Συνομιλίας", "Delete Chat": "Διαγραφή Συνομιλίας",
"Delete chat?": "Διαγραφή συνομιλίας;", "Delete chat?": "Διαγραφή συνομιλίας;",
"Delete folder?": "Διαγραφή φακέλου;", "Delete folder?": "Διαγραφή φακέλου;",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL του API του Firecrawl", "Firecrawl API Base URL": "URL του API του Firecrawl",
"Firecrawl API Key": "API κλειδί του Firecrawl", "Firecrawl API Key": "API κλειδί του Firecrawl",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Εστίαση στο πεδίο συνομιλίας",
"Folder": "Φάκελος", "Folder": "Φάκελος",
"Folder Background Image": "Εικόνα Φόντου Φακέλου", "Folder Background Image": "Εικόνα Φόντου Φακέλου",
"Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία", "Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία",
@ -786,7 +781,6 @@
"Generate": "Δημιουργία", "Generate": "Δημιουργία",
"Generate an image": "Δημιουργία εικόνας", "Generate an image": "Δημιουργία εικόνας",
"Generate Image": "Δημιουργία Εικόνας", "Generate Image": "Δημιουργία Εικόνας",
"Generate prompt pair": "Δημιουργία ζευγαριού προτροπής",
"Generated Image": "Δημιουργημένη Εικόνα", "Generated Image": "Δημιουργημένη Εικόνα",
"Generating search query": "Γενιά αναζήτησης ερώτησης", "Generating search query": "Γενιά αναζήτησης ερώτησης",
"Generating...": "Δημιουργία...", "Generating...": "Δημιουργία...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Εισάγετε ολόκληρο το περιεχόμενο ως συμφραζόμενο για ολοκληρωμένη επεξεργασία. Αυτό συνιστάται για σύνθετα ερωτήματα.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Εισάγετε ολόκληρο το περιεχόμενο ως συμφραζόμενο για ολοκληρωμένη επεξεργασία. Αυτό συνιστάται για σύνθετα ερωτήματα.",
"Input": "", "Input": "",
"Input commands": "Εισαγωγή εντολών",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Κλειδί", "Key": "Κλειδί",
"Key is required": "Το κλειδί είναι απαραίτητο", "Key is required": "Το κλειδί είναι απαραίτητο",
"Keyboard shortcuts": "Συντομεύσεις Πληκτρολογίου", "Keyboard shortcuts": "Συντομεύσεις Πληκτρολογίου",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "Πρόσβαση στο Knowledge", "Knowledge Access": "Πρόσβαση στο Knowledge",
"Knowledge Base": "Βάση Knowledge", "Knowledge Base": "Βάση Knowledge",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Φόρτωση...", "Loading...": "Φόρτωση...",
"local": "",
"Local": "Τοπικά", "Local": "Τοπικά",
"Local Task Model": "Τοπικό Μοντέλο Εργασιών", "Local Task Model": "Τοπικό Μοντέλο Εργασιών",
"Location access not allowed": "Η πρόσβαση στην τοποθεσία δεν επιτρέπεται", "Location access not allowed": "Η πρόσβαση στην τοποθεσία δεν επιτρέπεται",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "Απαιτείται το API κλειδί του Mistral OCR.", "Mistral OCR API Key required.": "Απαιτείται το API κλειδί του Mistral OCR.",
"Model": "Μοντέλο", "Model": "Μοντέλο",
@ -1119,8 +1113,6 @@
"Ollama Version": "Έκδοση Ollama", "Ollama Version": "Έκδοση Ollama",
"On": "Ενεργό", "On": "Ενεργό",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες", "Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης", "Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "Άνοιγμα παραθύρου διαλόγου για διαχείριση συμπίεσης εικόνων", "Open Modal To Manage Image Compression": "Άνοιγμα παραθύρου διαλόγου για διαχείριση συμπίεσης εικόνων",
"Open new chat": "Άνοιγμα νέας συνομιλίας",
"Open Sidebar": "Άνοιγμα πλευρικής μπάρας", "Open Sidebar": "Άνοιγμα πλευρικής μπάρας",
"Open User Profile Menu": "Άνοιγμα μενού προφίλ χρήστη", "Open User Profile Menu": "Άνοιγμα μενού προφίλ χρήστη",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "ID Προθέματος", "Prefix ID": "ID Προθέματος",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
"Prevent file creation": "Αποτροπή δημιουργίας αρχείου",
"Preview": "Προεπισκόπηση", "Preview": "Προεπισκόπηση",
"Previous 30 days": "Προηγούμενες 30 ημέρες", "Previous 30 days": "Προηγούμενες 30 ημέρες",
"Previous 7 days": "Προηγούμενες 7 ημέρες", "Previous 7 days": "Προηγούμενες 7 ημέρες",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση", "Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Τα επιλεγμένα μοντέλα δεν υποστηρίζουν είσοδο εικόνων", "Selected model(s) do not support image inputs": "Τα επιλεγμένα μοντέλα δεν υποστηρίζουν είσοδο εικόνων",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Αποστολή", "Send": "Αποστολή",
"Send a Message": "Αποστολή Μηνύματος", "Send a Message": "Αποστολή Μηνύματος",
@ -1438,14 +1427,12 @@
"Share your background and interests": "Μοιραστείτε μερικά λόγια για εσάς, όπως τα ενδιαφέροντά σας", "Share your background and interests": "Μοιραστείτε μερικά λόγια για εσάς, όπως τα ενδιαφέροντά σας",
"Shared with you": "Μοιρασμένα με εσάς", "Shared with you": "Μοιρασμένα με εσάς",
"Sharing Permissions": "Δικαιώματα Κοινής Χρήσης", "Sharing Permissions": "Δικαιώματα Κοινής Χρήσης",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Οι συντομεύσεις με αστερίσκο (*) είναι ενεργές μόνο υπό συγκεκριμένες συνθήκες.",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Εμφάνιση συντομεύσεων",
"Show your support!": "Δείξτε την υποστήριξή σας!", "Show your support!": "Δείξτε την υποστήριξή σας!",
"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα", "Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
"Sign in": "Σύνδεση", "Sign in": "Σύνδεση",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Σταμάτημα", "Stop": "Σταμάτημα",
"Stop Generating": "Διακοπή Δημιουργίας",
"Stop Sequence": "Σειρά Παύσης", "Stop Sequence": "Σειρά Παύσης",
"Stream Chat Response": "Ροή Δεδομένων Απαντήσεων", "Stream Chat Response": "Ροή Δεδομένων Απαντήσεων",
"Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής", "Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής",
@ -1510,7 +1496,6 @@
"Tags Generation": "Δημιουργία Ετικετών", "Tags Generation": "Δημιουργία Ετικετών",
"Tags Generation Prompt": "Προτροπή Δημιουργίας Ετικετών", "Tags Generation Prompt": "Προτροπή Δημιουργίας Ετικετών",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Μιλήστε στο μοντέλο",
"Tap to interrupt": "Πατήστε για παύση", "Tap to interrupt": "Πατήστε για παύση",
"Task List": "Λίστα Εργασιών", "Task List": "Λίστα Εργασιών",
"Task Model": "Μοντέλο Εργασίας", "Task Model": "Μοντέλο Εργασίας",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις", "Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις",
"Today": "Σήμερα", "Today": "Σήμερα",
"Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}",
"Toggle search": "Εναλλαγή αναζήτησης",
"Toggle settings": "Εναλλαγή ρυθμίσεων",
"Toggle sidebar": "Εναλλαγή πλαϊνού μενού",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "Πολύ λεπτομερές", "Too verbose": "Πολύ λεπτομερές",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "", "Add Files": "",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "", "Copy": "",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "",
"Copy last response": "",
"Copy link": "", "Copy link": "",
"Copy Link": "", "Copy Link": "",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "", "Delete a model": "",
"Delete All Chats": "", "Delete All Chats": "",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "",
"Delete Chat": "", "Delete Chat": "",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "", "Generating search query": "",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "", "Loading...": "",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "", "Ollama Version": "",
"On": "", "On": "",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "", "Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "", "Send": "",
"Send a Message": "", "Send a Message": "",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "", "Sign in": "",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "", "STDOUT/STDERR": "",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "", "Stop Sequence": "",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "", "Today": "",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "",
"Toggle sidebar": "",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "", "Add Files": "",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -273,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -332,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "", "Copy": "",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "",
"Copy last response": "",
"Copy link": "", "Copy link": "",
"Copy Link": "", "Copy Link": "",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -397,7 +393,6 @@
"Delete a model": "", "Delete a model": "",
"Delete All Chats": "", "Delete All Chats": "",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "",
"Delete Chat": "", "Delete Chat": "",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -740,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -787,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "Generated Image", "Generated Image": "Generated Image",
"Generating search query": "", "Generating search query": "",
"Generating...": "", "Generating...": "",
@ -871,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -910,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -953,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "", "Loading...": "",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -999,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1120,8 +1113,6 @@
"Ollama Version": "", "Ollama Version": "",
"On": "", "On": "",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "", "Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1137,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1226,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
@ -1397,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "", "Send": "",
"Send a Message": "", "Send a Message": "",
@ -1439,15 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "",
"Show Sidebar Hotkey Hints": "",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "", "Sign in": "",
@ -1482,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "", "STDOUT/STDERR": "",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "", "Stop Sequence": "",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1512,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1594,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "", "Today": "",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "",
"Toggle sidebar": "",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web",
"a user": "un usuario", "a user": "un usuario",
"About": "Acerca de", "About": "Acerca de",
"Accept autocomplete generation / Jump to prompt variable": "Aceptar generación de autocompletado / Saltar a indicador variable",
"Access": "Acceso", "Access": "Acceso",
"Access Control": "Control de Acceso", "Access Control": "Control de Acceso",
"Accessible to all users": "Accesible para todos los usuarios", "Accessible to all users": "Accesible para todos los usuarios",
@ -51,7 +50,6 @@
"Add Content": "Añadir Contenido", "Add Content": "Añadir Contenido",
"Add content here": "Añadir contenido aquí", "Add content here": "Añadir contenido aquí",
"Add Custom Parameter": "Añadir parámetro personalizado", "Add Custom Parameter": "Añadir parámetro personalizado",
"Add custom prompt": "Añadir un indicador personalizado",
"Add Details": "Añadir Detalles", "Add Details": "Añadir Detalles",
"Add Files": "Añadir Archivos", "Add Files": "Añadir Archivos",
"Add Group": "Añadir Grupo", "Add Group": "Añadir Grupo",
@ -151,7 +149,6 @@
"Ask": "Preguntar", "Ask": "Preguntar",
"Ask a question": "Haz una pregunta", "Ask a question": "Haz una pregunta",
"Assistant": "Asistente", "Assistant": "Asistente",
"Attach file from knowledge": "Adjuntar archivo desde conocimiento",
"Attach Knowledge": "Adjuntar Conocimiento", "Attach Knowledge": "Adjuntar Conocimiento",
"Attach Notes": "Adjuntar Notas", "Attach Notes": "Adjuntar Notas",
"Attach Webpage": "Adjuntar Página Web", "Attach Webpage": "Adjuntar Página Web",
@ -221,6 +218,7 @@
"Channel": "Canal", "Channel": "Canal",
"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.": "",
"Channel updated successfully": "Canal actualizado correctamente", "Channel updated successfully": "Canal actualizado correctamente",
"Channels": "Canal", "Channels": "Canal",
"Character": "Carácter", "Character": "Carácter",
@ -272,6 +270,7 @@
"Close modal": "Cerrar modal", "Close modal": "Cerrar modal",
"Close settings modal": "Cerrar modal configuraciones", "Close settings modal": "Cerrar modal configuraciones",
"Close Sidebar": "Cerrar Barra Lateral", "Close Sidebar": "Cerrar Barra Lateral",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Nombre de incrustación CMU ARCTIC del interlocutor", "CMU ARCTIC speaker embedding name": "Nombre de incrustación CMU ARCTIC del interlocutor",
"Code Block": "Bloque de Código", "Code Block": "Bloque de Código",
"Code execution": "Ejecución de Código", "Code execution": "Ejecución de Código",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiado al portapapeles", "Copied to clipboard": "Copiado al portapapeles",
"Copy": "Copiar", "Copy": "Copiar",
"Copy Formatted Text": "Copiar Texto Formateado", "Copy Formatted Text": "Copiar Texto Formateado",
"Copy last code block": "Copia el último bloque de código",
"Copy last response": "Copia la última respuesta",
"Copy link": "Copiar Enlace", "Copy link": "Copiar Enlace",
"Copy Link": "Copiar enlace", "Copy Link": "Copiar enlace",
"Copy to clipboard": "Copia a portapapeles", "Copy to clipboard": "Copia a portapapeles",
@ -396,7 +393,6 @@
"Delete a model": "Borrar un modelo", "Delete a model": "Borrar un modelo",
"Delete All Chats": "Borrar todos los chats", "Delete All Chats": "Borrar todos los chats",
"Delete All Models": "Borrar todos los modelos", "Delete All Models": "Borrar todos los modelos",
"Delete chat": "Borrar chat",
"Delete Chat": "Borrar Chat", "Delete Chat": "Borrar Chat",
"Delete chat?": "¿Borrar el chat?", "Delete chat?": "¿Borrar el chat?",
"Delete folder?": "¿Borrar carpeta?", "Delete folder?": "¿Borrar carpeta?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL Base de API de Firecrawl", "Firecrawl API Base URL": "URL Base de API de Firecrawl",
"Firecrawl API Key": "Clave de API de Firecrawl", "Firecrawl API Key": "Clave de API de Firecrawl",
"Floating Quick Actions": "Acciones Rápidas Flotantes", "Floating Quick Actions": "Acciones Rápidas Flotantes",
"Focus chat input": "Enfocar campo de chat",
"Folder": "Carpeta", "Folder": "Carpeta",
"Folder Background Image": "Imagen de Fondo de la Carpeta", "Folder Background Image": "Imagen de Fondo de la Carpeta",
"Folder deleted successfully": "Carpeta eliminada correctamente", "Folder deleted successfully": "Carpeta eliminada correctamente",
@ -786,7 +781,6 @@
"Generate": "Generar", "Generate": "Generar",
"Generate an image": "Generar una imagen", "Generate an image": "Generar una imagen",
"Generate Image": "Generar imagen", "Generate Image": "Generar imagen",
"Generate prompt pair": "Generar par de indicadores",
"Generated Image": "Imagen Generada", "Generated Image": "Imagen Generada",
"Generating search query": "Generando consulta de búsqueda", "Generating search query": "Generando consulta de búsqueda",
"Generating...": "Generando", "Generating...": "Generando",
@ -870,7 +864,6 @@
"Initials": "Iniciales", "Initials": "Iniciales",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "Ingresa Clave (ej. text, unet_name. steps)", "Input Key (e.g. text, unet_name, steps)": "Ingresa Clave (ej. text, unet_name. steps)",
"Input Variables": "Ingresar variables", "Input Variables": "Ingresar variables",
"Insert": "Insertar", "Insert": "Insertar",
@ -909,6 +902,7 @@
"Key": "Clave", "Key": "Clave",
"Key is required": "La Clave es requerida", "Key is required": "La Clave es requerida",
"Keyboard shortcuts": "Atajos de teclado", "Keyboard shortcuts": "Atajos de teclado",
"Keyboard Shortcuts": "",
"Knowledge": "Conocimiento", "Knowledge": "Conocimiento",
"Knowledge Access": "Acceso a Conocimiento", "Knowledge Access": "Acceso a Conocimiento",
"Knowledge Base": "Base de Conocimiento", "Knowledge Base": "Base de Conocimiento",
@ -952,6 +946,7 @@
"Loader": "Cargador", "Loader": "Cargador",
"Loading Kokoro.js...": "Cargando Kokoro.js...", "Loading Kokoro.js...": "Cargando Kokoro.js...",
"Loading...": "Cargando...", "Loading...": "Cargando...",
"local": "",
"Local": "Local", "Local": "Local",
"Local Task Model": "Modelo Local para Tarea", "Local Task Model": "Modelo Local para Tarea",
"Location access not allowed": "Sin acceso a la Ubicación", "Location access not allowed": "Sin acceso a la Ubicación",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (trabajo/estudio)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (trabajo/estudio)",
"MinerU": "MinerU", "MinerU": "MinerU",
"MinerU API Key required for Cloud API mode.": "La clave API de MinerU es necesaria para el modo Cloud API", "MinerU API Key required for Cloud API mode.": "La clave API de MinerU es necesaria para el modo Cloud API",
"minerU managed (Cloud API)": "MinerU gestionado (Cloud API)",
"Mistral OCR": "OCR Mistral", "Mistral OCR": "OCR Mistral",
"Mistral OCR API Key required.": "Clave API de Mistral OCR requerida", "Mistral OCR API Key required.": "Clave API de Mistral OCR requerida",
"Model": "Modelo", "Model": "Modelo",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versión de Ollama", "Ollama Version": "Versión de Ollama",
"On": "Activado", "On": "Activado",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Solo activo cuando la opción \"Pegar el Texto Largo como Archivo\" está activada.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Solo activo cuando el foco está en la entrada del chat y el LLM está generando una respuesta.",
"Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones", "Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Abrir modal para configurar la conexión", "Open modal to configure connection": "Abrir modal para configurar la conexión",
"Open Modal To Manage Floating Quick Actions": "Abrir Modal para Gestionar Acciones Rápidas Flotantes", "Open Modal To Manage Floating Quick Actions": "Abrir Modal para Gestionar Acciones Rápidas Flotantes",
"Open Modal To Manage Image Compression": "Abrir Modal para Gestionar Compresión de Imagen", "Open Modal To Manage Image Compression": "Abrir Modal para Gestionar Compresión de Imagen",
"Open new chat": "Abrir nuevo chat",
"Open Sidebar": "Abrir Barra Lateral", "Open Sidebar": "Abrir Barra Lateral",
"Open User Profile Menu": "Abrir Menu de Perfiles de Usuario", "Open User Profile Menu": "Abrir Menu de Perfiles de Usuario",
"Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI", "Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Prefiero no decirlo", "Prefer not to say": "Prefiero no decirlo",
"Prefix ID": "prefijo ID", "Prefix ID": "prefijo ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
"Prevent file creation": "Prevenir la creación de archivos",
"Preview": "Previsualización", "Preview": "Previsualización",
"Previous 30 days": "30 días previos", "Previous 30 days": "30 días previos",
"Previous 7 days": "7 días previos", "Previous 7 days": "7 días previos",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Seleccionar sólo un modelo a llamar", "Select only one model to call": "Seleccionar sólo un modelo a llamar",
"Select view": "Seleccionar vista", "Select view": "Seleccionar vista",
"Selected model(s) do not support image inputs": "Modelo(s) seleccionado(s) no admiten entradas de imagen", "Selected model(s) do not support image inputs": "Modelo(s) seleccionado(s) no admiten entradas de imagen",
"Self-Hosted": "Auto Alojado",
"semantic": "semántica", "semantic": "semántica",
"Send": "Enviar", "Send": "Enviar",
"Send a Message": "Enviar un Mensaje", "Send a Message": "Enviar un Mensaje",
@ -1439,14 +1428,12 @@
"Share your background and interests": "Compartir tus antecedentes e intereses", "Share your background and interests": "Compartir tus antecedentes e intereses",
"Shared with you": "Compartido contigo", "Shared with you": "Compartido contigo",
"Sharing Permissions": "Permisos al Compartir", "Sharing Permissions": "Permisos al Compartir",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Accesos cortos con un asterisco (*) depende de la situación y solo activos bajo determinadas condiciones.",
"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 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",
"Show shortcuts": "Mostrar Atajos",
"Show your support!": "¡Muestra tu apoyo!", "Show your support!": "¡Muestra tu apoyo!",
"Showcased creativity": "Creatividad exhibida", "Showcased creativity": "Creatividad exhibida",
"Sign in": "Iniciar Sesión", "Sign in": "Iniciar Sesión",
@ -1481,7 +1468,6 @@
"Status Updates": "Actualizaciones de Estado", "Status Updates": "Actualizaciones de Estado",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Detener", "Stop": "Detener",
"Stop Generating": "Detener la Generación",
"Stop Sequence": "Secuencia de Parada", "Stop Sequence": "Secuencia de Parada",
"Stream Chat Response": "Transmisión Directa de la Respuesta del Chat", "Stream Chat Response": "Transmisión Directa de la Respuesta del Chat",
"Stream Delta Chunk Size": "Tamaño del Fragmentado Incremental para la Transmisión Directa", "Stream Delta Chunk Size": "Tamaño del Fragmentado Incremental para la Transmisión Directa",
@ -1511,7 +1497,6 @@
"Tags Generation": "Generación de Etiquetas", "Tags Generation": "Generación de Etiquetas",
"Tags Generation Prompt": "Indicador para la Generación de Etiquetas", "Tags Generation Prompt": "Indicador para la Generación de Etiquetas",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El Muestreo de cola libre(TFS_Z) es usado para reducir el impacto de los tokens menos probables en la salida. Un valor más alto (p.ej. 2.0) reduce más fuertemente el impacto, mientras que un valor de 1.0 deshabilita este ajuste.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El Muestreo de cola libre(TFS_Z) es usado para reducir el impacto de los tokens menos probables en la salida. Un valor más alto (p.ej. 2.0) reduce más fuertemente el impacto, mientras que un valor de 1.0 deshabilita este ajuste.",
"Talk to model": "Hablar con el modelo",
"Tap to interrupt": "Toca para interrumpir", "Tap to interrupt": "Toca para interrumpir",
"Task List": "Lista de Tareas", "Task List": "Lista de Tareas",
"Task Model": "Modelo de Tarea", "Task Model": "Modelo de Tarea",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones", "Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones",
"Today": "Hoy", "Today": "Hoy",
"Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}",
"Toggle search": "Alternar busqueda",
"Toggle settings": "Alternar Ajustes",
"Toggle sidebar": "Alternar Barra Lateral",
"Toggle whether current connection is active.": "Alternar si la conexión actual está activa", "Toggle whether current connection is active.": "Alternar si la conexión actual está activa",
"Token": "Token", "Token": "Token",
"Too verbose": "Demasiado detallado", "Too verbose": "Demasiado detallado",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine",
"a user": "kasutaja", "a user": "kasutaja",
"About": "Teave", "About": "Teave",
"Accept autocomplete generation / Jump to prompt variable": "Nõustu automaattäitmisega / Liigu vihjete muutujale",
"Access": "Juurdepääs", "Access": "Juurdepääs",
"Access Control": "Juurdepääsu kontroll", "Access Control": "Juurdepääsu kontroll",
"Accessible to all users": "Kättesaadav kõigile kasutajatele", "Accessible to all users": "Kättesaadav kõigile kasutajatele",
@ -51,7 +50,6 @@
"Add Content": "Lisa sisu", "Add Content": "Lisa sisu",
"Add content here": "Lisa siia sisu", "Add content here": "Lisa siia sisu",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Lisa kohandatud vihjeid",
"Add Details": "", "Add Details": "",
"Add Files": "Lisa faile", "Add Files": "Lisa faile",
"Add Group": "Lisa grupp", "Add Group": "Lisa grupp",
@ -151,7 +149,6 @@
"Ask": "Küsi", "Ask": "Küsi",
"Ask a question": "Esita küsimus", "Ask a question": "Esita küsimus",
"Assistant": "Assistent", "Assistant": "Assistent",
"Attach file from knowledge": "Lisa fail teadmiste baasist",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanali nimi", "Channel Name": "Kanali nimi",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanalid", "Channels": "Kanalid",
"Character": "Tegelane", "Character": "Tegelane",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Koodi täitmine", "Code execution": "Koodi täitmine",
@ -331,8 +330,6 @@
"Copied to clipboard": "Kopeeritud lõikelauale", "Copied to clipboard": "Kopeeritud lõikelauale",
"Copy": "Kopeeri", "Copy": "Kopeeri",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopeeri viimane koodiplokk",
"Copy last response": "Kopeeri viimane vastus",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopeeri link", "Copy Link": "Kopeeri link",
"Copy to clipboard": "Kopeeri lõikelauale", "Copy to clipboard": "Kopeeri lõikelauale",
@ -396,7 +393,6 @@
"Delete a model": "Kustuta mudel", "Delete a model": "Kustuta mudel",
"Delete All Chats": "Kustuta kõik vestlused", "Delete All Chats": "Kustuta kõik vestlused",
"Delete All Models": "Kustuta kõik mudelid", "Delete All Models": "Kustuta kõik mudelid",
"Delete chat": "Kustuta vestlus",
"Delete Chat": "Kustuta vestlus", "Delete Chat": "Kustuta vestlus",
"Delete chat?": "Kustutada vestlus?", "Delete chat?": "Kustutada vestlus?",
"Delete folder?": "Kustutada kaust?", "Delete folder?": "Kustutada kaust?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokuseeri vestluse sisendile",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Kaust edukalt kustutatud", "Folder deleted successfully": "Kaust edukalt kustutatud",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Genereeri pilt", "Generate an image": "Genereeri pilt",
"Generate Image": "Genereeri pilt", "Generate Image": "Genereeri pilt",
"Generate prompt pair": "Genereeri vihjete paar",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Otsinguküsimuse genereerimine", "Generating search query": "Otsinguküsimuse genereerimine",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Sisendkäsud",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Võti", "Key": "Võti",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Klaviatuuri otseteed", "Keyboard shortcuts": "Klaviatuuri otseteed",
"Keyboard Shortcuts": "",
"Knowledge": "Teadmised", "Knowledge": "Teadmised",
"Knowledge Access": "Teadmiste juurdepääs", "Knowledge Access": "Teadmiste juurdepääs",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Laadija", "Loader": "Laadija",
"Loading Kokoro.js...": "Kokoro.js laadimine...", "Loading Kokoro.js...": "Kokoro.js laadimine...",
"Loading...": "...", "Loading...": "...",
"local": "",
"Local": "Kohalik", "Local": "Kohalik",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Asukoha juurdepääs pole lubatud", "Location access not allowed": "Asukoha juurdepääs pole lubatud",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Mudel", "Model": "Mudel",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama versioon", "Ollama Version": "Ollama versioon",
"On": "Sees", "On": "Sees",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud", "Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ava uus vestlus",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefiksi ID", "Prefix ID": "Prefiksi ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Eelmised 30 päeva", "Previous 30 days": "Eelmised 30 päeva",
"Previous 7 days": "Eelmised 7 päeva", "Previous 7 days": "Eelmised 7 päeva",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Valige ainult üks mudel kutsumiseks", "Select only one model to call": "Valige ainult üks mudel kutsumiseks",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Valitud mudel(id) ei toeta pilte sisendina", "Selected model(s) do not support image inputs": "Valitud mudel(id) ei toeta pilte sisendina",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Saada", "Send": "Saada",
"Send a Message": "Saada sõnum", "Send a Message": "Saada sõnum",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Näita otseteid",
"Show your support!": "Näita oma toetust!", "Show your support!": "Näita oma toetust!",
"Showcased creativity": "Näitas loovust", "Showcased creativity": "Näitas loovust",
"Sign in": "Logi sisse", "Sign in": "Logi sisse",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Peata", "Stop": "Peata",
"Stop Generating": "",
"Stop Sequence": "Lõpetamise järjestus", "Stop Sequence": "Lõpetamise järjestus",
"Stream Chat Response": "Voogedasta vestluse vastust", "Stream Chat Response": "Voogedasta vestluse vastust",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Siltide genereerimine", "Tags Generation": "Siltide genereerimine",
"Tags Generation Prompt": "Siltide genereerimise vihje", "Tags Generation Prompt": "Siltide genereerimise vihje",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Saba vaba valimit kasutatakse väljundis vähem tõenäoliste tokenite mõju vähendamiseks. Kõrgem väärtus (nt 2,0) vähendab mõju rohkem, samas kui väärtus 1,0 keelab selle seade.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Saba vaba valimit kasutatakse väljundis vähem tõenäoliste tokenite mõju vähendamiseks. Kõrgem väärtus (nt 2,0) vähendab mõju rohkem, samas kui väärtus 1,0 keelab selle seade.",
"Talk to model": "Räägi mudeliga",
"Tap to interrupt": "Puuduta katkestamiseks", "Tap to interrupt": "Puuduta katkestamiseks",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta", "Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta",
"Today": "Täna", "Today": "Täna",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Lülita seaded",
"Toggle sidebar": "Lülita külgriba",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Liiga paljusõnaline", "Too verbose": "Liiga paljusõnaline",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean",
"a user": "erabiltzaile bat", "a user": "erabiltzaile bat",
"About": "Honi buruz", "About": "Honi buruz",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Sarbidea", "Access": "Sarbidea",
"Access Control": "Sarbide Kontrola", "Access Control": "Sarbide Kontrola",
"Accessible to all users": "Erabiltzaile guztientzat eskuragarri", "Accessible to all users": "Erabiltzaile guztientzat eskuragarri",
@ -51,7 +50,6 @@
"Add Content": "Gehitu Edukia", "Add Content": "Gehitu Edukia",
"Add content here": "Gehitu edukia hemen", "Add content here": "Gehitu edukia hemen",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Gehitu prompt pertsonalizatua",
"Add Details": "", "Add Details": "",
"Add Files": "Gehitu Fitxategiak", "Add Files": "Gehitu Fitxategiak",
"Add Group": "Gehitu Taldea", "Add Group": "Gehitu Taldea",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Egin galdera bat", "Ask a question": "Egin galdera bat",
"Assistant": "Laguntzailea", "Assistant": "Laguntzailea",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Karakterea", "Character": "Karakterea",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodearen exekuzioa", "Code execution": "Kodearen exekuzioa",
@ -331,8 +330,6 @@
"Copied to clipboard": "Arbelera kopiatuta", "Copied to clipboard": "Arbelera kopiatuta",
"Copy": "Kopiatu", "Copy": "Kopiatu",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopiatu azken kode blokea",
"Copy last response": "Kopiatu azken erantzuna",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopiatu Esteka", "Copy Link": "Kopiatu Esteka",
"Copy to clipboard": "Kopiatu arbelera", "Copy to clipboard": "Kopiatu arbelera",
@ -396,7 +393,6 @@
"Delete a model": "Ezabatu eredu bat", "Delete a model": "Ezabatu eredu bat",
"Delete All Chats": "Ezabatu Txat Guztiak", "Delete All Chats": "Ezabatu Txat Guztiak",
"Delete All Models": "Ezabatu Eredu Guztiak", "Delete All Models": "Ezabatu Eredu Guztiak",
"Delete chat": "Ezabatu txata",
"Delete Chat": "Ezabatu Txata", "Delete Chat": "Ezabatu Txata",
"Delete chat?": "Ezabatu txata?", "Delete chat?": "Ezabatu txata?",
"Delete folder?": "Ezabatu karpeta?", "Delete folder?": "Ezabatu karpeta?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokuratu txataren sarrera",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Karpeta ongi ezabatu da", "Folder deleted successfully": "Karpeta ongi ezabatu da",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Sortu Irudia", "Generate Image": "Sortu Irudia",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Bilaketa kontsulta sortzen", "Generating search query": "Bilaketa kontsulta sortzen",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Sartu komandoak",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Gakoa", "Key": "Gakoa",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Teklatuko lasterbideak", "Keyboard shortcuts": "Teklatuko lasterbideak",
"Keyboard Shortcuts": "",
"Knowledge": "Ezagutza", "Knowledge": "Ezagutza",
"Knowledge Access": "Ezagutzarako Sarbidea", "Knowledge Access": "Ezagutzarako Sarbidea",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Kargatzen...", "Loading...": "Kargatzen...",
"local": "",
"Local": "Lokala", "Local": "Lokala",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Modeloa", "Model": "Modeloa",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama bertsioa", "Ollama Version": "Ollama bertsioa",
"On": "Piztuta", "On": "Piztuta",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira", "Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ireki txat berria",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Aurrizki ID", "Prefix ID": "Aurrizki ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Aurreko 30 egunak", "Previous 30 days": "Aurreko 30 egunak",
"Previous 7 days": "Aurreko 7 egunak", "Previous 7 days": "Aurreko 7 egunak",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Hautatu modelo bakarra deitzeko", "Select only one model to call": "Hautatu modelo bakarra deitzeko",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Hautatutako modelo(e)k ez dute irudi sarrerarik onartzen", "Selected model(s) do not support image inputs": "Hautatutako modelo(e)k ez dute irudi sarrerarik onartzen",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Bidali", "Send": "Bidali",
"Send a Message": "Bidali mezu bat", "Send a Message": "Bidali mezu bat",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Erakutsi lasterbideak",
"Show your support!": "Erakutsi zure babesa!", "Show your support!": "Erakutsi zure babesa!",
"Showcased creativity": "Erakutsitako sormena", "Showcased creativity": "Erakutsitako sormena",
"Sign in": "Hasi saioa", "Sign in": "Hasi saioa",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Gelditu", "Stop": "Gelditu",
"Stop Generating": "",
"Stop Sequence": "Gelditzeko sekuentzia", "Stop Sequence": "Gelditzeko sekuentzia",
"Stream Chat Response": "Transmititu txat erantzuna", "Stream Chat Response": "Transmititu txat erantzuna",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "Etiketa sortzeko prompta", "Tags Generation Prompt": "Etiketa sortzeko prompta",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Hitz egin ereduarekin",
"Tap to interrupt": "Ukitu eteteko", "Tap to interrupt": "Ukitu eteteko",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat", "Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat",
"Today": "Gaur", "Today": "Gaur",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Aldatu ezarpenak",
"Toggle sidebar": "Aldatu alboko barra",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Tokena", "Token": "Tokena",
"Too verbose": "Luzeegia", "Too verbose": "Luzeegia",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.",
"a user": "یک کاربر", "a user": "یک کاربر",
"About": "درباره", "About": "درباره",
"Accept autocomplete generation / Jump to prompt variable": "پذیرش تکمیل خودکار / پرش به متغیر پرامپت",
"Access": "دسترسی", "Access": "دسترسی",
"Access Control": "کنترل دسترسی", "Access Control": "کنترل دسترسی",
"Accessible to all users": "قابل دسترسی برای همه کاربران", "Accessible to all users": "قابل دسترسی برای همه کاربران",
@ -51,7 +50,6 @@
"Add Content": "افزودن محتوا", "Add Content": "افزودن محتوا",
"Add content here": "محتوا را اینجا اضافه کنید", "Add content here": "محتوا را اینجا اضافه کنید",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "افزودن یک درخواست سفارشی",
"Add Details": "", "Add Details": "",
"Add Files": "افزودن فایل\u200cها", "Add Files": "افزودن فایل\u200cها",
"Add Group": "افزودن گروه", "Add Group": "افزودن گروه",
@ -151,7 +149,6 @@
"Ask": "بپرس", "Ask": "بپرس",
"Ask a question": "سوالی بپرسید", "Ask a question": "سوالی بپرسید",
"Assistant": "دستیار", "Assistant": "دستیار",
"Attach file from knowledge": "پیوست فایل از دانش",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "نام کانال", "Channel Name": "نام کانال",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "کانال\u200cها", "Channels": "کانال\u200cها",
"Character": "شخصیت", "Character": "شخصیت",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "اجرای کد", "Code execution": "اجرای کد",
@ -331,8 +330,6 @@
"Copied to clipboard": "به بریده\u200cدان کپی\u200cشد", "Copied to clipboard": "به بریده\u200cدان کپی\u200cشد",
"Copy": "کپی", "Copy": "کپی",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "کپی آخرین بلوک کد",
"Copy last response": "کپی آخرین پاسخ",
"Copy link": "", "Copy link": "",
"Copy Link": "کپی لینک", "Copy Link": "کپی لینک",
"Copy to clipboard": "کپی به کلیپ\u200cبورد", "Copy to clipboard": "کپی به کلیپ\u200cبورد",
@ -396,7 +393,6 @@
"Delete a model": "حذف یک مدل", "Delete a model": "حذف یک مدل",
"Delete All Chats": "حذف همه گفتگوها", "Delete All Chats": "حذف همه گفتگوها",
"Delete All Models": "حذف همه مدل\u200cها", "Delete All Models": "حذف همه مدل\u200cها",
"Delete chat": "حذف گپ",
"Delete Chat": "حذف گپ", "Delete Chat": "حذف گپ",
"Delete chat?": "گفتگو حذف شود؟", "Delete chat?": "گفتگو حذف شود؟",
"Delete folder?": "پوشه حذف شود؟", "Delete folder?": "پوشه حذف شود؟",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "آدرس پایه API فایرکراول", "Firecrawl API Base URL": "آدرس پایه API فایرکراول",
"Firecrawl API Key": "کلید API فایرکراول", "Firecrawl API Key": "کلید API فایرکراول",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "فوکوس کردن ورودی گپ",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "پوشه با موفقیت حذف شد", "Folder deleted successfully": "پوشه با موفقیت حذف شد",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "تولید یک تصویر", "Generate an image": "تولید یک تصویر",
"Generate Image": "تولید تصویر", "Generate Image": "تولید تصویر",
"Generate prompt pair": "تولید جفت پرامپت",
"Generated Image": "", "Generated Image": "",
"Generating search query": "در حال تولید پرسوجوی جستجو", "Generating search query": "در حال تولید پرسوجوی جستجو",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.",
"Input": "", "Input": "",
"Input commands": "ورودی دستورات",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "کلید", "Key": "کلید",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "میانبرهای صفحه کلید", "Keyboard shortcuts": "میانبرهای صفحه کلید",
"Keyboard Shortcuts": "",
"Knowledge": "دانش", "Knowledge": "دانش",
"Knowledge Access": "دسترسی به دانش", "Knowledge Access": "دسترسی به دانش",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "بارگذار", "Loader": "بارگذار",
"Loading Kokoro.js...": "در حال بارگذاری Kokoro.js...", "Loading Kokoro.js...": "در حال بارگذاری Kokoro.js...",
"Loading...": "در حال بارگذاری...", "Loading...": "در حال بارگذاری...",
"local": "",
"Local": "محلی", "Local": "محلی",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "دسترسی به موقعیت مکانی مجاز نیست", "Location access not allowed": "دسترسی به موقعیت مکانی مجاز نیست",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "تشخیص متن میسترال", "Mistral OCR": "تشخیص متن میسترال",
"Mistral OCR API Key required.": "کلید API تشخیص متن میسترال مورد نیاز است.", "Mistral OCR API Key required.": "کلید API تشخیص متن میسترال مورد نیاز است.",
"Model": "مدل", "Model": "مدل",
@ -1119,8 +1113,6 @@
"Ollama Version": "نسخه ollama", "Ollama Version": "نسخه ollama",
"On": "روشن", "On": "روشن",
"OneDrive": "وان\u200cدرایو", "OneDrive": "وان\u200cدرایو",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند", "Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند",
"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.", "Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "باز کردن گپ جدید",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "شناسه پیشوند", "Prefix ID": "شناسه پیشوند",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 روز قبل", "Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل", "Previous 7 days": "7 روز قبل",
@ -1396,7 +1386,6 @@
"Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید", "Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند", "Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "ارسال", "Send": "ارسال",
"Send a Message": "ارسال یک پیام", "Send a Message": "ارسال یک پیام",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری", "Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "نمایش مدل", "Show Model": "نمایش مدل",
"Show shortcuts": "نمایش میانبرها",
"Show your support!": "حمایت خود را نشان دهید!", "Show your support!": "حمایت خود را نشان دهید!",
"Showcased creativity": "ایده\u200cآفرینی", "Showcased creativity": "ایده\u200cآفرینی",
"Sign in": "ورود", "Sign in": "ورود",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "توقف", "Stop": "توقف",
"Stop Generating": "",
"Stop Sequence": "توقف توالی", "Stop Sequence": "توقف توالی",
"Stream Chat Response": "پاسخ چت جریانی", "Stream Chat Response": "پاسخ چت جریانی",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "تولید برچسب\u200cها", "Tags Generation": "تولید برچسب\u200cها",
"Tags Generation Prompt": "پرامپت تولید برچسب\u200cها", "Tags Generation Prompt": "پرامپت تولید برچسب\u200cها",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "نمونه\u200cبرداری دنباله آزاد برای کاهش تأثیر توکن\u200cهای کم احتمال\u200cتر از خروجی استفاده می\u200cشود. مقدار بالاتر (مثلاً 2.0) تأثیر را بیشتر کاهش می\u200cدهد، در حالی که مقدار 1.0 این تنظیم را غیرفعال می\u200cکند.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "نمونه\u200cبرداری دنباله آزاد برای کاهش تأثیر توکن\u200cهای کم احتمال\u200cتر از خروجی استفاده می\u200cشود. مقدار بالاتر (مثلاً 2.0) تأثیر را بیشتر کاهش می\u200cدهد، در حالی که مقدار 1.0 این تنظیم را غیرفعال می\u200cکند.",
"Talk to model": "گفتگو با مدل",
"Tap to interrupt": "برای وقفه ضربه بزنید", "Tap to interrupt": "برای وقفه ضربه بزنید",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید", "Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید",
"Today": "امروز", "Today": "امروز",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "نمایش/عدم نمایش تنظیمات",
"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "توکن", "Token": "توکن",
"Too verbose": "خیلی طولانی", "Too verbose": "خیلی طولانی",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille",
"a user": "käyttäjä", "a user": "käyttäjä",
"About": "Tietoja", "About": "Tietoja",
"Accept autocomplete generation / Jump to prompt variable": "Hyväksy automaattinen täyttö / Siirry kehotteen muuttujaan",
"Access": "Pääsy", "Access": "Pääsy",
"Access Control": "Käyttöoikeuksien hallinta", "Access Control": "Käyttöoikeuksien hallinta",
"Accessible to all users": "Käytettävissä kaikille käyttäjille", "Accessible to all users": "Käytettävissä kaikille käyttäjille",
@ -51,7 +50,6 @@
"Add Content": "Lisää sisältöä", "Add Content": "Lisää sisältöä",
"Add content here": "Lisää sisältöä tähän", "Add content here": "Lisää sisältöä tähän",
"Add Custom Parameter": "Lisää mukautettu parametri", "Add Custom Parameter": "Lisää mukautettu parametri",
"Add custom prompt": "Lisää mukautettu kehote",
"Add Details": "Lisää yksityiskohtia", "Add Details": "Lisää yksityiskohtia",
"Add Files": "Lisää tiedostoja", "Add Files": "Lisää tiedostoja",
"Add Group": "Lisää ryhmä", "Add Group": "Lisää ryhmä",
@ -151,7 +149,6 @@
"Ask": "Kysy", "Ask": "Kysy",
"Ask a question": "Kysy kysymys", "Ask a question": "Kysy kysymys",
"Assistant": "Avustaja", "Assistant": "Avustaja",
"Attach file from knowledge": "Liitä tiedosto tietokannasta",
"Attach Knowledge": "Liitä tietoa", "Attach Knowledge": "Liitä tietoa",
"Attach Notes": "Liitä muistiinpanoja", "Attach Notes": "Liitä muistiinpanoja",
"Attach Webpage": "Liitä verkkosivu", "Attach Webpage": "Liitä verkkosivu",
@ -221,6 +218,7 @@
"Channel": "Kanava", "Channel": "Kanava",
"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.": "",
"Channel updated successfully": "Kanavan päivitys onnistui", "Channel updated successfully": "Kanavan päivitys onnistui",
"Channels": "Kanavat", "Channels": "Kanavat",
"Character": "Kirjain", "Character": "Kirjain",
@ -272,6 +270,7 @@
"Close modal": "Sulje modaali", "Close modal": "Sulje modaali",
"Close settings modal": "Sulje asetus modaali", "Close settings modal": "Sulje asetus modaali",
"Close Sidebar": "Sulje sivupalkki", "Close Sidebar": "Sulje sivupalkki",
"cloud": "",
"CMU ARCTIC speaker embedding name": "CMU ARCTIC puhujan upotus nimi", "CMU ARCTIC speaker embedding name": "CMU ARCTIC puhujan upotus nimi",
"Code Block": "Koodiblokki", "Code Block": "Koodiblokki",
"Code execution": "Koodin suoritus", "Code execution": "Koodin suoritus",
@ -331,8 +330,6 @@
"Copied to clipboard": "Kopioitu leikepöydälle", "Copied to clipboard": "Kopioitu leikepöydälle",
"Copy": "Kopioi", "Copy": "Kopioi",
"Copy Formatted Text": "Kopioi muotoiltu teksti", "Copy Formatted Text": "Kopioi muotoiltu teksti",
"Copy last code block": "Kopioi viimeisin koodilohko",
"Copy last response": "Kopioi viimeisin vastaus",
"Copy link": "Kopioi linkki", "Copy link": "Kopioi linkki",
"Copy Link": "Kopioi linkki", "Copy Link": "Kopioi linkki",
"Copy to clipboard": "Kopioi leikepöydälle", "Copy to clipboard": "Kopioi leikepöydälle",
@ -396,7 +393,6 @@
"Delete a model": "Poista malli", "Delete a model": "Poista malli",
"Delete All Chats": "Poista kaikki keskustelut", "Delete All Chats": "Poista kaikki keskustelut",
"Delete All Models": "Poista kaikki mallit", "Delete All Models": "Poista kaikki mallit",
"Delete chat": "Poista keskustelu",
"Delete Chat": "Poista keskustelu", "Delete Chat": "Poista keskustelu",
"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?", "Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
"Delete folder?": "Haluatko varmasti poistaa tämän kansion?", "Delete folder?": "Haluatko varmasti poistaa tämän kansion?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API -verkko-osoite", "Firecrawl API Base URL": "Firecrawl API -verkko-osoite",
"Firecrawl API Key": "Firecrawl API-avain", "Firecrawl API Key": "Firecrawl API-avain",
"Floating Quick Actions": "Kelluvat pikakomennot", "Floating Quick Actions": "Kelluvat pikakomennot",
"Focus chat input": "Fokusoi syöttökenttään",
"Folder": "Kansio", "Folder": "Kansio",
"Folder Background Image": "Kansion taustakuva", "Folder Background Image": "Kansion taustakuva",
"Folder deleted successfully": "Kansio poistettu onnistuneesti", "Folder deleted successfully": "Kansio poistettu onnistuneesti",
@ -786,7 +781,6 @@
"Generate": "Luo", "Generate": "Luo",
"Generate an image": "Luo kuva", "Generate an image": "Luo kuva",
"Generate Image": "Luo kuva", "Generate Image": "Luo kuva",
"Generate prompt pair": "Luo kehotepari",
"Generated Image": "Luo kuva", "Generated Image": "Luo kuva",
"Generating search query": "Luodaan hakukyselyä", "Generating search query": "Luodaan hakukyselyä",
"Generating...": "Luodaan...", "Generating...": "Luodaan...",
@ -870,7 +864,6 @@
"Initials": "Nimikirjaimet", "Initials": "Nimikirjaimet",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.",
"Input": "Syöte", "Input": "Syöte",
"Input commands": "Syötekäskyt",
"Input Key (e.g. text, unet_name, steps)": "Syötteen arvo (esim. text, unet_namme, steps)", "Input Key (e.g. text, unet_name, steps)": "Syötteen arvo (esim. text, unet_namme, steps)",
"Input Variables": "Syötteen muuttujat", "Input Variables": "Syötteen muuttujat",
"Insert": "Lisää", "Insert": "Lisää",
@ -909,6 +902,7 @@
"Key": "Avain", "Key": "Avain",
"Key is required": "Avain vaaditaan", "Key is required": "Avain vaaditaan",
"Keyboard shortcuts": "Pikanäppäimet", "Keyboard shortcuts": "Pikanäppäimet",
"Keyboard Shortcuts": "",
"Knowledge": "Tietämys", "Knowledge": "Tietämys",
"Knowledge Access": "Tiedon käyttöoikeus", "Knowledge Access": "Tiedon käyttöoikeus",
"Knowledge Base": "Tietokanta", "Knowledge Base": "Tietokanta",
@ -952,6 +946,7 @@
"Loader": "Lataaja", "Loader": "Lataaja",
"Loading Kokoro.js...": "Ladataan Kokoro.js...", "Loading Kokoro.js...": "Ladataan Kokoro.js...",
"Loading...": "Ladataan...", "Loading...": "Ladataan...",
"local": "",
"Local": "Paikallinen", "Local": "Paikallinen",
"Local Task Model": "Paikallinen työmalli", "Local Task Model": "Paikallinen työmalli",
"Location access not allowed": "Ei pääsyä sijaintitietoihin", "Location access not allowed": "Ei pääsyä sijaintitietoihin",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR api-avain vaaditaan", "Mistral OCR API Key required.": "Mistral OCR api-avain vaaditaan",
"Model": "Malli", "Model": "Malli",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama-versio", "Ollama Version": "Ollama-versio",
"On": "Päällä", "On": "Päällä",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Vain käytössä jos \"Liitä suuri teksti tiedostona\" asetus on käytössä.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktiivinen vain, kun keskustelusyöte on kohdistettu ja LLM generoi vastausta.",
"Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja", "Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Avaa modaali yhteyden määrittämiseksi", "Open modal to configure connection": "Avaa modaali yhteyden määrittämiseksi",
"Open Modal To Manage Floating Quick Actions": "Avaa modaali kelluvien pikatoimintojen hallitsemiseksi", "Open Modal To Manage Floating Quick Actions": "Avaa modaali kelluvien pikatoimintojen hallitsemiseksi",
"Open Modal To Manage Image Compression": "Avaa kuvien pakkaus hallinta modaali", "Open Modal To Manage Image Compression": "Avaa kuvien pakkaus hallinta modaali",
"Open new chat": "Avaa uusi keskustelu",
"Open Sidebar": "Avaa sivupalkki", "Open Sidebar": "Avaa sivupalkki",
"Open User Profile Menu": "Avaa käyttäjäprofiili ikkuna", "Open User Profile Menu": "Avaa käyttäjäprofiili ikkuna",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "En halua sanoa", "Prefer not to say": "En halua sanoa",
"Prefix ID": "Etuliite-ID", "Prefix ID": "Etuliite-ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
"Prevent file creation": "Estä tiedostojen luonti",
"Preview": "Esikatselu", "Preview": "Esikatselu",
"Previous 30 days": "Edelliset 30 päivää", "Previous 30 days": "Edelliset 30 päivää",
"Previous 7 days": "Edelliset 7 päivää", "Previous 7 days": "Edelliset 7 päivää",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Valitse vain yksi malli kutsuttavaksi", "Select only one model to call": "Valitse vain yksi malli kutsuttavaksi",
"Select view": "Valitse näkymä", "Select view": "Valitse näkymä",
"Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasöytteitä", "Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasöytteitä",
"Self-Hosted": "",
"semantic": "Semaattinen", "semantic": "Semaattinen",
"Send": "Lähetä", "Send": "Lähetä",
"Send a Message": "Lähetä viesti", "Send a Message": "Lähetä viesti",
@ -1438,14 +1427,12 @@
"Share your background and interests": "Jaa taustasi ja kiinnostuksen kohteesi", "Share your background and interests": "Jaa taustasi ja kiinnostuksen kohteesi",
"Shared with you": "Jaettu kanssasi", "Shared with you": "Jaettu kanssasi",
"Sharing Permissions": "Jako oikeudet", "Sharing Permissions": "Jako oikeudet",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Tähdellä (*) merkityt pikavalinnat ovat tilannekohtaisia ja aktiivisia vain tietyissä olosuhteissa.",
"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 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",
"Show shortcuts": "Näytä pikanäppäimet",
"Show your support!": "Osoita tukesi!", "Show your support!": "Osoita tukesi!",
"Showcased creativity": "Osoitti luovuutta", "Showcased creativity": "Osoitti luovuutta",
"Sign in": "Kirjaudu sisään", "Sign in": "Kirjaudu sisään",
@ -1480,7 +1467,6 @@
"Status Updates": "Tila päivitykset", "Status Updates": "Tila päivitykset",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Pysäytä", "Stop": "Pysäytä",
"Stop Generating": "Lopeta generointi",
"Stop Sequence": "Lopetussekvenssi", "Stop Sequence": "Lopetussekvenssi",
"Stream Chat Response": "Streamaa keskusteluvastaus", "Stream Chat Response": "Streamaa keskusteluvastaus",
"Stream Delta Chunk Size": "Striimin delta-lohkon koko", "Stream Delta Chunk Size": "Striimin delta-lohkon koko",
@ -1510,7 +1496,6 @@
"Tags Generation": "Tagien luonti", "Tags Generation": "Tagien luonti",
"Tags Generation Prompt": "Tagien luontikehote", "Tags Generation Prompt": "Tagien luontikehote",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Puhu mallille",
"Tap to interrupt": "Napauta keskeyttääksesi", "Tap to interrupt": "Napauta keskeyttääksesi",
"Task List": "Tehtävälista", "Task List": "Tehtävälista",
"Task Model": "Työmalli", "Task Model": "Työmalli",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä", "Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä",
"Today": "Tänään", "Today": "Tänään",
"Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}",
"Toggle search": "Kytke haku",
"Toggle settings": "Kytke asetukset",
"Toggle sidebar": "Kytke sivupalkki",
"Toggle whether current connection is active.": "Vaihda, onko nykyinen yhteys aktiivinen", "Toggle whether current connection is active.": "Vaihda, onko nykyinen yhteys aktiivinen",
"Token": "Token", "Token": "Token",
"Too verbose": "Liian puhelias", "Too verbose": "Liian puhelias",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
"Accept autocomplete generation / Jump to prompt variable": "Accepter la génération de saisie semi-automatique / Accéder directement à la variable du prompt",
"Access": "Accès", "Access": "Accès",
"Access Control": "Contrôle d'accès", "Access Control": "Contrôle d'accès",
"Accessible to all users": "Accessible à tous les utilisateurs", "Accessible to all users": "Accessible à tous les utilisateurs",
@ -51,7 +50,6 @@
"Add Content": "Ajouter du contenu", "Add Content": "Ajouter du contenu",
"Add content here": "Ajoutez du contenu ici", "Add content here": "Ajoutez du contenu ici",
"Add Custom Parameter": "Ajoutez votre réglage personnalisé", "Add Custom Parameter": "Ajoutez votre réglage personnalisé",
"Add custom prompt": "Ajouter un prompt personnalisé",
"Add Details": "", "Add Details": "",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Group": "Ajouter un groupe", "Add Group": "Ajouter un groupe",
@ -151,7 +149,6 @@
"Ask": "Demander", "Ask": "Demander",
"Ask a question": "Posez votre question", "Ask a question": "Posez votre question",
"Assistant": "Assistant", "Assistant": "Assistant",
"Attach file from knowledge": "Joindre un fichier depuis la base de connaissances",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nom du canal", "Channel Name": "Nom du canal",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canaux", "Channels": "Canaux",
"Character": "Caractère", "Character": "Caractère",
@ -272,6 +270,7 @@
"Close modal": "Fermer la fenêtre", "Close modal": "Fermer la fenêtre",
"Close settings modal": "Fermer la fenêtre des réglages", "Close settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Exécution de code", "Code execution": "Exécution de code",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copié dans le presse-papiers", "Copied to clipboard": "Copié dans le presse-papiers",
"Copy": "Copier", "Copy": "Copier",
"Copy Formatted Text": "Copier le texte en gardant le format", "Copy Formatted Text": "Copier le texte en gardant le format",
"Copy last code block": "Copier le dernier bloc de code",
"Copy last response": "Copier la dernière réponse",
"Copy link": "", "Copy link": "",
"Copy Link": "Copier le lien", "Copy Link": "Copier le lien",
"Copy to clipboard": "Copier dans le presse-papiers", "Copy to clipboard": "Copier dans le presse-papiers",
@ -396,7 +393,6 @@
"Delete a model": "Supprimer un modèle", "Delete a model": "Supprimer un modèle",
"Delete All Chats": "Supprimer toutes les conversations", "Delete All Chats": "Supprimer toutes les conversations",
"Delete All Models": "Supprimer tous les modèles", "Delete All Models": "Supprimer tous les modèles",
"Delete chat": "Supprimer la conversation",
"Delete Chat": "Supprimer la Conversation", "Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?", "Delete chat?": "Supprimer la conversation ?",
"Delete folder?": "Supprimer le dossier ?", "Delete folder?": "Supprimer le dossier ?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Base URL": "Url de l'API Base Firecrawl",
"Firecrawl API Key": "Clé de l'API Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Mettre le focus sur l'entrée de la conversation",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Dossier supprimé avec succès", "Folder deleted successfully": "Dossier supprimé avec succès",
@ -786,7 +781,6 @@
"Generate": "Génére", "Generate": "Génére",
"Generate an image": "Génère une image", "Generate an image": "Génère une image",
"Generate Image": "Générer une image", "Generate Image": "Générer une image",
"Generate prompt pair": "Générer une paire de prompt",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Génération d'une requête de recherche", "Generating search query": "Génération d'une requête de recherche",
"Generating...": "Génération en cours...", "Generating...": "Génération en cours...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "", "Input": "",
"Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée", "Input Variables": "Variables d'entrée",
"Insert": "Insérer", "Insert": "Insérer",
@ -909,6 +902,7 @@
"Key": "Clé", "Key": "Clé",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Keyboard Shortcuts": "",
"Knowledge": "Connaissances", "Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances", "Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Chargeur", "Loader": "Chargeur",
"Loading Kokoro.js...": "Chargement de Kokoro.js...", "Loading Kokoro.js...": "Chargement de Kokoro.js...",
"Loading...": "Chargement de...", "Loading...": "Chargement de...",
"local": "",
"Local": "Local", "Local": "Local",
"Local Task Model": "Model de tâche local", "Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé", "Location access not allowed": "Accès à la localisation non autorisé",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise", "Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise",
"Model": "Modèle", "Model": "Modèle",
@ -1119,8 +1113,6 @@
"Ollama Version": "Version d'Ollama", "Ollama Version": "Version d'Ollama",
"On": "Activé", "On": "Activé",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Seul actif lorsque le réglage \"Coller un texte volumineux comme fichier\" est activé.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Seulement actif lorsque le champ de saisie de la conversation est en focus et qu'un LLM génère une réponse.",
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés", "Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ouvrir une nouvelle conversation",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "ID de préfixe", "Prefix ID": "ID de préfixe",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
"Prevent file creation": "Prévenir la création de fichier",
"Preview": "Aperçu", "Preview": "Aperçu",
"Previous 30 days": "30 derniers jours", "Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler", "Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images", "Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Envoyer", "Send": "Envoyer",
"Send a Message": "Envoyer un message", "Send a Message": "Envoyer un message",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Autorisation de partage", "Sharing Permissions": "Autorisation de partage",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les raccourcis avec un astérisque (*) sont situationnels et ne sont actifs que dans des conditions spécifiques.",
"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 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",
"Show shortcuts": "Afficher les raccourcis",
"Show your support!": "Montrez votre soutien !", "Show your support!": "Montrez votre soutien !",
"Showcased creativity": "Créativité mise en avant", "Showcased creativity": "Créativité mise en avant",
"Sign in": "Connexion", "Sign in": "Connexion",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stop", "Stop": "Stop",
"Stop Generating": "Arrêter la génération",
"Stop Sequence": "Séquence d'arrêt", "Stop Sequence": "Séquence d'arrêt",
"Stream Chat Response": "Streamer la réponse de la conversation", "Stream Chat Response": "Streamer la réponse de la conversation",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "Génération de tags", "Tags Generation": "Génération de tags",
"Tags Generation Prompt": "Prompt de génération de tags", "Tags Generation Prompt": "Prompt de génération de tags",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
"Talk to model": "Parler au modèle",
"Tap to interrupt": "Appuyez pour interrompre", "Tap to interrupt": "Appuyez pour interrompre",
"Task List": "", "Task List": "",
"Task Model": "Modèle pour les tâches", "Task Model": "Modèle pour les tâches",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour", "Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
"Today": "Aujourd'hui", "Today": "Aujourd'hui",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Afficher/masquer la recherche",
"Toggle settings": "Afficher/masquer les réglages",
"Toggle sidebar": "Afficher/masquer la barre latérale",
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active", "Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
"Token": "Token", "Token": "Token",
"Too verbose": "Trop détaillé", "Too verbose": "Trop détaillé",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
"Accept autocomplete generation / Jump to prompt variable": "Accepter la génération de saisie semi-automatique / Accéder directement à la variable du prompt",
"Access": "Accès", "Access": "Accès",
"Access Control": "Contrôle d'accès", "Access Control": "Contrôle d'accès",
"Accessible to all users": "Accessible à tous les utilisateurs", "Accessible to all users": "Accessible à tous les utilisateurs",
@ -51,7 +50,6 @@
"Add Content": "Ajouter du contenu", "Add Content": "Ajouter du contenu",
"Add content here": "Ajoutez du contenu ici", "Add content here": "Ajoutez du contenu ici",
"Add Custom Parameter": "Ajoutez votre réglage personnalisé", "Add Custom Parameter": "Ajoutez votre réglage personnalisé",
"Add custom prompt": "Ajouter un prompt personnalisé",
"Add Details": "Ajouter des détails", "Add Details": "Ajouter des détails",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Group": "Ajouter un groupe", "Add Group": "Ajouter un groupe",
@ -151,7 +149,6 @@
"Ask": "Demander", "Ask": "Demander",
"Ask a question": "Posez votre question", "Ask a question": "Posez votre question",
"Assistant": "Assistant", "Assistant": "Assistant",
"Attach file from knowledge": "Joindre un fichier depuis la base de connaissances",
"Attach Knowledge": "Joindre une connaissance", "Attach Knowledge": "Joindre une connaissance",
"Attach Notes": "Joindre une note", "Attach Notes": "Joindre une note",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "Canal", "Channel": "Canal",
"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 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",
"Character": "Caractère", "Character": "Caractère",
@ -272,6 +270,7 @@
"Close modal": "Fermer la fenêtre", "Close modal": "Fermer la fenêtre",
"Close settings modal": "Fermer la fenêtre des réglages", "Close settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "Fermer la barre latérale", "Close Sidebar": "Fermer la barre latérale",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc de code", "Code Block": "Bloc de code",
"Code execution": "Exécution de code", "Code execution": "Exécution de code",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copié dans le presse-papiers", "Copied to clipboard": "Copié dans le presse-papiers",
"Copy": "Copier", "Copy": "Copier",
"Copy Formatted Text": "Copier le texte en gardant le format", "Copy Formatted Text": "Copier le texte en gardant le format",
"Copy last code block": "Copier le dernier bloc de code",
"Copy last response": "Copier la dernière réponse",
"Copy link": "Copier le lien", "Copy link": "Copier le lien",
"Copy Link": "Copier le lien", "Copy Link": "Copier le lien",
"Copy to clipboard": "Copier dans le presse-papiers", "Copy to clipboard": "Copier dans le presse-papiers",
@ -396,7 +393,6 @@
"Delete a model": "Supprimer un modèle", "Delete a model": "Supprimer un modèle",
"Delete All Chats": "Supprimer toutes les conversations", "Delete All Chats": "Supprimer toutes les conversations",
"Delete All Models": "Supprimer tous les modèles", "Delete All Models": "Supprimer tous les modèles",
"Delete chat": "Supprimer la conversation",
"Delete Chat": "Supprimer la Conversation", "Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?", "Delete chat?": "Supprimer la conversation ?",
"Delete folder?": "Supprimer le dossier ?", "Delete folder?": "Supprimer le dossier ?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Base URL": "Url de l'API Base Firecrawl",
"Firecrawl API Key": "Clé de l'API Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl",
"Floating Quick Actions": "Actions rapides flottantes", "Floating Quick Actions": "Actions rapides flottantes",
"Focus chat input": "Mettre le focus sur l'entrée de la conversation",
"Folder": "", "Folder": "",
"Folder Background Image": "Image d'arrière-plan du dossier", "Folder Background Image": "Image d'arrière-plan du dossier",
"Folder deleted successfully": "Dossier supprimé avec succès", "Folder deleted successfully": "Dossier supprimé avec succès",
@ -786,7 +781,6 @@
"Generate": "Génére", "Generate": "Génére",
"Generate an image": "Génère une image", "Generate an image": "Génère une image",
"Generate Image": "Générer une image", "Generate Image": "Générer une image",
"Generate prompt pair": "Générer une paire de prompt",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Génération d'une requête de recherche", "Generating search query": "Génération d'une requête de recherche",
"Generating...": "Génération en cours...", "Generating...": "Génération en cours...",
@ -870,7 +864,6 @@
"Initials": "Initiales", "Initials": "Initiales",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "", "Input": "",
"Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée", "Input Variables": "Variables d'entrée",
"Insert": "Insérer", "Insert": "Insérer",
@ -909,6 +902,7 @@
"Key": "Clé", "Key": "Clé",
"Key is required": "La clé est requise", "Key is required": "La clé est requise",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Keyboard Shortcuts": "",
"Knowledge": "Connaissances", "Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances", "Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "Base de connaissances", "Knowledge Base": "Base de connaissances",
@ -952,6 +946,7 @@
"Loader": "Chargeur", "Loader": "Chargeur",
"Loading Kokoro.js...": "Chargement de Kokoro.js...", "Loading Kokoro.js...": "Chargement de Kokoro.js...",
"Loading...": "Chargement de...", "Loading...": "Chargement de...",
"local": "",
"Local": "Local", "Local": "Local",
"Local Task Model": "Model de tâche local", "Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé", "Location access not allowed": "Accès à la localisation non autorisé",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise", "Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise",
"Model": "Modèle", "Model": "Modèle",
@ -1119,8 +1113,6 @@
"Ollama Version": "Version d'Ollama", "Ollama Version": "Version d'Ollama",
"On": "Activé", "On": "Activé",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Seul actif lorsque le réglage \"Coller un texte volumineux comme fichier\" est activé.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Seulement actif lorsque le champ de saisie de la conversation est en focus et qu'un LLM génère une réponse.",
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés", "Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ouvrir une nouvelle conversation",
"Open Sidebar": "Ouvrir la barre latérale", "Open Sidebar": "Ouvrir la barre latérale",
"Open User Profile Menu": "Ouvrir le menu du profil utilisateur", "Open User Profile Menu": "Ouvrir le menu du profil utilisateur",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Je préfère ne pas répondre", "Prefer not to say": "Je préfère ne pas répondre",
"Prefix ID": "ID de préfixe", "Prefix ID": "ID de préfixe",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
"Prevent file creation": "Prévenir la création de fichier",
"Preview": "Aperçu", "Preview": "Aperçu",
"Previous 30 days": "30 derniers jours", "Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler", "Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images", "Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images",
"Self-Hosted": "",
"semantic": "sémantique", "semantic": "sémantique",
"Send": "Envoyer", "Send": "Envoyer",
"Send a Message": "Envoyer un message", "Send a Message": "Envoyer un message",
@ -1439,14 +1428,12 @@
"Share your background and interests": "Partagez votre parcours et vos intérêts", "Share your background and interests": "Partagez votre parcours et vos intérêts",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Autorisation de partage", "Sharing Permissions": "Autorisation de partage",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les raccourcis avec un astérisque (*) sont situationnels et ne sont actifs que dans des conditions spécifiques.",
"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 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",
"Show shortcuts": "Afficher les raccourcis",
"Show your support!": "Montrez votre soutien !", "Show your support!": "Montrez votre soutien !",
"Showcased creativity": "Créativité mise en avant", "Showcased creativity": "Créativité mise en avant",
"Sign in": "Connexion", "Sign in": "Connexion",
@ -1481,7 +1468,6 @@
"Status Updates": "Mises à jour de statut", "Status Updates": "Mises à jour de statut",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stop", "Stop": "Stop",
"Stop Generating": "Arrêter la génération",
"Stop Sequence": "Séquence d'arrêt", "Stop Sequence": "Séquence d'arrêt",
"Stream Chat Response": "Streamer la réponse de la conversation", "Stream Chat Response": "Streamer la réponse de la conversation",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "Génération de tags", "Tags Generation": "Génération de tags",
"Tags Generation Prompt": "Prompt de génération de tags", "Tags Generation Prompt": "Prompt de génération de tags",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
"Talk to model": "Parler au modèle",
"Tap to interrupt": "Appuyez pour interrompre", "Tap to interrupt": "Appuyez pour interrompre",
"Task List": "Liste pour les tâches", "Task List": "Liste pour les tâches",
"Task Model": "Modèle pour les tâches", "Task Model": "Modèle pour les tâches",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour", "Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
"Today": "Aujourd'hui", "Today": "Aujourd'hui",
"Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}",
"Toggle search": "Afficher/masquer la recherche",
"Toggle settings": "Afficher/masquer les réglages",
"Toggle sidebar": "Afficher/masquer la barre latérale",
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active", "Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
"Token": "Token", "Token": "Token",
"Too verbose": "Trop détaillé", "Too verbose": "Trop détaillé",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web",
"a user": "un usuario", "a user": "un usuario",
"About": "Sobre nos", "About": "Sobre nos",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Acceso", "Access": "Acceso",
"Access Control": "Control de Acceso", "Access Control": "Control de Acceso",
"Accessible to all users": "Accesible para todos os usuarios", "Accessible to all users": "Accesible para todos os usuarios",
@ -51,7 +50,6 @@
"Add Content": "Agregar contido", "Add Content": "Agregar contido",
"Add content here": "Agrege contido aquí", "Add content here": "Agrege contido aquí",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Agregar un prompt personalizado",
"Add Details": "", "Add Details": "",
"Add Files": "Agregar Arquivos", "Add Files": "Agregar Arquivos",
"Add Group": "Agregar Grupo", "Add Group": "Agregar Grupo",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Fai unha pregunta", "Ask a question": "Fai unha pregunta",
"Assistant": "Asistente", "Assistant": "Asistente",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nome do Canal", "Channel Name": "Nome do Canal",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canal", "Channels": "Canal",
"Character": "Caracter", "Character": "Caracter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Execución de código", "Code execution": "Execución de código",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiado o portapapeis", "Copied to clipboard": "Copiado o portapapeis",
"Copy": "Copiar", "Copy": "Copiar",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Copia o último bloque de código",
"Copy last response": "Copia a última respuesta",
"Copy link": "", "Copy link": "",
"Copy Link": "Copiar enlace", "Copy Link": "Copiar enlace",
"Copy to clipboard": "Copiado o portapapeis", "Copy to clipboard": "Copiado o portapapeis",
@ -396,7 +393,6 @@
"Delete a model": "Borra un modelo", "Delete a model": "Borra un modelo",
"Delete All Chats": "Eliminar todos os chats", "Delete All Chats": "Eliminar todos os chats",
"Delete All Models": "Eliminar todos os modelos", "Delete All Models": "Eliminar todos os modelos",
"Delete chat": "Borrar chat",
"Delete Chat": "Borrar Chat", "Delete Chat": "Borrar Chat",
"Delete chat?": "Borrar o chat?", "Delete chat?": "Borrar o chat?",
"Delete folder?": "¿Eliminar carpeta?", "Delete folder?": "¿Eliminar carpeta?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Enfoca a entrada do chat",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Carpeta eliminada correctamente", "Folder deleted successfully": "Carpeta eliminada correctamente",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Generar unha imaxen", "Generate an image": "Generar unha imaxen",
"Generate Image": "Generar imaxen", "Generate Image": "Generar imaxen",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "xeneración de consultas de búsqueda", "Generating search query": "xeneración de consultas de búsqueda",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Chave", "Key": "Chave",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Atallos de teclado", "Keyboard shortcuts": "Atallos de teclado",
"Keyboard Shortcuts": "",
"Knowledge": "coñecemento", "Knowledge": "coñecemento",
"Knowledge Access": "Acceso al coñecemento", "Knowledge Access": "Acceso al coñecemento",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Cargador", "Loader": "Cargador",
"Loading Kokoro.js...": "Cargando Kokoro.js...", "Loading Kokoro.js...": "Cargando Kokoro.js...",
"Loading...": "Cargando...", "Loading...": "Cargando...",
"local": "",
"Local": "Local", "Local": "Local",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Modelo", "Model": "Modelo",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versión de Ollama", "Ollama Version": "Versión de Ollama",
"On": "Activado", "On": "Activado",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Sólo se permiten caracteres alfanuméricos y guiones", "Only alphanumeric characters and hyphens are allowed": "Sólo se permiten caracteres alfanuméricos y guiones",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Abrir novo chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "ID de prefijo", "Prefix ID": "ID de prefijo",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo se utiliza para evitar conflictos con outras conexiones añadiendo un prefijo a os IDs de os modelos - deje vacío para deshabilitar", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo se utiliza para evitar conflictos con outras conexiones añadiendo un prefijo a os IDs de os modelos - deje vacío para deshabilitar",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Últimos 30 días", "Previous 30 days": "Últimos 30 días",
"Previous 7 days": "Últimos 7 días", "Previous 7 days": "Últimos 7 días",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Selecciona sólo un modelo para llamar", "Select only one model to call": "Selecciona sólo un modelo para llamar",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Os modelos seleccionados no admiten entradas de imaxen", "Selected model(s) do not support image inputs": "Os modelos seleccionados no admiten entradas de imaxen",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Enviar", "Send": "Enviar",
"Send a Message": "Enviar un mensaxe", "Send a Message": "Enviar un mensaxe",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Mostrar atallos",
"Show your support!": "¡Motra o teu apoio!", "Show your support!": "¡Motra o teu apoio!",
"Showcased creativity": "Creatividade mostrada", "Showcased creativity": "Creatividade mostrada",
"Sign in": "Iniciar sesión", "Sign in": "Iniciar sesión",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Detener", "Stop": "Detener",
"Stop Generating": "",
"Stop Sequence": "Detener secuencia", "Stop Sequence": "Detener secuencia",
"Stream Chat Response": "Transmitir resposta de chat", "Stream Chat Response": "Transmitir resposta de chat",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "xeneración de etiquetas", "Tags Generation": "xeneración de etiquetas",
"Tags Generation Prompt": "Prompt de xeneración de etiquetas", "Tags Generation Prompt": "Prompt de xeneración de etiquetas",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Falar co modelo",
"Tap to interrupt": "Toca para interrumpir", "Tap to interrupt": "Toca para interrumpir",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Notificacions emergentes para novas actualizacions", "Toast notifications for new updates": "Notificacions emergentes para novas actualizacions",
"Today": "Hoxe", "Today": "Hoxe",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Alternar configuración",
"Toggle sidebar": "Alternar barra lateral",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Demasiado detalliado", "Too verbose": "Demasiado detalliado",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט", "A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט",
"a user": "משתמש", "a user": "משתמש",
"About": "אודות", "About": "אודות",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "גישה", "Access": "גישה",
"Access Control": "בקרת גישה", "Access Control": "בקרת גישה",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "הוסף תוכן", "Add Content": "הוסף תוכן",
"Add content here": "הוסף תוכן כאן", "Add content here": "הוסף תוכן כאן",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "הוסף פקודה מותאמת אישית",
"Add Details": "", "Add Details": "",
"Add Files": "הוסף קבצים", "Add Files": "הוסף קבצים",
"Add Group": "הוסף קבוצה", "Add Group": "הוסף קבוצה",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "הרצת קוד", "Code execution": "הרצת קוד",
@ -331,8 +330,6 @@
"Copied to clipboard": "הועתק ללוח", "Copied to clipboard": "הועתק ללוח",
"Copy": "העתק", "Copy": "העתק",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "העתק את בלוק הקוד האחרון",
"Copy last response": "העתק את התגובה האחרונה",
"Copy link": "", "Copy link": "",
"Copy Link": "העתק קישור", "Copy Link": "העתק קישור",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "מחק מודל", "Delete a model": "מחק מודל",
"Delete All Chats": "מחק את כל הצ'אטים", "Delete All Chats": "מחק את כל הצ'אטים",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "מחק צ'אט",
"Delete Chat": "מחק צ'אט", "Delete Chat": "מחק צ'אט",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "מיקוד הקלט לצ'אט",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "יצירת שאילתת חיפוש", "Generating search query": "יצירת שאילתת חיפוש",
"Generating...": "מג'נרט...", "Generating...": "מג'נרט...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "פקודות קלט",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "קיצורי מקלדת", "Keyboard shortcuts": "קיצורי מקלדת",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "טוען...", "Loading...": "טוען...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "גרסת Ollama", "Ollama Version": "גרסת Ollama",
"On": "פועל", "On": "פועל",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.", "Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "פתח צ'אט חדש",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 הימים הקודמים", "Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים", "Previous 7 days": "7 הימים הקודמים",
@ -1397,7 +1387,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה", "Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "שלח", "Send": "שלח",
"Send a Message": "שלח הודעה", "Send a Message": "שלח הודעה",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "הצג קיצורי דרך",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "הצגת יצירתיות", "Showcased creativity": "הצגת יצירתיות",
"Sign in": "הירשם", "Sign in": "הירשם",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "סידור עצירה", "Stop Sequence": "סידור עצירה",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "דברו עם המודל",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "היום", "Today": "היום",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "החלפת מצב של הגדרות",
"Toggle sidebar": "החלפת מצב של סרגל הצד",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है", "A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है",
"a user": "एक उपयोगकर्ता", "a user": "एक उपयोगकर्ता",
"About": "हमारे बारे में", "About": "हमारे बारे में",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "अनुकूल संकेत जोड़ें",
"Add Details": "", "Add Details": "",
"Add Files": "फाइलें जोड़ें", "Add Files": "फाइलें जोड़ें",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "कॉपी", "Copy": "कॉपी",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "अंतिम कोड ब्लॉक कॉपी करें",
"Copy last response": "अंतिम प्रतिक्रिया कॉपी करें",
"Copy link": "", "Copy link": "",
"Copy Link": "लिंक को कॉपी करें", "Copy Link": "लिंक को कॉपी करें",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "एक मॉडल हटाएँ", "Delete a model": "एक मॉडल हटाएँ",
"Delete All Chats": "सभी चैट हटाएं", "Delete All Chats": "सभी चैट हटाएं",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "चैट हटाएं",
"Delete Chat": "चैट हटाएं", "Delete Chat": "चैट हटाएं",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "चैट इनपुट पर फ़ोकस करें",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "खोज क्वेरी जनरेट करना", "Generating search query": "खोज क्वेरी जनरेट करना",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "इनपुट क命",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "कीबोर्ड शॉर्टकट", "Keyboard shortcuts": "कीबोर्ड शॉर्टकट",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "लोड हो रहा है...", "Loading...": "लोड हो रहा है...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama Version", "Ollama Version": "Ollama Version",
"On": "चालू", "On": "चालू",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।", "Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "नई चैट खोलें",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "पिछले 30 दिन", "Previous 30 days": "पिछले 30 दिन",
"Previous 7 days": "पिछले 7 दिन", "Previous 7 days": "पिछले 7 दिन",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं", "Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "भेज", "Send": "भेज",
"Send a Message": "एक संदेश भेजो", "Send a Message": "एक संदेश भेजो",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "शॉर्टकट दिखाएँ",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "रचनात्मकता का प्रदर्शन किया", "Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
"Sign in": "साइन इन", "Sign in": "साइन इन",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "अनुक्रम रोकें", "Stop Sequence": "अनुक्रम रोकें",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "मॉडल से बात करें",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "आज", "Today": "आज",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "सेटिंग्स टॉगल करें",
"Toggle sidebar": "साइडबार टॉगल करें",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
"a user": "korisnik", "a user": "korisnik",
"About": "O aplikaciji", "About": "O aplikaciji",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Dodaj prilagođeni prompt",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj datoteke", "Add Files": "Dodaj datoteke",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Kopiraj", "Copy": "Kopiraj",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopiraj zadnji blok koda",
"Copy last response": "Kopiraj zadnji odgovor",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopiraj vezu", "Copy Link": "Kopiraj vezu",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Izbriši model", "Delete a model": "Izbriši model",
"Delete All Chats": "Izbriši sve razgovore", "Delete All Chats": "Izbriši sve razgovore",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Izbriši razgovor",
"Delete Chat": "Izbriši razgovor", "Delete Chat": "Izbriši razgovor",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokusiraj unos razgovora",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Gneriraj sliku", "Generate Image": "Gneriraj sliku",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generiranje upita za pretraživanje", "Generating search query": "Generiranje upita za pretraživanje",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Unos naredbi",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Tipkovnički prečaci", "Keyboard shortcuts": "Tipkovnički prečaci",
"Keyboard Shortcuts": "",
"Knowledge": "Znanje", "Knowledge": "Znanje",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Učitavanje...", "Loading...": "Učitavanje...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama verzija", "Ollama Version": "Ollama verzija",
"On": "Uključeno", "On": "Uključeno",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Otvorite novi razgovor",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Prethodnih 30 dana", "Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana", "Previous 7 days": "Prethodnih 7 dana",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Odaberite samo jedan model za poziv", "Select only one model to call": "Odaberite samo jedan model za poziv",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika", "Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Pošalji", "Send": "Pošalji",
"Send a Message": "Pošaljite poruku", "Send a Message": "Pošaljite poruku",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Pokaži prečace",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "Prikazana kreativnost", "Showcased creativity": "Prikazana kreativnost",
"Sign in": "Prijava", "Sign in": "Prijava",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Zaustavi sekvencu", "Stop Sequence": "Zaustavi sekvencu",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Razgovarajte s modelom",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Danas", "Today": "Danas",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Prebaci postavke",
"Toggle sidebar": "Prebaci bočnu traku",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések", "A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések",
"a user": "egy felhasználó", "a user": "egy felhasználó",
"About": "Névjegy", "About": "Névjegy",
"Accept autocomplete generation / Jump to prompt variable": "Automatikus kiegészítés elfogadása / Ugrás a prompt változóhoz",
"Access": "Hozzáférés", "Access": "Hozzáférés",
"Access Control": "Hozzáférés-vezérlés", "Access Control": "Hozzáférés-vezérlés",
"Accessible to all users": "Minden felhasználó számára elérhető", "Accessible to all users": "Minden felhasználó számára elérhető",
@ -51,7 +50,6 @@
"Add Content": "Tartalom hozzáadása", "Add Content": "Tartalom hozzáadása",
"Add content here": "Tartalom hozzáadása ide", "Add content here": "Tartalom hozzáadása ide",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Egyéni prompt hozzáadása",
"Add Details": "", "Add Details": "",
"Add Files": "Fájlok hozzáadása", "Add Files": "Fájlok hozzáadása",
"Add Group": "Csoport hozzáadása", "Add Group": "Csoport hozzáadása",
@ -151,7 +149,6 @@
"Ask": "Kérdezz", "Ask": "Kérdezz",
"Ask a question": "Kérdezz valamit", "Ask a question": "Kérdezz valamit",
"Assistant": "Asszisztens", "Assistant": "Asszisztens",
"Attach file from knowledge": "Fájl csatolása a tudásbázisból",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Csatorna neve", "Channel Name": "Csatorna neve",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Csatornák", "Channels": "Csatornák",
"Character": "Karakter", "Character": "Karakter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kód végrehajtás", "Code execution": "Kód végrehajtás",
@ -331,8 +330,6 @@
"Copied to clipboard": "Vágólapra másolva", "Copied to clipboard": "Vágólapra másolva",
"Copy": "Másolás", "Copy": "Másolás",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Utolsó kódblokk másolása",
"Copy last response": "Utolsó válasz másolása",
"Copy link": "", "Copy link": "",
"Copy Link": "Link másolása", "Copy Link": "Link másolása",
"Copy to clipboard": "Másolás a vágólapra", "Copy to clipboard": "Másolás a vágólapra",
@ -396,7 +393,6 @@
"Delete a model": "Modell törlése", "Delete a model": "Modell törlése",
"Delete All Chats": "Minden beszélgetés törlése", "Delete All Chats": "Minden beszélgetés törlése",
"Delete All Models": "Minden modell törlése", "Delete All Models": "Minden modell törlése",
"Delete chat": "Beszélgetés törlése",
"Delete Chat": "Beszélgetés törlése", "Delete Chat": "Beszélgetés törlése",
"Delete chat?": "Törli a beszélgetést?", "Delete chat?": "Törli a beszélgetést?",
"Delete folder?": "Törli a mappát?", "Delete folder?": "Törli a mappát?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Chat bevitel fókuszálása",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Mappa sikeresen törölve", "Folder deleted successfully": "Mappa sikeresen törölve",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Kép generálása", "Generate an image": "Kép generálása",
"Generate Image": "Kép generálása", "Generate Image": "Kép generálása",
"Generate prompt pair": "Prompt pár generálása",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Keresési lekérdezés generálása", "Generating search query": "Keresési lekérdezés generálása",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.",
"Input": "", "Input": "",
"Input commands": "Beviteli parancsok",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Kulcs", "Key": "Kulcs",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Billentyűparancsok", "Keyboard shortcuts": "Billentyűparancsok",
"Keyboard Shortcuts": "",
"Knowledge": "Tudásbázis", "Knowledge": "Tudásbázis",
"Knowledge Access": "Tudásbázis hozzáférés", "Knowledge Access": "Tudásbázis hozzáférés",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Betöltő", "Loader": "Betöltő",
"Loading Kokoro.js...": "Kokoro.js betöltése...", "Loading Kokoro.js...": "Kokoro.js betöltése...",
"Loading...": "...", "Loading...": "...",
"local": "",
"Local": "Helyi", "Local": "Helyi",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Helyhozzáférés nem engedélyezett", "Location access not allowed": "Helyhozzáférés nem engedélyezett",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API kulcs szükséges.", "Mistral OCR API Key required.": "Mistral OCR API kulcs szükséges.",
"Model": "Modell", "Model": "Modell",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama verzió", "Ollama Version": "Ollama verzió",
"On": "Be", "On": "Be",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek", "Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Új beszélgetés megnyitása",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.", "Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Előtag azonosító", "Prefix ID": "Előtag azonosító",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Előző 30 nap", "Previous 30 days": "Előző 30 nap",
"Previous 7 days": "Előző 7 nap", "Previous 7 days": "Előző 7 nap",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Csak egy modellt válasszon ki hívásra", "Select only one model to call": "Csak egy modellt válasszon ki hívásra",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "A kiválasztott modell(ek) nem támogatják a képbemenetet", "Selected model(s) do not support image inputs": "A kiválasztott modell(ek) nem támogatják a képbemenetet",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Küldés", "Send": "Küldés",
"Send a Message": "Üzenet küldése", "Send a Message": "Üzenet küldése",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Megosztási engedélyek", "Sharing Permissions": "Megosztási engedélyek",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modell megjelenítése", "Show Model": "Modell megjelenítése",
"Show shortcuts": "Gyorsbillentyűk megjelenítése",
"Show your support!": "Mutassa meg támogatását!", "Show your support!": "Mutassa meg támogatását!",
"Showcased creativity": "Kreativitás bemutatva", "Showcased creativity": "Kreativitás bemutatva",
"Sign in": "Bejelentkezés", "Sign in": "Bejelentkezés",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Leállítás", "Stop": "Leállítás",
"Stop Generating": "",
"Stop Sequence": "Leállítási szekvencia", "Stop Sequence": "Leállítási szekvencia",
"Stream Chat Response": "Chat válasz streamelése", "Stream Chat Response": "Chat válasz streamelése",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Címke generálás", "Tags Generation": "Címke generálás",
"Tags Generation Prompt": "Címke generálási prompt", "Tags Generation Prompt": "Címke generálási prompt",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A farok nélküli mintavétel csökkenti a kevésbé valószínű tokenek hatását a kimeneten. Magasabb érték (pl. 2,0) jobban csökkenti a hatást, míg az 1,0 érték kikapcsolja ezt a beállítást.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A farok nélküli mintavétel csökkenti a kevésbé valószínű tokenek hatását a kimeneten. Magasabb érték (pl. 2,0) jobban csökkenti a hatást, míg az 1,0 érték kikapcsolja ezt a beállítást.",
"Talk to model": "Beszélj a modellel",
"Tap to interrupt": "Koppintson a megszakításhoz", "Tap to interrupt": "Koppintson a megszakításhoz",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Felugró értesítések az új frissítésekről", "Toast notifications for new updates": "Felugró értesítések az új frissítésekről",
"Today": "Ma", "Today": "Ma",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Beállítások be/ki",
"Toggle sidebar": "Oldalsáv be/ki",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Túl bőbeszédű", "Too verbose": "Túl bőbeszédű",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web",
"a user": "seorang pengguna", "a user": "seorang pengguna",
"About": "Tentang", "About": "Tentang",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Tambahkan prompt khusus",
"Add Details": "", "Add Details": "",
"Add Files": "Menambahkan File", "Add Files": "Menambahkan File",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Menyalin", "Copy": "Menyalin",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Salin blok kode terakhir",
"Copy last response": "Salin tanggapan terakhir",
"Copy link": "", "Copy link": "",
"Copy Link": "Salin Tautan", "Copy Link": "Salin Tautan",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Menghapus model", "Delete a model": "Menghapus model",
"Delete All Chats": "Menghapus Semua Obrolan", "Delete All Chats": "Menghapus Semua Obrolan",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Menghapus obrolan",
"Delete Chat": "Menghapus Obrolan", "Delete Chat": "Menghapus Obrolan",
"Delete chat?": "Menghapus obrolan?", "Delete chat?": "Menghapus obrolan?",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Memfokuskan input obrolan",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Menghasilkan Gambar", "Generate Image": "Menghasilkan Gambar",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Membuat kueri penelusuran", "Generating search query": "Membuat kueri penelusuran",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Perintah masukan",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Pintasan keyboard", "Keyboard shortcuts": "Pintasan keyboard",
"Keyboard Shortcuts": "",
"Knowledge": "Pengetahuan", "Knowledge": "Pengetahuan",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Memuat...", "Loading...": "Memuat...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versi Ollama", "Ollama Version": "Versi Ollama",
"On": "Aktif", "On": "Aktif",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Buka obrolan baru",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 hari sebelumnya", "Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya",
@ -1395,7 +1385,6 @@
"Select only one model to call": "Pilih hanya satu model untuk dipanggil", "Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Model yang dipilih tidak mendukung input gambar", "Selected model(s) do not support image inputs": "Model yang dipilih tidak mendukung input gambar",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Kirim", "Send": "Kirim",
"Send a Message": "Kirim Pesan", "Send a Message": "Kirim Pesan",
@ -1437,14 +1426,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Tampilkan pintasan",
"Show your support!": "Tunjukkan dukungan Anda!", "Show your support!": "Tunjukkan dukungan Anda!",
"Showcased creativity": "Menampilkan kreativitas", "Showcased creativity": "Menampilkan kreativitas",
"Sign in": "Masuk", "Sign in": "Masuk",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Hentikan Urutan", "Stop Sequence": "Hentikan Urutan",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1509,7 +1495,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Bicara dengan model",
"Tap to interrupt": "Ketuk untuk menyela", "Tap to interrupt": "Ketuk untuk menyela",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Hari ini", "Today": "Hari ini",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Beralih pengaturan",
"Toggle sidebar": "Beralih bilah sisi",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin",
"a user": "úsáideoir", "a user": "úsáideoir",
"About": "Maidir", "About": "Maidir",
"Accept autocomplete generation / Jump to prompt variable": "Glac giniúint uathchríochnaithe / Léim chun athróg a spreagadh",
"Access": "Rochtain", "Access": "Rochtain",
"Access Control": "Rialaithe Rochtana", "Access Control": "Rialaithe Rochtana",
"Accessible to all users": "Inrochtana do gach úsáideoir", "Accessible to all users": "Inrochtana do gach úsáideoir",
@ -51,7 +50,6 @@
"Add Content": "Cuir Ábhar leis", "Add Content": "Cuir Ábhar leis",
"Add content here": "Cuir ábhar anseo", "Add content here": "Cuir ábhar anseo",
"Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis", "Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis",
"Add custom prompt": "Cuir leid saincheaptha leis",
"Add Details": "Cuir Sonraí leis", "Add Details": "Cuir Sonraí leis",
"Add Files": "Cuir Comhaid", "Add Files": "Cuir Comhaid",
"Add Group": "Cuir Grúpa leis", "Add Group": "Cuir Grúpa leis",
@ -151,7 +149,6 @@
"Ask": "Fiafraigh", "Ask": "Fiafraigh",
"Ask a question": "Cuir ceist", "Ask a question": "Cuir ceist",
"Assistant": "Cúntóir", "Assistant": "Cúntóir",
"Attach file from knowledge": "Ceangail comhad ó eolas",
"Attach Knowledge": "Ceangail Eolas", "Attach Knowledge": "Ceangail Eolas",
"Attach Notes": "Ceangail Nótaí", "Attach Notes": "Ceangail Nótaí",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "Cainéal", "Channel": "Cainéal",
"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.": "",
"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",
"Character": "Carachtar", "Character": "Carachtar",
@ -272,6 +270,7 @@
"Close modal": "Dún modúl", "Close modal": "Dún modúl",
"Close settings modal": "Dún modúl na socruithe", "Close settings modal": "Dún modúl na socruithe",
"Close Sidebar": "Dún an Barra Taobh", "Close Sidebar": "Dún an Barra Taobh",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Ainm leabaithe cainteora CMU ARCTIC", "CMU ARCTIC speaker embedding name": "Ainm leabaithe cainteora CMU ARCTIC",
"Code Block": "Bloc Cód", "Code Block": "Bloc Cód",
"Code execution": "Cód a fhorghníomhú", "Code execution": "Cód a fhorghníomhú",
@ -331,8 +330,6 @@
"Copied to clipboard": "Cóipeáilte go gear", "Copied to clipboard": "Cóipeáilte go gear",
"Copy": "Cóipeáil", "Copy": "Cóipeáil",
"Copy Formatted Text": "Cóipeáil Téacs Formáidithe", "Copy Formatted Text": "Cóipeáil Téacs Formáidithe",
"Copy last code block": "Cóipeáil bloc cód deireanach",
"Copy last response": "Cóipeáil an fhreagairt",
"Copy link": "Cóipeáil nasc", "Copy link": "Cóipeáil nasc",
"Copy Link": "Cóipeáil Nasc", "Copy Link": "Cóipeáil Nasc",
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce", "Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
@ -396,7 +393,6 @@
"Delete a model": "Scrios samhail", "Delete a model": "Scrios samhail",
"Delete All Chats": "Scrios Gach Comhrá", "Delete All Chats": "Scrios Gach Comhrá",
"Delete All Models": "Scrios Gach Samhail", "Delete All Models": "Scrios Gach Samhail",
"Delete chat": "Scrios comhrá",
"Delete Chat": "Scrios Comhrá", "Delete Chat": "Scrios Comhrá",
"Delete chat?": "Scrios comhrá?", "Delete chat?": "Scrios comhrá?",
"Delete folder?": "Scrios fillteán?", "Delete folder?": "Scrios fillteán?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL Bunús API Firecrawl", "Firecrawl API Base URL": "URL Bunús API Firecrawl",
"Firecrawl API Key": "Eochair API Firecrawl", "Firecrawl API Key": "Eochair API Firecrawl",
"Floating Quick Actions": "Gníomhartha Tapa Snámha", "Floating Quick Actions": "Gníomhartha Tapa Snámha",
"Focus chat input": "Ionchur comhrá fócas",
"Folder": "", "Folder": "",
"Folder Background Image": "Íomhá Chúlra Fillteáin", "Folder Background Image": "Íomhá Chúlra Fillteáin",
"Folder deleted successfully": "Scriosadh an fillteán go rathúil", "Folder deleted successfully": "Scriosadh an fillteán go rathúil",
@ -786,7 +781,6 @@
"Generate": "Gin", "Generate": "Gin",
"Generate an image": "Gin íomhá", "Generate an image": "Gin íomhá",
"Generate Image": "Gin Íomhá", "Generate Image": "Gin Íomhá",
"Generate prompt pair": "Gin péire pras",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Giniúint ceist cuardaigh", "Generating search query": "Giniúint ceist cuardaigh",
"Generating...": "Ag giniúint...", "Generating...": "Ag giniúint...",
@ -870,7 +864,6 @@
"Initials": "Túslitreacha", "Initials": "Túslitreacha",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.",
"Input": "Ionchur", "Input": "Ionchur",
"Input commands": "Orduithe ionchuir",
"Input Key (e.g. text, unet_name, steps)": "Eochair Ionchuir (m.sh. téacs, unet_name, céimeanna)", "Input Key (e.g. text, unet_name, steps)": "Eochair Ionchuir (m.sh. téacs, unet_name, céimeanna)",
"Input Variables": "Athróga Ionchuir", "Input Variables": "Athróga Ionchuir",
"Insert": "Cuir isteach", "Insert": "Cuir isteach",
@ -909,6 +902,7 @@
"Key": "Eochair", "Key": "Eochair",
"Key is required": "Tá eochair ag teastáil", "Key is required": "Tá eochair ag teastáil",
"Keyboard shortcuts": "Aicearraí méarchlár", "Keyboard shortcuts": "Aicearraí méarchlár",
"Keyboard Shortcuts": "",
"Knowledge": "Eolas", "Knowledge": "Eolas",
"Knowledge Access": "Rochtain Eolais", "Knowledge Access": "Rochtain Eolais",
"Knowledge Base": "Bunachar Eolais", "Knowledge Base": "Bunachar Eolais",
@ -952,6 +946,7 @@
"Loader": "Lódóir", "Loader": "Lódóir",
"Loading Kokoro.js...": "Kokoro.js á lódáil...", "Loading Kokoro.js...": "Kokoro.js á lódáil...",
"Loading...": "Ag lódáil...", "Loading...": "Ag lódáil...",
"local": "",
"Local": "Áitiúil", "Local": "Áitiúil",
"Local Task Model": "Samhail Tasc Áitiúil", "Local Task Model": "Samhail Tasc Áitiúil",
"Location access not allowed": "Ní cheadaítear rochtain suímh", "Location access not allowed": "Ní cheadaítear rochtain suímh",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (obair/scoil)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (obair/scoil)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "OCR Mistral", "Mistral OCR": "OCR Mistral",
"Mistral OCR API Key required.": "Mistral OCR API Eochair ag teastáil.", "Mistral OCR API Key required.": "Mistral OCR API Eochair ag teastáil.",
"Model": "Samhail", "Model": "Samhail",
@ -1119,8 +1113,6 @@
"Ollama Version": "Leagan Ollama", "Ollama Version": "Leagan Ollama",
"On": "Ar", "On": "Ar",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Gníomhach amháin nuair a bhíonn an socrú \"Greamaigh Téacs Mór mar Chomhad\" casta air.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Gníomhach ach amháin nuair a bhíonn an t-ionchur comhrá i bhfócas agus nuair a bhíonn LLM ag giniúint freagra.",
"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní", "Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Oscail an modal chun an nasc a chumrú", "Open modal to configure connection": "Oscail an modal chun an nasc a chumrú",
"Open Modal To Manage Floating Quick Actions": "Oscail Modúl Chun Gníomhartha Tapa Snámhacha a Bhainistiú", "Open Modal To Manage Floating Quick Actions": "Oscail Modúl Chun Gníomhartha Tapa Snámhacha a Bhainistiú",
"Open Modal To Manage Image Compression": "Oscail Modúl Chun Comhbhrú Íomhá a Bhainistiú", "Open Modal To Manage Image Compression": "Oscail Modúl Chun Comhbhrú Íomhá a Bhainistiú",
"Open new chat": "Oscail comhrá nua",
"Open Sidebar": "Oscail an Barra Taoibh", "Open Sidebar": "Oscail an Barra Taoibh",
"Open User Profile Menu": "Oscail Roghchlár Próifíl Úsáideora", "Open User Profile Menu": "Oscail Roghchlár Próifíl Úsáideora",
"Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Is fearr liom gan a rá", "Prefer not to say": "Is fearr liom gan a rá",
"Prefix ID": "Aitheantas Réimír", "Prefix ID": "Aitheantas Réimír",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
"Prevent file creation": "Cosc a chur ar chruthú comhad",
"Preview": "Réamhamharc", "Preview": "Réamhamharc",
"Previous 30 days": "30 lá roimhe seo", "Previous 30 days": "30 lá roimhe seo",
"Previous 7 days": "7 lá roimhe seo", "Previous 7 days": "7 lá roimhe seo",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Roghnaigh samhail amháin le glaoch", "Select only one model to call": "Roghnaigh samhail amháin le glaoch",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Ní thacaíonn an/na samhlacha roghnaithe le hionchuir íomhá", "Selected model(s) do not support image inputs": "Ní thacaíonn an/na samhlacha roghnaithe le hionchuir íomhá",
"Self-Hosted": "",
"semantic": "séimeantach", "semantic": "séimeantach",
"Send": "Seol", "Send": "Seol",
"Send a Message": "Seol Teachtaireacht", "Send a Message": "Seol Teachtaireacht",
@ -1438,14 +1427,12 @@
"Share your background and interests": "Roinn do chúlra agus do leasanna", "Share your background and interests": "Roinn do chúlra agus do leasanna",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Ceadanna a Roinnt", "Sharing Permissions": "Ceadanna a Roinnt",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Is cásanna iad aicearraí a bhfuil réalta (*) orthu agus ní bhíonn siad gníomhach ach faoi choinníollacha sonracha.",
"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 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",
"Show shortcuts": "Taispeáin aicearraí",
"Show your support!": "Taispeáin do thacaíocht!", "Show your support!": "Taispeáin do thacaíocht!",
"Showcased creativity": "Cruthaitheacht léirithe", "Showcased creativity": "Cruthaitheacht léirithe",
"Sign in": "Sínigh isteach", "Sign in": "Sínigh isteach",
@ -1480,7 +1467,6 @@
"Status Updates": "Nuashonruithe Stádais", "Status Updates": "Nuashonruithe Stádais",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stad", "Stop": "Stad",
"Stop Generating": "Stop a Ghiniúint",
"Stop Sequence": "Stop Seicheamh", "Stop Sequence": "Stop Seicheamh",
"Stream Chat Response": "Freagra Comhrá Sruth", "Stream Chat Response": "Freagra Comhrá Sruth",
"Stream Delta Chunk Size": "Sruth Méid Leadhb Delta", "Stream Delta Chunk Size": "Sruth Méid Leadhb Delta",
@ -1510,7 +1496,6 @@
"Tags Generation": "Giniúint Clibeanna", "Tags Generation": "Giniúint Clibeanna",
"Tags Generation Prompt": "Clibeanna Giniúint Leid", "Tags Generation Prompt": "Clibeanna Giniúint Leid",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
"Talk to model": "Labhair leis an tsamhail",
"Tap to interrupt": "Tapáil chun cur isteach", "Tap to interrupt": "Tapáil chun cur isteach",
"Task List": "Liosta Tascanna", "Task List": "Liosta Tascanna",
"Task Model": "Samhail Thasc", "Task Model": "Samhail Thasc",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua", "Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua",
"Today": "Inniu", "Today": "Inniu",
"Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}",
"Toggle search": "Scoránaigh cuardach",
"Toggle settings": "Socraigh socruithe",
"Toggle sidebar": "Athraigh barra taobh",
"Toggle whether current connection is active.": "Athraigh an bhfuil an nasc reatha gníomhach.", "Toggle whether current connection is active.": "Athraigh an bhfuil an nasc reatha gníomhach.",
"Token": "Comhartha", "Token": "Comhartha",
"Too verbose": "Ró-fhocal", "Too verbose": "Ró-fhocal",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web",
"a user": "un utente", "a user": "un utente",
"About": "Informazioni", "About": "Informazioni",
"Accept autocomplete generation / Jump to prompt variable": "Accetta l'auto generazione di completamento / Passa alla variabile del prompt",
"Access": "Accesso", "Access": "Accesso",
"Access Control": "Controllo accessi", "Access Control": "Controllo accessi",
"Accessible to all users": "Accessibile a tutti gli utenti", "Accessible to all users": "Accessibile a tutti gli utenti",
@ -51,7 +50,6 @@
"Add Content": "Aggiungi contenuto", "Add Content": "Aggiungi contenuto",
"Add content here": "Aggiungi un contenuto qui", "Add content here": "Aggiungi un contenuto qui",
"Add Custom Parameter": "Aggiungi Parametri Personalizzati", "Add Custom Parameter": "Aggiungi Parametri Personalizzati",
"Add custom prompt": "Aggiungi un prompt personalizzato",
"Add Details": "", "Add Details": "",
"Add Files": "Aggiungi dei file", "Add Files": "Aggiungi dei file",
"Add Group": "Aggiungi un gruppo", "Add Group": "Aggiungi un gruppo",
@ -151,7 +149,6 @@
"Ask": "Chiedi", "Ask": "Chiedi",
"Ask a question": "Fai una domanda", "Ask a question": "Fai una domanda",
"Assistant": "Assistente", "Assistant": "Assistente",
"Attach file from knowledge": "Allega file dalla conoscenza",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nome canale", "Channel Name": "Nome canale",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Canali", "Channels": "Canali",
"Character": "Carattere", "Character": "Carattere",
@ -272,6 +270,7 @@
"Close modal": "Chiudi modale", "Close modal": "Chiudi modale",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Esecuzione codice", "Code execution": "Esecuzione codice",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiato negli appunti", "Copied to clipboard": "Copiato negli appunti",
"Copy": "Copia", "Copy": "Copia",
"Copy Formatted Text": "Copia testo formattato", "Copy Formatted Text": "Copia testo formattato",
"Copy last code block": "Copia ultimo blocco di codice",
"Copy last response": "Copia ultima risposta",
"Copy link": "", "Copy link": "",
"Copy Link": "Copia link", "Copy Link": "Copia link",
"Copy to clipboard": "Copia negli appunti", "Copy to clipboard": "Copia negli appunti",
@ -396,7 +393,6 @@
"Delete a model": "Elimina un modello", "Delete a model": "Elimina un modello",
"Delete All Chats": "Elimina tutte le chat", "Delete All Chats": "Elimina tutte le chat",
"Delete All Models": "Elimina tutti i modelli", "Delete All Models": "Elimina tutti i modelli",
"Delete chat": "Elimina chat",
"Delete Chat": "Elimina chat", "Delete Chat": "Elimina chat",
"Delete chat?": "Elimina chat?", "Delete chat?": "Elimina chat?",
"Delete folder?": "Elimina cartella?", "Delete folder?": "Elimina cartella?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL base dell'API Firecrawl", "Firecrawl API Base URL": "URL base dell'API Firecrawl",
"Firecrawl API Key": "Chiave API Firecrawl", "Firecrawl API Key": "Chiave API Firecrawl",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Metti a fuoco l'input della chat",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Cartella rimossa con successo", "Folder deleted successfully": "Cartella rimossa con successo",
@ -786,7 +781,6 @@
"Generate": "Genera", "Generate": "Genera",
"Generate an image": "Genera un'immagine", "Generate an image": "Genera un'immagine",
"Generate Image": "Genera Immagine", "Generate Image": "Genera Immagine",
"Generate prompt pair": "Genera coppia di prompt",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generazione query di ricerca", "Generating search query": "Generazione query di ricerca",
"Generating...": "Generazione in corso...", "Generating...": "Generazione in corso...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.",
"Input": "", "Input": "",
"Input commands": "Comandi di input",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Chiave", "Key": "Chiave",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Scorciatoie da tastiera", "Keyboard shortcuts": "Scorciatoie da tastiera",
"Keyboard Shortcuts": "",
"Knowledge": "Conoscenza", "Knowledge": "Conoscenza",
"Knowledge Access": "Accesso alla conoscenza", "Knowledge Access": "Accesso alla conoscenza",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Caricatore", "Loader": "Caricatore",
"Loading Kokoro.js...": "Caricamento Kokoro.js...", "Loading Kokoro.js...": "Caricamento Kokoro.js...",
"Loading...": "Caricamento...", "Loading...": "Caricamento...",
"local": "",
"Local": "Locale", "Local": "Locale",
"Local Task Model": "Modello Task locale", "Local Task Model": "Modello Task locale",
"Location access not allowed": "Accesso alla posizione non consentito", "Location access not allowed": "Accesso alla posizione non consentito",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (lavoro/scuola)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (lavoro/scuola)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "OCR Mistral", "Mistral OCR": "OCR Mistral",
"Mistral OCR API Key required.": "La Chiave API OCR Mistral è richiesta.", "Mistral OCR API Key required.": "La Chiave API OCR Mistral è richiesta.",
"Model": "Modello", "Model": "Modello",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versione Ollama", "Ollama Version": "Versione Ollama",
"On": "Attivato", "On": "Attivato",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Solo attivo quando \"Incolla Molto Testo come File\" è attiva.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Solo attivo quando l'input chat ha il focus e un LLM sta generando una risposta.",
"Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini", "Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Apri nuova chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "ID prefisso", "Prefix ID": "ID prefisso",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
"Prevent file creation": "",
"Preview": "Anteprima", "Preview": "Anteprima",
"Previous 30 days": "Ultimi 30 giorni", "Previous 30 days": "Ultimi 30 giorni",
"Previous 7 days": "Ultimi 7 giorni", "Previous 7 days": "Ultimi 7 giorni",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Seleziona solo un modello da chiamare", "Select only one model to call": "Seleziona solo un modello da chiamare",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini", "Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Invia", "Send": "Invia",
"Send a Message": "Invia un messaggio", "Send a Message": "Invia un messaggio",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Condivisione dei permessi", "Sharing Permissions": "Condivisione dei permessi",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Mostra Modello", "Show Model": "Mostra Modello",
"Show shortcuts": "Mostra scorciatoie",
"Show your support!": "Mostra il tuo supporto!", "Show your support!": "Mostra il tuo supporto!",
"Showcased creativity": "Creatività messa in mostra", "Showcased creativity": "Creatività messa in mostra",
"Sign in": "Accedi", "Sign in": "Accedi",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Arresta", "Stop": "Arresta",
"Stop Generating": "Ferma generazione",
"Stop Sequence": "Sequenza di arresto", "Stop Sequence": "Sequenza di arresto",
"Stream Chat Response": "Stream risposta chat", "Stream Chat Response": "Stream risposta chat",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "Generazione tag", "Tags Generation": "Generazione tag",
"Tags Generation Prompt": "Prompt di generazione dei tag", "Tags Generation Prompt": "Prompt di generazione dei tag",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Il campionamento tail free viene utilizzato per ridurre l'impatto di token meno probabili dall'output. Un valore più alto (ad esempio, 2.0) ridurrà maggiormente l'impatto, mentre un valore di 1.0 disabilita questa impostazione.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Il campionamento tail free viene utilizzato per ridurre l'impatto di token meno probabili dall'output. Un valore più alto (ad esempio, 2.0) ridurrà maggiormente l'impatto, mentre un valore di 1.0 disabilita questa impostazione.",
"Talk to model": "Parla al modello",
"Tap to interrupt": "Tocca per interrompere", "Tap to interrupt": "Tocca per interrompere",
"Task List": "", "Task List": "",
"Task Model": "Modello Task", "Task Model": "Modello Task",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti", "Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti",
"Today": "Oggi", "Today": "Oggi",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Attiva/disattiva la ricerca",
"Toggle settings": "Attiva/disattiva impostazioni",
"Toggle sidebar": "Attiva/disattiva barra laterale",
"Toggle whether current connection is active.": "Attiva/disattiva la connessione attuale quando è attiva", "Toggle whether current connection is active.": "Attiva/disattiva la connessione attuale quando è attiva",
"Token": "Token", "Token": "Token",
"Too verbose": "Troppo prolisso", "Too verbose": "Troppo prolisso",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます", "A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます",
"a user": "ユーザー", "a user": "ユーザー",
"About": "概要", "About": "概要",
"Accept autocomplete generation / Jump to prompt variable": "補完を使用する・プロンプト変数にジャンプ",
"Access": "アクセス", "Access": "アクセス",
"Access Control": "アクセス制御", "Access Control": "アクセス制御",
"Accessible to all users": "すべてのユーザーにアクセス可能", "Accessible to all users": "すべてのユーザーにアクセス可能",
@ -51,7 +50,6 @@
"Add Content": "コンテンツを追加", "Add Content": "コンテンツを追加",
"Add content here": "ここへコンテンツを追加", "Add content here": "ここへコンテンツを追加",
"Add Custom Parameter": "カスタムパラメータを追加", "Add Custom Parameter": "カスタムパラメータを追加",
"Add custom prompt": "カスタムプロンプトを追加",
"Add Details": "より詳しく", "Add Details": "より詳しく",
"Add Files": "ファイルを追加", "Add Files": "ファイルを追加",
"Add Group": "グループを追加", "Add Group": "グループを追加",
@ -151,7 +149,6 @@
"Ask": "質問する", "Ask": "質問する",
"Ask a question": "質問する", "Ask a question": "質問する",
"Assistant": "アシスタント", "Assistant": "アシスタント",
"Attach file from knowledge": "ナレッジからファイルを添付",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "チャンネルが正常に削除されました", "Channel deleted successfully": "チャンネルが正常に削除されました",
"Channel Name": "チャンネル名", "Channel Name": "チャンネル名",
"Channel name cannot be empty.": "",
"Channel updated successfully": "チャンネルが正常に更新されました", "Channel updated successfully": "チャンネルが正常に更新されました",
"Channels": "チャンネル", "Channels": "チャンネル",
"Character": "文字", "Character": "文字",
@ -272,6 +270,7 @@
"Close modal": "モーダルを閉じる", "Close modal": "モーダルを閉じる",
"Close settings modal": "設定モーダルを閉じる", "Close settings modal": "設定モーダルを閉じる",
"Close Sidebar": "サイドバーを閉じる", "Close Sidebar": "サイドバーを閉じる",
"cloud": "",
"CMU ARCTIC speaker embedding name": "CMU Arctic スピーカー埋め込み名", "CMU ARCTIC speaker embedding name": "CMU Arctic スピーカー埋め込み名",
"Code Block": "コードブロック", "Code Block": "コードブロック",
"Code execution": "コードの実行", "Code execution": "コードの実行",
@ -331,8 +330,6 @@
"Copied to clipboard": "クリップボードにコピーしました。", "Copied to clipboard": "クリップボードにコピーしました。",
"Copy": "コピー", "Copy": "コピー",
"Copy Formatted Text": "フォーマットされたテキストをコピー", "Copy Formatted Text": "フォーマットされたテキストをコピー",
"Copy last code block": "最後のコードブロックをコピー",
"Copy last response": "最後の応答をコピー",
"Copy link": "リンクをコピー", "Copy link": "リンクをコピー",
"Copy Link": "リンクをコピー", "Copy Link": "リンクをコピー",
"Copy to clipboard": "クリップボードにコピー", "Copy to clipboard": "クリップボードにコピー",
@ -396,7 +393,6 @@
"Delete a model": "モデルを削除", "Delete a model": "モデルを削除",
"Delete All Chats": "すべてのチャットを削除", "Delete All Chats": "すべてのチャットを削除",
"Delete All Models": "すべてのモデルを削除", "Delete All Models": "すべてのモデルを削除",
"Delete chat": "チャットを削除",
"Delete Chat": "チャットを削除", "Delete Chat": "チャットを削除",
"Delete chat?": "チャットを削除しますか?", "Delete chat?": "チャットを削除しますか?",
"Delete folder?": "フォルダーを削除しますか?", "Delete folder?": "フォルダーを削除しますか?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API ベースURL", "Firecrawl API Base URL": "Firecrawl API ベースURL",
"Firecrawl API Key": "Firecrawl APIキー", "Firecrawl API Key": "Firecrawl APIキー",
"Floating Quick Actions": "フローティング クイックアクション", "Floating Quick Actions": "フローティング クイックアクション",
"Focus chat input": "チャット入力にフォーカス",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "フォルダー削除が成功しました。", "Folder deleted successfully": "フォルダー削除が成功しました。",
@ -786,7 +781,6 @@
"Generate": "生成", "Generate": "生成",
"Generate an image": "画像を生成", "Generate an image": "画像を生成",
"Generate Image": "画像生成", "Generate Image": "画像生成",
"Generate prompt pair": "プロンプトペアを生成",
"Generated Image": "", "Generated Image": "",
"Generating search query": "検索クエリの生成", "Generating search query": "検索クエリの生成",
"Generating...": "生成中...", "Generating...": "生成中...",
@ -870,7 +864,6 @@
"Initials": "イニシャル", "Initials": "イニシャル",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "全文を取り込むことで全体を処理します。複雑な問い合わせの場合に推奨されます。", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "全文を取り込むことで全体を処理します。複雑な問い合わせの場合に推奨されます。",
"Input": "入力", "Input": "入力",
"Input commands": "入力コマンド",
"Input Key (e.g. text, unet_name, steps)": "入力キー", "Input Key (e.g. text, unet_name, steps)": "入力キー",
"Input Variables": "入力 変数", "Input Variables": "入力 変数",
"Insert": "挿入", "Insert": "挿入",
@ -909,6 +902,7 @@
"Key": "キー", "Key": "キー",
"Key is required": "キーは必須です", "Key is required": "キーは必須です",
"Keyboard shortcuts": "キーボードショートカット", "Keyboard shortcuts": "キーボードショートカット",
"Keyboard Shortcuts": "",
"Knowledge": "ナレッジベース", "Knowledge": "ナレッジベース",
"Knowledge Access": "ナレッジアクセス", "Knowledge Access": "ナレッジアクセス",
"Knowledge Base": "ナレッジベース", "Knowledge Base": "ナレッジベース",
@ -952,6 +946,7 @@
"Loader": "ローダー", "Loader": "ローダー",
"Loading Kokoro.js...": "Kokoro.js を読み込んでいます...", "Loading Kokoro.js...": "Kokoro.js を読み込んでいます...",
"Loading...": "読み込み中...", "Loading...": "読み込み中...",
"local": "",
"Local": "ローカル", "Local": "ローカル",
"Local Task Model": "ローカルタスクモデル", "Local Task Model": "ローカルタスクモデル",
"Location access not allowed": "位置情報のアクセスが許可されていません", "Location access not allowed": "位置情報のアクセスが許可されていません",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (職場/学校)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (職場/学校)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "Mistral OCR APIキーが必要です。", "Mistral OCR API Key required.": "Mistral OCR APIキーが必要です。",
"Model": "モデル", "Model": "モデル",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama バージョン", "Ollama Version": "Ollama バージョン",
"On": "オン", "On": "オン",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "「大きなテキストをファイルとして貼り付ける」がオンのときのみ有効です。",
"Only active when the chat input is in focus and an LLM is generating a response.": "入力欄がフォーカスされていて、LLMが応答を生成している間のみ有効です。",
"Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが使用できます", "Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが使用できます",
"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。", "Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。", "Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "接続設定のモーダルを開く", "Open modal to configure connection": "接続設定のモーダルを開く",
"Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く", "Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "新しいチャットを開く",
"Open Sidebar": "サイドバーを開く", "Open Sidebar": "サイドバーを開く",
"Open User Profile Menu": "ユーザープロフィールメニューを開く", "Open User Profile Menu": "ユーザープロフィールメニューを開く",
"Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。", "Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
@ -1225,7 +1216,6 @@
"Prefer not to say": "回答しない", "Prefer not to say": "回答しない",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
"Prevent file creation": "ファイル作成を防止する",
"Preview": "プレビュー", "Preview": "プレビュー",
"Previous 30 days": "過去30日間", "Previous 30 days": "過去30日間",
"Previous 7 days": "過去7日間", "Previous 7 days": "過去7日間",
@ -1395,7 +1385,6 @@
"Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。", "Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません", "Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません",
"Self-Hosted": "",
"semantic": "意味的", "semantic": "意味的",
"Send": "送信", "Send": "送信",
"Send a Message": "メッセージを送信", "Send a Message": "メッセージを送信",
@ -1437,14 +1426,12 @@
"Share your background and interests": "あなたの背景情報と興味を教えてください", "Share your background and interests": "あなたの背景情報と興味を教えてください",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "共有に関する権限", "Sharing Permissions": "共有に関する権限",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "アスタリスク(*)のついたショートカットは、特定の状況下でのみ有効です。",
"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 Formatting Toolbar": "フォーマットツールバーを表示", "Show Formatting Toolbar": "フォーマットツールバーを表示",
"Show image preview": "画像のプレビューを表示", "Show image preview": "画像のプレビューを表示",
"Show Model": "モデルを表示", "Show Model": "モデルを表示",
"Show shortcuts": "ショートカットを表示",
"Show your support!": "サポートを表示", "Show your support!": "サポートを表示",
"Showcased creativity": "創造性を披露", "Showcased creativity": "創造性を披露",
"Sign in": "サインイン", "Sign in": "サインイン",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "停止", "Stop": "停止",
"Stop Generating": "生成を停止",
"Stop Sequence": "ストップシーケンス", "Stop Sequence": "ストップシーケンス",
"Stream Chat Response": "チャットレスポンスのストリーム", "Stream Chat Response": "チャットレスポンスのストリーム",
"Stream Delta Chunk Size": "ストリームの差分チャンクサイズ", "Stream Delta Chunk Size": "ストリームの差分チャンクサイズ",
@ -1509,7 +1495,6 @@
"Tags Generation": "タグ生成", "Tags Generation": "タグ生成",
"Tags Generation Prompt": "タグ生成プロンプト", "Tags Generation Prompt": "タグ生成プロンプト",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail Free Samplingは、出力中の確率の低いトークンの影響を抑えるための手法です。値が高い2.0ほど影響を減らし、1.0の場合は無効となります。", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail Free Samplingは、出力中の確率の低いトークンの影響を抑えるための手法です。値が高い2.0ほど影響を減らし、1.0の場合は無効となります。",
"Talk to model": "モデルと話す",
"Tap to interrupt": "タップして中断", "Tap to interrupt": "タップして中断",
"Task List": "タスクリスト", "Task List": "タスクリスト",
"Task Model": "タスクモデル", "Task Model": "タスクモデル",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "新しい更新のトースト通知", "Toast notifications for new updates": "新しい更新のトースト通知",
"Today": "今日", "Today": "今日",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "検索を切り替え",
"Toggle settings": "設定を切り替え",
"Toggle sidebar": "サイドバーを切り替え",
"Toggle whether current connection is active.": "この接続の有効性を切り替える", "Toggle whether current connection is active.": "この接続の有効性を切り替える",
"Token": "トークン", "Token": "トークン",
"Too verbose": "冗長すぎる", "Too verbose": "冗長すぎる",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ ძიების მოთხოვნები", "A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ ძიების მოთხოვნები",
"a user": "მომხმარებელი", "a user": "მომხმარებელი",
"About": "შესახებ", "About": "შესახებ",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "წვდომა", "Access": "წვდომა",
"Access Control": "წვდომის კონტროლი", "Access Control": "წვდომის კონტროლი",
"Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის", "Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის",
@ -51,7 +50,6 @@
"Add Content": "შემცველობის დამატება", "Add Content": "შემცველობის დამატება",
"Add content here": "შემცველობის აქ დამატება", "Add content here": "შემცველობის აქ დამატება",
"Add Custom Parameter": "მორგებული პარამეტრის დამატება", "Add Custom Parameter": "მორგებული პარამეტრის დამატება",
"Add custom prompt": "მორგებული მოთხოვნის დამატება",
"Add Details": "დეტალების დამატება", "Add Details": "დეტალების დამატება",
"Add Files": "ფაილების დამატება", "Add Files": "ფაილების დამატება",
"Add Group": "ჯგუფის დამატება", "Add Group": "ჯგუფის დამატება",
@ -151,7 +149,6 @@
"Ask": "კითხვა", "Ask": "კითხვა",
"Ask a question": "კითხვის დასმა", "Ask a question": "კითხვის დასმა",
"Assistant": "დამხმარე", "Assistant": "დამხმარე",
"Attach file from knowledge": "ფაილის მიმაგრება",
"Attach Knowledge": "ცოდნის მიმაგრება", "Attach Knowledge": "ცოდნის მიმაგრება",
"Attach Notes": "შენიშვნების მიმაგრება", "Attach Notes": "შენიშვნების მიმაგრება",
"Attach Webpage": "ვებგვერდის მიმაგრება", "Attach Webpage": "ვებგვერდის მიმაგრება",
@ -221,6 +218,7 @@
"Channel": "არხი", "Channel": "არხი",
"Channel deleted successfully": "არხი წარმატებით წაიშალა", "Channel deleted successfully": "არხი წარმატებით წაიშალა",
"Channel Name": "არხის სახელი", "Channel Name": "არხის სახელი",
"Channel name cannot be empty.": "",
"Channel updated successfully": "არხი წარმატებით განახლდა", "Channel updated successfully": "არხი წარმატებით განახლდა",
"Channels": "არხები", "Channels": "არხები",
"Character": "სიმბოლო", "Character": "სიმბოლო",
@ -272,6 +270,7 @@
"Close modal": "ფანჯრის დახურვა", "Close modal": "ფანჯრის დახურვა",
"Close settings modal": "მორგების დიალოგის დახურვა", "Close settings modal": "მორგების დიალოგის დახურვა",
"Close Sidebar": "გვერდითი ზოლის დახურვა", "Close Sidebar": "გვერდითი ზოლის დახურვა",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "კოდის ბლოკი", "Code Block": "კოდის ბლოკი",
"Code execution": "კოდის შესრულება", "Code execution": "კოდის შესრულება",
@ -331,8 +330,6 @@
"Copied to clipboard": "დაკოპირდა გაცვლის ბაფერში", "Copied to clipboard": "დაკოპირდა გაცვლის ბაფერში",
"Copy": "კოპირება", "Copy": "კოპირება",
"Copy Formatted Text": "დაფორმატებული ტექსტის კოპირება", "Copy Formatted Text": "დაფორმატებული ტექსტის კოპირება",
"Copy last code block": "ბოლო კოდის ბლოკის კოპირება",
"Copy last response": "ბოლო პასუხის კოპირება",
"Copy link": "ბმულის კოპირება", "Copy link": "ბმულის კოპირება",
"Copy Link": "ბმულის კოპირება", "Copy Link": "ბმულის კოპირება",
"Copy to clipboard": "ბუფერში კოპირება", "Copy to clipboard": "ბუფერში კოპირება",
@ -396,7 +393,6 @@
"Delete a model": "მოდელის წაშლა", "Delete a model": "მოდელის წაშლა",
"Delete All Chats": "ყველა ჩატის წაშლა", "Delete All Chats": "ყველა ჩატის წაშლა",
"Delete All Models": "ყველა მოდელის წაშლა", "Delete All Models": "ყველა მოდელის წაშლა",
"Delete chat": "საუბრის წაშლა",
"Delete Chat": "საუბრის წაშლა", "Delete Chat": "საუბრის წაშლა",
"Delete chat?": "წავშალო ჩატი?", "Delete chat?": "წავშალო ჩატი?",
"Delete folder?": "წავშალო საქაღალდეები?", "Delete folder?": "წავშალო საქაღალდეები?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL", "Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL",
"Firecrawl API Key": "Firecrawl API-ის გასაღები", "Firecrawl API Key": "Firecrawl API-ის გასაღები",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "ჩატში შეყვანის ფოკუსი",
"Folder": "საქაღალდე", "Folder": "საქაღალდე",
"Folder Background Image": "საქაღალდის ფონის სურათი", "Folder Background Image": "საქაღალდის ფონის სურათი",
"Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა", "Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა",
@ -786,7 +781,6 @@
"Generate": "გენერაცია", "Generate": "გენერაცია",
"Generate an image": "გამოსახულების გენერაცია", "Generate an image": "გამოსახულების გენერაცია",
"Generate Image": "სურათის განერაცია", "Generate Image": "სურათის განერაცია",
"Generate prompt pair": "",
"Generated Image": "გენერირებული გამოსახულება", "Generated Image": "გენერირებული გამოსახულება",
"Generating search query": "ძებნის მოთხოვნის გენერაცია", "Generating search query": "ძებნის მოთხოვნის გენერაცია",
"Generating...": "გენერაცია...", "Generating...": "გენერაცია...",
@ -870,7 +864,6 @@
"Initials": "ინიციალები", "Initials": "ინიციალები",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "შეყვანა", "Input": "შეყვანა",
"Input commands": "შეიყვანეთ ბრძანებები",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "შეყვანის ცვლადები", "Input Variables": "შეყვანის ცვლადები",
"Insert": "ჩასმა", "Insert": "ჩასმა",
@ -909,6 +902,7 @@
"Key": "გასაღები", "Key": "გასაღები",
"Key is required": "გასაღები აუცილებელია", "Key is required": "გასაღები აუცილებელია",
"Keyboard shortcuts": "კლავიატურის მალსახმობები", "Keyboard shortcuts": "კლავიატურის მალსახმობები",
"Keyboard Shortcuts": "",
"Knowledge": "ცოდნა", "Knowledge": "ცოდნა",
"Knowledge Access": "წვდომა ცოდნასთან", "Knowledge Access": "წვდომა ცოდნასთან",
"Knowledge Base": "ცოდნის ბაზა", "Knowledge Base": "ცოდნის ბაზა",
@ -952,6 +946,7 @@
"Loader": "ჩამტვირთავი", "Loader": "ჩამტვირთავი",
"Loading Kokoro.js...": "იტვირთება Kokoro.js...", "Loading Kokoro.js...": "იტვირთება Kokoro.js...",
"Loading...": "იტვირთება...", "Loading...": "იტვირთება...",
"local": "",
"Local": "ლოკალური", "Local": "ლოკალური",
"Local Task Model": "ლოკალური დავალების მოდელი", "Local Task Model": "ლოკალური დავალების მოდელი",
"Location access not allowed": "მდებარეობასთან წვდომა დაშვებული არაა", "Location access not allowed": "მდებარეობასთან წვდომა დაშვებული არაა",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (სამსახური/სკოლა)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (სამსახური/სკოლა)",
"MinerU": "MinerU", "MinerU": "MinerU",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "მოდელი", "Model": "მოდელი",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama ვერსია", "Ollama Version": "Ollama ვერსია",
"On": "ჩართული", "On": "ჩართული",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.", "Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "ახალი ჩატის გახსნა",
"Open Sidebar": "გვერდითი ზოლის გახსნა", "Open Sidebar": "გვერდითი ზოლის გახსნა",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "მირჩევნია, არ ვთქვა", "Prefer not to say": "მირჩევნია, არ ვთქვა",
"Prefix ID": "პრეფიქსის ID", "Prefix ID": "პრეფიქსის ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "ფაილის შექმნის აკრძალვა",
"Preview": "მინიატურა", "Preview": "მინიატურა",
"Previous 30 days": "წინა 30 დღე", "Previous 30 days": "წინა 30 დღე",
"Previous 7 days": "წინა 7 დღე", "Previous 7 days": "წინა 7 დღე",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "აირჩიეთ ხედი", "Select view": "აირჩიეთ ხედი",
"Selected model(s) do not support image inputs": "მონიშნულ მოდელებს გამოსახულების შეყვანის მხარდაჭერა არ გააჩნიათ", "Selected model(s) do not support image inputs": "მონიშნულ მოდელებს გამოსახულების შეყვანის მხარდაჭერა არ გააჩნიათ",
"Self-Hosted": "თვითდაჰოსტილი",
"semantic": "სემანტიკური", "semantic": "სემანტიკური",
"Send": "გაგზავნა", "Send": "გაგზავნა",
"Send a Message": "შეტყობინების გაგზავნა", "Send a Message": "შეტყობინების გაგზავნა",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "გაზიარებულია თქვენთვის", "Shared with you": "გაზიარებულია თქვენთვის",
"Sharing Permissions": "გაზიარების წვდომები", "Sharing Permissions": "გაზიარების წვდომები",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "დაფორმატების პანელის ჩვენება", "Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება",
"Show image preview": "გამოსახულების გადახედვის ჩვენება", "Show image preview": "გამოსახულების გადახედვის ჩვენება",
"Show Model": "მოდელის ჩვენება", "Show Model": "მოდელის ჩვენება",
"Show shortcuts": "მალსახმობების ჩვენება",
"Show your support!": "გვაჩვენეთ მხარდაჭერა!", "Show your support!": "გვაჩვენეთ მხარდაჭერა!",
"Showcased creativity": "გამოკვეთილი კრეატიულობა", "Showcased creativity": "გამოკვეთილი კრეატიულობა",
"Sign in": "შესვლა", "Sign in": "შესვლა",
@ -1480,7 +1467,6 @@
"Status Updates": "სტატუსის განახლებები", "Status Updates": "სტატუსის განახლებები",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "გაჩერება", "Stop": "გაჩერება",
"Stop Generating": "გენერაციის გაჩერება",
"Stop Sequence": "შეჩერების მიმდევრობა", "Stop Sequence": "შეჩერების მიმდევრობა",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "ჭდეების გენერაცია", "Tags Generation": "ჭდეების გენერაცია",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "ესაუბრეთ მოდელს",
"Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად", "Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად",
"Task List": "ამოცანების სია", "Task List": "ამოცანების სია",
"Task Model": "დავალების მოდელი", "Task Model": "დავალების მოდელი",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "დღეს", "Today": "დღეს",
"Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}",
"Toggle search": "ძებნის გადართვა",
"Toggle settings": "პარამეტრების გადართვა",
"Toggle sidebar": "გვერდითი ზოლის ჩართ/გამორთ",
"Toggle whether current connection is active.": "გადართვა, აქტიურია, თუ არა მიმდინარე კავშირი.", "Toggle whether current connection is active.": "გადართვა, აქტიურია, თუ არა მიმდინარე კავშირი.",
"Token": "კოდი", "Token": "კოდი",
"Too verbose": "მეტისმეტად ბევრი სეტყობინება", "Too verbose": "მეტისმეტად ბევრი სეტყობინება",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web",
"a user": "aseqdac", "a user": "aseqdac",
"About": "Awal ɣef", "About": "Awal ɣef",
"Accept autocomplete generation / Jump to prompt variable": "Aqbal n tsuta tafulmant tummidt / Neggez ɣer usenfali n umutti",
"Access": "Addaf", "Access": "Addaf",
"Access Control": "Asenqed n unekcum", "Access Control": "Asenqed n unekcum",
"Accessible to all users": "Yella i yiseqdacen i meṛṛa", "Accessible to all users": "Yella i yiseqdacen i meṛṛa",
@ -51,7 +50,6 @@
"Add Content": "Rnu agbur", "Add Content": "Rnu agbur",
"Add content here": "Rnu agbur da", "Add content here": "Rnu agbur da",
"Add Custom Parameter": "Rnu aɣewwar udmawan", "Add Custom Parameter": "Rnu aɣewwar udmawan",
"Add custom prompt": "Rnu aneftaɣ udmawan",
"Add Details": "Rnu talqayt", "Add Details": "Rnu talqayt",
"Add Files": "Rnu ifuyla", "Add Files": "Rnu ifuyla",
"Add Group": "Rnu agraw", "Add Group": "Rnu agraw",
@ -151,7 +149,6 @@
"Ask": "Suter", "Ask": "Suter",
"Ask a question": "Efk-d asteqsi", "Ask a question": "Efk-d asteqsi",
"Assistant": "Amallal", "Assistant": "Amallal",
"Attach file from knowledge": "Seddu afaylu seg taffa n tmusniwin",
"Attach Knowledge": "Qqen-as tamessunt", "Attach Knowledge": "Qqen-as tamessunt",
"Attach Notes": "Qqen-as tizmilin", "Attach Notes": "Qqen-as tizmilin",
"Attach Webpage": "Qqen-as asebter web", "Attach Webpage": "Qqen-as asebter web",
@ -221,6 +218,7 @@
"Channel": "Abadu", "Channel": "Abadu",
"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 updated successfully": "Yettwaleqqem ubadu akken iwata", "Channel updated successfully": "Yettwaleqqem ubadu akken iwata",
"Channels": "Ibuda", "Channels": "Ibuda",
"Character": "Asekkil", "Character": "Asekkil",
@ -272,6 +270,7 @@
"Close modal": "Mdel asfaylu", "Close modal": "Mdel asfaylu",
"Close settings modal": "Mdel asfaylu n iɣewwaṛen", "Close settings modal": "Mdel asfaylu n iɣewwaṛen",
"Close Sidebar": "Mdel agalis adisan", "Close Sidebar": "Mdel agalis adisan",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "Iḥder n tengalt", "Code Block": "Iḥder n tengalt",
"Code execution": "Aselkem n tengalt", "Code execution": "Aselkem n tengalt",
@ -331,8 +330,6 @@
"Copied to clipboard": "Yettwanɣel ɣer ufus", "Copied to clipboard": "Yettwanɣel ɣer ufus",
"Copy": "Nɣel", "Copy": "Nɣel",
"Copy Formatted Text": "Nɣel aḍris akken yella", "Copy Formatted Text": "Nɣel aḍris akken yella",
"Copy last code block": "Nɣel iḥder n tengalt aneggaru",
"Copy last response": "Nɣel tiririt taneggarut",
"Copy link": "Nɣel aseɣwen", "Copy link": "Nɣel aseɣwen",
"Copy Link": "Nɣel aseɣwen", "Copy Link": "Nɣel aseɣwen",
"Copy to clipboard": "Nɣel ɣef afus", "Copy to clipboard": "Nɣel ɣef afus",
@ -396,7 +393,6 @@
"Delete a model": "Kkes tamudemt", "Delete a model": "Kkes tamudemt",
"Delete All Chats": "Kkes akk idiwenniyen", "Delete All Chats": "Kkes akk idiwenniyen",
"Delete All Models": "Kkes akk timudmiwin", "Delete All Models": "Kkes akk timudmiwin",
"Delete chat": "Kkes asqerdec",
"Delete Chat": "Kkes asqerdec", "Delete Chat": "Kkes asqerdec",
"Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?", "Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?",
"Delete folder?": "Kkes akaram?", "Delete folder?": "Kkes akaram?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Tansa URL n taffa n isefka", "Firecrawl API Base URL": "Tansa URL n taffa n isefka",
"Firecrawl API Key": "Tasarut API n Firecrawl", "Firecrawl API Key": "Tasarut API n Firecrawl",
"Floating Quick Actions": "Tigawin tiruradin yettifliwen", "Floating Quick Actions": "Tigawin tiruradin yettifliwen",
"Focus chat input": "Err asaḍes ɣer unekcum n udiwenni",
"Folder": "Akaram", "Folder": "Akaram",
"Folder Background Image": "Tugna n ugilal n ukaram", "Folder Background Image": "Tugna n ugilal n ukaram",
"Folder deleted successfully": "Akaram-nni yettwakkes akken iwata", "Folder deleted successfully": "Akaram-nni yettwakkes akken iwata",
@ -786,7 +781,6 @@
"Generate": "Sirew", "Generate": "Sirew",
"Generate an image": "Sarew tugna", "Generate an image": "Sarew tugna",
"Generate Image": "Sirew-d tugna", "Generate Image": "Sirew-d tugna",
"Generate prompt pair": "Sirew tayuga n yineftaɣen",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Asirew n tuttra n unadi", "Generating search query": "Asirew n tuttra n unadi",
"Generating...": "Asirew…", "Generating...": "Asirew…",
@ -870,7 +864,6 @@
"Initials": "Isekkilen imezwura", "Initials": "Isekkilen imezwura",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "Anekcum", "Input": "Anekcum",
"Input commands": "Tiludna n unekcum",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Timuttiyin n unekcum", "Input Variables": "Timuttiyin n unekcum",
"Insert": "Ger", "Insert": "Ger",
@ -909,6 +902,7 @@
"Key": "Tasarutt", "Key": "Tasarutt",
"Key is required": "Tlaq tsarut", "Key is required": "Tlaq tsarut",
"Keyboard shortcuts": "Inegzumen n unasiw", "Keyboard shortcuts": "Inegzumen n unasiw",
"Keyboard Shortcuts": "",
"Knowledge": "Tamusni", "Knowledge": "Tamusni",
"Knowledge Access": "Anekcum ɣer tmussni", "Knowledge Access": "Anekcum ɣer tmussni",
"Knowledge Base": "Taffa n tmusni", "Knowledge Base": "Taffa n tmusni",
@ -952,6 +946,7 @@
"Loader": "Asalay", "Loader": "Asalay",
"Loading Kokoro.js...": "Aɛebbi n Kokoro.js…", "Loading Kokoro.js...": "Aɛebbi n Kokoro.js…",
"Loading...": "Aɛebbi n...", "Loading...": "Aɛebbi n...",
"local": "",
"Local": "Adigan", "Local": "Adigan",
"Local Task Model": "Tamudemt n temsekrit tadigant", "Local Task Model": "Tamudemt n temsekrit tadigant",
"Location access not allowed": "Anekcum ɣer tuddna", "Location access not allowed": "Anekcum ɣer tuddna",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (axeddim/aɣerbaz)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (axeddim/aɣerbaz)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "API Mistral OCR Tesri tasarut.", "Mistral OCR API Key required.": "API Mistral OCR Tesri tasarut.",
"Model": "Tamudemt", "Model": "Tamudemt",
@ -1119,8 +1113,6 @@
"Ollama Version": "Lqem n Ollama", "Ollama Version": "Lqem n Ollama",
"On": "Irmed", "On": "Irmed",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "D urmid kan mi ara d-yili usbadu n \"Paste Great Text as File\".",
"Only active when the chat input is in focus and an LLM is generating a response.": "D urmid kan mi ara yerr udraw n udiwenni, ad d-yawi LLM tiririt.",
"Only alphanumeric characters and hyphens are allowed": "Ala iwudam ifenyanen d tfenṭazit i yettusirgen", "Only alphanumeric characters and hyphens are allowed": "Ala iwudam ifenyanen d tfenṭazit i yettusirgen",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna", "Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Ldi asqerdec amaynut",
"Open Sidebar": "Ldi agalis adisan", "Open Sidebar": "Ldi agalis adisan",
"Open User Profile Menu": "Ldi umuɣ n umaɣnu n useqdac", "Open User Profile Menu": "Ldi umuɣ n umaɣnu n useqdac",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Smenyafeɣ ur d-qqareɣ ara", "Prefer not to say": "Smenyafeɣ ur d-qqareɣ ara",
"Prefix ID": "Asulay ID n uzwir", "Prefix ID": "Asulay ID n uzwir",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Asulay n uzwir yettusexdem i wakken ur d-yettili ara umennuɣ akked tuqqna-nniḍen s tmerna n usewgelhen i yimuhal n tmudemt - eǧǧ-iten d ilmawen i tukksa n tuqqna", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Asulay n uzwir yettusexdem i wakken ur d-yettili ara umennuɣ akked tuqqna-nniḍen s tmerna n usewgelhen i yimuhal n tmudemt - eǧǧ-iten d ilmawen i tukksa n tuqqna",
"Prevent file creation": "Gmen timerna n ufaylu",
"Preview": "Taskant", "Preview": "Taskant",
"Previous 30 days": "30 n wussan yezrin", "Previous 30 days": "30 n wussan yezrin",
"Previous 7 days": "7 n wussan yezrin", "Previous 7 days": "7 n wussan yezrin",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Fren yiwet kan n tmudemt i wara d-siwleḍ", "Select only one model to call": "Fren yiwet kan n tmudemt i wara d-siwleḍ",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Ammud(s) yettwafernen ur yessefrak ara inekcamen n tugniwin yettwafernen", "Selected model(s) do not support image inputs": "Ammud(s) yettwafernen ur yessefrak ara inekcamen n tugniwin yettwafernen",
"Self-Hosted": "",
"semantic": "tasnamekt", "semantic": "tasnamekt",
"Send": "Ceyyeɛ", "Send": "Ceyyeɛ",
"Send a Message": "Ceyyeɛ izen", "Send a Message": "Ceyyeɛ izen",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Tisirag n beṭṭu", "Sharing Permissions": "Tisirag n beṭṭu",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 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",
"Show shortcuts": "Sken-d inegzumen",
"Show your support!": "Sken tallalt-ik⋅im!", "Show your support!": "Sken tallalt-ik⋅im!",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "Qqen", "Sign in": "Qqen",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Seḥbes", "Stop": "Seḥbes",
"Stop Generating": "Seḥbes asirew",
"Stop Sequence": "Tagzemt n uḥbas", "Stop Sequence": "Tagzemt n uḥbas",
"Stream Chat Response": "Suddem tiririt n udiwenni", "Stream Chat Response": "Suddem tiririt n udiwenni",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Asirew n tebzimin", "Tags Generation": "Asirew n tebzimin",
"Tags Generation Prompt": "Aneftaɣ n usirew n tebzimin", "Tags Generation Prompt": "Aneftaɣ n usirew n tebzimin",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Mmeslay d tmudemt",
"Tap to interrupt": "Sit i unegzum", "Tap to interrupt": "Sit i unegzum",
"Task List": "Tabdart n temsekra", "Task List": "Tabdart n temsekra",
"Task Model": "Tamudemt n temsekra", "Task Model": "Tamudemt n temsekra",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten", "Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten",
"Today": "Ass-a", "Today": "Ass-a",
"Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}",
"Toggle search": "Ldi/Ffer anadi",
"Toggle settings": "Sken/Ffer iɣewwaren",
"Toggle sidebar": "Ldi/Mdel afeggag adisan",
"Toggle whether current connection is active.": "Sken ma yella tuqqna tamirant d turmidt.", "Toggle whether current connection is active.": "Sken ma yella tuqqna tamirant d turmidt.",
"Token": "Ajiṭun", "Token": "Ajiṭun",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.",
"a user": "사용자", "a user": "사용자",
"About": "정보", "About": "정보",
"Accept autocomplete generation / Jump to prompt variable": "자동 완성 생성 수락 / 프롬프트 변수로 이동",
"Access": "접근", "Access": "접근",
"Access Control": "접근 제어", "Access Control": "접근 제어",
"Accessible to all users": "모든 사용자가 이용할 수 있음", "Accessible to all users": "모든 사용자가 이용할 수 있음",
@ -51,7 +50,6 @@
"Add Content": "내용 추가", "Add Content": "내용 추가",
"Add content here": "여기에 내용을 추가하세요", "Add content here": "여기에 내용을 추가하세요",
"Add Custom Parameter": "사용자 정의 매개변수 추가", "Add Custom Parameter": "사용자 정의 매개변수 추가",
"Add custom prompt": "사용자 정의 프롬프트 추가",
"Add Details": "디테일 추가", "Add Details": "디테일 추가",
"Add Files": "파일 추가", "Add Files": "파일 추가",
"Add Group": "그룹 추가", "Add Group": "그룹 추가",
@ -151,7 +149,6 @@
"Ask": "질문", "Ask": "질문",
"Ask a question": "질문하기", "Ask a question": "질문하기",
"Assistant": "어시스턴트", "Assistant": "어시스턴트",
"Attach file from knowledge": "지식 기반에서 파일 첨부",
"Attach Knowledge": "지식 기반 첨부", "Attach Knowledge": "지식 기반 첨부",
"Attach Notes": "노트 첨부", "Attach Notes": "노트 첨부",
"Attach Webpage": "웹페이지 첨부", "Attach Webpage": "웹페이지 첨부",
@ -221,6 +218,7 @@
"Channel": "채널", "Channel": "채널",
"Channel deleted successfully": "채널 삭제 성공", "Channel deleted successfully": "채널 삭제 성공",
"Channel Name": "채널 이름", "Channel Name": "채널 이름",
"Channel name cannot be empty.": "",
"Channel updated successfully": "채널 업데이트 성공", "Channel updated successfully": "채널 업데이트 성공",
"Channels": "채널", "Channels": "채널",
"Character": "캐릭터", "Character": "캐릭터",
@ -272,6 +270,7 @@
"Close modal": "닫기", "Close modal": "닫기",
"Close settings modal": "설정 닫기", "Close settings modal": "설정 닫기",
"Close Sidebar": "사이드바 닫기", "Close Sidebar": "사이드바 닫기",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "코드 블록", "Code Block": "코드 블록",
"Code execution": "코드 실행", "Code execution": "코드 실행",
@ -331,8 +330,6 @@
"Copied to clipboard": "클립보드에 복사되었습니다", "Copied to clipboard": "클립보드에 복사되었습니다",
"Copy": "복사", "Copy": "복사",
"Copy Formatted Text": "서식 있는 텍스트 복사", "Copy Formatted Text": "서식 있는 텍스트 복사",
"Copy last code block": "마지막 코드 블록 복사",
"Copy last response": "마지막 응답 복사",
"Copy link": "링크 복사", "Copy link": "링크 복사",
"Copy Link": "링크 복사", "Copy Link": "링크 복사",
"Copy to clipboard": "클립보드에 복사", "Copy to clipboard": "클립보드에 복사",
@ -396,7 +393,6 @@
"Delete a model": "모델 삭제", "Delete a model": "모델 삭제",
"Delete All Chats": "모든 채팅 삭제", "Delete All Chats": "모든 채팅 삭제",
"Delete All Models": "모든 모델 삭제", "Delete All Models": "모든 모델 삭제",
"Delete chat": "채팅 삭제",
"Delete Chat": "채팅 삭제", "Delete Chat": "채팅 삭제",
"Delete chat?": "채팅을 삭제하시겠습니까?", "Delete chat?": "채팅을 삭제하시겠습니까?",
"Delete folder?": "폴더를 삭제하시겠습니까?", "Delete folder?": "폴더를 삭제하시겠습니까?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API 기본 URL", "Firecrawl API Base URL": "Firecrawl API 기본 URL",
"Firecrawl API Key": "Firecrawl API 키", "Firecrawl API Key": "Firecrawl API 키",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "채팅 입력창에 포커스",
"Folder": "폴더", "Folder": "폴더",
"Folder Background Image": "폴더 배경 이미지", "Folder Background Image": "폴더 배경 이미지",
"Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다", "Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다",
@ -786,7 +781,6 @@
"Generate": "생성", "Generate": "생성",
"Generate an image": "이미지 생성", "Generate an image": "이미지 생성",
"Generate Image": "이미지 생성", "Generate Image": "이미지 생성",
"Generate prompt pair": "프롬프트 쌍 생성",
"Generated Image": "", "Generated Image": "",
"Generating search query": "검색 쿼리 생성", "Generating search query": "검색 쿼리 생성",
"Generating...": "생성 중...", "Generating...": "생성 중...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.",
"Input": "입력", "Input": "입력",
"Input commands": "명령어 입력",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "변수 입력", "Input Variables": "변수 입력",
"Insert": "삽입", "Insert": "삽입",
@ -909,6 +902,7 @@
"Key": "키", "Key": "키",
"Key is required": "키가 필요합니다", "Key is required": "키가 필요합니다",
"Keyboard shortcuts": "키보드 단축키", "Keyboard shortcuts": "키보드 단축키",
"Keyboard Shortcuts": "",
"Knowledge": "지식 기반", "Knowledge": "지식 기반",
"Knowledge Access": "지식 기반 접근", "Knowledge Access": "지식 기반 접근",
"Knowledge Base": "지식 기반", "Knowledge Base": "지식 기반",
@ -952,6 +946,7 @@
"Loader": "로더", "Loader": "로더",
"Loading Kokoro.js...": "Kokoro.js 로딩 중...", "Loading Kokoro.js...": "Kokoro.js 로딩 중...",
"Loading...": "로딩 중...", "Loading...": "로딩 중...",
"local": "",
"Local": "로컬", "Local": "로컬",
"Local Task Model": "로컬 작업 모델", "Local Task Model": "로컬 작업 모델",
"Location access not allowed": "위치 접근이 허용되지 않습니다", "Location access not allowed": "위치 접근이 허용되지 않습니다",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (회사/학교용)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (회사/학교용)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "Mistral OCR API Key가 필요합니다.", "Mistral OCR API Key required.": "Mistral OCR API Key가 필요합니다.",
"Model": "모델", "Model": "모델",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama 버전", "Ollama Version": "Ollama 버전",
"On": "켜기", "On": "켜기",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "\"대용량 텍스트 파일로 붙여넣기\" 설정이 켜져 있을 때만 활성화됩니다.",
"Only active when the chat input is in focus and an LLM is generating a response.": "채팅 입력창이 활성화되어 있고 LLM이 응답을 생성 중일 때만 활성화됩니다.",
"Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.", "Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.",
"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.", "Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "연결 설정 열기", "Open modal to configure connection": "연결 설정 열기",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "새 채팅 열기",
"Open Sidebar": "사이드바 열기", "Open Sidebar": "사이드바 열기",
"Open User Profile Menu": "사용자 프로필 메뉴 열기", "Open User Profile Menu": "사용자 프로필 메뉴 열기",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "언급하고 싶지 않습니다.", "Prefer not to say": "언급하고 싶지 않습니다.",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
"Prevent file creation": "파일 생성 방지",
"Preview": "미리보기", "Preview": "미리보기",
"Previous 30 days": "이전 30일", "Previous 30 days": "이전 30일",
"Previous 7 days": "이전 7일", "Previous 7 days": "이전 7일",
@ -1395,7 +1385,6 @@
"Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.", "Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.", "Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.",
"Self-Hosted": "",
"semantic": "의미적", "semantic": "의미적",
"Send": "보내기", "Send": "보내기",
"Send a Message": "메시지 보내기", "Send a Message": "메시지 보내기",
@ -1437,14 +1426,12 @@
"Share your background and interests": "당신의 배경과 관심사를 공유하세요", "Share your background and interests": "당신의 배경과 관심사를 공유하세요",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "권한 공유", "Sharing Permissions": "권한 공유",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "별표(*) 단축키는 특정 조건에서만 활성화됩니다.",
"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 Formatting Toolbar": "서식 툴바 표시", "Show Formatting Toolbar": "서식 툴바 표시",
"Show image preview": "이미지 미리보기", "Show image preview": "이미지 미리보기",
"Show Model": "모델 보기", "Show Model": "모델 보기",
"Show shortcuts": "단축키 보기",
"Show your support!": "당신의 응원을 보내주세요!", "Show your support!": "당신의 응원을 보내주세요!",
"Showcased creativity": "창의성 발휘", "Showcased creativity": "창의성 발휘",
"Sign in": "로그인", "Sign in": "로그인",
@ -1479,7 +1466,6 @@
"Status Updates": "상태 업데이트", "Status Updates": "상태 업데이트",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "정지", "Stop": "정지",
"Stop Generating": "생성 중지",
"Stop Sequence": "중지 시퀀스", "Stop Sequence": "중지 시퀀스",
"Stream Chat Response": "스트림 채팅 응답", "Stream Chat Response": "스트림 채팅 응답",
"Stream Delta Chunk Size": "스트림 델타 청크 크기", "Stream Delta Chunk Size": "스트림 델타 청크 크기",
@ -1509,7 +1495,6 @@
"Tags Generation": "태그 생성", "Tags Generation": "태그 생성",
"Tags Generation Prompt": "태그 생성 프롬프트", "Tags Generation Prompt": "태그 생성 프롬프트",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "꼬리 자유 샘플링은 출력에서 확률이 낮은 토큰의 영향을 줄이기 위해 사용됩니다. 값이 클수록(예: 2.0) 이러한 토큰의 영향이 더 줄어들며, 1.0으로 설정하면 이 기능은 비활성화됩니다.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "꼬리 자유 샘플링은 출력에서 확률이 낮은 토큰의 영향을 줄이기 위해 사용됩니다. 값이 클수록(예: 2.0) 이러한 토큰의 영향이 더 줄어들며, 1.0으로 설정하면 이 기능은 비활성화됩니다.",
"Talk to model": "모델과 대화하기",
"Tap to interrupt": "탭하여 중단", "Tap to interrupt": "탭하여 중단",
"Task List": "작업 목록", "Task List": "작업 목록",
"Task Model": "작업 모델", "Task Model": "작업 모델",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "새 업데이트 알림", "Toast notifications for new updates": "새 업데이트 알림",
"Today": "오늘", "Today": "오늘",
"Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}",
"Toggle search": "검색 전환",
"Toggle settings": "설정 전환",
"Toggle sidebar": "사이드바 전환",
"Toggle whether current connection is active.": "현재 연결 활성화 여부 설정", "Toggle whether current connection is active.": "현재 연결 활성화 여부 설정",
"Token": "토큰", "Token": "토큰",
"Too verbose": "너무 장황합니다", "Too verbose": "너무 장황합니다",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.",
"a user": "naudotojas", "a user": "naudotojas",
"About": "Apie", "About": "Apie",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Pridėti užklausos šabloną",
"Add Details": "", "Add Details": "",
"Add Files": "Pridėti failus", "Add Files": "Pridėti failus",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Kopijuoti", "Copy": "Kopijuoti",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopijuoti paskutinį kodo bloką",
"Copy last response": "Kopijuoti paskutinį atsakymą",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopijuoti nuorodą", "Copy Link": "Kopijuoti nuorodą",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Ištrinti modėlį", "Delete a model": "Ištrinti modėlį",
"Delete All Chats": "Ištrinti visus pokalbius", "Delete All Chats": "Ištrinti visus pokalbius",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Išrinti pokalbį",
"Delete Chat": "Ištrinti pokalbį", "Delete Chat": "Ištrinti pokalbį",
"Delete chat?": "Ištrinti pokalbį?", "Delete chat?": "Ištrinti pokalbį?",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokusuoti žinutės įvestį",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Generuoti paveikslėlį", "Generate Image": "Generuoti paveikslėlį",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generuoti paieškos užklausą", "Generating search query": "Generuoti paieškos užklausą",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Įvesties komandos",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Klaviatūros trumpiniai", "Keyboard shortcuts": "Klaviatūros trumpiniai",
"Keyboard Shortcuts": "",
"Knowledge": "Žinios", "Knowledge": "Žinios",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Įkeliama...", "Loading...": "Įkeliama...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama versija", "Ollama Version": "Ollama versija",
"On": "Aktyvuota", "On": "Aktyvuota",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Atverti naują pokalbį",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Paskutinės 30 dienų", "Previous 30 days": "Paskutinės 30 dienų",
"Previous 7 days": "Paskutinės 7 dienos", "Previous 7 days": "Paskutinės 7 dienos",
@ -1398,7 +1388,6 @@
"Select only one model to call": "Pasirinkite vieną modelį", "Select only one model to call": "Pasirinkite vieną modelį",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Pasirinkti modeliai nepalaiko vaizdinių užklausų", "Selected model(s) do not support image inputs": "Pasirinkti modeliai nepalaiko vaizdinių užklausų",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Siųsti", "Send": "Siųsti",
"Send a Message": "Siųsti žinutę", "Send a Message": "Siųsti žinutę",
@ -1440,14 +1429,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Rodyti trumpinius",
"Show your support!": "Palaikykite", "Show your support!": "Palaikykite",
"Showcased creativity": "Kūrybingų užklausų paroda", "Showcased creativity": "Kūrybingų užklausų paroda",
"Sign in": "Prisijungti", "Sign in": "Prisijungti",
@ -1482,7 +1469,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Baigt sekvenciją", "Stop Sequence": "Baigt sekvenciją",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1512,7 +1498,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Kalbėkite su modeliu",
"Tap to interrupt": "Paspauskite norėdami pertraukti", "Tap to interrupt": "Paspauskite norėdami pertraukti",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1594,9 +1579,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Šiandien", "Today": "Šiandien",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Atverti/užverti parametrus",
"Toggle sidebar": "Atverti/užverti šoninį meniu",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.",
"a user": "seorang pengguna", "a user": "seorang pengguna",
"About": "Mengenai", "About": "Mengenai",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Tambah arahan khusus",
"Add Details": "", "Add Details": "",
"Add Files": "Tambah Fail", "Add Files": "Tambah Fail",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Salin", "Copy": "Salin",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Salin Blok Kod Terakhir",
"Copy last response": "Salin Respons Terakhir",
"Copy link": "", "Copy link": "",
"Copy Link": "Salin Pautan", "Copy Link": "Salin Pautan",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Padam Model", "Delete a model": "Padam Model",
"Delete All Chats": "Padam Semua Perbualan", "Delete All Chats": "Padam Semua Perbualan",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Padam perbualan",
"Delete Chat": "Padam Perbualan", "Delete Chat": "Padam Perbualan",
"Delete chat?": "Padam perbualan?", "Delete chat?": "Padam perbualan?",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokus kepada input perbualan",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Jana Imej", "Generate Image": "Jana Imej",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Jana pertanyaan carian", "Generating search query": "Jana pertanyaan carian",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Masukkan Arahan",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Pintasan papan kekunci", "Keyboard shortcuts": "Pintasan papan kekunci",
"Keyboard Shortcuts": "",
"Knowledge": "Pengetahuan", "Knowledge": "Pengetahuan",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Memuatkan...", "Loading...": "Memuatkan...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versi Ollama", "Ollama Version": "Versi Ollama",
"On": "Hidup", "On": "Hidup",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Buka perbualan baru",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 hari sebelumnya", "Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya",
@ -1395,7 +1385,6 @@
"Select only one model to call": "Pilih hanya satu model untuk dipanggil", "Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Model dipilih tidak menyokong input imej", "Selected model(s) do not support image inputs": "Model dipilih tidak menyokong input imej",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Hantar", "Send": "Hantar",
"Send a Message": "Hantar Pesanan", "Send a Message": "Hantar Pesanan",
@ -1437,14 +1426,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Tunjukkan pintasan",
"Show your support!": "Tunjukkan sokongan anda!", "Show your support!": "Tunjukkan sokongan anda!",
"Showcased creativity": "eativiti yang dipamerkan", "Showcased creativity": "eativiti yang dipamerkan",
"Sign in": "Daftar masuk", "Sign in": "Daftar masuk",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Jujukan Henti", "Stop Sequence": "Jujukan Henti",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1509,7 +1495,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Bercakap dengan model",
"Tap to interrupt": "Sentuh untuk mengganggu", "Tap to interrupt": "Sentuh untuk mengganggu",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Hari Ini", "Today": "Hari Ini",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Suis Tetapan ",
"Toggle sidebar": "Suis Bar Sisi",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet",
"a user": "en bruker", "a user": "en bruker",
"About": "Om", "About": "Om",
"Accept autocomplete generation / Jump to prompt variable": "Godta autofullføring / Gå til ledetekstvariabel",
"Access": "Tilgang", "Access": "Tilgang",
"Access Control": "Tilgangskontroll", "Access Control": "Tilgangskontroll",
"Accessible to all users": "Tilgjengelig for alle brukere", "Accessible to all users": "Tilgjengelig for alle brukere",
@ -51,7 +50,6 @@
"Add Content": "Legg til innhold", "Add Content": "Legg til innhold",
"Add content here": "Legg til innhold her", "Add content here": "Legg til innhold her",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Legg til tilpasset ledetekst",
"Add Details": "", "Add Details": "",
"Add Files": "Legg til filer", "Add Files": "Legg til filer",
"Add Group": "Legg til gruppe", "Add Group": "Legg til gruppe",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Still et spørsmål", "Ask a question": "Still et spørsmål",
"Assistant": "Assistent", "Assistant": "Assistent",
"Attach file from knowledge": "Legg ved fil fra kunnskaper",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanalens navn", "Channel Name": "Kanalens navn",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Karakter", "Character": "Karakter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodekjøring", "Code execution": "Kodekjøring",
@ -331,8 +330,6 @@
"Copied to clipboard": "Kopier til utklippstaveln", "Copied to clipboard": "Kopier til utklippstaveln",
"Copy": "Kopier", "Copy": "Kopier",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Kopier siste kodeblokk",
"Copy last response": "Kopier siste svar",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopier lenke", "Copy Link": "Kopier lenke",
"Copy to clipboard": "Kopier til utklippstavle", "Copy to clipboard": "Kopier til utklippstavle",
@ -396,7 +393,6 @@
"Delete a model": "Slett en modell", "Delete a model": "Slett en modell",
"Delete All Chats": "Slett alle chatter", "Delete All Chats": "Slett alle chatter",
"Delete All Models": "Slett alle modeller", "Delete All Models": "Slett alle modeller",
"Delete chat": "Slett chat",
"Delete Chat": "Slett chat", "Delete Chat": "Slett chat",
"Delete chat?": "Slette chat?", "Delete chat?": "Slette chat?",
"Delete folder?": "Slette mappe?", "Delete folder?": "Slette mappe?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokusert chat-inndata",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Mappe slettet", "Folder deleted successfully": "Mappe slettet",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Genrer et bilde", "Generate an image": "Genrer et bilde",
"Generate Image": "Generer bilde", "Generate Image": "Generer bilde",
"Generate prompt pair": "Generer ledetekst-kombinasjon",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Genererer søkespørring", "Generating search query": "Genererer søkespørring",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Inntast kommandoer",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Nøkkel", "Key": "Nøkkel",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Hurtigtaster", "Keyboard shortcuts": "Hurtigtaster",
"Keyboard Shortcuts": "",
"Knowledge": "Kunnskap", "Knowledge": "Kunnskap",
"Knowledge Access": "Tilgang til kunnskap", "Knowledge Access": "Tilgang til kunnskap",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "Laster Kokoro.js ...", "Loading Kokoro.js...": "Laster Kokoro.js ...",
"Loading...": "Laster...", "Loading...": "Laster...",
"local": "",
"Local": "Lokal", "Local": "Lokal",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Tilgang til lokasjon er ikke tillatt", "Location access not allowed": "Tilgang til lokasjon er ikke tillatt",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Modell", "Model": "Modell",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama-versjon", "Ollama Version": "Ollama-versjon",
"On": "Aktivert", "On": "Aktivert",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt", "Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Åpne ny chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefiks-ID", "Prefix ID": "Prefiks-ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Siste 30 dager", "Previous 30 days": "Siste 30 dager",
"Previous 7 days": "Siste 7 dager", "Previous 7 days": "Siste 7 dager",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Velg bare én modell som skal kalles", "Select only one model to call": "Velg bare én modell som skal kalles",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeinndata", "Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeinndata",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Send", "Send": "Send",
"Send a Message": "Send en melding", "Send a Message": "Send en melding",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Vis snarveier",
"Show your support!": "Vis din støtte!", "Show your support!": "Vis din støtte!",
"Showcased creativity": "Fremhevet kreativitet", "Showcased creativity": "Fremhevet kreativitet",
"Sign in": "Logg inn", "Sign in": "Logg inn",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stopp", "Stop": "Stopp",
"Stop Generating": "",
"Stop Sequence": "Stoppsekvens", "Stop Sequence": "Stoppsekvens",
"Stream Chat Response": "Strømme chat-svar", "Stream Chat Response": "Strømme chat-svar",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Genering av etiketter", "Tags Generation": "Genering av etiketter",
"Tags Generation Prompt": "Ledetekst for genering av etikett", "Tags Generation Prompt": "Ledetekst for genering av etikett",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Snakk med modellen",
"Tap to interrupt": "Trykk for å avbryte", "Tap to interrupt": "Trykk for å avbryte",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer", "Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer",
"Today": "I dag", "Today": "I dag",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Veksle innstillinger",
"Toggle sidebar": "Veksle sidefelt",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "For omfattende", "Too verbose": "For omfattende",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet",
"a user": "een gebruiker", "a user": "een gebruiker",
"About": "Over", "About": "Over",
"Accept autocomplete generation / Jump to prompt variable": "Accepteer het genereren van automatisch aanvullen / Spring naar promptvariabele",
"Access": "Toegang", "Access": "Toegang",
"Access Control": "Toegangsbeheer", "Access Control": "Toegangsbeheer",
"Accessible to all users": "Toegankelijk voor alle gebruikers", "Accessible to all users": "Toegankelijk voor alle gebruikers",
@ -51,7 +50,6 @@
"Add Content": "Voeg content toe", "Add Content": "Voeg content toe",
"Add content here": "Voeg hier content toe", "Add content here": "Voeg hier content toe",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Voeg een aangepaste prompt toe",
"Add Details": "", "Add Details": "",
"Add Files": "Voeg bestanden toe", "Add Files": "Voeg bestanden toe",
"Add Group": "Voeg groep toe", "Add Group": "Voeg groep toe",
@ -151,7 +149,6 @@
"Ask": "Vraag", "Ask": "Vraag",
"Ask a question": "Stel een vraag", "Ask a question": "Stel een vraag",
"Assistant": "Assistent", "Assistant": "Assistent",
"Attach file from knowledge": "Voeg bestand uit kennis toe",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanaalnaam", "Channel Name": "Kanaalnaam",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanalen", "Channels": "Kanalen",
"Character": "Karakter", "Character": "Karakter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Code uitvoeren", "Code execution": "Code uitvoeren",
@ -331,8 +330,6 @@
"Copied to clipboard": "Gekopieerd naar klembord", "Copied to clipboard": "Gekopieerd naar klembord",
"Copy": "Kopieer", "Copy": "Kopieer",
"Copy Formatted Text": "Kopieer opgemaakte tekst", "Copy Formatted Text": "Kopieer opgemaakte tekst",
"Copy last code block": "Kopieer laatste codeblok",
"Copy last response": "Kopieer laatste antwoord",
"Copy link": "Kopiëer link", "Copy link": "Kopiëer link",
"Copy Link": "Kopieer link", "Copy Link": "Kopieer link",
"Copy to clipboard": "Kopieer naar klembord", "Copy to clipboard": "Kopieer naar klembord",
@ -396,7 +393,6 @@
"Delete a model": "Verwijder een model", "Delete a model": "Verwijder een model",
"Delete All Chats": "Verwijder alle chats", "Delete All Chats": "Verwijder alle chats",
"Delete All Models": "Verwijder alle modellen", "Delete All Models": "Verwijder alle modellen",
"Delete chat": "Verwijder chat",
"Delete Chat": "Verwijder chat", "Delete Chat": "Verwijder chat",
"Delete chat?": "Verwijder chat?", "Delete chat?": "Verwijder chat?",
"Delete folder?": "Verwijder map?", "Delete folder?": "Verwijder map?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Focus chat input",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Map succesvol verwijderd", "Folder deleted successfully": "Map succesvol verwijderd",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Genereer een afbeelding", "Generate an image": "Genereer een afbeelding",
"Generate Image": "Genereer afbeelding", "Generate Image": "Genereer afbeelding",
"Generate prompt pair": "Genereer promptpaar",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Zoekopdracht genereren", "Generating search query": "Zoekopdracht genereren",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.",
"Input": "", "Input": "",
"Input commands": "Voer commando's in",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Sleutel", "Key": "Sleutel",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Toetsenbord snelkoppelingen", "Keyboard shortcuts": "Toetsenbord snelkoppelingen",
"Keyboard Shortcuts": "",
"Knowledge": "Kennis", "Knowledge": "Kennis",
"Knowledge Access": "Kennistoegang", "Knowledge Access": "Kennistoegang",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Lader", "Loader": "Lader",
"Loading Kokoro.js...": "Kokoro.js aan het laden", "Loading Kokoro.js...": "Kokoro.js aan het laden",
"Loading...": "...", "Loading...": "...",
"local": "",
"Local": "Lokaal", "Local": "Lokaal",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Locatietoegang niet toegestaan", "Location access not allowed": "Locatietoegang niet toegestaan",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama Versie", "Ollama Version": "Ollama Versie",
"On": "Aan", "On": "Aan",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan", "Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Open nieuwe chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Voorvoegsel-ID", "Prefix ID": "Voorvoegsel-ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Afgelopen 30 dagen", "Previous 30 days": "Afgelopen 30 dagen",
"Previous 7 days": "Afgelopen 7 dagen", "Previous 7 days": "Afgelopen 7 dagen",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Selecteer maar één model om aan te roepen", "Select only one model to call": "Selecteer maar één model om aan te roepen",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer", "Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Verzenden", "Send": "Verzenden",
"Send a Message": "Stuur een bericht", "Send a Message": "Stuur een bericht",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Deeltoestemmingen", "Sharing Permissions": "Deeltoestemmingen",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Toon model", "Show Model": "Toon model",
"Show shortcuts": "Toon snelkoppelingen",
"Show your support!": "Toon je steun", "Show your support!": "Toon je steun",
"Showcased creativity": "Toonde creativiteit", "Showcased creativity": "Toonde creativiteit",
"Sign in": "Inloggen", "Sign in": "Inloggen",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stop", "Stop": "Stop",
"Stop Generating": "",
"Stop Sequence": "Stopsequentie", "Stop Sequence": "Stopsequentie",
"Stream Chat Response": "Stream chat-antwoord", "Stream Chat Response": "Stream chat-antwoord",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Taggeneratie", "Tags Generation": "Taggeneratie",
"Tags Generation Prompt": "Prompt voor taggeneratie", "Tags Generation Prompt": "Prompt voor taggeneratie",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bijvoorbeeld 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bijvoorbeeld 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt.",
"Talk to model": "Praat met model",
"Tap to interrupt": "Tik om te onderbreken", "Tap to interrupt": "Tik om te onderbreken",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Toon notificaties voor nieuwe updates", "Toast notifications for new updates": "Toon notificaties voor nieuwe updates",
"Today": "Vandaag", "Today": "Vandaag",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Wissel instellingen",
"Toggle sidebar": "Wissel sidebar",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Te langdradig", "Too verbose": "Te langdradig",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ",
"a user": "ਇੱਕ ਉਪਭੋਗਤਾ", "a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
"About": "ਬਾਰੇ", "About": "ਬਾਰੇ",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "ਕਸਟਮ ਪ੍ਰੰਪਟ ਸ਼ਾਮਲ ਕਰੋ",
"Add Details": "", "Add Details": "",
"Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ", "Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "ਕਾਪੀ ਕਰੋ", "Copy": "ਕਾਪੀ ਕਰੋ",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "ਆਖਰੀ ਕੋਡ ਬਲਾਕ ਨੂੰ ਕਾਪੀ ਕਰੋ",
"Copy last response": "ਆਖਰੀ ਜਵਾਬ ਨੂੰ ਕਾਪੀ ਕਰੋ",
"Copy link": "", "Copy link": "",
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ", "Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ", "Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ",
"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ", "Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ", "Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "ਗੱਲਬਾਤ ਇਨਪੁਟ 'ਤੇ ਧਿਆਨ ਦਿਓ",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ", "Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕਟ", "Keyboard shortcuts": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕਟ",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...", "Loading...": "ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ", "Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
"On": "ਚਾਲੂ", "On": "ਚਾਲੂ",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।", "Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "ਨਵੀਂ ਗੱਲਬਾਤ ਖੋਲ੍ਹੋ",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ", "Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ", "Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ", "Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "ਭੇਜੋ", "Send": "ਭੇਜੋ",
"Send a Message": "ਇੱਕ ਸੁਨੇਹਾ ਭੇਜੋ", "Send a Message": "ਇੱਕ ਸੁਨੇਹਾ ਭੇਜੋ",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "ਸ਼ਾਰਟਕਟ ਦਿਖਾਓ",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ", "Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
"Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ", "Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ", "Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "ਮਾਡਲ ਨਾਲ ਗੱਲਬਾਤ ਕਰੋ",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "ਅੱਜ", "Today": "ਅੱਜ",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
"Toggle sidebar": "ਸਾਈਡਬਾਰ ਟੌਗਲ ਕਰੋ",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.",
"a user": "użytkownik", "a user": "użytkownik",
"About": "O nas", "About": "O nas",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Dostęp", "Access": "Dostęp",
"Access Control": "Kontrola dostępu", "Access Control": "Kontrola dostępu",
"Accessible to all users": "Dostępny dla wszystkich użytkowników", "Accessible to all users": "Dostępny dla wszystkich użytkowników",
@ -51,7 +50,6 @@
"Add Content": "Dodaj treść", "Add Content": "Dodaj treść",
"Add content here": "Dodaj tutaj treść", "Add content here": "Dodaj tutaj treść",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Dodaj niestandardowe polecenie",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj pliki", "Add Files": "Dodaj pliki",
"Add Group": "Dodaj grupę", "Add Group": "Dodaj grupę",
@ -151,7 +149,6 @@
"Ask": "Zapytaj", "Ask": "Zapytaj",
"Ask a question": "Zadaj pytanie", "Ask a question": "Zadaj pytanie",
"Assistant": "Asystent", "Assistant": "Asystent",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Nazwa kanału", "Channel Name": "Nazwa kanału",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanały", "Channels": "Kanały",
"Character": "Znak", "Character": "Znak",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "Blok kodu", "Code Block": "Blok kodu",
"Code execution": "Wykonanie kodu", "Code execution": "Wykonanie kodu",
@ -331,8 +330,6 @@
"Copied to clipboard": "Skopiowane do schowka", "Copied to clipboard": "Skopiowane do schowka",
"Copy": "Skopiuj", "Copy": "Skopiuj",
"Copy Formatted Text": "Skopiuj sformatowany tekst", "Copy Formatted Text": "Skopiuj sformatowany tekst",
"Copy last code block": "Skopiuj ostatni fragment kodu",
"Copy last response": "Skopiuj ostatnią wypowiedź",
"Copy link": "Skopiuj link", "Copy link": "Skopiuj link",
"Copy Link": "Skopiuj link", "Copy Link": "Skopiuj link",
"Copy to clipboard": "Wklej do schowka", "Copy to clipboard": "Wklej do schowka",
@ -396,7 +393,6 @@
"Delete a model": "Usuń model", "Delete a model": "Usuń model",
"Delete All Chats": "Usuń wszystkie rozmowy", "Delete All Chats": "Usuń wszystkie rozmowy",
"Delete All Models": "Usuń Wszystkie Modele", "Delete All Models": "Usuń Wszystkie Modele",
"Delete chat": "Usuń rozmowę",
"Delete Chat": "Usuń rozmowę", "Delete Chat": "Usuń rozmowę",
"Delete chat?": "Usunąć czat?", "Delete chat?": "Usunąć czat?",
"Delete folder?": "Usunąć folder?", "Delete folder?": "Usunąć folder?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Skup się na czacie",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Folder został usunięty pomyślnie", "Folder deleted successfully": "Folder został usunięty pomyślnie",
@ -786,7 +781,6 @@
"Generate": "Wygeneruj", "Generate": "Wygeneruj",
"Generate an image": "Wygeneruj obraz", "Generate an image": "Wygeneruj obraz",
"Generate Image": "Wygeneruj obraz", "Generate Image": "Wygeneruj obraz",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Tworzenie zapytania wyszukiwania", "Generating search query": "Tworzenie zapytania wyszukiwania",
"Generating...": "Generowanie...", "Generating...": "Generowanie...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Wprowadź polecenia",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Klucz", "Key": "Klucz",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Skróty klawiszowe", "Keyboard shortcuts": "Skróty klawiszowe",
"Keyboard Shortcuts": "",
"Knowledge": "Wiedza", "Knowledge": "Wiedza",
"Knowledge Access": "Dostęp do wiedzy", "Knowledge Access": "Dostęp do wiedzy",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "Wczytywanie Kokoro.js...", "Loading Kokoro.js...": "Wczytywanie Kokoro.js...",
"Loading...": "Wczytywanie...", "Loading...": "Wczytywanie...",
"local": "",
"Local": "Lokalny", "Local": "Lokalny",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Wersja Ollama", "Ollama Version": "Wersja Ollama",
"On": "Włączone", "On": "Włączone",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki", "Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki",
"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.", "Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Otwórz nową rozmowę",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Identyfikator prefiksu", "Prefix ID": "Identyfikator prefiksu",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
"Prevent file creation": "",
"Preview": "Podgląd", "Preview": "Podgląd",
"Previous 30 days": "Ostatnie 30 dni", "Previous 30 days": "Ostatnie 30 dni",
"Previous 7 days": "Ostatnie 7 dni", "Previous 7 days": "Ostatnie 7 dni",
@ -1398,7 +1388,6 @@
"Select only one model to call": "Wybierz tylko jeden model do wywołania", "Select only one model to call": "Wybierz tylko jeden model do wywołania",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych w formie obrazu", "Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych w formie obrazu",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Wyślij", "Send": "Wyślij",
"Send a Message": "Wyślij wiadomość", "Send a Message": "Wyślij wiadomość",
@ -1440,14 +1429,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Uprawnienia udostępniania", "Sharing Permissions": "Uprawnienia udostępniania",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Wyświetl skróty",
"Show your support!": "Wyraź swoje poparcie!", "Show your support!": "Wyraź swoje poparcie!",
"Showcased creativity": "Prezentacja kreatywności", "Showcased creativity": "Prezentacja kreatywności",
"Sign in": "Zaloguj się", "Sign in": "Zaloguj się",
@ -1482,7 +1469,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Zatrzymaj", "Stop": "Zatrzymaj",
"Stop Generating": "",
"Stop Sequence": "Zatrzymaj sekwencję", "Stop Sequence": "Zatrzymaj sekwencję",
"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu", "Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1512,7 +1498,6 @@
"Tags Generation": "Generowanie tagów", "Tags Generation": "Generowanie tagów",
"Tags Generation Prompt": "Prompt do generowania tagów", "Tags Generation Prompt": "Prompt do generowania tagów",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Porozmawiaj z modelem",
"Tap to interrupt": "Kliknij, aby przerwać", "Tap to interrupt": "Kliknij, aby przerwać",
"Task List": "Lista zadań", "Task List": "Lista zadań",
"Task Model": "", "Task Model": "",
@ -1594,9 +1579,6 @@
"Toast notifications for new updates": "Powiadomienia o nowych aktualizacjach", "Toast notifications for new updates": "Powiadomienia o nowych aktualizacjach",
"Today": "Dzisiaj", "Today": "Dzisiaj",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Przełącz opcje",
"Toggle sidebar": "Przełącz pasek boczny",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Zbyt rozwlekłe", "Too verbose": "Zbyt rozwlekłe",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
"a user": "um usuário", "a user": "um usuário",
"About": "Sobre", "About": "Sobre",
"Accept autocomplete generation / Jump to prompt variable": "Aceitar geração de preenchimento automático / Ir para variável de prompt",
"Access": "Acesso", "Access": "Acesso",
"Access Control": "Controle de Acesso", "Access Control": "Controle de Acesso",
"Accessible to all users": "Acessível para todos os usuários", "Accessible to all users": "Acessível para todos os usuários",
@ -51,7 +50,6 @@
"Add Content": "Adicionar Conteúdo", "Add Content": "Adicionar Conteúdo",
"Add content here": "Adicionar conteúdo aqui", "Add content here": "Adicionar conteúdo aqui",
"Add Custom Parameter": "Adicionar parâmetro personalizado", "Add Custom Parameter": "Adicionar parâmetro personalizado",
"Add custom prompt": "Adicionar prompt personalizado",
"Add Details": "Adicionar detalhes", "Add Details": "Adicionar detalhes",
"Add Files": "Adicionar Arquivos", "Add Files": "Adicionar Arquivos",
"Add Group": "Adicionar Grupo", "Add Group": "Adicionar Grupo",
@ -151,7 +149,6 @@
"Ask": "Perguntar", "Ask": "Perguntar",
"Ask a question": "Faça uma pergunta", "Ask a question": "Faça uma pergunta",
"Assistant": "Assistente", "Assistant": "Assistente",
"Attach file from knowledge": "Anexar arquivo da base de conhecimento",
"Attach Knowledge": "Anexar Base de Conhecimento", "Attach Knowledge": "Anexar Base de Conhecimento",
"Attach Notes": "Anexar Notas", "Attach Notes": "Anexar Notas",
"Attach Webpage": "Anexar Página Web", "Attach Webpage": "Anexar Página Web",
@ -221,6 +218,7 @@
"Channel": "Canal", "Channel": "Canal",
"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.": "",
"Channel updated successfully": "Canal atualizado com sucesso", "Channel updated successfully": "Canal atualizado com sucesso",
"Channels": "Canais", "Channels": "Canais",
"Character": "Caracter", "Character": "Caracter",
@ -272,6 +270,7 @@
"Close modal": "Fechar modal", "Close modal": "Fechar modal",
"Close settings modal": "Fechar configurações modal", "Close settings modal": "Fechar configurações modal",
"Close Sidebar": "Fechar barra lateral", "Close Sidebar": "Fechar barra lateral",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloco de código", "Code Block": "Bloco de código",
"Code execution": "Execução de código", "Code execution": "Execução de código",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiado para a área de transferência", "Copied to clipboard": "Copiado para a área de transferência",
"Copy": "Copiar", "Copy": "Copiar",
"Copy Formatted Text": "Copiar texto formatado", "Copy Formatted Text": "Copiar texto formatado",
"Copy last code block": "Copiar último bloco de código",
"Copy last response": "Copiar última resposta",
"Copy link": "Copiar link", "Copy link": "Copiar link",
"Copy Link": "Copiar Link", "Copy Link": "Copiar Link",
"Copy to clipboard": "Copiar para a área de transferência", "Copy to clipboard": "Copiar para a área de transferência",
@ -396,7 +393,6 @@
"Delete a model": "Excluir um modelo", "Delete a model": "Excluir um modelo",
"Delete All Chats": "Excluir Todos os Chats", "Delete All Chats": "Excluir Todos os Chats",
"Delete All Models": "Excluir Todos os Modelos", "Delete All Models": "Excluir Todos os Modelos",
"Delete chat": "Excluir chat",
"Delete Chat": "Excluir Chat", "Delete Chat": "Excluir Chat",
"Delete chat?": "Excluir chat?", "Delete chat?": "Excluir chat?",
"Delete folder?": "Excluir pasta?", "Delete folder?": "Excluir pasta?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "URL base da API do Firecrawl", "Firecrawl API Base URL": "URL base da API do Firecrawl",
"Firecrawl API Key": "Chave de API do Firecrawl", "Firecrawl API Key": "Chave de API do Firecrawl",
"Floating Quick Actions": "Ações rápidas flutuantes", "Floating Quick Actions": "Ações rápidas flutuantes",
"Focus chat input": "Focar entrada de chat",
"Folder": "Pasta", "Folder": "Pasta",
"Folder Background Image": "Imagem de fundo da pasta", "Folder Background Image": "Imagem de fundo da pasta",
"Folder deleted successfully": "Pasta excluída com sucesso", "Folder deleted successfully": "Pasta excluída com sucesso",
@ -786,7 +781,6 @@
"Generate": "Gerar", "Generate": "Gerar",
"Generate an image": "Gerar uma imagem", "Generate an image": "Gerar uma imagem",
"Generate Image": "Gerar Imagem", "Generate Image": "Gerar Imagem",
"Generate prompt pair": "Gerar par de prompts",
"Generated Image": "Imagem gerada", "Generated Image": "Imagem gerada",
"Generating search query": "Gerando consulta de pesquisa", "Generating search query": "Gerando consulta de pesquisa",
"Generating...": "Gerando...", "Generating...": "Gerando...",
@ -870,7 +864,6 @@
"Initials": "Iniciais", "Initials": "Iniciais",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "Chave de entrada (por exemplo, texto, unet_name, etapas)", "Input Key (e.g. text, unet_name, steps)": "Chave de entrada (por exemplo, texto, unet_name, etapas)",
"Input Variables": "Variáveis de entrada", "Input Variables": "Variáveis de entrada",
"Insert": "Inserir", "Insert": "Inserir",
@ -909,6 +902,7 @@
"Key": "Chave", "Key": "Chave",
"Key is required": "Chave é obrigatória", "Key is required": "Chave é obrigatória",
"Keyboard shortcuts": "Atalhos de Teclado", "Keyboard shortcuts": "Atalhos de Teclado",
"Keyboard Shortcuts": "",
"Knowledge": "Conhecimento", "Knowledge": "Conhecimento",
"Knowledge Access": "Acesso ao Conhecimento", "Knowledge Access": "Acesso ao Conhecimento",
"Knowledge Base": "Base de Conhecimento", "Knowledge Base": "Base de Conhecimento",
@ -952,6 +946,7 @@
"Loader": "Carregador", "Loader": "Carregador",
"Loading Kokoro.js...": "Carregando Kokoro.js...", "Loading Kokoro.js...": "Carregando Kokoro.js...",
"Loading...": "Carregando...", "Loading...": "Carregando...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "Modelo de Tarefa Local", "Local Task Model": "Modelo de Tarefa Local",
"Location access not allowed": "Acesso ao local não permitido", "Location access not allowed": "Acesso ao local não permitido",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "Chave de API MinerU necessária para o modo Cloud API.", "MinerU API Key required for Cloud API mode.": "Chave de API MinerU necessária para o modo Cloud API.",
"minerU managed (Cloud API)": "minerU gerenciado (API em nuvem)",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "Chave de API do Mistral OCR necessária.", "Mistral OCR API Key required.": "Chave de API do Mistral OCR necessária.",
"Model": "Modelo", "Model": "Modelo",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versão Ollama", "Ollama Version": "Versão Ollama",
"On": "Ligado", "On": "Ligado",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Ativo somente quando a configuração \"Colar texto grande como arquivo\" estiver ativada.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Ativo somente quando a entrada do chat está em foco e um LLM está gerando uma resposta.",
"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos", "Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Abra o modal para configurar a conexão", "Open modal to configure connection": "Abra o modal para configurar a conexão",
"Open Modal To Manage Floating Quick Actions": "Abra o Modal para gerenciar ações rápidas flutuantes", "Open Modal To Manage Floating Quick Actions": "Abra o Modal para gerenciar ações rápidas flutuantes",
"Open Modal To Manage Image Compression": "Abrir o Modal para gerenciar a compressão de imagens", "Open Modal To Manage Image Compression": "Abrir o Modal para gerenciar a compressão de imagens",
"Open new chat": "Abrir novo chat",
"Open Sidebar": "Abrir barra lateral", "Open Sidebar": "Abrir barra lateral",
"Open User Profile Menu": "Abrir menu de perfil do usuário", "Open User Profile Menu": "Abrir menu de perfil do usuário",
"Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "Prefiro não dizer", "Prefer not to say": "Prefiro não dizer",
"Prefix ID": "Prefixo ID", "Prefix ID": "Prefixo ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
"Prevent file creation": "Impedir a criação de arquivos",
"Preview": "Visualização", "Preview": "Visualização",
"Previous 30 days": "Últimos 30 dias", "Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias", "Previous 7 days": "Últimos 7 dias",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Selecione apenas um modelo para chamar", "Select only one model to call": "Selecione apenas um modelo para chamar",
"Select view": "Selecionar visualização", "Select view": "Selecionar visualização",
"Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem", "Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem",
"Self-Hosted": "Auto-hospedado",
"semantic": "semântica", "semantic": "semântica",
"Send": "Enviar", "Send": "Enviar",
"Send a Message": "Enviar uma Mensagem", "Send a Message": "Enviar uma Mensagem",
@ -1439,14 +1428,12 @@
"Share your background and interests": "Fale sobre você e seus interesses", "Share your background and interests": "Fale sobre você e seus interesses",
"Shared with you": "Compartilhado com você", "Shared with you": "Compartilhado com você",
"Sharing Permissions": "Permissões de compartilhamento", "Sharing Permissions": "Permissões de compartilhamento",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Atalhos com um asterisco (*) são situacionais e só estão ativos em condições específicas.",
"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 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",
"Show shortcuts": "Mostrar atalhos",
"Show your support!": "Mostre seu apoio!", "Show your support!": "Mostre seu apoio!",
"Showcased creativity": "Criatividade exibida", "Showcased creativity": "Criatividade exibida",
"Sign in": "Entrar", "Sign in": "Entrar",
@ -1481,7 +1468,6 @@
"Status Updates": "Atualizações de status", "Status Updates": "Atualizações de status",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Parar", "Stop": "Parar",
"Stop Generating": "Pare de gerar",
"Stop Sequence": "Sequência de Parada", "Stop Sequence": "Sequência de Parada",
"Stream Chat Response": "Stream Resposta do Chat", "Stream Chat Response": "Stream Resposta do Chat",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "Geração de tags", "Tags Generation": "Geração de tags",
"Tags Generation Prompt": "Prompt para geração de Tags", "Tags Generation Prompt": "Prompt para geração de Tags",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A amostragem livre de cauda é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá ainda mais o impacto, enquanto um valor de 1,0 desabilita essa configuração.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A amostragem livre de cauda é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá ainda mais o impacto, enquanto um valor de 1,0 desabilita essa configuração.",
"Talk to model": "Fale com um modelo",
"Tap to interrupt": "Toque para interromper", "Tap to interrupt": "Toque para interromper",
"Task List": "Lista de tarefas", "Task List": "Lista de tarefas",
"Task Model": "Modelo de Tarefa", "Task Model": "Modelo de Tarefa",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notificações de alerta para novas atualizações", "Toast notifications for new updates": "Notificações de alerta para novas atualizações",
"Today": "Hoje", "Today": "Hoje",
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
"Toggle search": "Alternar pesquisa",
"Toggle settings": "Alternar configurações",
"Toggle sidebar": "Alternar barra lateral",
"Toggle whether current connection is active.": "Alterna se a conexão atual está ativa.", "Toggle whether current connection is active.": "Alterna se a conexão atual está ativa.",
"Token": "", "Token": "",
"Too verbose": "Muito detalhado", "Too verbose": "Muito detalhado",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao executar tarefas como gerar títulos para bate-papos e consultas de pesquisa na Web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao executar tarefas como gerar títulos para bate-papos e consultas de pesquisa na Web",
"a user": "um utilizador", "a user": "um utilizador",
"About": "Acerca de", "About": "Acerca de",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Adicionar um prompt curto",
"Add Details": "", "Add Details": "",
"Add Files": "Adicionar Ficheiros", "Add Files": "Adicionar Ficheiros",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Copiar", "Copy": "Copiar",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Copiar último bloco de código",
"Copy last response": "Copiar última resposta",
"Copy link": "", "Copy link": "",
"Copy Link": "Copiar link", "Copy Link": "Copiar link",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "Apagar um modelo", "Delete a model": "Apagar um modelo",
"Delete All Chats": "Apagar todas as conversas", "Delete All Chats": "Apagar todas as conversas",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Apagar conversa",
"Delete Chat": "Apagar Conversa", "Delete Chat": "Apagar Conversa",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Focar na conversa",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Gerar imagem", "Generate Image": "Gerar imagem",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "A gerar a consulta da pesquisa", "Generating search query": "A gerar a consulta da pesquisa",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Atalhos de teclado", "Keyboard shortcuts": "Atalhos de teclado",
"Keyboard Shortcuts": "",
"Knowledge": "Conhecimento", "Knowledge": "Conhecimento",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "A carregar...", "Loading...": "A carregar...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versão do Ollama", "Ollama Version": "Versão do Ollama",
"On": "Ligado", "On": "Ligado",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Abrir nova conversa",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Últimos 30 dias", "Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias", "Previous 7 days": "Últimos 7 dias",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Selecione apenas um modelo para a chamada", "Select only one model to call": "Selecione apenas um modelo para a chamada",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem", "Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Enviar", "Send": "Enviar",
"Send a Message": "Enviar uma Mensagem", "Send a Message": "Enviar uma Mensagem",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Mostrar atalhos",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "Criatividade Exibida", "Showcased creativity": "Criatividade Exibida",
"Sign in": "Entrar", "Sign in": "Entrar",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "Sequência de Paragem", "Stop Sequence": "Sequência de Paragem",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Falar com o modelo",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Hoje", "Today": "Hoje",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Alternar configurações",
"Toggle sidebar": "Alternar barra lateral",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de sarcină este utilizat pentru realizarea unor sarcini precum generarea de titluri pentru conversații și interogări de căutare pe web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de sarcină este utilizat pentru realizarea unor sarcini precum generarea de titluri pentru conversații și interogări de căutare pe web",
"a user": "un utilizator", "a user": "un utilizator",
"About": "Despre", "About": "Despre",
"Accept autocomplete generation / Jump to prompt variable": "Acceptă generarea automată / Sari la variabila promptului",
"Access": "Acces", "Access": "Acces",
"Access Control": "Controlul accesului", "Access Control": "Controlul accesului",
"Accessible to all users": "Accesibil pentru toți utilizatorii", "Accessible to all users": "Accesibil pentru toți utilizatorii",
@ -51,7 +50,6 @@
"Add Content": "Adăugați conținut", "Add Content": "Adăugați conținut",
"Add content here": "Adăugați conținut aici", "Add content here": "Adăugați conținut aici",
"Add Custom Parameter": "Adaugă parametru personalizat", "Add Custom Parameter": "Adaugă parametru personalizat",
"Add custom prompt": "Adaugă prompt personalizat",
"Add Details": "", "Add Details": "",
"Add Files": "Adaugă fișiere", "Add Files": "Adaugă fișiere",
"Add Group": "Adaugă grup", "Add Group": "Adaugă grup",
@ -151,7 +149,6 @@
"Ask": "Întreabă", "Ask": "Întreabă",
"Ask a question": "Pune o întrebare", "Ask a question": "Pune o întrebare",
"Assistant": "Asistent", "Assistant": "Asistent",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Caracter", "Character": "Caracter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Executarea codului", "Code execution": "Executarea codului",
@ -331,8 +330,6 @@
"Copied to clipboard": "Copiat în clipboard", "Copied to clipboard": "Copiat în clipboard",
"Copy": "Copiază", "Copy": "Copiază",
"Copy Formatted Text": "Copiază text formatat", "Copy Formatted Text": "Copiază text formatat",
"Copy last code block": "Copiază ultimul bloc de cod",
"Copy last response": "Copiază ultimul răspuns",
"Copy link": "", "Copy link": "",
"Copy Link": "Copiază Link", "Copy Link": "Copiază Link",
"Copy to clipboard": "Copiază în clipboard", "Copy to clipboard": "Copiază în clipboard",
@ -396,7 +393,6 @@
"Delete a model": "Șterge un model", "Delete a model": "Șterge un model",
"Delete All Chats": "Șterge Toate Conversațiile", "Delete All Chats": "Șterge Toate Conversațiile",
"Delete All Models": "Șterge toate modelele", "Delete All Models": "Șterge toate modelele",
"Delete chat": "Șterge conversația",
"Delete Chat": "Șterge Conversația", "Delete Chat": "Șterge Conversația",
"Delete chat?": "Șterge conversația?", "Delete chat?": "Șterge conversația?",
"Delete folder?": "Ștergeți folderul?", "Delete folder?": "Ștergeți folderul?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Focalizează câmpul de intrare pentru conversație",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Folder șters cu succes", "Folder deleted successfully": "Folder șters cu succes",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Generează Imagine", "Generate Image": "Generează Imagine",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Se generează interogarea de căutare", "Generating search query": "Se generează interogarea de căutare",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Comenzi de intrare",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Scurtături de la Tastatură", "Keyboard shortcuts": "Scurtături de la Tastatură",
"Keyboard Shortcuts": "",
"Knowledge": "Cunoștințe", "Knowledge": "Cunoștințe",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Se încarcă...", "Loading...": "Se încarcă...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Versiune Ollama", "Ollama Version": "Versiune Ollama",
"On": "Activat", "On": "Activat",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Deschide conversație nouă",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Ultimele 30 de zile", "Previous 30 days": "Ultimele 30 de zile",
"Previous 7 days": "Ultimele 7 zile", "Previous 7 days": "Ultimele 7 zile",
@ -1397,7 +1387,6 @@
"Select only one model to call": "Selectează doar un singur model pentru apel", "Select only one model to call": "Selectează doar un singur model pentru apel",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Modelul(e) selectat(e) nu suportă intrări de imagine", "Selected model(s) do not support image inputs": "Modelul(e) selectat(e) nu suportă intrări de imagine",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Trimite", "Send": "Trimite",
"Send a Message": "Trimite un Mesaj", "Send a Message": "Trimite un Mesaj",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Afișează scurtături",
"Show your support!": "Arată-ți susținerea!", "Show your support!": "Arată-ți susținerea!",
"Showcased creativity": "Creativitate expusă", "Showcased creativity": "Creativitate expusă",
"Sign in": "Autentificare", "Sign in": "Autentificare",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Oprire", "Stop": "Oprire",
"Stop Generating": "",
"Stop Sequence": "Oprește Secvența", "Stop Sequence": "Oprește Secvența",
"Stream Chat Response": "Răspuns Stream Chat", "Stream Chat Response": "Răspuns Stream Chat",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "Generarea de Etichete Prompt", "Tags Generation Prompt": "Generarea de Etichete Prompt",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Vorbește cu modelul",
"Tap to interrupt": "Apasă pentru a întrerupe", "Tap to interrupt": "Apasă pentru a întrerupe",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Notificări toast pentru actualizări noi", "Toast notifications for new updates": "Notificări toast pentru actualizări noi",
"Today": "Astăzi", "Today": "Astăzi",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Comută setările",
"Toggle sidebar": "Comută bara laterală",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Prea detaliat", "Too verbose": "Prea detaliat",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач используется при выполнении таких задач, как генерация заголовков для чатов и поисковых запросов в Интернете", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач используется при выполнении таких задач, как генерация заголовков для чатов и поисковых запросов в Интернете",
"a user": "пользователь", "a user": "пользователь",
"About": "О программе", "About": "О программе",
"Accept autocomplete generation / Jump to prompt variable": "Принять генерацию автозаполнения / перейти к переменной запроса",
"Access": "Доступ", "Access": "Доступ",
"Access Control": "Контроль доступа", "Access Control": "Контроль доступа",
"Accessible to all users": "Доступно всем пользователям", "Accessible to all users": "Доступно всем пользователям",
@ -51,7 +50,6 @@
"Add Content": "Добавить контент", "Add Content": "Добавить контент",
"Add content here": "Добавить контент сюда", "Add content here": "Добавить контент сюда",
"Add Custom Parameter": "Добавить пользовательский параметр", "Add Custom Parameter": "Добавить пользовательский параметр",
"Add custom prompt": "Добавьте пользовательский промпт",
"Add Details": "Добавить детали", "Add Details": "Добавить детали",
"Add Files": "Добавить файлы", "Add Files": "Добавить файлы",
"Add Group": "Добавить группу", "Add Group": "Добавить группу",
@ -151,7 +149,6 @@
"Ask": "Спросить", "Ask": "Спросить",
"Ask a question": "Задать вопрос", "Ask a question": "Задать вопрос",
"Assistant": "Ассистент", "Assistant": "Ассистент",
"Attach file from knowledge": "Прикрепите файл из знания",
"Attach Knowledge": "Прикрепить знания", "Attach Knowledge": "Прикрепить знания",
"Attach Notes": "Прикрепить заметки", "Attach Notes": "Прикрепить заметки",
"Attach Webpage": "", "Attach Webpage": "",
@ -273,6 +270,7 @@
"Close modal": "Закрыть окно", "Close modal": "Закрыть окно",
"Close settings modal": "Закрыть окно настроек", "Close settings modal": "Закрыть окно настроек",
"Close Sidebar": "Закрыть боковую панель", "Close Sidebar": "Закрыть боковую панель",
"cloud": "",
"CMU ARCTIC speaker embedding name": "Имя векторного представления спикера CMU ARCTIC", "CMU ARCTIC speaker embedding name": "Имя векторного представления спикера CMU ARCTIC",
"Code Block": "Блок кода", "Code Block": "Блок кода",
"Code execution": "Исполнение кода", "Code execution": "Исполнение кода",
@ -332,8 +330,6 @@
"Copied to clipboard": "Скопировано в буфер обмена", "Copied to clipboard": "Скопировано в буфер обмена",
"Copy": "Копировать", "Copy": "Копировать",
"Copy Formatted Text": "Копировать форматированный текст", "Copy Formatted Text": "Копировать форматированный текст",
"Copy last code block": "Копировать последний блок кода",
"Copy last response": "Копировать последний ответ",
"Copy link": "Скопировать ссылку", "Copy link": "Скопировать ссылку",
"Copy Link": "Копировать ссылку", "Copy Link": "Копировать ссылку",
"Copy to clipboard": "Скопировать в буфер обмена", "Copy to clipboard": "Скопировать в буфер обмена",
@ -397,7 +393,6 @@
"Delete a model": "Удалить модель", "Delete a model": "Удалить модель",
"Delete All Chats": "Удалить ВСЕ Чаты", "Delete All Chats": "Удалить ВСЕ Чаты",
"Delete All Models": "Удалить ВСЕ Модели", "Delete All Models": "Удалить ВСЕ Модели",
"Delete chat": "Удалить чат",
"Delete Chat": "Удалить Чат", "Delete Chat": "Удалить Чат",
"Delete chat?": "Удалить чат?", "Delete chat?": "Удалить чат?",
"Delete folder?": "Удалить папку?", "Delete folder?": "Удалить папку?",
@ -740,7 +735,6 @@
"Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API", "Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API",
"Firecrawl API Key": "Ключ API Firecrawl", "Firecrawl API Key": "Ключ API Firecrawl",
"Floating Quick Actions": "Плавающие быстрые действия", "Floating Quick Actions": "Плавающие быстрые действия",
"Focus chat input": "Фокус ввода чата",
"Folder": "", "Folder": "",
"Folder Background Image": "Фоновое изображение папки", "Folder Background Image": "Фоновое изображение папки",
"Folder deleted successfully": "Папка успешно удалена", "Folder deleted successfully": "Папка успешно удалена",
@ -787,7 +781,6 @@
"Generate": "Сгенерировать", "Generate": "Сгенерировать",
"Generate an image": "Сгенерировать изображение", "Generate an image": "Сгенерировать изображение",
"Generate Image": "Сгенерировать изображение", "Generate Image": "Сгенерировать изображение",
"Generate prompt pair": "Сгенерировать пару запросов",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Генерация поискового запроса", "Generating search query": "Генерация поискового запроса",
"Generating...": "Генерирую...", "Generating...": "Генерирую...",
@ -871,7 +864,6 @@
"Initials": "Инициалы", "Initials": "Инициалы",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.",
"Input": "Ввод", "Input": "Ввод",
"Input commands": "Введите команды",
"Input Key (e.g. text, unet_name, steps)": "Введите ключ (например, text, unet_name, steps)", "Input Key (e.g. text, unet_name, steps)": "Введите ключ (например, text, unet_name, steps)",
"Input Variables": "Переменные ввода", "Input Variables": "Переменные ввода",
"Insert": "Вставить", "Insert": "Вставить",
@ -910,6 +902,7 @@
"Key": "Ключ", "Key": "Ключ",
"Key is required": "Ключ обязателен", "Key is required": "Ключ обязателен",
"Keyboard shortcuts": "Горячие клавиши", "Keyboard shortcuts": "Горячие клавиши",
"Keyboard Shortcuts": "",
"Knowledge": "Знания", "Knowledge": "Знания",
"Knowledge Access": "Доступ к знаниям", "Knowledge Access": "Доступ к знаниям",
"Knowledge Base": "База знаний", "Knowledge Base": "База знаний",
@ -953,6 +946,7 @@
"Loader": "Загрузчик", "Loader": "Загрузчик",
"Loading Kokoro.js...": "Загрузка Kokoro.js", "Loading Kokoro.js...": "Загрузка Kokoro.js",
"Loading...": "Загрузка...", "Loading...": "Загрузка...",
"local": "",
"Local": "Локально", "Local": "Локально",
"Local Task Model": "Модель локальной задачи", "Local Task Model": "Модель локальной задачи",
"Location access not allowed": "Доступ к местоположению запрещен", "Location access not allowed": "Доступ к местоположению запрещен",
@ -999,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (работа/школа)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (работа/школа)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Требуется API ключ Mistral OCR.", "Mistral OCR API Key required.": "Требуется API ключ Mistral OCR.",
"Model": "Модель", "Model": "Модель",
@ -1120,8 +1113,6 @@
"Ollama Version": "Версия Ollama", "Ollama Version": "Версия Ollama",
"On": "Включено", "On": "Включено",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Активно только когда включена настройка \"Вставлять большой текст как файл\".",
"Only active when the chat input is in focus and an LLM is generating a response.": "Активно только когда ввод чата в фокусе и LLM генерирует ответ.",
"Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.", "Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.",
"Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.", "Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
@ -1137,7 +1128,6 @@
"Open modal to configure connection": "Открыть окно настроек подключения", "Open modal to configure connection": "Открыть окно настроек подключения",
"Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями", "Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями",
"Open Modal To Manage Image Compression": "Открыть окно управления сжатием изображений", "Open Modal To Manage Image Compression": "Открыть окно управления сжатием изображений",
"Open new chat": "Открыть новый чат",
"Open Sidebar": "Открыть боковую панель", "Open Sidebar": "Открыть боковую панель",
"Open User Profile Menu": "Открыть меню профиля пользователя", "Open User Profile Menu": "Открыть меню профиля пользователя",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.",
@ -1226,7 +1216,6 @@
"Prefer not to say": "Предпочитаю не говорить", "Prefer not to say": "Предпочитаю не говорить",
"Prefix ID": "ID префикса", "Prefix ID": "ID префикса",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
"Prevent file creation": "Предотвратить создание файла",
"Preview": "Предпросмотр", "Preview": "Предпросмотр",
"Previous 30 days": "Предыдущие 30 дней", "Previous 30 days": "Предыдущие 30 дней",
"Previous 7 days": "Предыдущие 7 дней", "Previous 7 days": "Предыдущие 7 дней",
@ -1399,7 +1388,6 @@
"Select only one model to call": "Выберите только одну модель для вызова", "Select only one model to call": "Выберите только одну модель для вызова",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений", "Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений",
"Self-Hosted": "",
"semantic": "семантический", "semantic": "семантический",
"Send": "Отправить", "Send": "Отправить",
"Send a Message": "Отправить сообщение", "Send a Message": "Отправить сообщение",
@ -1441,14 +1429,12 @@
"Share your background and interests": "Расскажите о своём опыте и интересах", "Share your background and interests": "Расскажите о своём опыте и интересах",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Разрешения на общий доступ", "Sharing Permissions": "Разрешения на общий доступ",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Комбинации клавиш со звёздочкой (*) являются ситуативными и активны только при определённых условиях.",
"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 Formatting Toolbar": "Показать панель форматирования", "Show Formatting Toolbar": "Показать панель форматирования",
"Show image preview": "Показать предварительный просмотр изображения", "Show image preview": "Показать предварительный просмотр изображения",
"Show Model": "Показать модель", "Show Model": "Показать модель",
"Show shortcuts": "Показать горячие клавиши",
"Show your support!": "Поддержите нас!", "Show your support!": "Поддержите нас!",
"Showcased creativity": "Продемонстрирован творческий подход", "Showcased creativity": "Продемонстрирован творческий подход",
"Sign in": "Войти", "Sign in": "Войти",
@ -1483,7 +1469,6 @@
"Status Updates": "Обновления статуса", "Status Updates": "Обновления статуса",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Остановить", "Stop": "Остановить",
"Stop Generating": "Остановить генерацию",
"Stop Sequence": "Последовательность останова", "Stop Sequence": "Последовательность останова",
"Stream Chat Response": "Потоковый вывод ответа", "Stream Chat Response": "Потоковый вывод ответа",
"Stream Delta Chunk Size": "Размер чанка дельты потока", "Stream Delta Chunk Size": "Размер чанка дельты потока",
@ -1513,7 +1498,6 @@
"Tags Generation": "Генерация тегов", "Tags Generation": "Генерация тегов",
"Tags Generation Prompt": "Промпт для генерации тегов", "Tags Generation Prompt": "Промпт для генерации тегов",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Выборка без хвостов используется для уменьшения влияния менее вероятных токенов на выходные данные. Более высокое значение (например, 2.0) еще больше уменьшит влияние, в то время как значение 1.0 отключает эту настройку.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Выборка без хвостов используется для уменьшения влияния менее вероятных токенов на выходные данные. Более высокое значение (например, 2.0) еще больше уменьшит влияние, в то время как значение 1.0 отключает эту настройку.",
"Talk to model": "Поговорить с моделью",
"Tap to interrupt": "Нажмите, чтобы прервать", "Tap to interrupt": "Нажмите, чтобы прервать",
"Task List": "Список задач", "Task List": "Список задач",
"Task Model": "Модель задачи", "Task Model": "Модель задачи",
@ -1595,9 +1579,6 @@
"Toast notifications for new updates": "Уведомления о обновлениях", "Toast notifications for new updates": "Уведомления о обновлениях",
"Today": "Сегодня", "Today": "Сегодня",
"Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}",
"Toggle search": "Переключить поиск",
"Toggle settings": "Переключить настройки",
"Toggle sidebar": "Переключить боковую панель",
"Toggle whether current connection is active.": "Переключить, активно ли текущее соединение.", "Toggle whether current connection is active.": "Переключить, активно ли текущее соединение.",
"Token": "Токен", "Token": "Токен",
"Too verbose": "Слишком многословно", "Too verbose": "Слишком многословно",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model úloh sa používa pri vykonávaní úloh, ako je generovanie názvov pre chaty a vyhľadávacie dotazy na webe.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model úloh sa používa pri vykonávaní úloh, ako je generovanie názvov pre chaty a vyhľadávacie dotazy na webe.",
"a user": "užívateľ", "a user": "užívateľ",
"About": "O programe", "About": "O programe",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Prístup", "Access": "Prístup",
"Access Control": "", "Access Control": "",
"Accessible to all users": "Prístupné pre všetkých užívateľov", "Accessible to all users": "Prístupné pre všetkých užívateľov",
@ -51,7 +50,6 @@
"Add Content": "Pridať obsah", "Add Content": "Pridať obsah",
"Add content here": "Pridať obsah sem", "Add content here": "Pridať obsah sem",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Pridanie vlastného promptu",
"Add Details": "", "Add Details": "",
"Add Files": "Pridať súbory", "Add Files": "Pridať súbory",
"Add Group": "Pridať skupinu", "Add Group": "Pridať skupinu",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Opýtajte sa otázku", "Ask a question": "Opýtajte sa otázku",
"Assistant": "Asistent", "Assistant": "Asistent",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Znak", "Character": "Znak",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Vykonávanie kódu", "Code execution": "Vykonávanie kódu",
@ -331,8 +330,6 @@
"Copied to clipboard": "Skopírované do schránky", "Copied to clipboard": "Skopírované do schránky",
"Copy": "Kopírovať", "Copy": "Kopírovať",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Skopírujte posledný blok kódu",
"Copy last response": "Skopírujte poslednú odpoveď",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopírovať odkaz", "Copy Link": "Kopírovať odkaz",
"Copy to clipboard": "Kopírovať do schránky", "Copy to clipboard": "Kopírovať do schránky",
@ -396,7 +393,6 @@
"Delete a model": "Odstrániť model.", "Delete a model": "Odstrániť model.",
"Delete All Chats": "Odstrániť všetky konverzácie", "Delete All Chats": "Odstrániť všetky konverzácie",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "Odstrániť chat",
"Delete Chat": "Odstrániť chat", "Delete Chat": "Odstrániť chat",
"Delete chat?": "Odstrániť konverzáciu?", "Delete chat?": "Odstrániť konverzáciu?",
"Delete folder?": "Odstrániť priečinok?", "Delete folder?": "Odstrániť priečinok?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Zamerajte sa na vstup chatu",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Priečinok bol úspešne vymazaný", "Folder deleted successfully": "Priečinok bol úspešne vymazaný",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "Vygenerovať obrázok", "Generate Image": "Vygenerovať obrázok",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Generovanie vyhľadávacieho dotazu", "Generating search query": "Generovanie vyhľadávacieho dotazu",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Vstupné príkazy",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Klávesové skratky", "Keyboard shortcuts": "Klávesové skratky",
"Keyboard Shortcuts": "",
"Knowledge": "Znalosti", "Knowledge": "Znalosti",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Načítava sa...", "Loading...": "Načítava sa...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Verzia Ollama", "Ollama Version": "Verzia Ollama",
"On": "Zapnuté", "On": "Zapnuté",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Otvoriť nový chat",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Predchádzajúcich 30 dní", "Previous 30 days": "Predchádzajúcich 30 dní",
"Previous 7 days": "Predchádzajúcich 7 dní", "Previous 7 days": "Predchádzajúcich 7 dní",
@ -1398,7 +1388,6 @@
"Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť", "Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporujú vstupy v podobe obrázkov.", "Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporujú vstupy v podobe obrázkov.",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Odoslať", "Send": "Odoslať",
"Send a Message": "Odoslať správu", "Send a Message": "Odoslať správu",
@ -1440,14 +1429,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Zobraziť klávesové skratky",
"Show your support!": "Vyjadrite svoju podporu!", "Show your support!": "Vyjadrite svoju podporu!",
"Showcased creativity": "Predvedená kreativita", "Showcased creativity": "Predvedená kreativita",
"Sign in": "Prihlásiť sa", "Sign in": "Prihlásiť sa",
@ -1482,7 +1469,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Zastaviť", "Stop": "Zastaviť",
"Stop Generating": "",
"Stop Sequence": "Sekvencia zastavenia", "Stop Sequence": "Sekvencia zastavenia",
"Stream Chat Response": "Odozva chatu Stream", "Stream Chat Response": "Odozva chatu Stream",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1512,7 +1498,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "Prompt na generovanie značiek", "Tags Generation Prompt": "Prompt na generovanie značiek",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Rozprávajte sa s modelom",
"Tap to interrupt": "Klepnite na prerušenie", "Tap to interrupt": "Klepnite na prerušenie",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1594,9 +1579,6 @@
"Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie", "Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie",
"Today": "Dnes", "Today": "Dnes",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Prepnúť nastavenia",
"Toggle sidebar": "Prepnúť bočný panel",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Príliš rozvláčne", "Too verbose": "Príliš rozvláčne",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модел задатка се користи приликом извршавања задатака као што су генерисање наслова за ћаскања и упите за Веб претрагу", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модел задатка се користи приликом извршавања задатака као што су генерисање наслова за ћаскања и упите за Веб претрагу",
"a user": "корисник", "a user": "корисник",
"About": "О нама", "About": "О нама",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "Приступ", "Access": "Приступ",
"Access Control": "Контрола приступа", "Access Control": "Контрола приступа",
"Accessible to all users": "Доступно свим корисницима", "Accessible to all users": "Доступно свим корисницима",
@ -51,7 +50,6 @@
"Add Content": "Додај садржај", "Add Content": "Додај садржај",
"Add content here": "Додај садржај овде", "Add content here": "Додај садржај овде",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Додај прилагођен упит",
"Add Details": "", "Add Details": "",
"Add Files": "Додај датотеке", "Add Files": "Додај датотеке",
"Add Group": "Додај групу", "Add Group": "Додај групу",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "Постави питање", "Ask a question": "Постави питање",
"Assistant": "Помоћник", "Assistant": "Помоћник",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Назив канала", "Channel Name": "Назив канала",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Знак", "Character": "Знак",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Извршавање кода", "Code execution": "Извршавање кода",
@ -331,8 +330,6 @@
"Copied to clipboard": "Копирано у оставу", "Copied to clipboard": "Копирано у оставу",
"Copy": "Копирај", "Copy": "Копирај",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Копирај последњи блок кода",
"Copy last response": "Копирај последњи одговор",
"Copy link": "", "Copy link": "",
"Copy Link": "Копирај везу", "Copy Link": "Копирај везу",
"Copy to clipboard": "Копирај у оставу", "Copy to clipboard": "Копирај у оставу",
@ -396,7 +393,6 @@
"Delete a model": "Обриши модел", "Delete a model": "Обриши модел",
"Delete All Chats": "Обриши сва ћаскања", "Delete All Chats": "Обриши сва ћаскања",
"Delete All Models": "Обриши све моделе", "Delete All Models": "Обриши све моделе",
"Delete chat": "Обриши ћаскање",
"Delete Chat": "Обриши ћаскање", "Delete Chat": "Обриши ћаскање",
"Delete chat?": "Обрисати ћаскање?", "Delete chat?": "Обрисати ћаскање?",
"Delete folder?": "Обрисати фасциклу?", "Delete folder?": "Обрисати фасциклу?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Усредсредите унос ћаскања",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Генерисање упита претраге", "Generating search query": "Генерисање упита претраге",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Унеси наредбе",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Кључ", "Key": "Кључ",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Пречице на тастатури", "Keyboard shortcuts": "Пречице на тастатури",
"Keyboard Shortcuts": "",
"Knowledge": "Знање", "Knowledge": "Знање",
"Knowledge Access": "Приступ знању", "Knowledge Access": "Приступ знању",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Учитавање...", "Loading...": "Учитавање...",
"local": "",
"Local": "Локално", "Local": "Локално",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Модел", "Model": "Модел",
@ -1119,8 +1113,6 @@
"Ollama Version": "Издање Ollama-е", "Ollama Version": "Издање Ollama-е",
"On": "Укључено", "On": "Укључено",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Покрени ново ћаскање",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Претходних 30 дана", "Previous 30 days": "Претходних 30 дана",
"Previous 7 days": "Претходних 7 дана", "Previous 7 days": "Претходних 7 дана",
@ -1397,7 +1387,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика", "Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Пошаљи", "Send": "Пошаљи",
"Send a Message": "Пошаљи поруку", "Send a Message": "Пошаљи поруку",
@ -1439,14 +1428,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "Прикажи пречице",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "Приказана креативност", "Showcased creativity": "Приказана креативност",
"Sign in": "Пријави се", "Sign in": "Пријави се",
@ -1481,7 +1468,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Заустави", "Stop": "Заустави",
"Stop Generating": "",
"Stop Sequence": "Секвенца заустављања", "Stop Sequence": "Секвенца заустављања",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1511,7 +1497,6 @@
"Tags Generation": "Стварање ознака", "Tags Generation": "Стварање ознака",
"Tags Generation Prompt": "Упит стварања ознака", "Tags Generation Prompt": "Упит стварања ознака",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Разговарајте са моделом",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1593,9 +1578,6 @@
"Toast notifications for new updates": "Тост-обавештења за нове исправке", "Toast notifications for new updates": "Тост-обавештења за нове исправке",
"Today": "Данас", "Today": "Данас",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Пребаци подешавања",
"Toggle sidebar": "Пребаци бочну траку",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Жетон", "Token": "Жетон",
"Too verbose": "Преопширно", "Too verbose": "Преопширно",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor", "A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
"a user": "en användare", "a user": "en användare",
"About": "Om", "About": "Om",
"Accept autocomplete generation / Jump to prompt variable": "Acceptera automatisk komplettering / Hoppa till promptvariabel",
"Access": "Åtkomst", "Access": "Åtkomst",
"Access Control": "Åtkomstkontroll", "Access Control": "Åtkomstkontroll",
"Accessible to all users": "Tillgänglig för alla användare", "Accessible to all users": "Tillgänglig för alla användare",
@ -51,7 +50,6 @@
"Add Content": "Lägg till innehåll", "Add Content": "Lägg till innehåll",
"Add content here": "Lägg till innehåll här", "Add content here": "Lägg till innehåll här",
"Add Custom Parameter": "Lägg till anpassad parameter", "Add Custom Parameter": "Lägg till anpassad parameter",
"Add custom prompt": "Lägg till en anpassad instruktion",
"Add Details": "", "Add Details": "",
"Add Files": "Lägg till filer", "Add Files": "Lägg till filer",
"Add Group": "Lägg till grupp", "Add Group": "Lägg till grupp",
@ -151,7 +149,6 @@
"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",
"Attach file from knowledge": "Bifoga fil från kunskap",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanalnamn", "Channel Name": "Kanalnamn",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Tecken", "Character": "Tecken",
@ -272,6 +270,7 @@
"Close modal": "Stäng modal", "Close modal": "Stäng modal",
"Close settings modal": "Stäng inställningsmodal", "Close settings modal": "Stäng inställningsmodal",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodkörning", "Code execution": "Kodkörning",
@ -331,8 +330,6 @@
"Copied to clipboard": "Kopierad till urklipp", "Copied to clipboard": "Kopierad till urklipp",
"Copy": "Kopiera", "Copy": "Kopiera",
"Copy Formatted Text": "Kopiera formaterad text", "Copy Formatted Text": "Kopiera formaterad text",
"Copy last code block": "Kopiera sista kodblock",
"Copy last response": "Kopiera sista svar",
"Copy link": "", "Copy link": "",
"Copy Link": "Kopiera länk", "Copy Link": "Kopiera länk",
"Copy to clipboard": "Kopiera till urklipp", "Copy to clipboard": "Kopiera till urklipp",
@ -396,7 +393,6 @@
"Delete a model": "Ta bort en modell", "Delete a model": "Ta bort en modell",
"Delete All Chats": "Ta bort alla chattar", "Delete All Chats": "Ta bort alla chattar",
"Delete All Models": "Ta bort alla modeller", "Delete All Models": "Ta bort alla modeller",
"Delete chat": "Radera chatt",
"Delete Chat": "Radera chatt", "Delete Chat": "Radera chatt",
"Delete chat?": "Radera chatt?", "Delete chat?": "Radera chatt?",
"Delete folder?": "Radera mapp?", "Delete folder?": "Radera mapp?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Base URL": "Firecrawl API Base URL",
"Firecrawl API Key": "Firecrawl API-nyckel", "Firecrawl API Key": "Firecrawl API-nyckel",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Fokusera på chattfältet",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Mappen har tagits bort", "Folder deleted successfully": "Mappen har tagits bort",
@ -786,7 +781,6 @@
"Generate": "Generera", "Generate": "Generera",
"Generate an image": "Generera en bild", "Generate an image": "Generera en bild",
"Generate Image": "Generera bild", "Generate Image": "Generera bild",
"Generate prompt pair": "Generera promptpar",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Genererar sökfråga", "Generating search query": "Genererar sökfråga",
"Generating...": "Genererar...", "Generating...": "Genererar...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.",
"Input": "", "Input": "",
"Input commands": "Indatakommandon",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Nyckel", "Key": "Nyckel",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Tangentbordsgenvägar", "Keyboard shortcuts": "Tangentbordsgenvägar",
"Keyboard Shortcuts": "",
"Knowledge": "Kunskap", "Knowledge": "Kunskap",
"Knowledge Access": "Kunskapsåtkomst", "Knowledge Access": "Kunskapsåtkomst",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Inläsare", "Loader": "Inläsare",
"Loading Kokoro.js...": "Läser in Kokoro.js...", "Loading Kokoro.js...": "Läser in Kokoro.js...",
"Loading...": "Läser in...", "Loading...": "Läser in...",
"local": "",
"Local": "Lokal", "Local": "Lokal",
"Local Task Model": "Lokal uppgiftsmodell", "Local Task Model": "Lokal uppgiftsmodell",
"Location access not allowed": "Åtkomst till platsen är inte tillåten", "Location access not allowed": "Åtkomst till platsen är inte tillåten",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbete/skola)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbete/skola)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API-nyckel krävs.", "Mistral OCR API Key required.": "Mistral OCR API-nyckel krävs.",
"Model": "Modell", "Model": "Modell",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama-version", "Ollama Version": "Ollama-version",
"On": "På", "On": "På",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Endast aktivt när inställningen \"Klistra in stor text som fil\" är aktiverad.",
"Only active when the chat input is in focus and an LLM is generating a response.": "Endast aktivt när chattinmatningen är i fokus och en LLM genererar ett svar.",
"Only alphanumeric characters and hyphens are allowed": "Endast alfanumeriska tecken och bindestreck är tillåtna", "Only alphanumeric characters and hyphens are allowed": "Endast alfanumeriska tecken och bindestreck är tillåtna",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Endast samlingar kan redigeras, skapa en ny kunskapsbas för att redigera/lägga till dokument.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Endast samlingar kan redigeras, skapa en ny kunskapsbas för att redigera/lägga till dokument.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "Öppna modal för att konfigurera anslutning", "Open modal to configure connection": "Öppna modal för att konfigurera anslutning",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Öppna ny chatt",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera",
"Prevent file creation": "Förhindra filskapande",
"Preview": "Förhandsgranska", "Preview": "Förhandsgranska",
"Previous 30 days": "Föregående 30 dagar", "Previous 30 days": "Föregående 30 dagar",
"Previous 7 days": "Föregående 7 dagar", "Previous 7 days": "Föregående 7 dagar",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Välj endast en modell att ringa", "Select only one model to call": "Välj endast en modell att ringa",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar", "Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Skicka", "Send": "Skicka",
"Send a Message": "Skicka ett meddelande", "Send a Message": "Skicka ett meddelande",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Delningsbehörigheter", "Sharing Permissions": "Delningsbehörigheter",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Genvägar med en asterisk (*) är situationsbundna och endast aktiva under specifika förhållanden.",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Visa modell", "Show Model": "Visa modell",
"Show shortcuts": "Visa genvägar",
"Show your support!": "Visa ditt stöd!", "Show your support!": "Visa ditt stöd!",
"Showcased creativity": "Visade kreativitet", "Showcased creativity": "Visade kreativitet",
"Sign in": "Logga in", "Sign in": "Logga in",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Stopp", "Stop": "Stopp",
"Stop Generating": "Sluta generera",
"Stop Sequence": "Stoppsekvens", "Stop Sequence": "Stoppsekvens",
"Stream Chat Response": "Strömma chattsvar", "Stream Chat Response": "Strömma chattsvar",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Tagggenerering", "Tags Generation": "Tagggenerering",
"Tags Generation Prompt": "Prompt för tagggenerering", "Tags Generation Prompt": "Prompt för tagggenerering",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.",
"Talk to model": "Prata med modellen",
"Tap to interrupt": "Tryck för att avbryta", "Tap to interrupt": "Tryck för att avbryta",
"Task List": "", "Task List": "",
"Task Model": "Uppgiftsmodell", "Task Model": "Uppgiftsmodell",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar", "Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar",
"Today": "Idag", "Today": "Idag",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Växla sökning",
"Toggle settings": "Växla inställningar",
"Toggle sidebar": "Växla sidofält",
"Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.", "Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.",
"Token": "Token", "Token": "Token",
"Too verbose": "För utförlig", "Too verbose": "För utförlig",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ใช้โมเดลงานเมื่อทำงานเช่นการสร้างหัวข้อสำหรับการสนทนาและการค้นหาเว็บ", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ใช้โมเดลงานเมื่อทำงานเช่นการสร้างหัวข้อสำหรับการสนทนาและการค้นหาเว็บ",
"a user": "ผู้ใช้", "a user": "ผู้ใช้",
"About": "เกี่ยวกับ", "About": "เกี่ยวกับ",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "เพิ่มเนื้อหา", "Add Content": "เพิ่มเนื้อหา",
"Add content here": "เพิ่มเนื้อหาตรงนี้", "Add content here": "เพิ่มเนื้อหาตรงนี้",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "เพิ่มพรอมต์ที่กำหนดเอง",
"Add Details": "", "Add Details": "",
"Add Files": "เพิ่มไฟล์", "Add Files": "เพิ่มไฟล์",
"Add Group": "เพิ่มกลุ่ม", "Add Group": "เพิ่มกลุ่ม",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "คัดลอก", "Copy": "คัดลอก",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "คัดลอกบล็อกโค้ดสุดท้าย",
"Copy last response": "คัดลอกการตอบสนองล่าสุด",
"Copy link": "", "Copy link": "",
"Copy Link": "คัดลอกลิงก์", "Copy Link": "คัดลอกลิงก์",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "ลบโมเดล", "Delete a model": "ลบโมเดล",
"Delete All Chats": "ลบการแชททั้งหมด", "Delete All Chats": "ลบการแชททั้งหมด",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "ลบแชท",
"Delete Chat": "ลบแชท", "Delete Chat": "ลบแชท",
"Delete chat?": "ลบแชท?", "Delete chat?": "ลบแชท?",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "โฟกัสการป้อนแชท",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "สร้างภาพ", "Generate Image": "สร้างภาพ",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "สร้างคำค้นหา", "Generating search query": "สร้างคำค้นหา",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "คำสั่งป้อนข้อมูล",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "ทางลัดแป้นพิมพ์", "Keyboard shortcuts": "ทางลัดแป้นพิมพ์",
"Keyboard Shortcuts": "",
"Knowledge": "ความรู้", "Knowledge": "ความรู้",
"Knowledge Access": "การเข้าถึงความรู้", "Knowledge Access": "การเข้าถึงความรู้",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "กำลังโหลด...", "Loading...": "กำลังโหลด...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "", "Model": "",
@ -1119,8 +1113,6 @@
"Ollama Version": "เวอร์ชั่น Ollama", "Ollama Version": "เวอร์ชั่น Ollama",
"On": "เปิด", "On": "เปิด",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น", "Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "เปิดแชทใหม่",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 วันที่ผ่านมา", "Previous 30 days": "30 วันที่ผ่านมา",
"Previous 7 days": "7 วันที่ผ่านมา", "Previous 7 days": "7 วันที่ผ่านมา",
@ -1395,7 +1385,6 @@
"Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะใช้", "Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะใช้",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับภาพ", "Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับภาพ",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "ส่ง", "Send": "ส่ง",
"Send a Message": "ส่งข้อความ", "Send a Message": "ส่งข้อความ",
@ -1437,14 +1426,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "แสดงทางลัด",
"Show your support!": "แสดงการสนับสนุนของคุณ!", "Show your support!": "แสดงการสนับสนุนของคุณ!",
"Showcased creativity": "แสดงความคิดสร้างสรรค์", "Showcased creativity": "แสดงความคิดสร้างสรรค์",
"Sign in": "ลงชื่อเข้าใช้", "Sign in": "ลงชื่อเข้าใช้",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "", "Stop": "",
"Stop Generating": "",
"Stop Sequence": "หยุดลำดับ", "Stop Sequence": "หยุดลำดับ",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1509,7 +1495,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "พูดคุยกับโมเดล",
"Tap to interrupt": "แตะเพื่อขัดจังหวะ", "Tap to interrupt": "แตะเพื่อขัดจังหวะ",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "วันนี้", "Today": "วันนี้",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "สลับการตั้งค่า",
"Toggle sidebar": "สลับแถบด้านข้าง",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "", "Token": "",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Çatlar we web gözleg soraglary üçin başlyk döretmek ýaly wezipeleri ýerine ýetirýän wagty ulanylýar", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Çatlar we web gözleg soraglary üçin başlyk döretmek ýaly wezipeleri ýerine ýetirýän wagty ulanylýar",
"a user": "ulanyjy", "a user": "ulanyjy",
"About": "Barada", "About": "Barada",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "", "Add Content": "",
"Add content here": "", "Add content here": "",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Özboluşly düşündiriş goşuň",
"Add Details": "", "Add Details": "",
"Add Files": "Faýllar goş", "Add Files": "Faýllar goş",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "", "Ask a question": "",
"Assistant": "", "Assistant": "",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
@ -331,8 +330,6 @@
"Copied to clipboard": "", "Copied to clipboard": "",
"Copy": "Göçür", "Copy": "Göçür",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Soňky kod blokyny göçür",
"Copy last response": "Soňky jogaby göçür",
"Copy link": "", "Copy link": "",
"Copy Link": "Baglanyşygy Göçür", "Copy Link": "Baglanyşygy Göçür",
"Copy to clipboard": "", "Copy to clipboard": "",
@ -396,7 +393,6 @@
"Delete a model": "", "Delete a model": "",
"Delete All Chats": "Ähli Çatlary Öçür", "Delete All Chats": "Ähli Çatlary Öçür",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "",
"Delete Chat": "", "Delete Chat": "",
"Delete chat?": "", "Delete chat?": "",
"Delete folder?": "", "Delete folder?": "",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "", "Folder deleted successfully": "",
@ -786,7 +781,6 @@
"Generate": "Döret", "Generate": "Döret",
"Generate an image": "", "Generate an image": "",
"Generate Image": "", "Generate Image": "",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "", "Generating search query": "",
"Generating...": "Döredilýär...", "Generating...": "Döredilýär...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Açar", "Key": "Açar",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Keyboard Shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "Ýüklenýär...", "Loading...": "Ýüklenýär...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "", "Ollama Version": "",
"On": "Işjeň", "On": "Işjeň",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "", "Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "Öň-üşürgi", "Preview": "Öň-üşürgi",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
@ -1396,7 +1386,6 @@
"Select only one model to call": "", "Select only one model to call": "",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Iber", "Send": "Iber",
"Send a Message": "", "Send a Message": "",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modeli Görkez", "Show Model": "Modeli Görkez",
"Show shortcuts": "",
"Show your support!": "", "Show your support!": "",
"Showcased creativity": "", "Showcased creativity": "",
"Sign in": "", "Sign in": "",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Bes et", "Stop": "Bes et",
"Stop Generating": "",
"Stop Sequence": "", "Stop Sequence": "",
"Stream Chat Response": "", "Stream Chat Response": "",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "", "Tags Generation Prompt": "",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Model bilen gürleşiň",
"Tap to interrupt": "", "Tap to interrupt": "",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Şu gün", "Today": "Şu gün",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "",
"Toggle sidebar": "",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "", "Too verbose": "",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Bir görev modeli, sohbetler ve web arama sorguları için başlık oluşturma gibi görevleri yerine getirirken kullanılır", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Bir görev modeli, sohbetler ve web arama sorguları için başlık oluşturma gibi görevleri yerine getirirken kullanılır",
"a user": "bir kullanıcı", "a user": "bir kullanıcı",
"About": "Hakkında", "About": "Hakkında",
"Accept autocomplete generation / Jump to prompt variable": "Otomatik tamamlama üretimini kabul et / İstem değişkenine atla",
"Access": "Erişim", "Access": "Erişim",
"Access Control": "Erişim Kontrolü", "Access Control": "Erişim Kontrolü",
"Accessible to all users": "Tüm kullanıcılara erişilebilir", "Accessible to all users": "Tüm kullanıcılara erişilebilir",
@ -51,7 +50,6 @@
"Add Content": "İçerik Ekle", "Add Content": "İçerik Ekle",
"Add content here": "Buraya içerik ekleyin", "Add content here": "Buraya içerik ekleyin",
"Add Custom Parameter": "Özel Parametre Ekle", "Add Custom Parameter": "Özel Parametre Ekle",
"Add custom prompt": "Özel prompt ekleyin",
"Add Details": "", "Add Details": "",
"Add Files": "Dosyalar Ekle", "Add Files": "Dosyalar Ekle",
"Add Group": "Grup Ekle", "Add Group": "Grup Ekle",
@ -151,7 +149,6 @@
"Ask": "Sor", "Ask": "Sor",
"Ask a question": "Bir soru sorun", "Ask a question": "Bir soru sorun",
"Assistant": "Asistan", "Assistant": "Asistan",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "Kanal", "Channel": "Kanal",
"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 updated successfully": "Kanal başarıyla güncellendi", "Channel updated successfully": "Kanal başarıyla güncellendi",
"Channels": "Kanallar", "Channels": "Kanallar",
"Character": "Karakter", "Character": "Karakter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kod yürütme", "Code execution": "Kod yürütme",
@ -331,8 +330,6 @@
"Copied to clipboard": "Panoya kopyalandı", "Copied to clipboard": "Panoya kopyalandı",
"Copy": "Kopyala", "Copy": "Kopyala",
"Copy Formatted Text": "Biçimlenirilmiş Metni Kopyala", "Copy Formatted Text": "Biçimlenirilmiş Metni Kopyala",
"Copy last code block": "Son kod bloğunu kopyala",
"Copy last response": "Son yanıtı kopyala",
"Copy link": "Bağlantıyı kopyala", "Copy link": "Bağlantıyı kopyala",
"Copy Link": "Bağlantıyı Kopyala", "Copy Link": "Bağlantıyı Kopyala",
"Copy to clipboard": "Panoya kopyala", "Copy to clipboard": "Panoya kopyala",
@ -396,7 +393,6 @@
"Delete a model": "Bir modeli sil", "Delete a model": "Bir modeli sil",
"Delete All Chats": "Tüm Sohbetleri Sil", "Delete All Chats": "Tüm Sohbetleri Sil",
"Delete All Models": "Tüm Modelleri Sil", "Delete All Models": "Tüm Modelleri Sil",
"Delete chat": "Sohbeti sil",
"Delete Chat": "Sohbeti Sil", "Delete Chat": "Sohbeti Sil",
"Delete chat?": "Sohbeti sil?", "Delete chat?": "Sohbeti sil?",
"Delete folder?": "Klasörü sil?", "Delete folder?": "Klasörü sil?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Sohbet girişine odaklan",
"Folder": "Klasör", "Folder": "Klasör",
"Folder Background Image": "Klasör Arka Plan Resmi", "Folder Background Image": "Klasör Arka Plan Resmi",
"Folder deleted successfully": "Klasör başarıyla silindi", "Folder deleted successfully": "Klasör başarıyla silindi",
@ -786,7 +781,6 @@
"Generate": "Oluştur", "Generate": "Oluştur",
"Generate an image": "Bir Görsel Oluştur", "Generate an image": "Bir Görsel Oluştur",
"Generate Image": "Görsel Üret", "Generate Image": "Görsel Üret",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Arama sorgusu oluşturma", "Generating search query": "Arama sorgusu oluşturma",
"Generating...": "Oluşturuluyor...", "Generating...": "Oluşturuluyor...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "Giriş", "Input": "Giriş",
"Input commands": "Giriş komutları",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Anahtar", "Key": "Anahtar",
"Key is required": "Anahtar gerekli", "Key is required": "Anahtar gerekli",
"Keyboard shortcuts": "Klavye kısayolları", "Keyboard shortcuts": "Klavye kısayolları",
"Keyboard Shortcuts": "",
"Knowledge": "Bilgi", "Knowledge": "Bilgi",
"Knowledge Access": "Bilgi Erişimi", "Knowledge Access": "Bilgi Erişimi",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Yükleyici", "Loader": "Yükleyici",
"Loading Kokoro.js...": "Kokoro.js Yükleniyor...", "Loading Kokoro.js...": "Kokoro.js Yükleniyor...",
"Loading...": "Yükleniyor...", "Loading...": "Yükleniyor...",
"local": "",
"Local": "Yerel", "Local": "Yerel",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (iş/okul)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (iş/okul)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API Anahtarı Gerekli", "Mistral OCR API Key required.": "Mistral OCR API Anahtarı Gerekli",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama Sürümü", "Ollama Version": "Ollama Sürümü",
"On": "Açık", "On": "Açık",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir", "Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Yeni sohbet aç",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Önceki 30 gün", "Previous 30 days": "Önceki 30 gün",
"Previous 7 days": "Önceki 7 gün", "Previous 7 days": "Önceki 7 gün",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Arama için sadece bir model seç", "Select only one model to call": "Arama için sadece bir model seç",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor", "Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Gönder", "Send": "Gönder",
"Send a Message": "Bir Mesaj Gönder", "Send a Message": "Bir Mesaj Gönder",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modeli Göster", "Show Model": "Modeli Göster",
"Show shortcuts": "Kısayolları göster",
"Show your support!": "Desteğinizi gösterin!", "Show your support!": "Desteğinizi gösterin!",
"Showcased creativity": "Sergilenen yaratıcılık", "Showcased creativity": "Sergilenen yaratıcılık",
"Sign in": "Oturum aç", "Sign in": "Oturum aç",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Durdur", "Stop": "Durdur",
"Stop Generating": "",
"Stop Sequence": "Diziyi Durdur", "Stop Sequence": "Diziyi Durdur",
"Stream Chat Response": "Akış Sohbet Yanıtı", "Stream Chat Response": "Akış Sohbet Yanıtı",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Etiketler Oluşturma", "Tags Generation": "Etiketler Oluşturma",
"Tags Generation Prompt": "Etiketler Oluşturma Promptu", "Tags Generation Prompt": "Etiketler Oluşturma Promptu",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "Model ile konuş",
"Tap to interrupt": "Durdurmak için dokunun", "Tap to interrupt": "Durdurmak için dokunun",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "", "Toast notifications for new updates": "",
"Today": "Bugün", "Today": "Bugün",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Ayarları Aç/Kapat",
"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Birim", "Token": "Birim",
"Too verbose": "Çok ayrıntılı", "Too verbose": "Çok ayrıntılı",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "سۆھبەت ياكى تور ئىزدەش سۇئالىنىڭ تېمىسىنى ھاسىل قىلىشقا ئوخشىغان ۋەزىپىلەر ئۈچۈن ۋەزىپە مودېلى ئىشلىتىلىدۇ", "A task model is used when performing tasks such as generating titles for chats and web search queries": "سۆھبەت ياكى تور ئىزدەش سۇئالىنىڭ تېمىسىنى ھاسىل قىلىشقا ئوخشىغان ۋەزىپىلەر ئۈچۈن ۋەزىپە مودېلى ئىشلىتىلىدۇ",
"a user": "ئىشلەتكۈچى", "a user": "ئىشلەتكۈچى",
"About": "ھەققىدە", "About": "ھەققىدە",
"Accept autocomplete generation / Jump to prompt variable": "ئاپتوماتىك تولدۇرۇشنى قوبۇل قىلىڭ / تۈرتكە ئۆزگەرگۈچكە ئاتلاڭ",
"Access": "زىيارەت", "Access": "زىيارەت",
"Access Control": "زىيارەت باشقۇرۇش", "Access Control": "زىيارەت باشقۇرۇش",
"Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان", "Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان",
@ -51,7 +50,6 @@
"Add Content": "مەزمۇن قوشۇش", "Add Content": "مەزمۇن قوشۇش",
"Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ", "Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ",
"Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش", "Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش",
"Add custom prompt": "ئۆزلۈك تۈرتكە قوشۇش",
"Add Details": "", "Add Details": "",
"Add Files": "ھۆججەتلەر قوشۇش", "Add Files": "ھۆججەتلەر قوشۇش",
"Add Group": "گۇرۇپپا قوشۇش", "Add Group": "گۇرۇپپا قوشۇش",
@ -151,7 +149,6 @@
"Ask": "سوراڭ", "Ask": "سوراڭ",
"Ask a question": "سؤئال سوراڭ", "Ask a question": "سؤئال سوراڭ",
"Assistant": "ياردەمچى", "Assistant": "ياردەمچى",
"Attach file from knowledge": "بىلىمدىن ھۆججەت ئۇلاڭ",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "قانال ئاتى", "Channel Name": "قانال ئاتى",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "قاناللار", "Channels": "قاناللار",
"Character": "ھەرپ", "Character": "ھەرپ",
@ -272,6 +270,7 @@
"Close modal": "مودالنى يېپىش", "Close modal": "مودالنى يېپىش",
"Close settings modal": "تەڭشەك مودالىنى يېپىش", "Close settings modal": "تەڭشەك مودالىنى يېپىش",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "كود ئىجرا قىلىش", "Code execution": "كود ئىجرا قىلىش",
@ -331,8 +330,6 @@
"Copied to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈلدى", "Copied to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈلدى",
"Copy": "كۆچۈرۈش", "Copy": "كۆچۈرۈش",
"Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش", "Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش",
"Copy last code block": "ئاخىرقى كود بۆلىكىنى كۆچۈرۈش",
"Copy last response": "ئاخىرقى ئىنكاسنى كۆچۈرۈش",
"Copy link": "", "Copy link": "",
"Copy Link": "ئۇلانما كۆچۈرۈش", "Copy Link": "ئۇلانما كۆچۈرۈش",
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش", "Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
@ -396,7 +393,6 @@
"Delete a model": "مودېل ئۆچۈرۈش", "Delete a model": "مودېل ئۆچۈرۈش",
"Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش", "Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش",
"Delete All Models": "بارلىق مودېللارنى ئۆچۈرۈش", "Delete All Models": "بارلىق مودېللارنى ئۆچۈرۈش",
"Delete chat": "سۆھبەت ئۆچۈرۈش",
"Delete Chat": "سۆھبەت ئۆچۈرۈش", "Delete Chat": "سۆھبەت ئۆچۈرۈش",
"Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟", "Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟",
"Delete folder?": "قىسقۇچ ئۆچۈرەمسىز؟", "Delete folder?": "قىسقۇچ ئۆچۈرەمسىز؟",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API ئاساسىي URL", "Firecrawl API Base URL": "Firecrawl API ئاساسىي URL",
"Firecrawl API Key": "Firecrawl API ئاچقۇچى", "Firecrawl API Key": "Firecrawl API ئاچقۇچى",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "سۆھبەت كىرگۈزۈشىگە نىشانلا",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", "Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
@ -786,7 +781,6 @@
"Generate": "ھاسىل قىلىش", "Generate": "ھاسىل قىلىش",
"Generate an image": "رەسىم ھاسىل قىلىش", "Generate an image": "رەسىم ھاسىل قىلىش",
"Generate Image": "رەسىم ھاسىل قىلىش", "Generate Image": "رەسىم ھاسىل قىلىش",
"Generate prompt pair": "تۈرتكە جۈپى ھاسىل قىلىش",
"Generated Image": "", "Generated Image": "",
"Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ", "Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ",
"Generating...": "ھاسىل قىلىنىۋاتىدۇ...", "Generating...": "ھاسىل قىلىنىۋاتىدۇ...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.",
"Input": "", "Input": "",
"Input commands": "بۇيرۇق كىرگۈزۈش",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "ئاچقۇچ", "Key": "ئاچقۇچ",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "تىزلەتمىلەر", "Keyboard shortcuts": "تىزلەتمىلەر",
"Keyboard Shortcuts": "",
"Knowledge": "بىلىم", "Knowledge": "بىلىم",
"Knowledge Access": "بىلىم زىيارىتى", "Knowledge Access": "بىلىم زىيارىتى",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "يۈكلىگۈچ", "Loader": "يۈكلىگۈچ",
"Loading Kokoro.js...": "Kokoro.js يۈكلەۋاتىدۇ...", "Loading Kokoro.js...": "Kokoro.js يۈكلەۋاتىدۇ...",
"Loading...": "...", "Loading...": "...",
"local": "",
"Local": "يەرلىك", "Local": "يەرلىك",
"Local Task Model": "يەرلىك ۋەزىپە مودېلى", "Local Task Model": "يەرلىك ۋەزىپە مودېلى",
"Location access not allowed": "ئورۇن زىيارىتىغا ئىجازەت يوق", "Location access not allowed": "ئورۇن زىيارىتىغا ئىجازەت يوق",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (خىزمەت/مەكتىپ)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (خىزمەت/مەكتىپ)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API ئاچقۇچى زۆرۈر.", "Mistral OCR API Key required.": "Mistral OCR API ئاچقۇچى زۆرۈر.",
"Model": "مودېل", "Model": "مودېل",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama نەشرى", "Ollama Version": "Ollama نەشرى",
"On": "قوزغىتىلغان", "On": "قوزغىتىلغان",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "\"چوڭ تېكستنى ھۆججەت قىلىپ چاپلا\" قوزغىتىلغاندا ئىلان قىلىدۇ.",
"Only active when the chat input is in focus and an LLM is generating a response.": "خەت كىرگۈزۈشكە باشلىغاندا ياكى LLM ئىنكاس چىقىرىۋاتقاندا ئوچۇق.",
"Only alphanumeric characters and hyphens are allowed": "پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ", "Only alphanumeric characters and hyphens are allowed": "پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ",
"Only alphanumeric characters and hyphens are allowed in the command string.": "بۇيرۇق تىزىقىدا پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ.", "Only alphanumeric characters and hyphens are allowed in the command string.": "بۇيرۇق تىزىقىدا پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "پەقەت توپلام تەھرىرلەشكە بولىدۇ، ھۆججەت قوشۇش/تەھرىرلەش ئۈچۈن يېڭى بىلىم ئاساسى قۇرۇڭ.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "پەقەت توپلام تەھرىرلەشكە بولىدۇ، ھۆججەت قوشۇش/تەھرىرلەش ئۈچۈن يېڭى بىلىم ئاساسى قۇرۇڭ.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ", "Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "يېڭى سۆھبەت ئېچىش",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefix ID", "Prefix ID": "Prefix ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ",
"Prevent file creation": "ھۆججەت قۇرۇشنى چەكلەش",
"Preview": "ئالدىن كۆرۈش", "Preview": "ئالدىن كۆرۈش",
"Previous 30 days": "ئالدىنقى 30 كۈن", "Previous 30 days": "ئالدىنقى 30 كۈن",
"Previous 7 days": "ئالدىنقى 7 كۈن", "Previous 7 days": "ئالدىنقى 7 كۈن",
@ -1396,7 +1386,6 @@
"Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز", "Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "تاللانغان مودېل(لار) رەسىم كىرگۈزۈشنى قوللىمايدۇ", "Selected model(s) do not support image inputs": "تاللانغان مودېل(لار) رەسىم كىرگۈزۈشنى قوللىمايدۇ",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "يوللاش", "Send": "يوللاش",
"Send a Message": "ئۇچۇر يوللاڭ", "Send a Message": "ئۇچۇر يوللاڭ",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "ھەمبەھىرلەش ھوقۇقى", "Sharing Permissions": "ھەمبەھىرلەش ھوقۇقى",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "چىقىرىش (*) بىلەن بەلگىلەنگەن تېز كۇنۇپكىلار پەقەت بەلگىلىك ئەھۋاللاردا ئىلان قىلىدۇ.",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "مودېل كۆرسىتىش", "Show Model": "مودېل كۆرسىتىش",
"Show shortcuts": "تىز كۇنۇپكىلارنى كۆرسىتىش",
"Show your support!": "قوللاڭ!", "Show your support!": "قوللاڭ!",
"Showcased creativity": "يېڭىلىق كۆرسىتىلدى", "Showcased creativity": "يېڭىلىق كۆرسىتىلدى",
"Sign in": "كىرىش", "Sign in": "كىرىش",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "توختات", "Stop": "توختات",
"Stop Generating": "ھاسىل قىلىشنى توختات",
"Stop Sequence": "توختاش تىزىقى", "Stop Sequence": "توختاش تىزىقى",
"Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش", "Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "تەغ ھاسىل قىلىش", "Tags Generation": "تەغ ھاسىل قىلىش",
"Tags Generation Prompt": "تەغ ھاسىل قىلىش تۈرتكەسى", "Tags Generation Prompt": "تەغ ھاسىل قىلىش تۈرتكەسى",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "ئىھتىماللىقى تۆۋەن ئىملەرنىڭ تەسىرىنى ئازايتىش ئۈچۈن tail free sampling ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 2.0) تەسىرىنى تېخىمۇ ئازايتىدۇ، 1.0 بولسا چەكلەنگەن.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "ئىھتىماللىقى تۆۋەن ئىملەرنىڭ تەسىرىنى ئازايتىش ئۈچۈن tail free sampling ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 2.0) تەسىرىنى تېخىمۇ ئازايتىدۇ، 1.0 بولسا چەكلەنگەن.",
"Talk to model": "مودېل بىلەن سۆزلىشىش",
"Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ", "Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ",
"Task List": "", "Task List": "",
"Task Model": "ۋەزىپە مودېلى", "Task Model": "ۋەزىپە مودېلى",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)", "Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)",
"Today": "بۈگۈن", "Today": "بۈگۈن",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "ئىزدەش ئالماشتۇرۇش",
"Toggle settings": "تەڭشەك ئالماشتۇرۇش",
"Toggle sidebar": "يانتاختا ئالماشتۇرۇش",
"Toggle whether current connection is active.": "ھازىرقى ئۇلىنىشنىڭ ئاكتىپ ياكى ئەمەسلىكىنى ئالماشتۇرۇش.", "Toggle whether current connection is active.": "ھازىرقى ئۇلىنىشنىڭ ئاكتىپ ياكى ئەمەسلىكىنى ئالماشتۇرۇش.",
"Token": "ئىم", "Token": "ئىم",
"Too verbose": "بەك ئۇزۇن", "Too verbose": "بەك ئۇزۇن",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті",
"a user": "користувача", "a user": "користувача",
"About": "Про програму", "About": "Про програму",
"Accept autocomplete generation / Jump to prompt variable": "Прийняти автоматичне доповнення / Перейти до змінної промта",
"Access": "Доступ", "Access": "Доступ",
"Access Control": "Контроль доступу", "Access Control": "Контроль доступу",
"Accessible to all users": "Доступно всім користувачам", "Accessible to all users": "Доступно всім користувачам",
@ -51,7 +50,6 @@
"Add Content": "Додати вміст", "Add Content": "Додати вміст",
"Add content here": "Додайте вміст сюди", "Add content here": "Додайте вміст сюди",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Додати користувацьку підказку",
"Add Details": "", "Add Details": "",
"Add Files": "Додати файли", "Add Files": "Додати файли",
"Add Group": "Додати групу", "Add Group": "Додати групу",
@ -151,7 +149,6 @@
"Ask": "Запитати", "Ask": "Запитати",
"Ask a question": "Задати питання", "Ask a question": "Задати питання",
"Assistant": "Асистент", "Assistant": "Асистент",
"Attach file from knowledge": "Прикріпити файл із знаннями",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Назва каналу", "Channel Name": "Назва каналу",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Персонаж", "Character": "Персонаж",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Виконання коду", "Code execution": "Виконання коду",
@ -331,8 +330,6 @@
"Copied to clipboard": "Скопійовано в буфер обміну", "Copied to clipboard": "Скопійовано в буфер обміну",
"Copy": "Копіювати", "Copy": "Копіювати",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Копіювати останній блок коду",
"Copy last response": "Копіювати останню відповідь",
"Copy link": "", "Copy link": "",
"Copy Link": "Копіювати посилання", "Copy Link": "Копіювати посилання",
"Copy to clipboard": "Копіювати в буфер обміну", "Copy to clipboard": "Копіювати в буфер обміну",
@ -396,7 +393,6 @@
"Delete a model": "Видалити модель", "Delete a model": "Видалити модель",
"Delete All Chats": "Видалити усі чати", "Delete All Chats": "Видалити усі чати",
"Delete All Models": "Видалити усі моделі", "Delete All Models": "Видалити усі моделі",
"Delete chat": "Видалити чат",
"Delete Chat": "Видалити чат", "Delete Chat": "Видалити чат",
"Delete chat?": "Видалити чат?", "Delete chat?": "Видалити чат?",
"Delete folder?": "Видалити папку?", "Delete folder?": "Видалити папку?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Фокус вводу чату",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Папку успішно видалено", "Folder deleted successfully": "Папку успішно видалено",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Згенерувати зображення", "Generate an image": "Згенерувати зображення",
"Generate Image": "Створити зображення", "Generate Image": "Створити зображення",
"Generate prompt pair": "Згенерувати пару промтів",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Сформувати пошуковий запит", "Generating search query": "Сформувати пошуковий запит",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.",
"Input": "", "Input": "",
"Input commands": "Команди вводу",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Ключ", "Key": "Ключ",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Клавіатурні скорочення", "Keyboard shortcuts": "Клавіатурні скорочення",
"Keyboard Shortcuts": "",
"Knowledge": "Знання", "Knowledge": "Знання",
"Knowledge Access": "Доступ до знань", "Knowledge Access": "Доступ до знань",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Завантажувач", "Loader": "Завантажувач",
"Loading Kokoro.js...": "Завантаження Kokoro.js...", "Loading Kokoro.js...": "Завантаження Kokoro.js...",
"Loading...": "Завантаження...", "Loading...": "Завантаження...",
"local": "",
"Local": "Локальний", "Local": "Локальний",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Доступ до місцезнаходження не дозволено", "Location access not allowed": "Доступ до місцезнаходження не дозволено",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "Модель", "Model": "Модель",
@ -1119,8 +1113,6 @@
"Ollama Version": "Версія Ollama", "Ollama Version": "Версія Ollama",
"On": "Увімк", "On": "Увімк",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси", "Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.", "Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Відкрити новий чат",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "ID префікса", "Prefix ID": "ID префікса",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "Попередні 30 днів", "Previous 30 days": "Попередні 30 днів",
"Previous 7 days": "Попередні 7 днів", "Previous 7 days": "Попередні 7 днів",
@ -1398,7 +1388,6 @@
"Select only one model to call": "Оберіть лише одну модель для виклику", "Select only one model to call": "Оберіть лише одну модель для виклику",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення", "Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Надіслати", "Send": "Надіслати",
"Send a Message": "Надіслати повідомлення", "Send a Message": "Надіслати повідомлення",
@ -1440,14 +1429,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Дозволи на обмін", "Sharing Permissions": "Дозволи на обмін",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Показати модель", "Show Model": "Показати модель",
"Show shortcuts": "Показати клавіатурні скорочення",
"Show your support!": "Підтримайте нас!", "Show your support!": "Підтримайте нас!",
"Showcased creativity": "Продемонстрований креатив", "Showcased creativity": "Продемонстрований креатив",
"Sign in": "Увійти", "Sign in": "Увійти",
@ -1482,7 +1469,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Зупинити", "Stop": "Зупинити",
"Stop Generating": "",
"Stop Sequence": "Символ зупинки", "Stop Sequence": "Символ зупинки",
"Stream Chat Response": "Відповідь стрім-чату", "Stream Chat Response": "Відповідь стрім-чату",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1512,7 +1498,6 @@
"Tags Generation": "Генерація тегів", "Tags Generation": "Генерація тегів",
"Tags Generation Prompt": "Підказка для генерації тегів", "Tags Generation Prompt": "Підказка для генерації тегів",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Вибірка без хвоста використовується для зменшення впливу менш ймовірних токенів на результат. Вищий показник (напр., 2.0) зменшить вплив сильніше, тоді як значення 1.0 вимикає цю опцію.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Вибірка без хвоста використовується для зменшення впливу менш ймовірних токенів на результат. Вищий показник (напр., 2.0) зменшить вплив сильніше, тоді як значення 1.0 вимикає цю опцію.",
"Talk to model": "Спілкуватися з моделлю",
"Tap to interrupt": "Натисніть, щоб перервати", "Tap to interrupt": "Натисніть, щоб перервати",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1594,9 +1579,6 @@
"Toast notifications for new updates": "Сповіщення Toast про нові оновлення", "Toast notifications for new updates": "Сповіщення Toast про нові оновлення",
"Today": "Сьогодні", "Today": "Сьогодні",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Переключити налаштування",
"Toggle sidebar": "Переключити бокову панель",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Токен", "Token": "Токен",
"Too verbose": "Занадто докладно", "Too verbose": "Занадто докладно",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ٹاسک ماڈل اس وقت استعمال ہوتا ہے جب چیٹس کے عنوانات اور ویب سرچ سوالات تیار کیے جا رہے ہوں", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ٹاسک ماڈل اس وقت استعمال ہوتا ہے جب چیٹس کے عنوانات اور ویب سرچ سوالات تیار کیے جا رہے ہوں",
"a user": "ایک صارف", "a user": "ایک صارف",
"About": "بارے میں", "About": "بارے میں",
"Accept autocomplete generation / Jump to prompt variable": "",
"Access": "", "Access": "",
"Access Control": "", "Access Control": "",
"Accessible to all users": "", "Accessible to all users": "",
@ -51,7 +50,6 @@
"Add Content": "مواد شامل کریں", "Add Content": "مواد شامل کریں",
"Add content here": "یہاں مواد شامل کریں", "Add content here": "یہاں مواد شامل کریں",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "حسب ضرورت پرامپٹ شامل کریں",
"Add Details": "", "Add Details": "",
"Add Files": "فائلیں شامل کریں", "Add Files": "فائلیں شامل کریں",
"Add Group": "", "Add Group": "",
@ -151,7 +149,6 @@
"Ask": "", "Ask": "",
"Ask a question": "سوال پوچھیں", "Ask a question": "سوال پوچھیں",
"Assistant": "اسسٹنٹ", "Assistant": "اسسٹنٹ",
"Attach file from knowledge": "",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "کردار", "Character": "کردار",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "کوڈ کا نفاذ", "Code execution": "کوڈ کا نفاذ",
@ -331,8 +330,6 @@
"Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا", "Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا",
"Copy": "نقل کریں", "Copy": "نقل کریں",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "آخری کوڈ بلاک نقل کریں",
"Copy last response": "آخری جواب کاپی کریں",
"Copy link": "", "Copy link": "",
"Copy Link": "لنک کاپی کریں", "Copy Link": "لنک کاپی کریں",
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں", "Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
@ -396,7 +393,6 @@
"Delete a model": "ایک ماڈل حذف کریں", "Delete a model": "ایک ماڈل حذف کریں",
"Delete All Chats": "تمام چیٹس حذف کریں", "Delete All Chats": "تمام چیٹس حذف کریں",
"Delete All Models": "", "Delete All Models": "",
"Delete chat": "چیٹ حذف کریں",
"Delete Chat": "چیٹ حذف کریں", "Delete Chat": "چیٹ حذف کریں",
"Delete chat?": "چیٹ حذف کریں؟", "Delete chat?": "چیٹ حذف کریں؟",
"Delete folder?": "کیا فولڈر حذف کریں؟", "Delete folder?": "کیا فولڈر حذف کریں؟",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "چیٹ ان پٹ پر توجہ مرکوز کریں",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا", "Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "", "Generate an image": "",
"Generate Image": "تصویر بنائیں", "Generate Image": "تصویر بنائیں",
"Generate prompt pair": "",
"Generated Image": "", "Generated Image": "",
"Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے", "Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "کمانڈز داخل کریں",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "", "Key": "",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "کی بورڈ شارٹ کٹس", "Keyboard shortcuts": "کی بورڈ شارٹ کٹس",
"Keyboard Shortcuts": "",
"Knowledge": "علم", "Knowledge": "علم",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "", "Loader": "",
"Loading Kokoro.js...": "", "Loading Kokoro.js...": "",
"Loading...": "لوڈ ہو رہا ہے...", "Loading...": "لوڈ ہو رہا ہے...",
"local": "",
"Local": "", "Local": "",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "", "Mistral OCR": "",
"Mistral OCR API Key required.": "", "Mistral OCR API Key required.": "",
"Model": "ماڈل", "Model": "ماڈل",
@ -1119,8 +1113,6 @@
"Ollama Version": "اولاما ورژن", "Ollama Version": "اولاما ورژن",
"On": "چالو", "On": "چالو",
"OneDrive": "", "OneDrive": "",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "", "Only alphanumeric characters and hyphens are allowed": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے", "Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں", "Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "نیا چیٹ کھولیں",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "", "Prefix ID": "",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "پچھلے 30 دن", "Previous 30 days": "پچھلے 30 دن",
"Previous 7 days": "پچھلے 7 دن", "Previous 7 days": "پچھلے 7 دن",
@ -1396,7 +1386,6 @@
"Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں", "Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "منتخب کردہ ماڈل(ز) تصویری ان پٹ کی حمایت نہیں کرتے", "Selected model(s) do not support image inputs": "منتخب کردہ ماڈل(ز) تصویری ان پٹ کی حمایت نہیں کرتے",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "بھیجیں", "Send": "بھیجیں",
"Send a Message": "پیغام بھیجیں", "Send a Message": "پیغام بھیجیں",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "", "Sharing Permissions": "",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "", "Show Model": "",
"Show shortcuts": "شارٹ کٹ دکھائیں",
"Show your support!": "اپنی حمایت دکھائیں!", "Show your support!": "اپنی حمایت دکھائیں!",
"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں", "Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
"Sign in": "سائن ان کریں", "Sign in": "سائن ان کریں",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "روکیں", "Stop": "روکیں",
"Stop Generating": "",
"Stop Sequence": "ترتیب روکیں", "Stop Sequence": "ترتیب روکیں",
"Stream Chat Response": "اسٹریم چیٹ جواب", "Stream Chat Response": "اسٹریم چیٹ جواب",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "", "Tags Generation": "",
"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں", "Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
"Talk to model": "ماڈل سے بات کریں",
"Tap to interrupt": "رکنے کے لئے ٹچ کریں", "Tap to interrupt": "رکنے کے لئے ٹچ کریں",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز", "Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز",
"Today": "آج", "Today": "آج",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "ترتیبات کو تبدیل کریں",
"Toggle sidebar": "سائڈبار کو ٹوگل کریں",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "ٹوکَن", "Token": "ٹوکَن",
"Too verbose": "بہت زیادہ طویل", "Too verbose": "بہت زیادہ طویل",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Вазифа модели чатлар ва веб-қидирув сўровлари учун сарлавҳаларни яратиш каби вазифаларни бажаришда ишлатилади", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Вазифа модели чатлар ва веб-қидирув сўровлари учун сарлавҳаларни яратиш каби вазифаларни бажаришда ишлатилади",
"a user": "фойдаланувчи", "a user": "фойдаланувчи",
"About": "Ҳақида", "About": "Ҳақида",
"Accept autocomplete generation / Jump to prompt variable": "Автоматик тўлдиришни яратишни қабул қилинг / Ўзгарувчига ўтиш",
"Access": "Кириш", "Access": "Кириш",
"Access Control": "Кириш назорати", "Access Control": "Кириш назорати",
"Accessible to all users": "Барча фойдаланувчилар учун очиқ", "Accessible to all users": "Барча фойдаланувчилар учун очиқ",
@ -51,7 +50,6 @@
"Add Content": "Контент қўшиш", "Add Content": "Контент қўшиш",
"Add content here": "Бу ерга таркиб қўшинг", "Add content here": "Бу ерга таркиб қўшинг",
"Add Custom Parameter": "Махсус параметр қўшинг", "Add Custom Parameter": "Махсус параметр қўшинг",
"Add custom prompt": "Махсус таклиф қўшинг",
"Add Details": "", "Add Details": "",
"Add Files": "Файлларни қўшиш", "Add Files": "Файлларни қўшиш",
"Add Group": "Гуруҳ қўшиш", "Add Group": "Гуруҳ қўшиш",
@ -151,7 +149,6 @@
"Ask": "Сўранг", "Ask": "Сўранг",
"Ask a question": "Савол беринг", "Ask a question": "Савол беринг",
"Assistant": "Ёрдамчи", "Assistant": "Ёрдамчи",
"Attach file from knowledge": "Билимдан файлни бириктиринг",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Канал номи", "Channel Name": "Канал номи",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Каналлар", "Channels": "Каналлар",
"Character": "Характер", "Character": "Характер",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Коднинг бажарилиши", "Code execution": "Коднинг бажарилиши",
@ -331,8 +330,6 @@
"Copied to clipboard": "Буферга нусхаланди", "Copied to clipboard": "Буферга нусхаланди",
"Copy": "Нусхалаш", "Copy": "Нусхалаш",
"Copy Formatted Text": "Форматланган матнни нусхалаш", "Copy Formatted Text": "Форматланган матнни нусхалаш",
"Copy last code block": "Охирги код блокидан нусха олинг",
"Copy last response": "Охирги жавобдан нусха олинг",
"Copy link": "", "Copy link": "",
"Copy Link": "Ҳаволани нусхалаш", "Copy Link": "Ҳаволани нусхалаш",
"Copy to clipboard": "Буферга нусхалаш", "Copy to clipboard": "Буферга нусхалаш",
@ -396,7 +393,6 @@
"Delete a model": "Моделни ўчириш", "Delete a model": "Моделни ўчириш",
"Delete All Chats": "Барча суҳбатларни ўчириш", "Delete All Chats": "Барча суҳбатларни ўчириш",
"Delete All Models": "Барча моделларни ўчириш", "Delete All Models": "Барча моделларни ўчириш",
"Delete chat": "Чатни ўчириш",
"Delete Chat": "Чатни ўчириш", "Delete Chat": "Чатни ўчириш",
"Delete chat?": "Чат ўчирилсинми?", "Delete chat?": "Чат ўчирилсинми?",
"Delete folder?": "Жилд ўчирилсинми?", "Delete folder?": "Жилд ўчирилсинми?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили", "Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили",
"Firecrawl API Key": "Firecrawl АПИ калити", "Firecrawl API Key": "Firecrawl АПИ калити",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Чат киритишга фокуслаш",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Жилд муваффақиятли ўчирилди", "Folder deleted successfully": "Жилд муваффақиятли ўчирилди",
@ -786,7 +781,6 @@
"Generate": "Яратиш", "Generate": "Яратиш",
"Generate an image": "Тасвир яратиш", "Generate an image": "Тасвир яратиш",
"Generate Image": "Расм яратиш", "Generate Image": "Расм яратиш",
"Generate prompt pair": "Тезкор жуфтликни яратинг",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Қидирув сўрови яратилмоқда", "Generating search query": "Қидирув сўрови яратилмоқда",
"Generating...": "Яратилмоқда...", "Generating...": "Яратилмоқда...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.",
"Input": "", "Input": "",
"Input commands": "Кириш буйруқлари",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Калит", "Key": "Калит",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Клавиатура ёрлиқлари", "Keyboard shortcuts": "Клавиатура ёрлиқлари",
"Keyboard Shortcuts": "",
"Knowledge": "Билим", "Knowledge": "Билим",
"Knowledge Access": "Билимга кириш", "Knowledge Access": "Билимга кириш",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Юклагич", "Loader": "Юклагич",
"Loading Kokoro.js...": "Кокоро.жс юкланмоқда...", "Loading Kokoro.js...": "Кокоро.жс юкланмоқда...",
"Loading...": "Кокоро.жс юкланмоқда...", "Loading...": "Кокоро.жс юкланмоқда...",
"local": "",
"Local": "Маҳаллий", "Local": "Маҳаллий",
"Local Task Model": "Маҳаллий вазифа модели", "Local Task Model": "Маҳаллий вазифа модели",
"Location access not allowed": "Жойлашувга рухсат берилмаган", "Location access not allowed": "Жойлашувга рухсат берилмаган",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft ОнеДриве (иш/мактаб)", "Microsoft OneDrive (work/school)": "Microsoft ОнеДриве (иш/мактаб)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral ОCР", "Mistral OCR": "Mistral ОCР",
"Mistral OCR API Key required.": "Mistral ОCР АПИ калити талаб қилинади.", "Mistral OCR API Key required.": "Mistral ОCР АПИ калити талаб қилинади.",
"Model": "Модел", "Model": "Модел",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama версияси", "Ollama Version": "Ollama версияси",
"On": "Ёниқ", "On": "Ёниқ",
"OneDrive": "ОнеДриве", "OneDrive": "ОнеДриве",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади", "Only alphanumeric characters and hyphens are allowed": "Фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Буйруқлар қаторида фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Буйруқлар қаторида фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Фақат тўпламларни таҳрирлаш мумкин, ҳужжатларни таҳрирлаш/қўшиш учун янги билимлар базасини яратинг.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Фақат тўпламларни таҳрирлаш мумкин, ҳужжатларни таҳрирлаш/қўшиш учун янги билимлар базасини яратинг.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Янги чат очинг",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.", "Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Префикс идентификатори", "Prefix ID": "Префикс идентификатори",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс идентификатори модел идентификаторларига префикс қўшиш орқали бошқа уланишлар билан зиддиятларни олдини олиш учун ишлатилади - ўчириш учун бўш қолдиринг.", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс идентификатори модел идентификаторларига префикс қўшиш орқали бошқа уланишлар билан зиддиятларни олдини олиш учун ишлатилади - ўчириш учун бўш қолдиринг.",
"Prevent file creation": "",
"Preview": "Кўриб чиқиш", "Preview": "Кўриб чиқиш",
"Previous 30 days": "Олдинги 30 кун", "Previous 30 days": "Олдинги 30 кун",
"Previous 7 days": "Олдинги 7 кун", "Previous 7 days": "Олдинги 7 кун",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг", "Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Танланган модел(лар) тасвир киритишни қўллаб-қувватламайди", "Selected model(s) do not support image inputs": "Танланган модел(лар) тасвир киритишни қўллаб-қувватламайди",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Юбориш", "Send": "Юбориш",
"Send a Message": "Хабар юбориш", "Send a Message": "Хабар юбориш",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Рухсатларни алмашиш", "Sharing Permissions": "Рухсатларни алмашиш",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Моделни кўрсатиш", "Show Model": "Моделни кўрсатиш",
"Show shortcuts": "Ёрлиқларни кўрсатиш",
"Show your support!": "Қўллаб-қувватланг!", "Show your support!": "Қўллаб-қувватланг!",
"Showcased creativity": "Кўрсатилган ижодкорлик", "Showcased creativity": "Кўрсатилган ижодкорлик",
"Sign in": "тизимга кириш", "Sign in": "тизимга кириш",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "СТОП", "Stop": "СТОП",
"Stop Generating": "",
"Stop Sequence": "Кетма-кетликни тўхтатиш", "Stop Sequence": "Кетма-кетликни тўхтатиш",
"Stream Chat Response": "Chat жавобини юбориш", "Stream Chat Response": "Chat жавобини юбориш",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Теглар яратиш", "Tags Generation": "Теглар яратиш",
"Tags Generation Prompt": "Теглар яратиш таклифи", "Tags Generation Prompt": "Теглар яратиш таклифи",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Чиқишдан камроқ эҳтимолий токенларнинг таъсирини камайтириш учун қуйруқсиз намуна олиш қўлланилади. Юқори қиймат (масалан, 2.0) таъсирни кўпроқ камайтиради, 1.0 қиймати эса бу созламани ўчириб қўяди.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Чиқишдан камроқ эҳтимолий токенларнинг таъсирини камайтириш учун қуйруқсиз намуна олиш қўлланилади. Юқори қиймат (масалан, 2.0) таъсирни кўпроқ камайтиради, 1.0 қиймати эса бу созламани ўчириб қўяди.",
"Talk to model": "Модел билан гаплашинг",
"Tap to interrupt": "Тўхтатиш учун босинг", "Tap to interrupt": "Тўхтатиш учун босинг",
"Task List": "", "Task List": "",
"Task Model": "Вазифа модели", "Task Model": "Вазифа модели",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар", "Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар",
"Today": "Бугун", "Today": "Бугун",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Қидирувни алмаштириш",
"Toggle settings": "Созламаларни алмаштириш",
"Toggle sidebar": "Ён панелни алмаштириш",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Токен", "Token": "Токен",
"Too verbose": "Жуда батафсил", "Too verbose": "Жуда батафсил",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Vazifa modeli chatlar va veb-qidiruv so'rovlari uchun sarlavhalarni yaratish kabi vazifalarni bajarishda ishlatiladi", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Vazifa modeli chatlar va veb-qidiruv so'rovlari uchun sarlavhalarni yaratish kabi vazifalarni bajarishda ishlatiladi",
"a user": "foydalanuvchi", "a user": "foydalanuvchi",
"About": "Haqida", "About": "Haqida",
"Accept autocomplete generation / Jump to prompt variable": "Avtomatik to'ldirishni yaratishni qabul qiling / O'zgaruvchiga o'tish",
"Access": "Kirish", "Access": "Kirish",
"Access Control": "Kirish nazorati", "Access Control": "Kirish nazorati",
"Accessible to all users": "Barcha foydalanuvchilar uchun ochiq", "Accessible to all users": "Barcha foydalanuvchilar uchun ochiq",
@ -51,7 +50,6 @@
"Add Content": "Kontent qo'shish", "Add Content": "Kontent qo'shish",
"Add content here": "Bu yerga tarkib qo'shing", "Add content here": "Bu yerga tarkib qo'shing",
"Add Custom Parameter": "Maxsus parametr qo'shing", "Add Custom Parameter": "Maxsus parametr qo'shing",
"Add custom prompt": "Maxsus taklif qo'shing",
"Add Details": "", "Add Details": "",
"Add Files": "Fayllarni qo'shish", "Add Files": "Fayllarni qo'shish",
"Add Group": "Guruh qo'shish", "Add Group": "Guruh qo'shish",
@ -151,7 +149,6 @@
"Ask": "So'rang", "Ask": "So'rang",
"Ask a question": "Savol bering", "Ask a question": "Savol bering",
"Assistant": "Yordamchi", "Assistant": "Yordamchi",
"Attach file from knowledge": "Bilimdan faylni biriktiring",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Kanal nomi", "Channel Name": "Kanal nomi",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kanallar", "Channels": "Kanallar",
"Character": "Xarakter", "Character": "Xarakter",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodning bajarilishi", "Code execution": "Kodning bajarilishi",
@ -331,8 +330,6 @@
"Copied to clipboard": "Buferga nusxalandi", "Copied to clipboard": "Buferga nusxalandi",
"Copy": "Nusxalash", "Copy": "Nusxalash",
"Copy Formatted Text": "Formatlangan matnni nusxalash", "Copy Formatted Text": "Formatlangan matnni nusxalash",
"Copy last code block": "Oxirgi kod blokidan nusxa oling",
"Copy last response": "Oxirgi javobdan nusxa oling",
"Copy link": "", "Copy link": "",
"Copy Link": "Havolani nusxalash", "Copy Link": "Havolani nusxalash",
"Copy to clipboard": "Buferga nusxalash", "Copy to clipboard": "Buferga nusxalash",
@ -396,7 +393,6 @@
"Delete a model": "Modelni o'chirish", "Delete a model": "Modelni o'chirish",
"Delete All Chats": "Barcha suhbatlarni o'chirish", "Delete All Chats": "Barcha suhbatlarni o'chirish",
"Delete All Models": "Barcha modellarni o'chirish", "Delete All Models": "Barcha modellarni o'chirish",
"Delete chat": "Chatni o'chirish",
"Delete Chat": "Chatni oʻchirish", "Delete Chat": "Chatni oʻchirish",
"Delete chat?": "Chat oʻchirilsinmi?", "Delete chat?": "Chat oʻchirilsinmi?",
"Delete folder?": "Jild oʻchirilsinmi?", "Delete folder?": "Jild oʻchirilsinmi?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API asosiy URL manzili", "Firecrawl API Base URL": "Firecrawl API asosiy URL manzili",
"Firecrawl API Key": "Firecrawl API kaliti", "Firecrawl API Key": "Firecrawl API kaliti",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Chat kiritishga fokuslash",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi", "Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi",
@ -786,7 +781,6 @@
"Generate": "Yaratish", "Generate": "Yaratish",
"Generate an image": "Tasvir yaratish", "Generate an image": "Tasvir yaratish",
"Generate Image": "Rasm yaratish", "Generate Image": "Rasm yaratish",
"Generate prompt pair": "Tezkor juftlikni yarating",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Qidiruv so'rovi yaratilmoqda", "Generating search query": "Qidiruv so'rovi yaratilmoqda",
"Generating...": "Yaratilmoqda...", "Generating...": "Yaratilmoqda...",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kompleks qayta ishlash uchun butun tarkibni kontekst sifatida kiriting, bu murakkab so'rovlar uchun tavsiya etiladi.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kompleks qayta ishlash uchun butun tarkibni kontekst sifatida kiriting, bu murakkab so'rovlar uchun tavsiya etiladi.",
"Input": "", "Input": "",
"Input commands": "Kirish buyruqlari",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Kalit", "Key": "Kalit",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Klaviatura yorliqlari", "Keyboard shortcuts": "Klaviatura yorliqlari",
"Keyboard Shortcuts": "",
"Knowledge": "Bilim", "Knowledge": "Bilim",
"Knowledge Access": "Bilimga kirish", "Knowledge Access": "Bilimga kirish",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Yuklagich", "Loader": "Yuklagich",
"Loading Kokoro.js...": "Kokoro.js yuklanmoqda...", "Loading Kokoro.js...": "Kokoro.js yuklanmoqda...",
"Loading...": "...", "Loading...": "...",
"local": "",
"Local": "Mahalliy", "Local": "Mahalliy",
"Local Task Model": "Mahalliy vazifa modeli", "Local Task Model": "Mahalliy vazifa modeli",
"Location access not allowed": "Joylashuvga ruxsat berilmagan", "Location access not allowed": "Joylashuvga ruxsat berilmagan",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "Microsoft OneDrive (ish/maktab)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (ish/maktab)",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Mistral OCR API kaliti talab qilinadi.", "Mistral OCR API Key required.": "Mistral OCR API kaliti talab qilinadi.",
"Model": "Model", "Model": "Model",
@ -1119,8 +1113,6 @@
"Ollama Version": "Ollama versiyasi", "Ollama Version": "Ollama versiyasi",
"On": "Yoniq", "On": "Yoniq",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Faqat harf-raqamli belgilar va defislarga ruxsat beriladi", "Only alphanumeric characters and hyphens are allowed": "Faqat harf-raqamli belgilar va defislarga ruxsat beriladi",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Buyruqlar qatorida faqat harf-raqamli belgilar va defislarga ruxsat beriladi.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Buyruqlar qatorida faqat harf-raqamli belgilar va defislarga ruxsat beriladi.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Faqat to'plamlarni tahrirlash mumkin, hujjatlarni tahrirlash/qo'shish uchun yangi bilimlar bazasini yarating.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Faqat to'plamlarni tahrirlash mumkin, hujjatlarni tahrirlash/qo'shish uchun yangi bilimlar bazasini yarating.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Yangi chat oching",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Prefiks identifikatori", "Prefix ID": "Prefiks identifikatori",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks identifikatori model identifikatorlariga prefiks qo'shish orqali boshqa ulanishlar bilan ziddiyatlarni oldini olish uchun ishlatiladi - o'chirish uchun bo'sh qoldiring.", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks identifikatori model identifikatorlariga prefiks qo'shish orqali boshqa ulanishlar bilan ziddiyatlarni oldini olish uchun ishlatiladi - o'chirish uchun bo'sh qoldiring.",
"Prevent file creation": "",
"Preview": "Korib chiqish", "Preview": "Korib chiqish",
"Previous 30 days": "Oldingi 30 kun", "Previous 30 days": "Oldingi 30 kun",
"Previous 7 days": "Oldingi 7 kun", "Previous 7 days": "Oldingi 7 kun",
@ -1396,7 +1386,6 @@
"Select only one model to call": "Qo'ng'iroq qilish uchun faqat bitta modelni tanlang", "Select only one model to call": "Qo'ng'iroq qilish uchun faqat bitta modelni tanlang",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Tanlangan model(lar) tasvir kiritishni qollab-quvvatlamaydi", "Selected model(s) do not support image inputs": "Tanlangan model(lar) tasvir kiritishni qollab-quvvatlamaydi",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Yuborish", "Send": "Yuborish",
"Send a Message": "Xabar yuborish", "Send a Message": "Xabar yuborish",
@ -1438,14 +1427,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Ruxsatlarni almashish", "Sharing Permissions": "Ruxsatlarni almashish",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 Formatting Toolbar": "", "Show Formatting Toolbar": "",
"Show image preview": "", "Show image preview": "",
"Show Model": "Modelni ko'rsatish", "Show Model": "Modelni ko'rsatish",
"Show shortcuts": "Yorliqlarni ko'rsatish",
"Show your support!": "Qo'llab-quvvatlang!", "Show your support!": "Qo'llab-quvvatlang!",
"Showcased creativity": "Ko'rsatilgan ijodkorlik", "Showcased creativity": "Ko'rsatilgan ijodkorlik",
"Sign in": "tizimga kirish", "Sign in": "tizimga kirish",
@ -1480,7 +1467,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "STOP", "Stop": "STOP",
"Stop Generating": "",
"Stop Sequence": "Ketma-ketlikni to'xtatish", "Stop Sequence": "Ketma-ketlikni to'xtatish",
"Stream Chat Response": "Stream Chat javobi", "Stream Chat Response": "Stream Chat javobi",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1510,7 +1496,6 @@
"Tags Generation": "Teglar yaratish", "Tags Generation": "Teglar yaratish",
"Tags Generation Prompt": "Teglar yaratish taklifi", "Tags Generation Prompt": "Teglar yaratish taklifi",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Chiqishdan kamroq ehtimoliy tokenlarning ta'sirini kamaytirish uchun quyruqsiz namuna olish qo'llaniladi. Yuqori qiymat (masalan, 2.0) taʼsirni koʻproq kamaytiradi, 1.0 qiymati esa bu sozlamani oʻchirib qoʻyadi.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Chiqishdan kamroq ehtimoliy tokenlarning ta'sirini kamaytirish uchun quyruqsiz namuna olish qo'llaniladi. Yuqori qiymat (masalan, 2.0) taʼsirni koʻproq kamaytiradi, 1.0 qiymati esa bu sozlamani oʻchirib qoʻyadi.",
"Talk to model": "Model bilan gaplashing",
"Tap to interrupt": "Toxtatish uchun bosing", "Tap to interrupt": "Toxtatish uchun bosing",
"Task List": "", "Task List": "",
"Task Model": "Vazifa modeli", "Task Model": "Vazifa modeli",
@ -1592,9 +1577,6 @@
"Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar", "Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar",
"Today": "Bugun", "Today": "Bugun",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "Qidiruvni almashtirish",
"Toggle settings": "Sozlamalarni almashtirish",
"Toggle sidebar": "Yon panelni almashtirish",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Juda batafsil", "Too verbose": "Juda batafsil",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Mô hình tác vụ được sử dụng khi thực hiện các tác vụ như tạo tiêu đề cho cuộc trò chuyện và truy vấn tìm kiếm trên web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Mô hình tác vụ được sử dụng khi thực hiện các tác vụ như tạo tiêu đề cho cuộc trò chuyện và truy vấn tìm kiếm trên web",
"a user": "người sử dụng", "a user": "người sử dụng",
"About": "Giới thiệu", "About": "Giới thiệu",
"Accept autocomplete generation / Jump to prompt variable": "Chấp nhận tạo tự động hoàn thành / Chuyển đến biến prompt",
"Access": "Truy cập", "Access": "Truy cập",
"Access Control": "Kiểm soát truy cập", "Access Control": "Kiểm soát truy cập",
"Accessible to all users": "Truy cập được bởi tất cả người dùng", "Accessible to all users": "Truy cập được bởi tất cả người dùng",
@ -51,7 +50,6 @@
"Add Content": "Thêm nội dung", "Add Content": "Thêm nội dung",
"Add content here": "Thêm nội dung tại đây", "Add content here": "Thêm nội dung tại đây",
"Add Custom Parameter": "", "Add Custom Parameter": "",
"Add custom prompt": "Thêm prompt tùy chỉnh",
"Add Details": "", "Add Details": "",
"Add Files": "Thêm tệp", "Add Files": "Thêm tệp",
"Add Group": "Thêm Nhóm", "Add Group": "Thêm Nhóm",
@ -151,7 +149,6 @@
"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ý",
"Attach file from knowledge": "Đính kèm tệp từ kiến thức",
"Attach Knowledge": "", "Attach Knowledge": "",
"Attach Notes": "", "Attach Notes": "",
"Attach Webpage": "", "Attach Webpage": "",
@ -221,6 +218,7 @@
"Channel": "", "Channel": "",
"Channel deleted successfully": "", "Channel deleted successfully": "",
"Channel Name": "Tên Kênh", "Channel Name": "Tên Kênh",
"Channel name cannot be empty.": "",
"Channel updated successfully": "", "Channel updated successfully": "",
"Channels": "Kênh", "Channels": "Kênh",
"Character": "Nhân vật", "Character": "Nhân vật",
@ -272,6 +270,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"cloud": "",
"CMU ARCTIC speaker embedding name": "", "CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Thực thi mã", "Code execution": "Thực thi mã",
@ -331,8 +330,6 @@
"Copied to clipboard": "Đã sao chép vào clipboard", "Copied to clipboard": "Đã sao chép vào clipboard",
"Copy": "Sao chép", "Copy": "Sao chép",
"Copy Formatted Text": "", "Copy Formatted Text": "",
"Copy last code block": "Sao chép khối mã cuối cùng",
"Copy last response": "Sao chép phản hồi cuối cùng",
"Copy link": "", "Copy link": "",
"Copy Link": "Sao chép link", "Copy Link": "Sao chép link",
"Copy to clipboard": "Sao chép vào clipboard", "Copy to clipboard": "Sao chép vào clipboard",
@ -396,7 +393,6 @@
"Delete a model": "Xóa mô hình", "Delete a model": "Xóa mô hình",
"Delete All Chats": "Xóa mọi cuộc Chat", "Delete All Chats": "Xóa mọi cuộc Chat",
"Delete All Models": "Xóa Tất cả Mô hình", "Delete All Models": "Xóa Tất cả Mô hình",
"Delete chat": "Xóa nội dung chat",
"Delete Chat": "Xóa chat", "Delete Chat": "Xóa chat",
"Delete chat?": "Xóa chat?", "Delete chat?": "Xóa chat?",
"Delete folder?": "Xóa thư mục?", "Delete folder?": "Xóa thư mục?",
@ -739,7 +735,6 @@
"Firecrawl API Base URL": "", "Firecrawl API Base URL": "",
"Firecrawl API Key": "", "Firecrawl API Key": "",
"Floating Quick Actions": "", "Floating Quick Actions": "",
"Focus chat input": "Tập trung vào nội dung chat",
"Folder": "", "Folder": "",
"Folder Background Image": "", "Folder Background Image": "",
"Folder deleted successfully": "Xóa thư mục thành công", "Folder deleted successfully": "Xóa thư mục thành công",
@ -786,7 +781,6 @@
"Generate": "", "Generate": "",
"Generate an image": "Tạo một hình ảnh", "Generate an image": "Tạo một hình ảnh",
"Generate Image": "Sinh ảnh", "Generate Image": "Sinh ảnh",
"Generate prompt pair": "Tạo cặp prompt",
"Generated Image": "", "Generated Image": "",
"Generating search query": "Tạo truy vấn tìm kiếm", "Generating search query": "Tạo truy vấn tìm kiếm",
"Generating...": "", "Generating...": "",
@ -870,7 +864,6 @@
"Initials": "", "Initials": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.",
"Input": "", "Input": "",
"Input commands": "Nhập các câu lệnh",
"Input Key (e.g. text, unet_name, steps)": "", "Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
@ -909,6 +902,7 @@
"Key": "Khóa", "Key": "Khóa",
"Key is required": "", "Key is required": "",
"Keyboard shortcuts": "Phím tắt", "Keyboard shortcuts": "Phím tắt",
"Keyboard Shortcuts": "",
"Knowledge": "Kiến thức", "Knowledge": "Kiến thức",
"Knowledge Access": "Truy cập Kiến thức", "Knowledge Access": "Truy cập Kiến thức",
"Knowledge Base": "", "Knowledge Base": "",
@ -952,6 +946,7 @@
"Loader": "Trình tải", "Loader": "Trình tải",
"Loading Kokoro.js...": "Đang tải Kokoro.js...", "Loading Kokoro.js...": "Đang tải Kokoro.js...",
"Loading...": "Đang tải...", "Loading...": "Đang tải...",
"local": "",
"Local": "Cục bộ", "Local": "Cục bộ",
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Không cho phép truy cập vị trí", "Location access not allowed": "Không cho phép truy cập vị trí",
@ -998,7 +993,6 @@
"Microsoft OneDrive (work/school)": "", "Microsoft OneDrive (work/school)": "",
"MinerU": "", "MinerU": "",
"MinerU API Key required for Cloud API mode.": "", "MinerU API Key required for Cloud API mode.": "",
"minerU managed (Cloud API)": "",
"Mistral OCR": "Mistral OCR", "Mistral OCR": "Mistral OCR",
"Mistral OCR API Key required.": "Yêu cầu Khóa API Mistral OCR.", "Mistral OCR API Key required.": "Yêu cầu Khóa API Mistral OCR.",
"Model": "Mô hình", "Model": "Mô hình",
@ -1119,8 +1113,6 @@
"Ollama Version": "Phiên bản Ollama", "Ollama Version": "Phiên bản Ollama",
"On": "Bật", "On": "Bật",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
"Only active when the chat input is in focus and an LLM is generating a response.": "",
"Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối", "Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.",
@ -1136,7 +1128,6 @@
"Open modal to configure connection": "", "Open modal to configure connection": "",
"Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Floating Quick Actions": "",
"Open Modal To Manage Image Compression": "", "Open Modal To Manage Image Compression": "",
"Open new chat": "Mở nội dung chat mới",
"Open Sidebar": "", "Open Sidebar": "",
"Open User Profile Menu": "", "Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI can use tools provided by any OpenAPI server.": "",
@ -1225,7 +1216,6 @@
"Prefer not to say": "", "Prefer not to say": "",
"Prefix ID": "Tiền tố ID", "Prefix ID": "Tiền tố ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
"Prevent file creation": "",
"Preview": "", "Preview": "",
"Previous 30 days": "30 ngày trước", "Previous 30 days": "30 ngày trước",
"Previous 7 days": "7 ngày trước", "Previous 7 days": "7 ngày trước",
@ -1395,7 +1385,6 @@
"Select only one model to call": "Chọn model để gọi", "Select only one model to call": "Chọn model để gọi",
"Select view": "", "Select view": "",
"Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh", "Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh",
"Self-Hosted": "",
"semantic": "", "semantic": "",
"Send": "Gửi", "Send": "Gửi",
"Send a Message": "Gửi yêu cầu", "Send a Message": "Gửi yêu cầu",
@ -1437,14 +1426,12 @@
"Share your background and interests": "", "Share your background and interests": "",
"Shared with you": "", "Shared with you": "",
"Sharing Permissions": "Quyền Chia sẻ", "Sharing Permissions": "Quyền Chia sẻ",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
"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 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",
"Show shortcuts": "Hiển thị phím tắt",
"Show your support!": "Thể hiện sự ủng hộ của bạn!", "Show your support!": "Thể hiện sự ủng hộ của bạn!",
"Showcased creativity": "Thể hiện sự sáng tạo", "Showcased creativity": "Thể hiện sự sáng tạo",
"Sign in": "Đăng nhập", "Sign in": "Đăng nhập",
@ -1479,7 +1466,6 @@
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "Dừng", "Stop": "Dừng",
"Stop Generating": "",
"Stop Sequence": "Trình tự Dừng", "Stop Sequence": "Trình tự Dừng",
"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat", "Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
"Stream Delta Chunk Size": "", "Stream Delta Chunk Size": "",
@ -1509,7 +1495,6 @@
"Tags Generation": "Tạo Thẻ", "Tags Generation": "Tạo Thẻ",
"Tags Generation Prompt": "Prompt Tạo Thẻ", "Tags Generation Prompt": "Prompt Tạo Thẻ",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Lấy mẫu không đuôi (tail free sampling) được sử dụng để giảm tác động của các token ít có khả năng xuất hiện trong đầu ra. Giá trị cao hơn (ví dụ: 2.0) sẽ giảm tác động nhiều hơn, trong khi giá trị 1.0 sẽ tắt cài đặt này.", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Lấy mẫu không đuôi (tail free sampling) được sử dụng để giảm tác động của các token ít có khả năng xuất hiện trong đầu ra. Giá trị cao hơn (ví dụ: 2.0) sẽ giảm tác động nhiều hơn, trong khi giá trị 1.0 sẽ tắt cài đặt này.",
"Talk to model": "Nói chuyện với mô hình",
"Tap to interrupt": "Chạm để ngừng", "Tap to interrupt": "Chạm để ngừng",
"Task List": "", "Task List": "",
"Task Model": "", "Task Model": "",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "Thông báo nhanh cho các cập nhật mới", "Toast notifications for new updates": "Thông báo nhanh cho các cập nhật mới",
"Today": "Hôm nay", "Today": "Hôm nay",
"Today at {{LOCALIZED_TIME}}": "", "Today at {{LOCALIZED_TIME}}": "",
"Toggle search": "",
"Toggle settings": "Bật/tắt cài đặt",
"Toggle sidebar": "Bật/tắt thanh bên",
"Toggle whether current connection is active.": "", "Toggle whether current connection is active.": "",
"Token": "Token", "Token": "Token",
"Too verbose": "Quá dài dòng", "Too verbose": "Quá dài dòng",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "任务模型用于执行生成对话标题和联网搜索查询等任务", "A task model is used when performing tasks such as generating titles for chats and web search queries": "任务模型用于执行生成对话标题和联网搜索查询等任务",
"a user": "用户", "a user": "用户",
"About": "关于", "About": "关于",
"Accept autocomplete generation / Jump to prompt variable": "接受自动补全内容 / 跳转到提示词变量",
"Access": "访问", "Access": "访问",
"Access Control": "访问控制", "Access Control": "访问控制",
"Accessible to all users": "对所有用户开放", "Accessible to all users": "对所有用户开放",
@ -51,7 +50,6 @@
"Add Content": "添加内容", "Add Content": "添加内容",
"Add content here": "在此添加内容", "Add content here": "在此添加内容",
"Add Custom Parameter": "增加自定义参数", "Add Custom Parameter": "增加自定义参数",
"Add custom prompt": "添加自定义提示词",
"Add Details": "丰富细节", "Add Details": "丰富细节",
"Add Files": "添加文件", "Add Files": "添加文件",
"Add Group": "添加权限组", "Add Group": "添加权限组",
@ -151,7 +149,6 @@
"Ask": "提问", "Ask": "提问",
"Ask a question": "提问", "Ask a question": "提问",
"Assistant": "助手", "Assistant": "助手",
"Attach file from knowledge": "从知识库中选择文件",
"Attach Knowledge": "引用知识库", "Attach Knowledge": "引用知识库",
"Attach Notes": "引用笔记", "Attach Notes": "引用笔记",
"Attach Webpage": "引用网页", "Attach Webpage": "引用网页",
@ -221,6 +218,7 @@
"Channel": "频道", "Channel": "频道",
"Channel deleted successfully": "删除频道成功", "Channel deleted successfully": "删除频道成功",
"Channel Name": "频道名称", "Channel Name": "频道名称",
"Channel name cannot be empty.": "",
"Channel updated successfully": "更新频道成功", "Channel updated successfully": "更新频道成功",
"Channels": "频道", "Channels": "频道",
"Character": "字符", "Character": "字符",
@ -332,8 +330,6 @@
"Copied to clipboard": "已复制到剪贴板", "Copied to clipboard": "已复制到剪贴板",
"Copy": "复制", "Copy": "复制",
"Copy Formatted Text": "复制文本时包含特殊格式", "Copy Formatted Text": "复制文本时包含特殊格式",
"Copy last code block": "复制最后一个代码块中的代码",
"Copy last response": "复制最后一次回复内容",
"Copy link": "复制链接", "Copy link": "复制链接",
"Copy Link": "复制链接", "Copy Link": "复制链接",
"Copy to clipboard": "复制到剪贴板", "Copy to clipboard": "复制到剪贴板",
@ -397,7 +393,6 @@
"Delete a model": "删除模型", "Delete a model": "删除模型",
"Delete All Chats": "删除所有对话记录", "Delete All Chats": "删除所有对话记录",
"Delete All Models": "删除所有模型", "Delete All Models": "删除所有模型",
"Delete chat": "删除对话记录",
"Delete Chat": "删除对话记录", "Delete Chat": "删除对话记录",
"Delete chat?": "要删除此对话记录吗?", "Delete chat?": "要删除此对话记录吗?",
"Delete folder?": "要删除此分组吗?", "Delete folder?": "要删除此分组吗?",
@ -740,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API URL", "Firecrawl API Base URL": "Firecrawl API URL",
"Firecrawl API Key": "Firecrawl API 密钥", "Firecrawl API Key": "Firecrawl API 密钥",
"Floating Quick Actions": "快捷操作浮窗", "Floating Quick Actions": "快捷操作浮窗",
"Focus chat input": "激活对话输入框",
"Folder": "分组", "Folder": "分组",
"Folder Background Image": "分组背景图", "Folder Background Image": "分组背景图",
"Folder deleted successfully": "分组删除成功", "Folder deleted successfully": "分组删除成功",
@ -787,7 +781,6 @@
"Generate": "生成", "Generate": "生成",
"Generate an image": "生成图像", "Generate an image": "生成图像",
"Generate Image": "生成图像", "Generate Image": "生成图像",
"Generate prompt pair": "生成提示对",
"Generated Image": "已生成图像", "Generated Image": "已生成图像",
"Generating search query": "生成搜索查询", "Generating search query": "生成搜索查询",
"Generating...": "生成中...", "Generating...": "生成中...",
@ -871,7 +864,6 @@
"Initials": "姓名缩写", "Initials": "姓名缩写",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询",
"Input": "输入", "Input": "输入",
"Input commands": "输入命令",
"Input Key (e.g. text, unet_name, steps)": "输入键名例如text, unet_name, steps", "Input Key (e.g. text, unet_name, steps)": "输入键名例如text, unet_name, steps",
"Input Variables": "插入变量", "Input Variables": "插入变量",
"Insert": "插入", "Insert": "插入",
@ -910,6 +902,7 @@
"Key": "密匙", "Key": "密匙",
"Key is required": "密匙是必填项。", "Key is required": "密匙是必填项。",
"Keyboard shortcuts": "键盘快捷键", "Keyboard shortcuts": "键盘快捷键",
"Keyboard Shortcuts": "",
"Knowledge": "知识库", "Knowledge": "知识库",
"Knowledge Access": "访问知识库", "Knowledge Access": "访问知识库",
"Knowledge Base": "知识库", "Knowledge Base": "知识库",
@ -1120,8 +1113,6 @@
"Ollama Version": "Ollama 版本", "Ollama Version": "Ollama 版本",
"On": "开启", "On": "开启",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "仅在启用“粘贴大文本为文件”功能时生效。",
"Only active when the chat input is in focus and an LLM is generating a response.": "仅在对话输入框激活且大语言模型正在生成回复时生效。",
"Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)", "Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)",
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。", "Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。", "Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
@ -1137,7 +1128,6 @@
"Open modal to configure connection": "打开外部连接配置弹窗", "Open modal to configure connection": "打开外部连接配置弹窗",
"Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗", "Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗",
"Open Modal To Manage Image Compression": "打开图片压缩配置窗口", "Open Modal To Manage Image Compression": "打开图片压缩配置窗口",
"Open new chat": "打开新对话",
"Open Sidebar": "展开侧边栏", "Open Sidebar": "展开侧边栏",
"Open User Profile Menu": "打开个人资料菜单", "Open User Profile Menu": "打开个人资料菜单",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。",
@ -1226,7 +1216,6 @@
"Prefer not to say": "暂不透露", "Prefer not to say": "暂不透露",
"Prefix ID": "模型 ID 前缀", "Prefix ID": "模型 ID 前缀",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "在模型 ID 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "在模型 ID 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。",
"Prevent file creation": "阻止文件创建",
"Preview": "预览", "Preview": "预览",
"Previous 30 days": "过去 30 天", "Previous 30 days": "过去 30 天",
"Previous 7 days": "过去 7 天", "Previous 7 days": "过去 7 天",
@ -1437,14 +1426,12 @@
"Share your background and interests": "分享您的经历和兴趣爱好", "Share your background and interests": "分享您的经历和兴趣爱好",
"Shared with you": "已共享给您", "Shared with you": "已共享给您",
"Sharing Permissions": "共享权限", "Sharing Permissions": "共享权限",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "带星号 (*) 的快捷键受场景限制,仅在特定条件下生效。",
"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 Formatting Toolbar": "显示文本格式工具栏", "Show Formatting Toolbar": "显示文本格式工具栏",
"Show image preview": "显示图像预览", "Show image preview": "显示图像预览",
"Show Model": "显示模型", "Show Model": "显示模型",
"Show shortcuts": "显示快捷方式",
"Show your support!": "表达您的支持!", "Show your support!": "表达您的支持!",
"Showcased creativity": "很有创意", "Showcased creativity": "很有创意",
"Sign in": "登录", "Sign in": "登录",
@ -1479,7 +1466,6 @@
"Status Updates": "显示实时回答状态", "Status Updates": "显示实时回答状态",
"STDOUT/STDERR": "标准输出/标准错误", "STDOUT/STDERR": "标准输出/标准错误",
"Stop": "停止", "Stop": "停止",
"Stop Generating": "停止生成",
"Stop Sequence": "停止序列 (Stop Sequence)", "Stop Sequence": "停止序列 (Stop Sequence)",
"Stream Chat Response": "流式对话响应 (Stream Chat Response)", "Stream Chat Response": "流式对话响应 (Stream Chat Response)",
"Stream Delta Chunk Size": "流式增量输出的分块大小Stream Delta Chunk Size", "Stream Delta Chunk Size": "流式增量输出的分块大小Stream Delta Chunk Size",
@ -1509,7 +1495,6 @@
"Tags Generation": "标签生成", "Tags Generation": "标签生成",
"Tags Generation Prompt": "标签生成提示词", "Tags Generation Prompt": "标签生成提示词",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "无尾采样用于减少输出中出现概率较小的 Token 的影响。较高的值(例如 2.0)将进一步减少影响,而值 1.0 则禁用此设置。", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "无尾采样用于减少输出中出现概率较小的 Token 的影响。较高的值(例如 2.0)将进一步减少影响,而值 1.0 则禁用此设置。",
"Talk to model": "与模型交谈",
"Tap to interrupt": "点击以中断", "Tap to interrupt": "点击以中断",
"Task List": "任务列表", "Task List": "任务列表",
"Task Model": "任务模型", "Task Model": "任务模型",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "检测到新版本时显示更新通知", "Toast notifications for new updates": "检测到新版本时显示更新通知",
"Today": "今天", "Today": "今天",
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
"Toggle search": "切换搜索",
"Toggle settings": "切换设置",
"Toggle sidebar": "切换侧边栏",
"Toggle whether current connection is active.": "切换当前连接的启用状态", "Toggle whether current connection is active.": "切换当前连接的启用状态",
"Token": "Token", "Token": "Token",
"Too verbose": "过于冗长", "Too verbose": "过于冗长",

View file

@ -26,7 +26,6 @@
"A task model is used when performing tasks such as generating titles for chats and web search queries": "執行「產生對話標題」和「網頁搜尋查詢生成」等任務時使用的任務模型", "A task model is used when performing tasks such as generating titles for chats and web search queries": "執行「產生對話標題」和「網頁搜尋查詢生成」等任務時使用的任務模型",
"a user": "使用者", "a user": "使用者",
"About": "關於", "About": "關於",
"Accept autocomplete generation / Jump to prompt variable": "接受自動完成生成/跳轉至提示變數",
"Access": "存取", "Access": "存取",
"Access Control": "存取控制", "Access Control": "存取控制",
"Accessible to all users": "所有使用者皆可存取", "Accessible to all users": "所有使用者皆可存取",
@ -51,7 +50,6 @@
"Add Content": "新增內容", "Add Content": "新增內容",
"Add content here": "在此新增內容", "Add content here": "在此新增內容",
"Add Custom Parameter": "新增自訂參數", "Add Custom Parameter": "新增自訂參數",
"Add custom prompt": "新增自訂提示詞",
"Add Details": "豐富細節", "Add Details": "豐富細節",
"Add Files": "新增檔案", "Add Files": "新增檔案",
"Add Group": "新增群組", "Add Group": "新增群組",
@ -151,7 +149,6 @@
"Ask": "提問", "Ask": "提問",
"Ask a question": "提出問題", "Ask a question": "提出問題",
"Assistant": "助理", "Assistant": "助理",
"Attach file from knowledge": "從知識庫附加檔案",
"Attach Knowledge": "附加知識庫", "Attach Knowledge": "附加知識庫",
"Attach Notes": "附加筆記", "Attach Notes": "附加筆記",
"Attach Webpage": "附加網頁", "Attach Webpage": "附加網頁",
@ -221,6 +218,7 @@
"Channel": "頻道", "Channel": "頻道",
"Channel deleted successfully": "成功刪除頻道", "Channel deleted successfully": "成功刪除頻道",
"Channel Name": "頻道名稱", "Channel Name": "頻道名稱",
"Channel name cannot be empty.": "",
"Channel updated successfully": "成功更新頻道", "Channel updated successfully": "成功更新頻道",
"Channels": "頻道", "Channels": "頻道",
"Character": "字元", "Character": "字元",
@ -332,8 +330,6 @@
"Copied to clipboard": "已複製到剪貼簿", "Copied to clipboard": "已複製到剪貼簿",
"Copy": "複製", "Copy": "複製",
"Copy Formatted Text": "複製格式化文字", "Copy Formatted Text": "複製格式化文字",
"Copy last code block": "複製最後一個程式碼區塊",
"Copy last response": "複製最後一個回應",
"Copy link": "複製連結", "Copy link": "複製連結",
"Copy Link": "複製連結", "Copy Link": "複製連結",
"Copy to clipboard": "複製到剪貼簿", "Copy to clipboard": "複製到剪貼簿",
@ -397,7 +393,6 @@
"Delete a model": "刪除模型", "Delete a model": "刪除模型",
"Delete All Chats": "刪除所有對話紀錄", "Delete All Chats": "刪除所有對話紀錄",
"Delete All Models": "刪除所有模型", "Delete All Models": "刪除所有模型",
"Delete chat": "刪除對話紀錄",
"Delete Chat": "刪除對話紀錄", "Delete Chat": "刪除對話紀錄",
"Delete chat?": "刪除對話紀錄?", "Delete chat?": "刪除對話紀錄?",
"Delete folder?": "刪除資料夾?", "Delete folder?": "刪除資料夾?",
@ -740,7 +735,6 @@
"Firecrawl API Base URL": "Firecrawl API 基底 URL", "Firecrawl API Base URL": "Firecrawl API 基底 URL",
"Firecrawl API Key": "Firecrawl API 金鑰", "Firecrawl API Key": "Firecrawl API 金鑰",
"Floating Quick Actions": "浮動快速操作", "Floating Quick Actions": "浮動快速操作",
"Focus chat input": "聚焦對話輸入",
"Folder": "分組", "Folder": "分組",
"Folder Background Image": "分組背景圖", "Folder Background Image": "分組背景圖",
"Folder deleted successfully": "成功刪除分組", "Folder deleted successfully": "成功刪除分組",
@ -787,7 +781,6 @@
"Generate": "生成", "Generate": "生成",
"Generate an image": "生成圖片", "Generate an image": "生成圖片",
"Generate Image": "生成圖片", "Generate Image": "生成圖片",
"Generate prompt pair": "生成提示配對",
"Generated Image": "生成圖片", "Generated Image": "生成圖片",
"Generating search query": "正在生成搜尋查詢", "Generating search query": "正在生成搜尋查詢",
"Generating...": "正在生成...", "Generating...": "正在生成...",
@ -871,7 +864,6 @@
"Initials": "姓名縮寫", "Initials": "姓名縮寫",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。",
"Input": "輸入", "Input": "輸入",
"Input commands": "輸入命令",
"Input Key (e.g. text, unet_name, steps)": "輸入鍵名例如text, unet_name, steps", "Input Key (e.g. text, unet_name, steps)": "輸入鍵名例如text, unet_name, steps",
"Input Variables": "插入變數", "Input Variables": "插入變數",
"Insert": "插入", "Insert": "插入",
@ -910,6 +902,7 @@
"Key": "金鑰", "Key": "金鑰",
"Key is required": "金鑰為必填項目", "Key is required": "金鑰為必填項目",
"Keyboard shortcuts": "鍵盤快捷鍵", "Keyboard shortcuts": "鍵盤快捷鍵",
"Keyboard Shortcuts": "",
"Knowledge": "知識", "Knowledge": "知識",
"Knowledge Access": "知識存取", "Knowledge Access": "知識存取",
"Knowledge Base": "知識庫", "Knowledge Base": "知識庫",
@ -1120,8 +1113,6 @@
"Ollama Version": "Ollama 版本", "Ollama Version": "Ollama 版本",
"On": "開啟", "On": "開啟",
"OneDrive": "OneDrive", "OneDrive": "OneDrive",
"Only active when \"Paste Large Text as File\" setting is toggled on.": "僅在啟用「貼上大文字為檔案」功能時生效。",
"Only active when the chat input is in focus and an LLM is generating a response.": "僅在對話輸入框啟用且大語言模型正在產生回應時生效。",
"Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號", "Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號",
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。", "Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。", "Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
@ -1137,7 +1128,6 @@
"Open modal to configure connection": "開啟外部連線設定彈出視窗", "Open modal to configure connection": "開啟外部連線設定彈出視窗",
"Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗", "Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗",
"Open Modal To Manage Image Compression": "打開圖片壓縮設定視窗", "Open Modal To Manage Image Compression": "打開圖片壓縮設定視窗",
"Open new chat": "開啟新的對話",
"Open Sidebar": "展開側邊欄", "Open Sidebar": "展開側邊欄",
"Open User Profile Menu": "開啟個人資料選單", "Open User Profile Menu": "開啟個人資料選單",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。",
@ -1226,7 +1216,6 @@
"Prefer not to say": "不想透露", "Prefer not to say": "不想透露",
"Prefix ID": "前置 ID", "Prefix ID": "前置 ID",
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
"Prevent file creation": "阻止檔案建立",
"Preview": "預覽", "Preview": "預覽",
"Previous 30 days": "過去 30 天", "Previous 30 days": "過去 30 天",
"Previous 7 days": "過去 7 天", "Previous 7 days": "過去 7 天",
@ -1437,14 +1426,12 @@
"Share your background and interests": "分享您的背景與興趣", "Share your background and interests": "分享您的背景與興趣",
"Shared with you": "分享給您", "Shared with you": "分享給您",
"Sharing Permissions": "分享權限設定", "Sharing Permissions": "分享權限設定",
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "帶星號 (*) 的快捷鍵受場景限制,僅在特定條件下生效。",
"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 Formatting Toolbar": "顯示文字格式工具列", "Show Formatting Toolbar": "顯示文字格式工具列",
"Show image preview": "顯示圖片預覽", "Show image preview": "顯示圖片預覽",
"Show Model": "顯示模型", "Show Model": "顯示模型",
"Show shortcuts": "顯示快捷鍵",
"Show your support!": "表達您的支持!", "Show your support!": "表達您的支持!",
"Showcased creativity": "展現創意", "Showcased creativity": "展現創意",
"Sign in": "登入", "Sign in": "登入",
@ -1479,7 +1466,6 @@
"Status Updates": "顯示實時回答狀態", "Status Updates": "顯示實時回答狀態",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Stop": "停止", "Stop": "停止",
"Stop Generating": "停止生成",
"Stop Sequence": "停止序列", "Stop Sequence": "停止序列",
"Stream Chat Response": "串流式對話回應", "Stream Chat Response": "串流式對話回應",
"Stream Delta Chunk Size": "串流增量輸出的分塊大小Stream Delta Chunk Size", "Stream Delta Chunk Size": "串流增量輸出的分塊大小Stream Delta Chunk Size",
@ -1509,7 +1495,6 @@
"Tags Generation": "標籤生成", "Tags Generation": "標籤生成",
"Tags Generation Prompt": "標籤生成提示詞", "Tags Generation Prompt": "標籤生成提示詞",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值例如2.0)會減少更多影響,而值為 1.0 時會停用此設定。", "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值例如2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
"Talk to model": "與模型對話",
"Tap to interrupt": "點選以中斷", "Tap to interrupt": "點選以中斷",
"Task List": "工作清單", "Task List": "工作清單",
"Task Model": "任務模型", "Task Model": "任務模型",
@ -1591,9 +1576,6 @@
"Toast notifications for new updates": "快顯通知新的更新", "Toast notifications for new updates": "快顯通知新的更新",
"Today": "今天", "Today": "今天",
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}", "Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
"Toggle search": "切換搜尋",
"Toggle settings": "切換設定",
"Toggle sidebar": "切換側邊欄",
"Toggle whether current connection is active.": "切換當前連接的啟用狀態", "Toggle whether current connection is active.": "切換當前連接的啟用狀態",
"Token": "Token", "Token": "Token",
"Too verbose": "太過冗長", "Too verbose": "太過冗長",

View file

@ -164,120 +164,123 @@
}) })
]); ]);
// Helper function to check if the pressed keys match the shortcut definition // Helper function to check if the pressed keys match the shortcut definition
const checkShortcut = (event: KeyboardEvent, keys: string[]): boolean => { const checkShortcut = (event: KeyboardEvent, keys: string[]): boolean => {
const lowerCaseKeys = keys.map((key) => key.toLowerCase()); const lowerCaseKeys = keys.map((key) => key.toLowerCase());
const isModPressed = lowerCaseKeys.includes('mod') ? event.ctrlKey || event.metaKey : true; const isModPressed = lowerCaseKeys.includes('mod') ? event.ctrlKey || event.metaKey : true;
const isShiftPressed = lowerCaseKeys.includes('shift') ? event.shiftKey : true; const isShiftPressed = lowerCaseKeys.includes('shift') ? event.shiftKey : true;
const isAltPressed = lowerCaseKeys.includes('alt') ? event.altKey : true; const isAltPressed = lowerCaseKeys.includes('alt') ? event.altKey : true;
const isCtrlPressed = lowerCaseKeys.includes('ctrl') ? event.ctrlKey : true; const isCtrlPressed = lowerCaseKeys.includes('ctrl') ? event.ctrlKey : true;
const mainKeys = lowerCaseKeys.filter((key) => !['mod', 'shift', 'alt', 'ctrl'].includes(key)); const mainKeys = lowerCaseKeys.filter(
(key) => !['mod', 'shift', 'alt', 'ctrl'].includes(key)
);
if (mainKeys.length > 0 && !mainKeys.includes(event.code.toLowerCase())) { if (mainKeys.length > 0 && !mainKeys.includes(event.code.toLowerCase())) {
return false; return false;
}
let modConflict = false;
if (keys.includes('mod')) {
if (!lowerCaseKeys.includes('shift') && event.shiftKey) modConflict = true;
if (!lowerCaseKeys.includes('alt') && event.altKey) modConflict = true;
}
return (
!modConflict &&
isModPressed &&
isShiftPressed &&
isAltPressed &&
isCtrlPressed &&
(event.ctrlKey || event.metaKey) === (lowerCaseKeys.includes('mod') || lowerCaseKeys.includes('ctrl')) &&
event.shiftKey === lowerCaseKeys.includes('shift') &&
event.altKey === lowerCaseKeys.includes('alt')
);
};
const setupKeyboardShortcuts = () => {
document.addEventListener('keydown', async (event) => {
for (const shortcutName in shortcuts) {
const shortcut = shortcuts[shortcutName];
if (checkShortcut(event, shortcut.keys)) {
// Here you can map the shortcut name to an action
// This is a simple example, you might want a more robust solution
switch (shortcutName) {
case Shortcut.SEARCH:
event.preventDefault();
showSearch.set(!$showSearch);
break;
case Shortcut.NEW_CHAT:
event.preventDefault();
document.getElementById('sidebar-new-chat-button')?.click();
break;
case Shortcut.FOCUS_INPUT:
event.preventDefault();
document.getElementById('chat-input')?.focus();
break;
case Shortcut.COPY_LAST_CODE_BLOCK:
event.preventDefault();
[...document.getElementsByClassName('copy-code-button')]?.at(-1)?.click();
break;
case Shortcut.COPY_LAST_RESPONSE:
event.preventDefault();
[...document.getElementsByClassName('copy-response-button')]?.at(-1)?.click();
break;
case Shortcut.TOGGLE_SIDEBAR:
event.preventDefault();
showSidebar.set(!$showSidebar);
break;
case Shortcut.DELETE_CHAT:
event.preventDefault();
document.getElementById('delete-chat-button')?.click();
break;
case Shortcut.OPEN_SETTINGS:
event.preventDefault();
showSettings.set(!$showSettings);
break;
case Shortcut.SHOW_SHORTCUTS:
event.preventDefault();
showShortcuts.set(!$showShortcuts);
break;
case Shortcut.CLOSE_MODAL:
event.preventDefault();
showSettings.set(false);
showShortcuts.set(false);
break;
case Shortcut.NEW_TEMPORARY_CHAT:
event.preventDefault();
if ($user?.role !== 'admin' && $user?.permissions?.chat?.temporary_enforced) {
temporaryChatEnabled.set(true);
} else {
temporaryChatEnabled.set(!$temporaryChatEnabled);
}
await goto('/');
setTimeout(() => {
document.getElementById('new-chat-button')?.click();
}, 0);
break;
case Shortcut.GENERATE_MESSAGE_PAIR:
event.preventDefault();
document.getElementById('generate-message-pair-button')?.click();
break;
case Shortcut.REGENERATE_RESPONSE:
event.preventDefault();
[...document.getElementsByClassName('regenerate-response-button')]?.at(-1)?.click();
break;
case Shortcut.STOP_GENERATING:
// Placeholder for future implementation
break;
case Shortcut.PREVENT_FILE_CREATION:
// This shortcut is handled by the paste event in MessageInput.svelte
break;
}
} }
}
}); let modConflict = false;
}; if (keys.includes('mod')) {
if (!lowerCaseKeys.includes('shift') && event.shiftKey) modConflict = true;
if (!lowerCaseKeys.includes('alt') && event.altKey) modConflict = true;
}
return (
!modConflict &&
isModPressed &&
isShiftPressed &&
isAltPressed &&
isCtrlPressed &&
(event.ctrlKey || event.metaKey) ===
(lowerCaseKeys.includes('mod') || lowerCaseKeys.includes('ctrl')) &&
event.shiftKey === lowerCaseKeys.includes('shift') &&
event.altKey === lowerCaseKeys.includes('alt')
);
};
const setupKeyboardShortcuts = () => {
document.addEventListener('keydown', async (event) => {
for (const shortcutName in shortcuts) {
const shortcut = shortcuts[shortcutName];
if (checkShortcut(event, shortcut.keys)) {
// Here you can map the shortcut name to an action
// This is a simple example, you might want a more robust solution
switch (shortcutName) {
case Shortcut.SEARCH:
event.preventDefault();
showSearch.set(!$showSearch);
break;
case Shortcut.NEW_CHAT:
event.preventDefault();
document.getElementById('sidebar-new-chat-button')?.click();
break;
case Shortcut.FOCUS_INPUT:
event.preventDefault();
document.getElementById('chat-input')?.focus();
break;
case Shortcut.COPY_LAST_CODE_BLOCK:
event.preventDefault();
[...document.getElementsByClassName('copy-code-button')]?.at(-1)?.click();
break;
case Shortcut.COPY_LAST_RESPONSE:
event.preventDefault();
[...document.getElementsByClassName('copy-response-button')]?.at(-1)?.click();
break;
case Shortcut.TOGGLE_SIDEBAR:
event.preventDefault();
showSidebar.set(!$showSidebar);
break;
case Shortcut.DELETE_CHAT:
event.preventDefault();
document.getElementById('delete-chat-button')?.click();
break;
case Shortcut.OPEN_SETTINGS:
event.preventDefault();
showSettings.set(!$showSettings);
break;
case Shortcut.SHOW_SHORTCUTS:
event.preventDefault();
showShortcuts.set(!$showShortcuts);
break;
case Shortcut.CLOSE_MODAL:
event.preventDefault();
showSettings.set(false);
showShortcuts.set(false);
break;
case Shortcut.NEW_TEMPORARY_CHAT:
event.preventDefault();
if ($user?.role !== 'admin' && $user?.permissions?.chat?.temporary_enforced) {
temporaryChatEnabled.set(true);
} else {
temporaryChatEnabled.set(!$temporaryChatEnabled);
}
await goto('/');
setTimeout(() => {
document.getElementById('new-chat-button')?.click();
}, 0);
break;
case Shortcut.GENERATE_MESSAGE_PAIR:
event.preventDefault();
document.getElementById('generate-message-pair-button')?.click();
break;
case Shortcut.REGENERATE_RESPONSE:
event.preventDefault();
[...document.getElementsByClassName('regenerate-response-button')]?.at(-1)?.click();
break;
case Shortcut.STOP_GENERATING:
// Placeholder for future implementation
break;
case Shortcut.PREVENT_FILE_CREATION:
// This shortcut is handled by the paste event in MessageInput.svelte
break;
}
}
}
});
};
setupKeyboardShortcuts(); setupKeyboardShortcuts();
if ($user?.role === 'admin' && ($settings?.showChangelog ?? true)) { if ($user?.role === 'admin' && ($settings?.showChangelog ?? true)) {
@ -461,4 +464,4 @@ const setupKeyboardShortcuts = () => {
cursor: pointer; cursor: pointer;
background-color: #bcbabb; background-color: #bcbabb;
} }
</style> </style>