chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-07-27 04:38:46 -04:00
parent c4332be71e
commit c004b4ecb5
73 changed files with 1165 additions and 350 deletions
+1 -5
View File
@@ -855,11 +855,7 @@ CONTENT_EXTRACTION_ENGINE = os.getenv('CONTENT_EXTRACTION_ENGINE', '').lower()
content_extraction_supported_media_mime_types = os.getenv('CONTENT_EXTRACTION_SUPPORTED_MEDIA_MIME_TYPES')
CONTENT_EXTRACTION_SUPPORTED_MEDIA_MIME_TYPES = (
[
mime_type.strip()
for mime_type in content_extraction_supported_media_mime_types.split(',')
if mime_type.strip()
]
[mime_type.strip() for mime_type in content_extraction_supported_media_mime_types.split(',') if mime_type.strip()]
if content_extraction_supported_media_mime_types is not None
else None
)
+1 -3
View File
@@ -870,9 +870,7 @@ class ChatTable:
**message,
'id': message.get('id') or message_id,
'parentId': message_parent_id if message_parent_id is not None else parent_id,
'childrenIds': (
message.get('childrenIds') if isinstance(message.get('childrenIds'), list) else []
),
'childrenIds': (message.get('childrenIds') if isinstance(message.get('childrenIds'), list) else []),
'role': role,
'timestamp': message.get('timestamp') or int(time.time()),
}
+3 -3
View File
@@ -91,11 +91,11 @@ def _is_global_addr(ip: str) -> bool:
embedded.extend(addr.teredo)
b = addr.packed
if b[:12] == b"\x00" * 12:
if b[:12] == b'\x00' * 12:
embedded.append(ipaddress.IPv4Address(b[12:]))
elif b[:12] == b"\x00\x64\xff\x9b" + b"\x00" * 8:
elif b[:12] == b'\x00\x64\xff\x9b' + b'\x00' * 8:
embedded.append(ipaddress.IPv4Address(b[12:]))
elif b[:6] == b"\x00\x64\xff\x9b\x00\x01":
elif b[:6] == b'\x00\x64\xff\x9b\x00\x01':
if b[8] != 0:
return False
embedded.append(ipaddress.IPv4Address(bytes((b[6], b[7], b[9], b[10]))))
+2 -1
View File
@@ -764,7 +764,8 @@ async def signin(
user_id=trusted_header_user_id(email),
)
except IntegrityError:
pass
if not await Users.get_user_by_email(email.lower(), db=db):
raise
user = await Auths.authenticate_user_by_email(email, db=db)
if user:
+3 -1
View File
@@ -990,7 +990,9 @@ async def model_response_handler(request, channel, message, user, db=None):
response_parent_id = (
message.parent_id
if message.parent_id
else (message.id if await Config.get('channels.model_response_mode', 'thread') == 'thread' else None)
else (
message.id if await Config.get('channels.model_response_mode', 'thread') == 'thread' else None
)
)
response_message, channel = await new_message_handler(
+4 -2
View File
@@ -186,8 +186,10 @@ async def create_folder(
detail=ERROR_MESSAGES.DEFAULT('Error creating folder'),
)
if form_data.data and 'files' in form_data.data and not await can_read_all_folder_files(
form_data.data['files'], user, db=db
if (
form_data.data
and 'files' in form_data.data
and not await can_read_all_folder_files(form_data.data['files'], user, db=db)
):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
+4 -6
View File
@@ -2423,9 +2423,9 @@ async def query_chat_files(
items=file_items,
queries=[query],
embedding_function=(
lambda queries, prefix: embedding_function(queries, prefix=prefix, user=user_model)
if embedding_function
else None
lambda queries, prefix: (
embedding_function(queries, prefix=prefix, user=user_model) if embedding_function else None
)
),
k=count,
reranking_function=(
@@ -3155,9 +3155,7 @@ async def query_knowledge_files(
__request__,
collection_names=collection_names,
queries=[query],
embedding_function=lambda queries, prefix: embedding_function(
queries, prefix=prefix, user=user_model
),
embedding_function=lambda queries, prefix: embedding_function(queries, prefix=prefix, user=user_model),
k=count,
)
+6 -13
View File
@@ -2871,10 +2871,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
for item in get_attached_knowledge(model, metadata):
if not item.get('id') or not item.get('type'):
continue
attrs = (
f'type="{escape(str(item["type"]), quote=True)}" '
f'id="{escape(str(item["id"]), quote=True)}"'
)
attrs = f'type="{escape(str(item["type"]), quote=True)}" id="{escape(str(item["id"]), quote=True)}"'
if item.get('name'):
attrs += f' name="{escape(str(item["name"]), quote=True)}"'
if item.get('source'):
@@ -2946,9 +2943,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
)
if resolved_model_system_prompt:
system_content = (
f'{resolved_model_system_prompt}\n{system_content}'
if system_content
else resolved_model_system_prompt
f'{resolved_model_system_prompt}\n{system_content}' if system_content else resolved_model_system_prompt
)
metadata['system_prompt'] = system_content or None
metadata['user_prompt'] = get_last_user_message(form_data['messages'])
@@ -3779,9 +3774,7 @@ async def streaming_chat_response_handler(response, ctx):
}
filter_functions = (
await get_filter_functions(request, model, metadata.get('filter_ids', []))
if ENABLE_PLUGINS
else []
await get_filter_functions(request, model, metadata.get('filter_ids', [])) if ENABLE_PLUGINS else []
)
# Standard streaming response handler
@@ -4500,9 +4493,9 @@ async def streaming_chat_response_handler(response, ctx):
str,
):
current_response_tool_call['function']['arguments'] = ''
current_response_tool_call['function'][
'arguments'
] += delta_arguments
current_response_tool_call['function']['arguments'] += (
delta_arguments
)
# Emit pending tool calls in real-time
if response_tool_calls:
@@ -415,7 +415,9 @@
<AdminSettingField
label={$i18n.t('Supported Media MIME Types')}
description={$i18n.t('Media upload MIME types the content extraction engine may process.')}
description={$i18n.t(
'Media upload MIME types the content extraction engine may process.'
)}
>
<input
class={inputClass}
+5 -1
View File
@@ -729,7 +729,11 @@
);
};
$: if ($terminalServers !== null && $selectedTerminalId && !isTerminalAvailable($selectedTerminalId)) {
$: if (
$terminalServers !== null &&
$selectedTerminalId &&
!isTerminalAvailable($selectedTerminalId)
) {
selectedTerminalId.set(null);
}
+18 -5
View File
@@ -471,6 +471,7 @@
"Check Again": "تحقق مرة اخرى",
"Check for updates": "تحقق من التحديثات",
"Checking for updates...": "البحث عن تحديثات",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "أختار موديل قبل الحفظ",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -494,6 +495,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -613,7 +615,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -639,6 +641,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1346,8 +1349,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1443,6 +1446,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1471,6 +1475,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1598,6 +1603,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1669,6 +1675,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1751,6 +1758,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1790,6 +1798,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1835,7 +1845,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2408,6 +2417,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2512,7 +2522,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "أظهر الإبداع",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "تسجيل الدخول",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2538,8 +2547,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2609,6 +2618,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2745,6 +2755,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2927,6 +2938,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -471,6 +471,7 @@
"Check Again": "تحقق مرة أخرى",
"Check for updates": "تحقق من التحديثات",
"Checking for updates...": "جارٍ التحقق من التحديثات...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "اختر نموذجًا قبل الحفظ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -494,6 +495,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -613,7 +615,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "اتصل بنقاط نهاية API المتوافقة مع OpenAI الخاصة بك.",
@@ -639,6 +641,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1346,8 +1349,8 @@
"Generate an image": "توليد صورة",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1443,6 +1446,7 @@
"Image Prompt Generation": "توليد التوجيه للصورة",
"Image Prompt Generation Prompt": "نص توجيه توليد الصورة",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1471,6 +1475,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1598,6 +1603,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "جارٍ الاستماع...",
"LiteLLM": "",
"Live": "",
@@ -1669,6 +1675,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1751,6 +1758,7 @@
"Model Permissions": "أذونات النموذج",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "تم تحديث النموذج بنجاح",
@@ -1790,6 +1798,8 @@
"Name, prompt, and model are required": "",
"Native": "أصلي",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1835,7 +1845,6 @@
"No content to speak": "لا يوجد محتوى للتحدث عنه",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "لا توجد مسافة متاحة",
"No event webhooks configured.": "",
@@ -2408,6 +2417,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2512,7 +2522,6 @@
"Show your support!": "أظهر دعمك!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "أظهر الإبداع",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "تسجيل الدخول",
"Sign in to {{WEBUI_NAME}}": "سجّل الدخول إلى {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "سجّل الدخول إلى {{WEBUI_NAME}} باستخدام LDAP",
@@ -2538,8 +2547,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2609,6 +2618,7 @@
"Summarize this note.": "",
"Support": "الدعم",
"Support this plugin:": "دعم هذا المكون الإضافي:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2745,6 +2755,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2927,6 +2938,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "مستوى الظهور",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Yenidən yoxla",
"Check for updates": "Yeniləmələri yoxla",
"Checking for updates...": "Yeniləmələr yoxlanılır...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Yadda saxlamazdan əvvəl bir model seçin...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Hissə (chunk) üçün hədəf minimum ölçü",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Söhbətə başlamaq üçün bir Sİ (AI) təminatçısına qoşulun",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Fayllara baxmaq və onlardan daimi alətlər kimi istifadə etmək üçün Open Terminal instansiyalarına qoşulun. Eyni anda yalnız biri aktiv ola bilər.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal instansiyalarına qoşulun. Bütün istifadəçilər bu serverlər vasitəsilə fayllara baxmaq və terminal alətlərindən istifadə etmək imkanına malik olacaqlar.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Öz OpenAI uyğun API son nöqtələrinizə qoşulun.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Şəkil yarat",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Şəkillər yaradın və redaktə edin",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Mesaj cütü yarat",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Şəkil göstərişi yaradılması",
"Image Prompt Generation Prompt": "Şəkil göstərişi yaratma göstərişi",
"Image Size": "Şəkil ölçüsü",
"image/*, video/*": "",
"Images": "Şəkillər",
"Import": "İdxal et",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Baş hərflər",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Fayl məzmununu söhbət kontekstinə daxil edin",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Hərtərəfli emal üçün bütün məzmunu kontekst kimi daxil edin, bu mürəkkəb sorğular üçün tövsiyə olunur.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Giriş",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "Siyahı",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Dinlənilir...",
"LiteLLM": "",
"Live": "Canlı",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP dəstəyi eksperimentaldır və spesifikasiyası tez-tez dəyişir, bu da uyğunsuzluqlara səbəb ola bilər. OpenAPI spesifikasiyası birbaşa Open WebUI komandası tərəfindən dəstəklənir və daha etibarlıdır.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Orta",
"Member removed successfully": "Üzv uğurla çıxarıldı",
"members": "üzvlər",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Model icazələri",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Model cavabları və ya çıxışları",
"Model unloaded successfully": "Model yaddaşdan uğurla çıxarıldı",
"Model updated successfully": "Model uğurla yeniləndi",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Yerli (Native)",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "Yeni",
"New Button": "Yeni Düymə",
@@ -1795,7 +1805,6 @@
"No content to speak": "Səsləndirmək üçün məzmun yoxdur",
"No conversation to save": "Yadda saxlamaq üçün söhbət yoxdur",
"No data": "Məlumat yoxdur",
"No data found": "Məlumat tapılmadı",
"No description": "",
"No distance available": "Məsafə məlumatı yoxdur",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Üsul seçin",
"Select model": "",
"Select only one model to call": "Çağırmaq üçün yalnız bir model seçin",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Dəstəyinizi göstərin!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Yaradıcılıq nümayiş etdirildi",
"Showing all messages (user + assistant) per user.": "Hər istifadəçi üçün bütün mesajlar (istifadəçi + köməkçi) göstərilir.",
"Sign in": "Daxil ol",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} platformasına daxil olun",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP ilə {{WEBUI_NAME}} platformasına daxil olun",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Bacarıqların ictimai paylaşımı",
"Skills Sharing": "Bacarıqların paylaşılması",
"Skip Cache": "Keşi atla",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Xəta baş verdi :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Dərin Araşdırma",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Dəstək",
"Support this plugin:": "Bu plagini dəstəkləyin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Dəstəklənən MIME növləri",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "{{COUNT}} mənbəni göstər/gizlə",
"Toggle 1 source": "1 mənbəni göstər/gizlə",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "Diktəni aç/bağla",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Mənbəyə bax: {{name}}",
"View source: {{title}}": "Mənbəyə bax: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Görünürlük",
"Visible": "Görünən",
"Visible to all users": "Bütün istifadəçilərə görünür",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Проверете Още Веднъж",
"Check for updates": "Проверка за актуализации",
"Checking for updates...": "Проверка за актуализации...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Изберете модел преди запазване...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Свържете се със собствени крайни точки на API, съвместими с OpenAI.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Генериране на изображение",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Генериране на промпт за изображения",
"Image Prompt Generation Prompt": "Промпт за генериране на промпт за изображения",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Слушане...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Разрешения на модела",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Моделът е актуализиран успешно",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Нативен",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Няма съдържание за изговаряне",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Няма налично разстояние",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Изберете само един модел за извикване",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Покажете вашата подкрепа!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Показана креативност",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Вписване",
"Sign in to {{WEBUI_NAME}}": "Впишете се в {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Впишете се в {{WEBUI_NAME}} с LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Поддръжка",
"Support this plugin:": "Подкрепете този плъгин:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Видимост",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "আবার চেক করুন",
"Check for updates": "নতুন আপডেট আছে কিনা চেক করুন",
"Checking for updates...": "নতুন আপডেট আছে কিনা চেক করা হচ্ছে...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "সেভ করার আগে একটি মডেল নির্বাচন করুন",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "সাইন ইন",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "ཡང་བསྐྱར་ཞིབ་དཔྱད།",
"Check for updates": "གསར་སྒྱུར་འཚོལ་ཞིབ།",
"Checking for updates...": "གསར་སྒྱུར་འཚོལ་བཞིན་པ།...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "ཉར་ཚགས་མ་བྱས་སྔོན་དུ་དཔེ་དབྱིབས་ཤིག་གདམ་པ།...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "ཁྱེད་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བ།",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1296,8 +1299,8 @@
"Generate an image": "པར་ཞིག་བཟོ་བ།",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "པར་འགུལ་སློང་བཟོ་སྐྲུན།",
"Image Prompt Generation Prompt": "པར་འགུལ་སློང་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "ཉན་བཞིན་པ།...",
"LiteLLM": "",
"Live": "",
@@ -1619,6 +1625,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1701,6 +1708,7 @@
"Model Permissions": "དཔེ་དབྱིབས་ཀྱི་དབང་ཚད།",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "དཔེ་དབྱིབས་ལེགས་པར་གསར་སྒྱུར་བྱས།",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "",
"Native": "ས་སྐྱེས།",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1785,7 +1795,6 @@
"No content to speak": "བཤད་རྒྱུའི་ནང་དོན་མེད།",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "ཐག་རིང་ཚད་མེད།",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "ནང་འཛུལ།",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} ལ་ནང་འཛུལ།",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP དང་མཉམ་དུ་ {{WEBUI_NAME}} ལ་ནང་འཛུལ།",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "རྒྱབ་སྐྱོར།",
"Support this plugin:": "plugin འདི་ལ་རྒྱབ་སྐྱོར་བྱེད་པ།:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2675,6 +2685,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "མཐོང་ཐུབ་རང་བཞིན།",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Provjeri ponovo",
"Check for updates": "Provjeri za ažuriranja",
"Checking for updates...": "Provjeravam ažuriranja...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Odaberite model prije spremanja...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Slušam...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Odaberite samo jedan model za poziv",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Prikazana kreativnost",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Prijava",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Comprovar-ho de nou",
"Check for updates": "Comprovar si hi ha actualitzacions",
"Checking for updates...": "Comprovant actualitzacions...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Triar un model abans de desar...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Objectiu de mida mínima del fragment",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Connectar a un proveidor d'IA per començar a xerrar",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Connecta't a instàncies d'Open Terminal per navegar per fitxers i utilitzar-los com a eines sempre actives. Només una pot estar activa alhora.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Connecta't a instàncies d'Open Terminal. Tots els usuaris tindran accés a la navegació de fitxers i a les eines del terminal a través d'aquests servidors.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Connecta als teus propis punts de connexió de l'API compatible amb OpenAI",
@@ -615,6 +617,7 @@
"Context Compaction": "Compactació del context",
"Context compaction failed": "La compactació del context ha fallat",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "Petició de compactació de context",
"Context Compaction Threshold": "Llindar de compactació del context",
"Context Tokens": "Tokens de context",
@@ -1316,8 +1319,8 @@
"Generate an image": "Generar una imatge",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Generar i editar imatges",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Generar parella de missatges",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Generació d'indicacions d'imatge",
"Image Prompt Generation Prompt": "Indicació per a la generació d'indicacions d'imatge",
"Image Size": "Mida de la imatge",
"image/*, video/*": "",
"Images": "Imatges",
"Import": "Importar",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "Inicials",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Injecta el contingut del fitxer en el context de la conversa",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Entrada",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "Clau API de Linkup",
"List": "Llista",
"List calendars, search, create, update, and delete calendar events": "Llistar calendaris, cercar, crear, actualitzar i suprimir esdeveniments de calendari",
"List, search, and read files attached to the current chat": "",
"Listening...": "Escoltant...",
"LiteLLM": "",
"Live": "Live",
@@ -1639,6 +1645,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'Open WebUI, cosa que el converteix en l'opció més fiable per a la compatibilitat.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Mig",
"Member removed successfully": "El membre s'ha eliminat satisfactòriament",
"members": "membres",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Permisos dels models",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Respostes o resultats del model",
"Model unloaded successfully": "El model s'ha descarregat correctament",
"Model updated successfully": "Model actualitzat correctament",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "Nom, indicació i model són necessaris",
"Native": "Natiu",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "El mode natiu (per defecte) aprofita les capacitats de trucada d'eines integrades del model. El mode heretat funciona amb una gamma més àmplia de models trucant a les eines una vegada abans de l'execució mitjançant una injecció ràpida.",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Mai",
"New": "Nou",
"New Button": "Botó nou",
@@ -1805,7 +1815,6 @@
"No content to speak": "No hi ha contingut per parlar",
"No conversation to save": "No hi ha cap conversa a desar",
"No data": "No hi ha dades",
"No data found": "No s'han trobat dades",
"No description": "",
"No distance available": "No hi ha distància disponible",
"No event webhooks configured.": "No s'ha configurat cap webhook d'esdeveniments.",
@@ -2369,6 +2378,7 @@
"Select Method": "Escollir el mètode",
"Select model": "Escollir el model",
"Select only one model to call": "Seleccionar només un model per trucar",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Mostra el teu suport!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Creativitat mostrada",
"Showing all messages (user + assistant) per user.": "Mostrant tots els missatges (usuari + assistent) per usuari.",
"Sign in": "Iniciar sessió",
"Sign in to {{WEBUI_NAME}}": "Iniciar sessió a {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Iniciar sessió a {{WEBUI_NAME}} amb LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "Compartició pública de les habilitats",
"Skills Sharing": "Compartició de les habilitats",
"Skip Cache": "Ometre la memòria cau",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Quelcom no ha anat bé",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Dona suport",
"Support this plugin:": "Dona suport a aquest complement:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Tipus MIME admesos",
"Switch camera": "",
"Switch to JSON editor": "Canviar a l'editor JSON",
@@ -2703,6 +2713,7 @@
"Today at": "Avui a les",
"Toggle {{COUNT}} sources": "Activa/Desactiva {{COUNT}} fonts",
"Toggle 1 source": "Activa/Desactiva 1 font",
"Toggle Controls": "",
"Toggle details": "Activar/Desactivar els detalls",
"Toggle Dictation": "Activa/Desactiva el dictat",
"Toggle Mute": "Activa/Desactiva el silenci",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "Veure font: {{name}}",
"View source: {{title}}": "Veure font: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilitat",
"Visible": "Visible",
"Visible to all users": "Visible per a tots els usuaris",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Susiha pag-usab",
"Check for updates": "Susiha ang mga update",
"Checking for updates...": "Pagsusi alang sa mga update...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Pagpili og template sa dili pa i-save...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Para maka log in",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Zkontrolovat znovu",
"Check for updates": "Zkontrolovat aktualizace",
"Checking for updates...": "Kontrola aktualizací...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Před uložením vyberte model...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Připojte se k vlastním koncovým bodům API kompatibilním s OpenAI.",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1326,8 +1329,8 @@
"Generate an image": "Generovat obrázek",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "Generování instrukcí pro obrázek",
"Image Prompt Generation Prompt": "Instrukce pro generování instrukcí pro obrázek",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Importovat",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Vstup",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Poslouchám...",
"LiteLLM": "",
"Live": "",
@@ -1649,6 +1655,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Střední",
"Member removed successfully": "",
"members": "",
@@ -1731,6 +1738,7 @@
"Model Permissions": "Oprávnění modelu",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Model byl úspěšně uvolněn",
"Model updated successfully": "Model byl úspěšně aktualizován",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "",
"Native": "Nativní",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "Nové tlačítko",
@@ -1815,7 +1825,6 @@
"No content to speak": "Žádný obsah k přečtení.",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Vzdálenost není k dispozici",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Vyberte pouze jeden model k volání",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Vyjádřete svou podporu!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Předvedená kreativita",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Přihlásit se",
"Sign in to {{WEBUI_NAME}}": "Přihlásit se do {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Přihlásit se do {{WEBUI_NAME}} pomocí LDAP",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Přeskočit mezipaměť",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Něco se pokazilo :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Podpora",
"Support this plugin:": "Podpořte tento plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Podporované typy MIME",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2717,6 +2727,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Viditelnost",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Tjek igen",
"Check for updates": "Søg efter opdateringer",
"Checking for updates...": "Søger efter opdateringer",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Vælg en model før du gemmer",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Opret forbindelse til din egen OpenAI kompatible API endpoints.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Generer et billede",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Generer besked par",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Billedpromptgenerering",
"Image Prompt Generation Prompt": "Billedpromptgenerering prompt",
"Image Size": "Billedstørrelse",
"image/*, video/*": "",
"Images": "",
"Import": "Importer",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Initialer",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Input",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Lytter...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP understøttelse er eksperimentel og dens specifikationer ændres ofte hvilket kan medføre inkompatibilitet. OpenAI specifikationsunderstøttelse er vedligeholdt af Open WebUI-teamet hvilket gør det til den mest pålidelige mulighed for understøttelse.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Medium",
"Member removed successfully": "Medlem fjernet",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Model tilladelser",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Model aflæst",
"Model updated successfully": "Model opdateret.",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Indbygget",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "Ny knap",
@@ -1795,7 +1805,6 @@
"No content to speak": "Intet indhold at tale",
"No conversation to save": "Ingen samtale at gemme",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Ingen afstand tilgængelig",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Vælg metode",
"Select model": "",
"Select only one model to call": "Vælg kun én model at kalde",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Vis din støtte!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Udstillet kreativitet",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Log ind",
"Sign in to {{WEBUI_NAME}}": "Log ind på {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Log ind på {{WEBUI_NAME}} med LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Spring cache over",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Noget gik galt :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Support",
"Support this plugin:": "Støt dette plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Understøttede MIME-typer",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Synlighed",
"Visible": "",
"Visible to all users": "Synlig for alle brugere",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Erneut prüfen",
"Check for updates": "Nach Updates suchen",
"Checking for updates...": "Suche nach Updates...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Wählen Sie vor dem Speichern ein Modell...",
"Choose automatic, left-to-right, or right-to-left text flow.": "Wählt automatischen Textfluss oder feste Ausrichtung von links nach rechts bzw. von rechts nach links.",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "Wählen Sie Ersatzmodelle für Hintergrundaufgaben. \"Aktuelles Modell\" übernimmt das im Chat aktive Modell.",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "Wählt die Laufzeitumgebung für generierte Code-Blöcke.",
"Choose the speech provider used for assistant audio output.": "Wählt den Sprachanbieter für die Audioausgabe des Assistenten.",
"Choose the transcription provider used for audio input.": "Wählt den Transkriptionsanbieter für Audioeingaben.",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "Legt fest, ob die Eingabetaste sofort sendet oder Strg+Eingabe erforderlich ist.",
"Choose whether the app opens to the default home or chat view.": "Legt fest, ob die App mit der Startseite oder direkt mit dem Chat öffnet.",
"Chunk Min Size Target": "Zielwert für minimale Chunk-Größe",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "Verbindet mit einem stable-diffusion-webui-Server, der mit dem Flag `--api` läuft.",
"Connect to an AI provider to start chatting": "Zum Chatten mit einem AI provider verbinden",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Verbinde zu Open Terminal Instanzen um Dateien zu lesen und sie als immer verfügbare Werkzeuge zu nutzen. Nur eines kann gleichzeitig aktiv sein.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Verbinde zu Open Terminal Instanzen. Alle Nutzer werden Zugriff auf die Dateien und Terminal Werkzeige durch diese Server bekommen.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "Verbindet mit dem ComfyUI-Server für die Bildgenerierung.",
"Connect to the ComfyUI server used for image edits.": "Verbindet mit dem ComfyUI-Server für die Bildbearbeitung.",
"Connect to your own OpenAI compatible API endpoints.": "Verbinden Sie Ihre eigenen OpenAI-kompatiblen API-Endpunkte.",
@@ -607,6 +609,7 @@
"Context Compaction": "Kontextverdichtung",
"Context compaction failed": "Kontextverdichtung fehlgeschlagen",
"Context compaction is disabled": "Kontextverdichtung ist deaktiviert",
"Context Compaction Model": "",
"Context Compaction Prompt": "Prompt für Kontextverdichtung",
"Context Compaction Threshold": "Schwellenwert für Kontextverdichtung",
"Context Tokens": "Kontext-Token",
@@ -1306,8 +1309,8 @@
"Generate an image": "Ein Bild generieren",
"Generate an image prompt before sending the request.": "Erzeugt vor dem Senden der Anfrage einen Bild-Prompt.",
"Generate and edit images": "Generiere und bearbeite Bilder",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "Erzeugt Chat-Titel automatisch aus dem Inhalt der Unterhaltung.",
"Generate message pair": "",
"Generate Message Pair": "Nachrichtenpaar generieren",
"Generate suggested follow-up prompts after responses.": "Erzeugt nach Antworten Vorschläge für Folgefragen.",
"Generate tags for chats automatically.": "Erzeugt automatisch Tags für Chats.",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Bild-Prompt-Generierung",
"Image Prompt Generation Prompt": "Prompt für Bild-Prompt-Generierung",
"Image Size": "Bildgröße",
"image/*, video/*": "",
"Images": "Bilder",
"Import": "Importieren",
"Import admin configuration from a JSON export file.": "Importiert die Administrationskonfiguration aus einer JSON-Exportdatei.",
@@ -1431,6 +1435,7 @@
"Initials": "Initialen",
"Inject entire documents as context for comprehensive processing.": "Bindet vollständige Dokumente als Kontext ein, um sie umfassend zu verarbeiten.",
"Inject file content into conversation context": "Injiziere den Datei-Kontext in den Konversations-Kontext",
"Inject stored memories into conversation context": "",
"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.": "Bindet den gesamten Inhalt als Kontext ein, um ihn umfassend zu verarbeiten.",
"Input": "Eingabe",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "Linkup-API-Schlüssel",
"List": "Liste",
"List calendars, search, create, update, and delete calendar events": "Kalender auflisten, suchen, erstellen, aktualisieren und löschen",
"List, search, and read files attached to the current chat": "",
"Listening...": "Höre zu...",
"LiteLLM": "",
"Live": "Live",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom Open WebUI-Team gepflegt und ist daher die verlässlichere Option.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Mittel",
"Member removed successfully": "Mitglied erfolgreich entfernt",
"members": "Mitglieder",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modellberechtigungen",
"Model removed from pinned models": "Modell von den angehefteten Modellen entfernt",
"Model removed from selected models": "Modell von den ausgewählten Modellen entfernt",
"Model Response Mode": "",
"Model responses or outputs": "Modellantworten oder -ausgaben",
"Model unloaded successfully": "Modell erfolgreich entladen",
"Model updated successfully": "Modell erfolgreich aktualisiert",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Name, Prompt und Modell sind erforderlich",
"Native": "Nativ",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "Der native Modus (Standard) nutzt die integrierten Funktionsaufruf-Fähigkeiten des Modells. Der Legacy-Modus funktioniert mit einer größeren Bandbreite an Modellen, indem Werkzeuge einmalig vor der Ausführung per Prompt-Injektion aufgerufen werden.",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nie",
"New": "Neu",
"New Button": "Neuer Button",
@@ -1795,7 +1805,6 @@
"No content to speak": "Kein Inhalt zum Vorlesen",
"No conversation to save": "Keine Unterhaltung zum Speichern vorhanden",
"No data": "Keine Daten",
"No data found": "Keine Daten gefunden",
"No description": "Keine Beschreibung",
"No distance available": "Keine Distanz verfügbar",
"No event webhooks configured.": "Keine Ereignis-Webhooks konfiguriert.",
@@ -2356,6 +2365,7 @@
"Select Method": "Methode auswählen",
"Select model": "Modell auswählen",
"Select only one model to call": "Wählen Sie nur ein Modell zum Aufrufen aus",
"Select options": "",
"Select Skill": "Skill auswählen",
"Select the Gemini endpoint method to call.": "Wählt die aufzurufende Methode des Gemini-Endpunkts.",
"Select the local model precision used by Kokoro.js.": "Wählt die Genauigkeit des lokalen Modells, das Kokoro.js verwendet.",
@@ -2460,7 +2470,6 @@
"Show your support!": "Zeigen Sie Ihre Unterstützung!",
"Show your username label instead of You in chat bubbles.": "Zeigt in den Sprechblasen Ihren Benutzernamen statt \"Du\" an.",
"Showcased creativity": "Kreativität gezeigt",
"Showing all messages (user + assistant) per user.": "Zeige alle Nachrichten (Benutzer + Assistent) pro Nutzer.",
"Sign in": "Anmelden",
"Sign in to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} anmelden",
"Sign in to {{WEBUI_NAME}} with LDAP": "Bei {{WEBUI_NAME}} mit LDAP anmelden",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Öffentliches Teilen von Skills",
"Skills Sharing": "Teilen von Skills",
"Skip Cache": "Cache überspringen",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "Überspringt zwischengespeicherte Marker-Ergebnisse und führt die Verarbeitung erneut aus.",
"Skip to main content": "",
"Something went wrong :/": "Etwas ist schiefgelaufen :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "Diese Notiz zusammenfassen.",
"Support": "Unterstützung",
"Support this plugin:": "Unterstützen Sie dieses Plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Unterstützte MIME-Typen",
"Switch camera": "",
"Switch to JSON editor": "Zum JSON-Editor wechseln",
@@ -2689,6 +2699,7 @@
"Today at": "Heute um",
"Toggle {{COUNT}} sources": "{{COUNT}} Quellen umschalten",
"Toggle 1 source": "Eine Quelle umschalten",
"Toggle Controls": "",
"Toggle details": "Details umschalten",
"Toggle Dictation": "Diktieren umschalten",
"Toggle Mute": "Stummschaltung umschalten",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Quelle anzeigen: {{name}}",
"View source: {{title}}": "Quelle anzeigen: {{title}}",
"View the installed version and check release updates.": "Zeigt die installierte Version an und prüft auf Aktualisierungen.",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Sichtbarkeit",
"Visible": "Sichtbar",
"Visible to all users": "Für alle Benutzer sichtbar",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Check Again",
"Check for updates": "Check for updates",
"Checking for updates...": "Checking for updates... Such anticipation...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Choose model before saving... Wow choose first.",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Sign in very sign",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Ελέγξτε ξανά",
"Check for updates": "Έλεγχος για ενημερώσεις",
"Checking for updates...": "Ελέγχεται για ενημερώσεις...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Επιλέξτε ένα μοντέλο πριν αποθηκεύσετε...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Δημιουργία εικόνας",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Προτροπή Δημιουργίας Εικόνας",
"Image Prompt Generation Prompt": "Προτροπή Δημιουργίας Εικόνας",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Εισαγωγή",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Εισάγετε ολόκληρο το περιεχόμενο ως συμφραζόμενο για ολοκληρωμένη επεξεργασία. Αυτό συνιστάται για σύνθετα ερωτήματα.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Ακούγεται...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Δικαιώματα Μοντέλου",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Το μοντέλο ενημερώθηκε με επιτυχία",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Δείξτε την υποστήριξή σας!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Σύνδεση",
"Sign in to {{WEBUI_NAME}}": "Σύνδεση στο {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Σύνδεση στο {{WEBUI_NAME}} με LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Υποστήριξη",
"Support this plugin:": "Υποστήριξη αυτού του plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Υποστηριζόμενοι τύποι MIME",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Ορατότητα",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "",
"Check for updates": "",
"Checking for updates...": "",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "Summarise this note.",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+17 -4
View File
@@ -443,6 +443,7 @@
"Check Again": "",
"Check for updates": "",
"Checking for updates...": "",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Verifica de nuevo",
"Check for updates": "Buscar actualizaciones",
"Checking for updates...": "Buscando actualizaciones...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Escoge un modelo antes de guardar...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Tamaño Mínimo del Fragmento",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Conectar a un proveedor de AI para comenzar a chatear",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Conéctate a instancias de Open Terminal para tener navegadores de archivos y usarlos como herramientas siempre activas. Solo una puede estar activa a la vez.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Conéctate a instancias de Open Terminal. Todos los usuarios tendrán acceso a la navegación de archivos y a las utilidades del terminal a través de estos servidores.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Conectar a tus propios API endpoints compatibles con OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Tokens en el Contexto",
@@ -1316,8 +1319,8 @@
"Generate an image": "Generar una imagen",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Generar y editar imágenes",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Generar Par de Mensajes",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Indicador para Generación de Imagen",
"Image Prompt Generation Prompt": "Indicador para la Generación del Indicador de Imagen",
"Image Size": "Tamaño de la Imagen",
"image/*, video/*": "",
"Images": "Imágenes",
"Import": "Importar",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "Iniciales",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Inyectar el contenido del archivo en el contexto de la conversación",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Entrada",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "Clave API de Linkup",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "Listar, buscar, crear, actualizar y borrar eventos en calendarios",
"List, search, and read files attached to the current chat": "",
"Listening...": "Escuchando...",
"LiteLLM": "",
"Live": "En Directo",
@@ -1639,6 +1645,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de Open WebUI mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Medio",
"Member removed successfully": "Miembro removido correctamente",
"members": "miembros",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Permisos Modelo",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Respuestas del modelo o salidas",
"Model unloaded successfully": "Modelo descargado correctamente",
"Model updated successfully": "Modelo actualizado correctamente",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "Nombre, indicador y modelo son necesarios",
"Native": "Nativo",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nunca",
"New": "Nuevo",
"New Button": "Nuevo Botón",
@@ -1805,7 +1815,6 @@
"No content to speak": "No hay contenido para hablar",
"No conversation to save": "No hay conversación para guardar",
"No data": "Sin datos",
"No data found": "No se encontró ningún dato",
"No description": "",
"No distance available": "No hay distancia disponible",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "Seleccionar Método",
"Select model": "Seleccionar modelo",
"Select only one model to call": "Seleccionar sólo un modelo a llamar",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "¡Muestra tu apoyo!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Creatividad exhibida",
"Showing all messages (user + assistant) per user.": "Mostrando todos los mensajes (usuario y asistente) del usuario.",
"Sign in": "Iniciar Sesión",
"Sign in to {{WEBUI_NAME}}": "Iniciar Sesión en {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Iniciar Sesión en {{WEBUI_NAME}} con LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "Compartir Habilidad Publicamente",
"Skills Sharing": "Compartir Habilidad",
"Skip Cache": "Evitar Caché",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Algo ha ido mal :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Investigación Profunda",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Soportar",
"Support this plugin:": "Apoya este plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Tipos MIME Soportados",
"Switch camera": "",
"Switch to JSON editor": "Cambiar a editor JSON",
@@ -2703,6 +2713,7 @@
"Today at": "Hoy a las",
"Toggle {{COUNT}} sources": "Des/Plegar {{COUNT}} fuentes",
"Toggle 1 source": "Des/Plegar 1 fuente",
"Toggle Controls": "",
"Toggle details": "Des/Plegar detalles",
"Toggle Dictation": "Des/Plegar Dictado",
"Toggle Mute": "Conmutar Enmudecer",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "Ver fuente: {{name}}",
"View source: {{title}}": "Ver fuente: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilidad",
"Visible": "Visible",
"Visible to all users": "Visible para todos los usuarios",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Kontrolli uuesti",
"Check for updates": "Kontrolli uuendusi",
"Checking for updates...": "Uuenduste kontrollimine...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Valige mudel enne salvestamist...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Tüki minimaalne sihtsuurus",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Ühenduge AI pakkujaga, et alustada vestlust",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Ühenduge Open Terminali instantsidega failide sirvimiseks ja alati-saadaolevate tööriistadena kasutamiseks. Korraga saab aktiivne olla ainult üks.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ühenduge Open Terminali instantsidega. Kõigil kasutajatel on juurdepääs failide sirvimisele ja terminali tööriistadele nende serverite kaudu.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Ühendu oma OpenAI-ga ühilduvate API lõpp-punktidega.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Genereeri pilt",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Genereeri ja muuda pilte",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Genereeri sõnumipaar",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Pildi sisendi genereerimine",
"Image Prompt Generation Prompt": "Pildi sisendi genereerimise sisend",
"Image Size": "Pildi suurus",
"image/*, video/*": "",
"Images": "Pildid",
"Import": "Impordi",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Initsiaalid",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Sisesta faili sisu vestluse konteksti",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Sisesta kogu sisu kontekstina põhjaliku töötlemise jaoks, seda soovitatakse keerukate päringute puhul.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Sisend",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "Nimekiri",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Kuulamine...",
"LiteLLM": "",
"Live": "Reaalajas",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP tugi on eksperimentaalne ja selle spetsifikatsioon muutub sageli, mis võib põhjustada ühildumatusi. OpenAPI spetsifikatsiooni tuge hooldab otseselt Open WebUI meeskond, muutes selle ühilduvuse jaoks usaldusväärsemaks valikuks.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Keskmine",
"Member removed successfully": "Liige edukalt eemaldatud",
"members": "liikmeid",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Mudeli õigused",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Mudeli vastused või väljundid",
"Model unloaded successfully": "Mudel edukalt maha laaditud",
"Model updated successfully": "Mudel edukalt uuendatud",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Omane",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "Uus",
"New Button": "Uus nupp",
@@ -1795,7 +1805,6 @@
"No content to speak": "Pole mida rääkida",
"No conversation to save": "Pole vestlust, mida salvestada",
"No data": "Andmed puuduvad",
"No data found": "Andmeid ei leitud",
"No description": "",
"No distance available": "Kaugus pole saadaval",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Valige meetod",
"Select model": "",
"Select only one model to call": "Valige ainult üks mudel kutsumiseks",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Näita oma toetust!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Näitas loovust",
"Showing all messages (user + assistant) per user.": "Kuvatakse kõik sõnumid (kasutaja + assistent) kasutaja kohta.",
"Sign in": "Logi sisse",
"Sign in to {{WEBUI_NAME}}": "Logi sisse rakendusse {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Logi sisse rakendusse {{WEBUI_NAME}} LDAP-ga",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Oskuste avalik jagamine",
"Skills Sharing": "Oskuste jagamine",
"Skip Cache": "Jäta vahemälu vahele",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Midagi läks valesti :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Tugi",
"Support this plugin:": "Toeta seda pistikprogrammi:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Toetatud MIME tüübid",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "Lülita {{COUNT}} allikat",
"Toggle 1 source": "Lülita 1 allikas",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "Lülita dikteerimine",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Vaata allikat: {{name}}",
"View source: {{title}}": "Vaata allikat: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Nähtavus",
"Visible": "Nähtav",
"Visible to all users": "Nähtav kõigile kasutajatele",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Egiaztatu Berriro",
"Check for updates": "Bilatu eguneraketak",
"Checking for updates...": "Eguneraketak bilatzen...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Aukeratu eredu bat gorde aurretik...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Entzuten...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modelo baimenak",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modeloa ongi eguneratu da",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Ez dago hitz egiteko edukirik",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Ez dago distantziarik eskuragarri",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Hautatu modelo bakarra deitzeko",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Erakutsi zure babesa!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Erakutsitako sormena",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Hasi saioa",
"Sign in to {{WEBUI_NAME}}": "Hasi saioa {{WEBUI_NAME}}-n",
"Sign in to {{WEBUI_NAME}} with LDAP": "Hasi saioa {{WEBUI_NAME}}-n LDAP bidez",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Laguntza",
"Support this plugin:": "Lagundu plugin hau:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Ikusgarritasuna",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "بررسی دوباره",
"Check for updates": "بررسی به\u200cروزرسانی",
"Checking for updates...": "در حال بررسی برای به\u200cروزرسانی..",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "قبل از ذخیره یک مدل را انتخاب کنید...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "به نقاط پایانی API سازگار با OpenAI خود متصل شوید.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "تولید یک تصویر",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "تولید جفت پیام",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "تولید پرامپت تصویر",
"Image Prompt Generation Prompt": "پرامپت تولید پرامپت تصویر",
"Image Size": "اندازه تصویر",
"image/*, video/*": "",
"Images": "",
"Import": "وارد کردن",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "حروف اول",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "ورودی",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "در حال گوش دادن...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "پشتیبانی MCP آزمایشی است و مشخصات آن اغلب تغییر می\u200cکند، که می\u200cتواند منجر به ناسازگاری شود. پشتیبانی از مشخصات OpenAPI مستقیماً توسط تیم Open WebUI نگهداری می\u200cشود و آن را به گزینه قابل اعتماد\u200cتری برای سازگاری تبدیل می\u200cکند.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "متوسط",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "مجوزهای مدل",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "مدل با موفقیت خارج شد",
"Model updated successfully": "مدل با موفقیت به\u200cروز شد",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "بومی",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "دکمه جدید",
@@ -1795,7 +1805,6 @@
"No content to speak": "محتوایی برای خواندن وجود ندارد",
"No conversation to save": "هیچ مکالمه\u200cای برای ذخیره وجود ندارد",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "فاصله\u200cای در دسترس نیست",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "انتخاب روش",
"Select model": "",
"Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "حمایت خود را نشان دهید!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "ایده\u200cآفرینی",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "ورود",
"Sign in to {{WEBUI_NAME}}": "ورود به {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "ورود به {{WEBUI_NAME}} با LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "رد کردن کش",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "مشکلی پیش آمد :/",
"Sonar": "سونار",
"Sonar Deep Research": "تحقیق عمیق سونار",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "حمایت",
"Support this plugin:": "حمایت از این افزونه",
"Supported Media MIME Types": "",
"Supported MIME Types": "انواع MIME پشتیبانی شده",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "قابلیت مشاهده",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Tarkista uudelleen",
"Check for updates": "Tarkista päivitykset",
"Checking for updates...": "Tarkistetaan päivityksiä...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Valitse malli ennen tallentamista...",
"Choose automatic, left-to-right, or right-to-left text flow.": "Valitse tekstin suunta: automaattinen, vasemmalta oikealle tai oikealta vasemmalle.",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "Valitse varamallit taustatehtäville. Nykyinen malli seuraa aktiivisen keskustelun mallia.",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "Valitse luotujen koodilohkojen käyttämä ajonaikainen ympäristö.",
"Choose the speech provider used for assistant audio output.": "Valitse avustajan äänentuottoa varten käytettävä palveluntarjoaja.",
"Choose the transcription provider used for audio input.": "Valitse äänitulon transkriptioon käytettävä palveluntarjoaja.",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "Valitse, lähettääkö Enter välittömästi vai edellyttääkö se Ctrl+Enteriä.",
"Choose whether the app opens to the default home or chat view.": "Valitse, avautuuko sovellus oletuskotinäkymään vai keskustelunäkymään.",
"Chunk Min Size Target": "Osien vähimmäiskoko",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "Yhdistä stable-diffusion-webui-palvelimeen, joka on käynnissä --api parametrillä.",
"Connect to an AI provider to start chatting": "Yhdistä tekoälypalveluntarjoajaan aloittaaksesi keskustelut",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Yhdistä Open Terminal -instansseihin selataksesi tiedostoja ja käyttääksesi niitä aina päällä olevina työkaluina. Vain yksi voi olla aktiivinen kerrallaan.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Yhdistä Open Terminal -instansseihin. Kaikilla käyttäjillä on pääsy tiedostojen selaamiseen ja päätetyökaluihin näiden palvelimien kautta.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "Yhdistä generointia varten käytettyyn ComfyUI-palvelimeen.",
"Connect to the ComfyUI server used for image edits.": "Yhdistä kuvanmuokkauksiin käytettyyn ComfyUI-palvelimeen.",
"Connect to your own OpenAI compatible API endpoints.": "Yhdistä omat OpenAI yhteensopivat API päätepisteet.",
@@ -607,6 +609,7 @@
"Context Compaction": "Kontekstin tiivistys",
"Context compaction failed": "Kontekstin tiivistys epäonnistui",
"Context compaction is disabled": "Kontekstin tiivistys on poistettu käytöstä",
"Context Compaction Model": "",
"Context Compaction Prompt": "Kontekstin tiivistyksen kehote",
"Context Compaction Threshold": "Kontekstin tiivistyksen kynnys",
"Context Tokens": "Konteksti tokenit",
@@ -1306,8 +1309,8 @@
"Generate an image": "Luo kuva",
"Generate an image prompt before sending the request.": "Luo kuvakehote ennen pyynnön lähettämistä.",
"Generate and edit images": "Luo ja muokkaa kuvia",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "Luo keskusteluotsikot automaattisesti keskustelun sisällöstä.",
"Generate message pair": "",
"Generate Message Pair": "Luo viesti pari",
"Generate suggested follow-up prompts after responses.": "Luo ehdotettuja jatkokysymyksiä vastausten jälkeen.",
"Generate tags for chats automatically.": "Luo tunnisteet keskusteluille automaattisesti.",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Kuvan kehote generointi",
"Image Prompt Generation Prompt": "Kuvan generoinnin kehote",
"Image Size": "Kuvan koko",
"image/*, video/*": "",
"Images": "Kuvat",
"Import": "Tuo",
"Import admin configuration from a JSON export file.": "Tuo ylläpitäjän määritys JSON-vientitiedostosta.",
@@ -1431,6 +1435,7 @@
"Initials": "Nimikirjaimet",
"Inject entire documents as context for comprehensive processing.": "Upota koko asiakirja kontekstiin kattavaa käsittelyä varten.",
"Inject file content into conversation context": "Upota tiedostosisältö keskustelun kontekstiin",
"Inject stored memories into conversation context": "",
"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.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten.",
"Input": "Tekstikenttä",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "Linkup API-avain",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "Listaa kalenterit, hae, luo, päivitä ja poista kalenteritapahtumia",
"List, search, and read files attached to the current chat": "",
"Listening...": "Kuuntelee...",
"LiteLLM": "",
"Live": "Live",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan Open WebUI -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Keskitaso",
"Member removed successfully": "Jäsen poistettu onnistuneesti",
"members": "käyttäjät",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Mallin käyttöoikeudet",
"Model removed from pinned models": "Malli poistettiin kiinnitettyjen malleista",
"Model removed from selected models": "Malli poistettiin valittujen malleista",
"Model Response Mode": "",
"Model responses or outputs": "Mallin vastaukset tai tuotokset",
"Model unloaded successfully": "Malli purettu onnistuneesti",
"Model updated successfully": "Malli päivitetty onnistuneesti",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Nimi, kehote ja malli ovat pakollisia",
"Native": "Natiivi",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "Natiivitila (oletus) hyödyntää mallin sisäänrakennettuja työkalukutsutoimintoja. Legacy-tila toimii laajemman mallivalikoiman kanssa kutsumalla työkaluja kerran ennen suoritusta kehote injektoinnin avulla.",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Ei koskaan",
"New": "Uusi",
"New Button": "Uusi painike",
@@ -1795,7 +1805,6 @@
"No content to speak": "Ei puhuttavaa sisältöä",
"No conversation to save": "Ei tallennettavaa keskustelua",
"No data": "Ei dataa",
"No data found": "Dataa ei löytynyt",
"No description": "Ei kuvausta",
"No distance available": "Etäisyyttä ei saatavilla",
"No event webhooks configured.": "Tapahtuma-webhookeja ei ole määritetty.",
@@ -2356,6 +2365,7 @@
"Select Method": "Valitse metodi",
"Select model": "Valitse malli",
"Select only one model to call": "Valitse vain yksi malli kutsuttavaksi",
"Select options": "",
"Select Skill": "Valitse taito",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Osoita tukesi!",
"Show your username label instead of You in chat bubbles.": "Näytä käyttäjänimi keskustelukuplissa \"Sinä\" -tekstin sijaan",
"Showcased creativity": "Osoitti luovuutta",
"Showing all messages (user + assistant) per user.": "Näytetään kaikki viestit (käyttäjä + avustaja) käyttäjää kohden.",
"Sign in": "Kirjaudu sisään",
"Sign in to {{WEBUI_NAME}}": "Kirjaudu sisään palveluun {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Kirjaudu sisään palveluun {{WEBUI_NAME}} LDAP:lla",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Taitojen julkinen jakaminen",
"Skills Sharing": "Taitojen jako",
"Skip Cache": "Ohita välimuisti",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "Ohita välimuistiin tallennetut Marker-tulokset ja suorita uudelleen.",
"Skip to main content": "",
"Something went wrong :/": "Jokin meni pieleen :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "Tiivistä tämä muistiinpano.",
"Support": "Tuki",
"Support this plugin:": "Tue tätä lisäosaa:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Tuetut MIME-tyypit",
"Switch camera": "",
"Switch to JSON editor": "Vaihda JSON-editoriin",
@@ -2689,6 +2699,7 @@
"Today at": "Tänään",
"Toggle {{COUNT}} sources": "Näytä/piilota {{COUNT}} lähdettä",
"Toggle 1 source": "Näytä/piilota 1 lähde",
"Toggle Controls": "",
"Toggle details": "Näytä/piilota yksityiskohdat",
"Toggle Dictation": "Sanelu päälle/pois",
"Toggle Mute": "Mykistys päälle/pois",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Näytä lähde: {{name}}",
"View source: {{title}}": "Näytä lähde: {{title}}",
"View the installed version and check release updates.": "Näytä asennettu versio ja tarkista julkaisupäivitykset.",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Näkyvyys",
"Visible": "Näkyvillä",
"Visible to all users": "Näkyy kaikille käyttäjille",
+18 -5
View File
@@ -444,6 +444,7 @@
"Check Again": "",
"Check for updates": "",
"Checking for updates...": "",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -467,6 +468,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -582,7 +584,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -608,6 +610,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1307,8 +1310,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1404,6 +1407,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "Mga Larawan",
"Import": "I-import",
"Import admin configuration from a JSON export file.": "",
@@ -1432,6 +1436,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1559,6 +1564,7 @@
"Linkup API Key": "",
"List": "Listahan",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1630,6 +1636,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1712,6 +1719,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1751,6 +1759,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Hindi Kailanman",
"New": "Bago",
"New Button": "",
@@ -1796,7 +1806,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2358,6 +2367,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2462,7 +2472,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Mag-sign in",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2488,8 +2497,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "May nangyaring mali :/",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2556,6 +2565,7 @@
"Summarize this note.": "",
"Support": "Suporta",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2692,6 +2702,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2874,6 +2885,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "Nakikita",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Vérifiez à nouveau.",
"Check for updates": "Vérifier les mises à jour disponibles",
"Checking for updates...": "Recherche de mises à jour...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Connectez-vous à vos points d'extension API compatibles OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "Génère une image",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Génération de prompts d'images",
"Image Prompt Generation Prompt": "Prompt de génération de prompts d'images",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Importer",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Écoute en cours...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Autorisations du modèle",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Le modèle a été déchargé avec succès",
"Model updated successfully": "Le modèle a été mis à jour avec succès",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "Natif",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "Rien à signaler",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Aucune distance disponible",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Montrez votre soutien !",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Créativité mise en avant",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Connexion",
"Sign in to {{WEBUI_NAME}}": "Connectez-vous à {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Connectez-vous à {{WEBUI_NAME}} avec LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Ne pas utiliser le cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Supporter",
"Support this plugin:": "Supporter ce module",
"Supported Media MIME Types": "",
"Supported MIME Types": "Types MIME pris en charge",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilité",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Vérifiez à nouveau.",
"Check for updates": "Vérifier les mises à jour disponibles",
"Checking for updates...": "Recherche de mises à jour...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Taille minimale cible des chunks",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Connectez-vous à un fournisseur d'IA pour commencer à discuter",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Connectez-vous à des instances Open Terminal pour parcourir les fichiers et les utiliser comme outils permanents. Une seule peut être active à la fois.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Connectez-vous à des instances Open Terminal. Tous les utilisateurs auront accès à la navigation de fichiers et aux outils de terminal via ces serveurs.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Connectez-vous à vos points d'extension API compatibles OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Tokens de contexte",
@@ -1316,8 +1319,8 @@
"Generate an image": "Génère une image",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Créer et modifier des images",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Générer une paire de messages",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Génération de prompts d'images",
"Image Prompt Generation Prompt": "Prompt de génération de prompts d'images",
"Image Size": "Taille de l'image",
"image/*, video/*": "",
"Images": "Images",
"Import": "Importer",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "Initiales",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Injecte le contenu du fichier dans le contexte de la conversation",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Entrée",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "Liste",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Écoute en cours...",
"LiteLLM": "",
"Live": "Actif",
@@ -1639,6 +1645,7 @@
"MBR": "Membre",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Le support du MCP est expérimental et sa spécification évolue fréquemment, ce qui peut entraîner des incompatibilités. Le support de la spécification OpenAPI est directement maintenu par l'équipe Open WebUI, ce qui en fait l'option la plus fiable en termes de compatibilité.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Moyen",
"Member removed successfully": "Membre supprimé avec succès",
"members": "membres",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Autorisations du modèle",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Les réponses des modèles",
"Model unloaded successfully": "Modèle déchargé avec succès",
"Model updated successfully": "Modèle mis à jour avec succès",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "Le nom, le prompt et le modèle sont requis",
"Native": "Natif",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Jamais",
"New": "Nouveaux",
"New Button": "Nouveau bouton",
@@ -1805,7 +1815,6 @@
"No content to speak": "Rien à signaler",
"No conversation to save": "Aucune conversation à sauvegarder",
"No data": "Aucune donnée",
"No data found": "Aucune donnée trouvée",
"No description": "",
"No distance available": "Aucune distance disponible",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "Sélectionner une méthode",
"Select model": "Sélectionnez un modèle",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Montrez votre soutien !",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Créativité mise en avant",
"Showing all messages (user + assistant) per user.": "Affichage de tous les messages (utilisateur + assistant) par utilisateur.",
"Sign in": "Connexion",
"Sign in to {{WEBUI_NAME}}": "Connectez-vous à {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Connectez-vous à {{WEBUI_NAME}} avec LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "Partage public des skills",
"Skills Sharing": "Partage des skills",
"Skip Cache": "Ne pas utiliser le cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Quelque chose s'est mal passé :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Supporter",
"Support this plugin:": "Supporter ce module",
"Supported Media MIME Types": "",
"Supported MIME Types": "Types MIME pris en charge",
"Switch camera": "",
"Switch to JSON editor": "Passer à l'éditeur JSON",
@@ -2703,6 +2713,7 @@
"Today at": "Aujourd'hui à",
"Toggle {{COUNT}} sources": "Afficher/masquer {{COUNT}} sources",
"Toggle 1 source": "Afficher/masquer 1 source",
"Toggle Controls": "",
"Toggle details": "Afficher/masquer les détails",
"Toggle Dictation": "Activer/Désactiver la dictée",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "Voir la source : {{name}}",
"View source: {{title}}": "Voir la source : {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilité",
"Visible": "Visible",
"Visible to all users": "Visible pour tous les utilisateurs",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Verifica de novo",
"Check for updates": "Verificar actualizacions",
"Checking for updates...": "Verificando actualizacions...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Escolle un modelo antes de gardar os cambios...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Conecta os teus propios Api compatibles con OpenAI.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Generar unha imaxen",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "xeneración de prompt de imaxen",
"Image Prompt Generation Prompt": "Prompt de xeneración de prompt de imaxen",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Escoitando...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Permisos do modelo",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modelo actualizado correctamente",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Non ten contido para falar",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Non ten distancia disponible",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Selecciona sólo un modelo para llamar",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "¡Motra o teu apoio!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Creatividade mostrada",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Iniciar sesión",
"Sign in to {{WEBUI_NAME}}": "Iniciar sesión en {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Iniciar sesión en {{WEBUI_NAME}} con LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Soporte",
"Support this plugin:": "Brinda soporte a este plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilidad",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "בדוק שוב",
"Check for updates": "בדוק עדכונים",
"Checking for updates...": "בודק עדכונים...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "בחר מודל לפני השמירה...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "הצגת יצירתיות",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "הירשם",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "फिर से जाँचो",
"Check for updates": "अपडेट के लिए जाँच",
"Checking for updates...": "अपडेट के लिए जांच कर रहा है...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "सहेजने से पहले एक मॉडल चुनें...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "साइन इन",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Provjeri ponovo",
"Check for updates": "Provjeri za ažuriranja",
"Checking for updates...": "Provjeravam ažuriranja...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Odaberite model prije spremanja...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Slušam...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Odaberite samo jedan model za poziv",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Prikazana kreativnost",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Prijava",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Ellenőrzés újra",
"Check for updates": "Frissítések keresése",
"Checking for updates...": "Frissítések keresése...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Válassz modellt mentés előtt...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Csatlakozz saját OpenAI kompatibilis API végpontjaidhoz.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Kép generálása",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Kép prompt generálás",
"Image Prompt Generation Prompt": "Kép prompt generálási prompt",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Hallgatás...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modell engedélyek",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modell sikeresen frissítve",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Natív",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Nincs felolvasható tartalom",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Nincs elérhető távolság",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Csak egy modellt válasszon ki hívásra",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Mutassa meg támogatását!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Kreativitás bemutatva",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Bejelentkezés",
"Sign in to {{WEBUI_NAME}}": "Bejelentkezés ide: {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Bejelentkezés ide: {{WEBUI_NAME}} LDAP-val",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Támogatás",
"Support this plugin:": "Támogassa ezt a bővítményt:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Láthatóság",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "Periksa Lagi",
"Check for updates": "Memeriksa pembaruan",
"Checking for updates...": "Memeriksa pembaruan...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Pilih model sebelum menyimpan...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1296,8 +1299,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Mendengarkan",
"LiteLLM": "",
"Live": "",
@@ -1619,6 +1625,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1701,6 +1708,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Model berhasil diperbarui",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1785,7 +1795,6 @@
"No content to speak": "Tidak ada konten untuk dibicarakan",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "Tunjukkan dukungan Anda!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Menampilkan kreativitas",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Masuk",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2675,6 +2685,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Seiceáil Arís",
"Check for updates": "Seiceáil nuashonruithe",
"Checking for updates...": "Seiceáil le haghaidh nuashonruithe...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Roghnaigh samhail sula sábhálann tú...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Spriocmhéid Íosta an Bhrúid",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Ceangail le soláthraí AI chun comhrá a thosú",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Ceangail le cásanna Open Terminal chun comhaid a bhrabhsáil agus iad a úsáid mar uirlisí atá ar siúl i gcónaí. Ní féidir ach ceann amháin a bheith gníomhach ag an am céanna.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ceangail le cásanna Open Terminal. Beidh rochtain ag gach úsáideoir ar bhrabhsáil comhad agus uirlisí críochfoirt trí na freastalaithe seo.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Ceangail le do chríochphointí API atá comhoiriúnach le OpenAI.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Comharthaí Comhthéacs",
@@ -1306,8 +1309,8 @@
"Generate an image": "Gin íomhá",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Íomhánna a ghiniúint agus a chur in eagar",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Gin Péire Teachtaireachta",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Giniúint Treoracha Íomhá",
"Image Prompt Generation Prompt": "Treoir Giniúna Treoracha Íomhá",
"Image Size": "Méid na hÍomhá",
"image/*, video/*": "",
"Images": "Íomhánna",
"Import": "Iompórtáil",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Túslitreacha",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Cuir ábhar an chomhaid isteach i gcomhthéacs an chomhrá",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Ionchur",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "Eochair API Linkup",
"List": "Liosta",
"List calendars, search, create, update, and delete calendar events": "Liostaigh féilirí, cuardaigh, cruthaigh, nuashonraigh agus scrios imeachtaí féilire",
"List, search, and read files attached to the current chat": "",
"Listening...": "Éisteacht...",
"LiteLLM": "",
"Live": "Beo",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Is turgnamhach tacaíocht MCP agus athraítear a shonraíocht go minic, rud a dfhéadfadh neamh-chomhoiriúnachtaí a bheith mar thoradh air. Déanann foireann Open WebUI cothabháil dhíreach ar thacaíocht sonraíochta OpenAPI, rud a fhágann gurb é an rogha is iontaofa é le haghaidh comhoiriúnachta.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Meánach",
"Member removed successfully": "Baineadh an ball go rathúil",
"members": "baill",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Ceadanna Samhail",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Freagraí nó aschuir mhúnla",
"Model unloaded successfully": "Díluchtaíodh an tsamhail go rathúil",
"Model updated successfully": "An tsamhail nuashonraithe",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Tá ainm, treoir agus samhail riachtanach",
"Native": "Dúchasach",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Choíche",
"New": "Nua",
"New Button": "Cnaipe Nua",
@@ -1795,7 +1805,6 @@
"No content to speak": "Níl aon ábhar le labhairt",
"No conversation to save": "Gan aon chomhrá le sábháil",
"No data": "Gan aon sonraí",
"No data found": "Níor aimsíodh aon sonraí",
"No description": "",
"No distance available": "Níl achar ar fáil",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Roghnaigh Modh",
"Select model": "Roghnaigh samhail",
"Select only one model to call": "Roghnaigh samhail amháin le glaoch",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Taispeáin do thacaíocht!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Cruthaitheacht léirithe",
"Showing all messages (user + assistant) per user.": "Ag taispeáint gach teachtaireacht (úsáideoir + cúntóir) in aghaidh an úsáideora.",
"Sign in": "Sínigh isteach",
"Sign in to {{WEBUI_NAME}}": "Sínigh isteach ar {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Sínigh isteach ar {{WEBUI_NAME}} le LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Comhroinnt Scileanna don Phobal",
"Skills Sharing": "Comhroinnt Scileanna",
"Skip Cache": "Seachain an Taisce",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Chuaigh rud éigin mícheart :/",
"Sonar": "Sónar",
"Sonar Deep Research": "Taighde Doimhne Sonair",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Tacaíocht",
"Support this plugin:": "Tacaigh leis an mbreiseán seo:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Cineálacha MIME a Tacaítear leo",
"Switch camera": "",
"Switch to JSON editor": "Athraigh go heagarthóir JSON",
@@ -2689,6 +2699,7 @@
"Today at": "Inniu ag",
"Toggle {{COUNT}} sources": "Athraigh {{COUNT}} foinsí",
"Toggle 1 source": "Athraigh foinse amháin",
"Toggle Controls": "",
"Toggle details": "Athraigh sonraí",
"Toggle Dictation": "Athraigh Deachtú",
"Toggle Mute": "Athraigh Balbhaigh",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Féach ar an bhfoinse: {{name}}",
"View source: {{title}}": "Féach ar an bhfoinse: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Infheictheacht",
"Visible": "Infheicthe",
"Visible to all users": "Infheicthe ag gach úsáideoir",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Controlla di nuovo",
"Check for updates": "Controlla aggiornamenti",
"Checking for updates...": "Controllo aggiornamenti...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Scegli un modello prima di salvare...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Connettiti ai tuoi endpoint API compatibili con OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "Genera un'immagine",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Generazione Prompt Immagine",
"Image Prompt Generation Prompt": "Prompt per la Generazione di Prompt Immagine",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Importa",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "In ascolto...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Permessi del modello",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Scaricamento dalla memoria del modello riuscito",
"Model updated successfully": "Modello aggiornato con successo",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "Nessun contenuto da pronunciare",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Nessuna distanza disponibile",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Seleziona solo un modello da chiamare",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Mostra il tuo supporto!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Creatività messa in mostra",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Accedi",
"Sign in to {{WEBUI_NAME}}": "Accedi a {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Accedi a {{WEBUI_NAME}} con LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Salta cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Supporto",
"Support this plugin:": "Supporta questo plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilità",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "再確認",
"Check for updates": "アップデートを確認",
"Checking for updates...": "アップデートを確認しています...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "保存する前にモデルを選択してください...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "独自のOpenAI互換APIエンドポイントに接続します。",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1296,8 +1299,8 @@
"Generate an image": "画像を生成",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "メッセージペアを生成",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "画像プロンプト生成",
"Image Prompt Generation Prompt": "画像プロンプト生成プロンプト",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "インポート",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "イニシャル",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "ファイル内容を会話のコンテキストに挿入する",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "全文を取り込むことで全体を処理します。複雑な問い合わせの場合に推奨されます。",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "入力",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "リスト",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "聞いています...",
"LiteLLM": "",
"Live": "",
@@ -1619,6 +1625,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "中",
"Member removed successfully": "",
"members": "",
@@ -1701,6 +1708,7 @@
"Model Permissions": "モデルの許可",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "モデルのアンロードが成功しました",
"Model updated successfully": "モデルが正常に更新されました",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "名前、プロンプト、モデルの選択が必要です",
"Native": "ネイティブ",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "なし",
"New": "",
"New Button": "新しいボタン",
@@ -1785,7 +1795,6 @@
"No content to speak": "話す内容がありません",
"No conversation to save": "保存する会話がありません。",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "距離が利用できません",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "",
"Select model": "モデルを選択",
"Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "サポートを表示",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "創造性を披露",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "サインイン",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}にサインイン",
"Sign in to {{WEBUI_NAME}} with LDAP": "{{WEBUI_NAME}}にLDAPでサインイン",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "Skillの公開共有",
"Skills Sharing": "Skillの共有",
"Skip Cache": "キャッシュをスキップする",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "何らかの問題が発生しました",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "サポート",
"Support this plugin:": "このプラグインを支援する:",
"Supported Media MIME Types": "",
"Supported MIME Types": "対応するMIMEタイプ",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2675,6 +2685,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "音声入力の切り替える",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "可視性",
"Visible": "",
"Visible to all users": "全ユーザーに表示",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "თავიდან შემოწმება",
"Check for updates": "განახლებების შემოწმება",
"Checking for updates...": "განახლებების შემოწმება...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "აირჩიეთ მოდელი შენახვამდე...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "გამოსახულების გენერაცია",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "შემოტანა",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "ინიციალები",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "შეყვანა",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "ვისმენ...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "საშუალო",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "მოდელის წვდომები",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "საკუთარი",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "ახალი ღილაკი",
@@ -1795,7 +1805,6 @@
"No content to speak": "წარმოსათქმელი შემცველობის გარეშე",
"No conversation to save": "შესანახი საუბრების გარეშე",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "მანძილი ხელმისაწვდომი არაა",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "გვაჩვენეთ მხარდაჭერა!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "გამოკვეთილი კრეატიულობა",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "შესვლა",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}-ში შესვლა",
"Sign in to {{WEBUI_NAME}} with LDAP": "{{WEBUI_NAME}}-ში შესვლა LDAP-ით",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "კეშის გამოტოვება",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "რაღაც ცუდადაა :/",
"Sonar": "სონარი",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "მხარდაჭერა",
"Support this plugin:": "დაუჭირეთ მხარი ამ დამატებას:",
"Supported Media MIME Types": "",
"Supported MIME Types": "მხარდაჭერილი MIME ტიპები",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "ხილვადობა",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Senqed tikelt nniḍen",
"Check for updates": "Nadi ileqman",
"Checking for updates...": "Anadi n yileqman...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Fren tamudemt uqbel ad tsellkeḍ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Qqen ɣer wagazen-ik n taggara n API yemṣaban OpenAI.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Sarew tugna",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Asirew n yineftaɣen n tugniwin",
"Image Prompt Generation Prompt": "Aneftaɣ n usirew n yineftaɣen n tugniwin",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Kter",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Isekkilen imezwura",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Anekcum",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Yettmaḥsis…",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Tisirag n timudemt",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Tamudemt ur d-uli ara akken iwata",
"Model updated successfully": "Tamudemt tettwaleqqem akken iwata",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Asrew",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "Taqeffalt tamaynut",
@@ -1795,7 +1805,6 @@
"No content to speak": "Ulac ara d-yettwabedren",
"No conversation to save": "Ulac adiwenni i usekles",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Ulac ameccaq yettwafen",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Fren yiwet kan n tmudemt i wara d-siwleḍ",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Sken tallalt-ik⋅im!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Qqen",
"Sign in to {{WEBUI_NAME}}": "Kcem ɣer {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Qqen ɣer {{WEBUI_NAME}} s LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Ur sseqdac ara tuffirt",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Yella wayen ur neddi ara :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Tallalt",
"Support this plugin:": "Ɛiwen asiɣzef-a:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Anawen MIME ttwasefraken",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Tametwalant",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -437,6 +437,7 @@
"Check Again": "다시 확인",
"Check for updates": "업데이트 확인",
"Checking for updates...": "업데이트 확인중...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "저장하기 전에 모델을 선택하세요...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -460,6 +461,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "최소 청크 크기 목표",
@@ -574,7 +576,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "AI 제공자에 연결하여 채팅을 시작하세요",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "파일을 탐색하고 항상 켜진 도구로 사용하려면 Open Terminal 인스턴스에 연결하세요. 한 번에 하나만 활성화할 수 있습니다.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal 인스턴스에 연결합니다. 모든 사용자는 이 서버를 통해 파일 탐색과 터미널 도구를 사용할 수 있습니다.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "OpenAI 호환 API 엔드포인트에 연결합니다.",
@@ -600,6 +602,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1297,8 +1300,8 @@
"Generate an image": "이미지 생성",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "이미지 생성 및 편집",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "메시지 쌍 생성",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1394,6 +1397,7 @@
"Image Prompt Generation": "이미지 프롬프트 생성",
"Image Prompt Generation Prompt": "이미지 프롬프트를 생성하기 위한 프롬프트",
"Image Size": "이미지 크기",
"image/*, video/*": "",
"Images": "이미지들",
"Import": "가져오기",
"Import admin configuration from a JSON export file.": "",
@@ -1422,6 +1426,7 @@
"Initials": "초기",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "파일 콘텐츠를 대화 컨텍스트에 삽입",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "입력",
@@ -1549,6 +1554,7 @@
"Linkup API Key": "",
"List": "목록",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "듣는 중...",
"LiteLLM": "",
"Live": "실시간",
@@ -1620,6 +1626,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Open WebUI 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "중간",
"Member removed successfully": "멤버 삭제에 성공했습니다",
"members": "멤버들",
@@ -1702,6 +1709,7 @@
"Model Permissions": "모델 권한",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "모델 응답 또는 출력",
"Model unloaded successfully": "성공적으로 모델이 언로드되었습니다",
"Model updated successfully": "성공적으로 모델이 업데이트되었습니다",
@@ -1741,6 +1749,8 @@
"Name, prompt, and model are required": "이름, 프롬프트, 및 모델은 필수입니다",
"Native": "네이티브",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "절대",
"New": "새로 만들기",
"New Button": "새 버튼",
@@ -1786,7 +1796,6 @@
"No content to speak": "음성 출력할 내용을 찾을 수 없습니다",
"No conversation to save": "저장할 대화가 없습니다",
"No data": "데이터가 없습니다",
"No data found": "데이터를 찾을 수 없습니다",
"No description": "",
"No distance available": "거리 불가능",
"No event webhooks configured.": "",
@@ -2345,6 +2354,7 @@
"Select Method": "방법 선택",
"Select model": "모델 선택",
"Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2449,7 +2459,6 @@
"Show your support!": "당신의 응원을 보내주세요!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "창의성 발휘",
"Showing all messages (user + assistant) per user.": "사용자당 모든 메시지(사용자 + 어시스턴트) 표시.",
"Sign in": "로그인",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} 로그인",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP로 {{WEBUI_NAME}}에 로그인",
@@ -2475,8 +2484,8 @@
"Skills Public Sharing": "스킬 공개 공유",
"Skills Sharing": "스킬 공유",
"Skip Cache": "캐시 무시",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "무언가 잘못 되었습니다 :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2542,6 +2551,7 @@
"Summarize this note.": "",
"Support": "지원",
"Support this plugin:": "플러그인 지원",
"Supported Media MIME Types": "",
"Supported MIME Types": "지원하는 MIME 타입",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2678,6 +2688,7 @@
"Today at": "오늘은",
"Toggle {{COUNT}} sources": "{{COUNT}} 소스 토글",
"Toggle 1 source": "1 소스 토글",
"Toggle Controls": "",
"Toggle details": "세부 정보 토글",
"Toggle Dictation": "음성 입력 토글",
"Toggle Mute": "",
@@ -2860,6 +2871,8 @@
"View source: {{name}}": "소스 보기: {{name}}",
"View source: {{title}}": "소스 보기: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "공개 범위",
"Visible": "공개",
"Visible to all users": "모든 사용자에게 공개",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Patikrinti iš naujo",
"Check for updates": "Patikrinti atnaujinimus",
"Checking for updates...": "Ieškoma atnaujinimų...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Pasirinkite modelį prieš išsaugant...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1326,8 +1329,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Klausoma...",
"LiteLLM": "",
"Live": "",
@@ -1649,6 +1655,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1731,6 +1738,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modelis atnaujintas sėkmingai",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1815,7 +1825,6 @@
"No content to speak": "Nėra turinio kalbėjimui",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Pasirinkite vieną modelį",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Palaikykite",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Kūrybingų užklausų paroda",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Prisijungti",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Palaikyti",
"Support this plugin:": "Palaikykite šitą modulį",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2717,6 +2727,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Pārbaudīt vēlreiz",
"Check for updates": "Pārbaudīt atjauninājumus",
"Checking for updates...": "Pārbauda atjauninājumus...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Izvēlieties modeli pirms saglabāšanas...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Fragmenta minimālā izmēra mērķis",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Savienojieties ar saviem OpenAI saderīgajiem API galapunktiem.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "Ģenerēt attēlu",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Ģenerēt ziņojumu pāri",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Attēla uzvednes ģenerēšana",
"Image Prompt Generation Prompt": "Attēla uzvednes ģenerēšanas uzvedne",
"Image Size": "Attēla izmērs",
"image/*, video/*": "",
"Images": "Attēli",
"Import": "Importēt",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "Iniciāļi",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Ievadīt faila saturu sarunas kontekstā",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Ievadīt visu saturu kā kontekstu visaptverošai apstrādei, tas ir ieteicams sarežģītiem vaicājumiem.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Ievade",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "Saraksts",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Klausās...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP atbalsts ir eksperimentāls un tā specifikācija bieži mainās, kas var novest pie nesaderības. OpenAPI specifikācijas atbalstu tieši uztur Open WebUI komanda, padarot to par uzticamāku opciju saderībai.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Vidējs",
"Member removed successfully": "Dalībnieks veiksmīgi noņemts",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Modeļa atļaujas",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Modeļa atbildes vai izvades",
"Model unloaded successfully": "Modelis veiksmīgi izlādēts",
"Model updated successfully": "Modelis veiksmīgi atjaunināts",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "Vietējais",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "Jauns",
"New Button": "Jauna poga",
@@ -1805,7 +1815,6 @@
"No content to speak": "Nav satura, ko izrunāt",
"No conversation to save": "Nav sarunas, ko saglabāt",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Attālums nav pieejams",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "Izvēlieties metodi",
"Select model": "",
"Select only one model to call": "Izvēlieties tikai vienu modeli izsaukšanai",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Parādiet savu atbalstu!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Demonstrēta radošums",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Pieteikties",
"Sign in to {{WEBUI_NAME}}": "Pieteikties {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Pieteikties {{WEBUI_NAME}} ar LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Izlaist kešatmiņu",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Kaut kas nogāja greizi :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Atbalsts",
"Support this plugin:": "Atbalstiet šo spraudni:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Atbalstītie MIME tipi",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Redzamība",
"Visible": "",
"Visible to all users": "Redzams visiem lietotājiem",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "Semak Kembali",
"Check for updates": "Semak kemas kini",
"Checking for updates...": "Kemas kini sedang disemak",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Pilih model sebelum menyimpan",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Sasaran Saiz Minimum Chunk",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Sambung ke pembekal AI untuk mula berbual",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Sambung ke instans Terminal Terbuka untuk menyemak imbas fail dan gunakannya sebagai alat sentiasa aktif. Hanya satu boleh aktif pada satu masa.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Sambung ke instans Terminal Terbuka. Semua pengguna akan mempunyai akses kepada penyemakan fail dan alat terminal melalui pelayan ini.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Sambung ke titik akhir API yang serasi dengan OpenAI anda sendiri.",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Token Konteks",
@@ -1296,8 +1299,8 @@
"Generate an image": "Janakan imej",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Janakan dan edit imej",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Janakan Pasangan Mesej",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "Penjanaan Arahan Imej",
"Image Prompt Generation Prompt": "Arahan Penjanaan Imej",
"Image Size": "Saiz Imej",
"image/*, video/*": "",
"Images": "Imej",
"Import": "Import",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "Inisial",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Suntikkan kandungan fail ke dalam konteks perbualan",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Suntikkan seluruh kandungan sebagai konteks untuk pemprosesan komprehensif, ini disyorkan untuk pertanyaan yang kompleks.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Input",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "Senarai",
"List calendars, search, create, update, and delete calendar events": "Senaraikan kalendar, cari, cipta, kemas kini, dan padamkan acara kalendar",
"List, search, and read files attached to the current chat": "",
"Listening...": "Mendengar...",
"LiteLLM": "",
"Live": "Langsung",
@@ -1619,6 +1625,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Sokongan MCP adalah eksperimental dan spesifikasinya kerap berubah, yang boleh menyebabkan ketidakserasian. Sokongan spesifikasi OpenAPI dikekalkan secara langsung oleh pasukan Open WebUI, menjadikannya pilihan yang lebih boleh dipercayai untuk keserasian.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Sederhana",
"Member removed successfully": "Ahli telah dikeluarkan dengan berjaya",
"members": "ahli",
@@ -1701,6 +1708,7 @@
"Model Permissions": "Kebenaran Model",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Respons atau output model",
"Model unloaded successfully": "Model dimuat keluar dengan berjaya",
"Model updated successfully": "Model berjaya dikemas kini",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "Nama, arahan, dan model diperlukan",
"Native": "Asli",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Tidak Pernah",
"New": "Baharu",
"New Button": "Butang Baharu",
@@ -1785,7 +1795,6 @@
"No content to speak": "Tiada kandungan untuk bercakap",
"No conversation to save": "Tiada perbualan untuk disimpan",
"No data": "Tiada data",
"No data found": "Tiada data ditemui",
"No description": "",
"No distance available": "Tiada jarak tersedia",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "Pilih Kaedah",
"Select model": "Pilih model",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "Tunjukkan sokongan anda!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Kreativiti yang dipamerkan",
"Showing all messages (user + assistant) per user.": "Menunjukkan semua mesej (pengguna + pembantu) setiap pengguna.",
"Sign in": "Daftar masuk",
"Sign in to {{WEBUI_NAME}}": "Daftar masuk ke {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Daftar masuk ke {{WEBUI_NAME}} dengan LDAP",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "Perkongsian Awam Kemahiran",
"Skills Sharing": "Perkongsian Kemahiran",
"Skip Cache": "Langkau Cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Ada yang salah :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Penyelidikan Mendalam Sonar",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "Sokongan",
"Support this plugin:": "Sokong plugin ini",
"Supported Media MIME Types": "",
"Supported MIME Types": "Jenis MIME yang Disokong",
"Switch camera": "",
"Switch to JSON editor": "Tukar ke penyunting JSON",
@@ -2675,6 +2685,7 @@
"Today at": "Hari ini pada",
"Toggle {{COUNT}} sources": "Suis {{COUNT}} sumber",
"Toggle 1 source": "Suis 1 sumber",
"Toggle Controls": "",
"Toggle details": "Suis butiran",
"Toggle Dictation": "Suis Diktasi",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "Lihat sumber: {{name}}",
"View source: {{title}}": "Lihat sumber: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Ketampakan",
"Visible": "Boleh Dilihat",
"Visible to all users": "Kelihatan kepada semua pengguna",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Sjekk på nytt",
"Check for updates": "Sjekk for oppdateringer",
"Checking for updates...": "Sjekker for oppdateringer ...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Velg en modell før du lagrer ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Koble til egne OpenAI-kompatible API-endepunkter",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Genrer et bilde",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Generering av ledetekster for bilder",
"Image Prompt Generation Prompt": "Ledetekst for generering av bilde",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Lytter ...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modelltillatelser",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modell oppdatert",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Opprinnelig",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Mangler innhold for tale",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Ingen avstand tilgjengelig",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Velg bare én modell som skal kalles",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Vis din støtte!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Fremhevet kreativitet",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Logg inn",
"Sign in to {{WEBUI_NAME}}": "Logg på {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Logg på {{WEBUI_NAME}} med LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Bidra",
"Support this plugin:": "Bidra til denne utvidelsen:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Synlighet",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Controleer Opnieuw",
"Check for updates": "Controleer op updates",
"Checking for updates...": "Controleren op updates...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Kies een model voordat je opslaat...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Target minimale chunkgrootte",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Verbind met een AI-provider om te beginnen met chatten",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Verbind met Open Terminal-instanties om bestanden te doorzoeken en ze te gebruiken als altijd-beschikbare tools. Slechts een kan tegelijk actief zijn.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Verbind met Open Terminal-instanties. Alle gebruikers krijgen via deze servers toegang tot bestandsverkenning en terminaltools.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Verbind met je eigen OpenAI-compatibele API-endpoints",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Genereer een afbeelding",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Afbeeldingen genereren en bewerken",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Berichtenpaar genereren",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Afbeeldingspromptgeneratie",
"Image Prompt Generation Prompt": "Afbeeldingspromptgeneratie prompt",
"Image Size": "Afbeeldingsgrootte",
"image/*, video/*": "",
"Images": "Afbeeldingen",
"Import": "Importeren",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Initialen",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Bestandsinhoud in gesprekscontext injecteren",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "Invoer",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "Lijst",
"List calendars, search, create, update, and delete calendar events": "Agenda's weergeven, zoeken, maken, bijwerken en agenda-afspraken verwijderen",
"List, search, and read files attached to the current chat": "",
"Listening...": "Aan het luisteren...",
"LiteLLM": "",
"Live": "Live",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-ondersteuning is experimenteel en de specificatie verandert vaak, wat tot incompatibiliteiten kan leiden. Ondersteuning voor de OpenAPI-specificatie wordt direct onderhouden door het Open WebUI-team, waardoor dit de betrouwbaardere optie voor compatibiliteit is.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Gemiddeld",
"Member removed successfully": "Lid succesvol verwijderd",
"members": "leden",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modeltoestemmingen",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Modelantwoorden of uitvoer",
"Model unloaded successfully": "Model succesvol ontladen",
"Model updated successfully": "Model succesvol bijgewerkt",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Naam, prompt en model zijn verplicht",
"Native": "Native",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nooit",
"New": "Nieuw",
"New Button": "Nieuwe knop",
@@ -1795,7 +1805,6 @@
"No content to speak": "Geen inhoud om over te spreken",
"No conversation to save": "Geen gesprek om op te slaan",
"No data": "Geen gegevens",
"No data found": "Geen gegevens gevonden",
"No description": "",
"No distance available": "Geen afstand beschikbaar",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Selecteer methode",
"Select model": "Selecteer model",
"Select only one model to call": "Selecteer maar één model om aan te roepen",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Toon je steun",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Toonde creativiteit",
"Showing all messages (user + assistant) per user.": "Toont alle berichten (gebruiker + assistent) per gebruiker.",
"Sign in": "Inloggen",
"Sign in to {{WEBUI_NAME}}": "Log in bij {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Log in bij {{WEBUI_NAME}} met LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Openbaar delen van vaardigheden",
"Skills Sharing": "Vaardigheden delen",
"Skip Cache": "Cache overslaan",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Er is iets misgegaan :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Ondersteuning",
"Support this plugin:": "ondersteun deze plugin",
"Supported Media MIME Types": "",
"Supported MIME Types": "Ondersteunde MIME-typen",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "Vandaag om",
"Toggle {{COUNT}} sources": "Schakel {{COUNT}} bronnen om",
"Toggle 1 source": "Schakel 1 bron om",
"Toggle Controls": "",
"Toggle details": "Details omzetten",
"Toggle Dictation": "Dicteren omzetten",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Bekijk bron: {{name}}",
"View source: {{title}}": "Bekijk bron: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Zichtbaarheid",
"Visible": "Zichtbaar",
"Visible to all users": "Zichtbaar voor alle gebruikers",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "ਮੁੜ ਜਾਂਚ ਕਰੋ",
"Check for updates": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਕਰੋ",
"Checking for updates...": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਰਿਹਾ ਹੈ...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਇੱਕ ਮਾਡਲ ਚੁਣੋ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Sprawdź ponownie",
"Check for updates": "Sprawdź dostępność aktualizacji",
"Checking for updates...": "Sprawdzanie aktualizacji...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Wybierz model przed zapisaniem...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Docelowy min. rozmiar chunka",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Połącz się z dostawcą AI, aby rozpocząć czat",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Połącz się z instancjami Open Terminal, aby przeglądać pliki i używać ich jako stale dostępnych narzędzi. Tylko jedna instancja może być aktywna jednocześnie.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Połącz się z instancjami Open Terminal. Wszyscy użytkownicy będą mieli dostęp do przeglądania plików i narzędzi terminalowych przez te serwery.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Połącz z własnymi punktami końcowymi API zgodnymi z OpenAI.",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Tokeny kontekstu",
@@ -1326,8 +1329,8 @@
"Generate an image": "Wygeneruj obraz",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Generuj i edytuj obrazy",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Generuj parę wiadomości",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "Generowanie promptu dla obrazu",
"Image Prompt Generation Prompt": "Prompt generujący prompt dla obrazu",
"Image Size": "Rozmiar obrazu",
"image/*, video/*": "",
"Images": "Obrazy",
"Import": "Importuj",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "Inicjały",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Dołącz treść pliku do kontekstu rozmowy",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Dołącz całą treść jako kontekst (zalecane dla złożonych zapytań).",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Wejście",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "Wyświetlaj kalendarze, wyszukuj, twórz, aktualizuj i usuwaj wydarzenia",
"List, search, and read files attached to the current chat": "",
"Listening...": "Słucham...",
"LiteLLM": "",
"Live": "Na żywo",
@@ -1649,6 +1655,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Wsparcie MCP jest eksperymentalne i może powodować niekompatybilność. Wsparcie OpenAPI jest utrzymywane przez zespół Open WebUI i jest bardziej niezawodne.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Średni",
"Member removed successfully": "Członek usunięty pomyślnie",
"members": "członkowie",
@@ -1731,6 +1738,7 @@
"Model Permissions": "Uprawnienia modelu",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Odpowiedzi lub wyniki modelu",
"Model unloaded successfully": "Model odładowany pomyślnie",
"Model updated successfully": "Model zaktualizowany pomyślnie",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "Nazwa, prompt i model są wymagane",
"Native": "Natywny",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nigdy",
"New": "Nowy",
"New Button": "Nowy przycisk",
@@ -1815,7 +1825,6 @@
"No content to speak": "Brak treści do wymówienia",
"No conversation to save": "Brak rozmowy do zapisania",
"No data": "Brak danych",
"No data found": "Nie znaleziono danych",
"No description": "",
"No distance available": "Brak wyniku dopasowania",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "Wybierz metodę",
"Select model": "Wybierz model",
"Select only one model to call": "Wybierz tylko jeden model do wywołania",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Pokaż wsparcie!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Kreatywność",
"Showing all messages (user + assistant) per user.": "Wyświetlanie wszystkich wiadomości (użytkownika i asystenta) na użytkownika.",
"Sign in": "Zaloguj się",
"Sign in to {{WEBUI_NAME}}": "Zaloguj się do {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Zaloguj się do {{WEBUI_NAME}} przez LDAP",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "Publiczne udostępnianie umiejętności",
"Skills Sharing": "Udostępnianie umiejętności",
"Skip Cache": "Pomiń Cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Coś poszło nie tak :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Wsparcie",
"Support this plugin:": "Wesprzyj ten plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Obsługiwane typy MIME",
"Switch camera": "",
"Switch to JSON editor": "Przełącz na edytor JSON",
@@ -2717,6 +2727,7 @@
"Today at": "Dziś o",
"Toggle {{COUNT}} sources": "Pokaż/ukryj {{COUNT}} źródeł",
"Toggle 1 source": "Pokaż/ukryj 1 źródło",
"Toggle Controls": "",
"Toggle details": "Pokaż/ukryj szczegóły",
"Toggle Dictation": "Przełącz dyktowanie",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "Pokaż źródło: {{name}}",
"View source: {{title}}": "Pokaż źródło: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Widoczność",
"Visible": "Widoczny",
"Visible to all users": "Widoczne dla wszystkich",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Verificar Novamente",
"Check for updates": "Verificar atualizações",
"Checking for updates...": "Verificando atualizações...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Escolha um modelo antes de salvar...",
"Choose automatic, left-to-right, or right-to-left text flow.": "Escolha o fluxo de texto automático, da esquerda para a direita ou da direita para a esquerda.",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "Escolha modelos alternativos para tarefas em segundo plano. Modelo Atual acompanha o modelo ativo no chat.",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "Escolha o runtime usado nos blocos de código gerados.",
"Choose the speech provider used for assistant audio output.": "Escolha o provedor de fala usado na saída de áudio do assistente.",
"Choose the transcription provider used for audio input.": "Escolha o provedor de transcrição usado na entrada de áudio.",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "Escolha se Enter envia imediatamente ou se Ctrl+Enter deve ser usado.",
"Choose whether the app opens to the default home or chat view.": "Escolha se o aplicativo abre na página inicial padrão ou na visualização do chat.",
"Chunk Min Size Target": "Tamanho mínimo alvo do bloco",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "Conecte-se a um servidor stable-diffusion-webui em execução com a flag `--api`.",
"Connect to an AI provider to start chatting": "Conecte-se a um provedor de IA para começar a conversar",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Conecte-se a instâncias do Open Terminal para navegar em arquivos e usá-las como ferramentas sempre ativas. Apenas uma pode estar ativa por vez.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Conecte-se a instâncias do Open Terminal. Todos os usuários terão acesso à navegação de arquivos e ferramentas de terminal por meio desses servidores.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "Conecte-se ao servidor ComfyUI usado para geração.",
"Connect to the ComfyUI server used for image edits.": "Conecte-se ao servidor ComfyUI usado para edição de imagens.",
"Connect to your own OpenAI compatible API endpoints.": "Conecte-se aos seus próprios endpoints de API compatíveis com OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "Compactação de Contexto",
"Context compaction failed": "Falha na compactação de contexto",
"Context compaction is disabled": "A compactação de contexto está desativada",
"Context Compaction Model": "",
"Context Compaction Prompt": "Prompt de Compactação de Contexto",
"Context Compaction Threshold": "Limite de Compactação de Contexto",
"Context Tokens": "Tokens de Contexto",
@@ -1316,8 +1319,8 @@
"Generate an image": "Gerar uma imagem",
"Generate an image prompt before sending the request.": "Gere um prompt de imagem antes de enviar a solicitação.",
"Generate and edit images": "Gere e edite imagens",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "Gere títulos de chat automaticamente a partir do conteúdo da conversa.",
"Generate message pair": "",
"Generate Message Pair": "Gerar par de mensagens",
"Generate suggested follow-up prompts after responses.": "Gere sugestões de prompts de acompanhamento após as respostas.",
"Generate tags for chats automatically.": "Gere tags para os chats automaticamente.",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Geração de prompt de imagem",
"Image Prompt Generation Prompt": "Prompt de geração de prompt de imagem",
"Image Size": "Tamanho da imagem",
"image/*, video/*": "",
"Images": "Imagens",
"Import": "Importar",
"Import admin configuration from a JSON export file.": "Importe a configuração do administrador de um arquivo de exportação JSON.",
@@ -1441,6 +1445,7 @@
"Initials": "Iniciais",
"Inject entire documents as context for comprehensive processing.": "Injete documentos inteiros como contexto para um processamento abrangente.",
"Inject file content into conversation context": "Inserir conteúdo de arquivo no contexto da conversa",
"Inject stored memories into conversation context": "",
"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.": "Injete todo o conteúdo como contexto para um processamento abrangente.",
"Input": "Entrada",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "Chave da API Linkup",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "Listar calendários, pesquisar, criar, atualizar e excluir eventos do calendário",
"List, search, and read files attached to the current chat": "",
"Listening...": "Escutando...",
"LiteLLM": "",
"Live": "Ao vivo",
@@ -1639,6 +1645,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do Open WebUI, tornando-o a opção mais confiável para compatibilidade.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Médio",
"Member removed successfully": "Membro removido com sucesso",
"members": "membros",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Permissões do Modelo",
"Model removed from pinned models": "Modelo removido dos modelos fixados",
"Model removed from selected models": "Modelo removido dos modelos selecionados",
"Model Response Mode": "",
"Model responses or outputs": "Respostas ou resultados do modelo",
"Model unloaded successfully": "Modelo descarregado com sucesso",
"Model updated successfully": "Modelo atualizado com sucesso",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "Nome, prompt e modelo são obrigatórios.",
"Native": "Nativo",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "O modo nativo (padrão) aproveita as capacidades de chamada de ferramentas integradas do modelo. O modo legado funciona com uma gama mais ampla de modelos chamando ferramentas uma vez antes da execução via injeção de prompt.",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nunca",
"New": "Novo",
"New Button": "Novo Botão",
@@ -1805,7 +1815,6 @@
"No content to speak": "Sem conteúdo para falar",
"No conversation to save": "Nenhuma conversa para salvar",
"No data": "Sem dados",
"No data found": "Nenhum dado encontrado",
"No description": "Sem descrição",
"No distance available": "Sem distância disponível",
"No event webhooks configured.": "Nenhum webhook de evento configurado.",
@@ -2369,6 +2378,7 @@
"Select Method": "Selecione o método",
"Select model": "Selecione o modelo",
"Select only one model to call": "Selecione apenas um modelo para chamar",
"Select options": "",
"Select Skill": "Selecionar habilidade",
"Select the Gemini endpoint method to call.": "Selecione o método do endpoint Gemini a ser chamado.",
"Select the local model precision used by Kokoro.js.": "Selecione a precisão do modelo local usada pelo Kokoro.js.",
@@ -2473,7 +2483,6 @@
"Show your support!": "Mostre seu apoio!",
"Show your username label instead of You in chat bubbles.": "Mostre seu nome de usuário em vez de Você nos balões do chat.",
"Showcased creativity": "Criatividade exibida",
"Showing all messages (user + assistant) per user.": "Exibindo todas as mensagens (usuário + assistente) por usuário.",
"Sign in": "Entrar",
"Sign in to {{WEBUI_NAME}}": "Faça login em {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Faça login em {{WEBUI_NAME}} com LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "Compartilhamento público de skills",
"Skills Sharing": "Compartilhamento de skills",
"Skip Cache": "Pular cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "Ignore os resultados do Marker em cache e execute a inferência novamente.",
"Skip to main content": "",
"Something went wrong :/": "Algo deu errado :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "Resuma esta nota.",
"Support": "Suporte",
"Support this plugin:": "Apoie este plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Tipos MIME suportados",
"Switch camera": "",
"Switch to JSON editor": "Mudar para editor JSON",
@@ -2703,6 +2713,7 @@
"Today at": "Hoje em",
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} origens",
"Toggle 1 source": "Alternar 1 origem",
"Toggle Controls": "",
"Toggle details": "Alternar detalhes",
"Toggle Dictation": "Alternar Ditado",
"Toggle Mute": "Alternar Mudo",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "Ver origem: {{name}}",
"View source: {{title}}": "Ver origem: {{title}}",
"View the installed version and check release updates.": "Veja a versão instalada e verifique as atualizações de versão.",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilidade",
"Visible": "Visível",
"Visible to all users": "Visível para todos os usuários",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Verifique novamente",
"Check for updates": "Verificar atualizações",
"Checking for updates...": "Verificando atualizações...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Escolha um modelo antes de guardar...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Fragmento Tamanho Mínimo Alvo",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Conecte-se a um provedor de IA para começar a conversar",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Ligar às instâncias do Open Terminal para procurar ficheiros e utilizálos como ferramentas sempre disponíveis. Só pode ser ativado um de cada vez.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ligar às instançias do Open Terminal. Todos os utilizadores terão acesso à pesquisa de ficheiros e ferramentas de terminais pelos servidores.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Ligar ao seu próprio endpoint compatível com a OpenAI.",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "Gerar uma imagem",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Gerar e editar imagens",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Gerar Par de Mensagens",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "Geração de Prompt de Imagem",
"Image Prompt Generation Prompt": "Prompt de Geração de Imagem",
"Image Size": "Tamanho da Imagem",
"image/*, video/*": "",
"Images": "Imagens",
"Import": "Importar",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "Iniciais",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Injetar o conteúdo do ficheiro no contexto da conversa",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injetar todo o conteúdo como contexto para um processamento abrangente, isso é recomendado para consultas complexas.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Entrada",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "A ouvir...",
"LiteLLM": "",
"Live": "Ao vivo",
@@ -1639,6 +1645,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte MCP é experimental e a sua especificação muda frequentemente, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipa Open WebUI, tornando-o a opção mais confiável para compatibilidade.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Médio",
"Member removed successfully": "Membro removido com sucesso",
"members": "membros",
@@ -1721,6 +1728,7 @@
"Model Permissions": "Permissões do Modelo",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Respostas ou saídas do Modelo",
"Model unloaded successfully": "Modelo descarregado com sucesso",
"Model updated successfully": "Modelo atualizado com sucesso",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "Novo",
"New Button": "Novo Botão",
@@ -1805,7 +1815,6 @@
"No content to speak": "Nenhum conteúdo para falar",
"No conversation to save": "Nenhuma conversa para guardar",
"No data": "Sem dados",
"No data found": "Nenhum dado encontrado",
"No description": "",
"No distance available": "Nenhuma distância disponível",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "Selecione o Método",
"Select model": "",
"Select only one model to call": "Selecione apenas um modelo para a chamada",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Mostre seu apoio!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Criatividade Exibida",
"Showing all messages (user + assistant) per user.": "A mostrar todas as mensagens (utilizador + assistente) por utilizador.",
"Sign in": "Entrar",
"Sign in to {{WEBUI_NAME}}": "Entrar no {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Entrar no {{WEBUI_NAME}} com LDAP",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "Partilha Pública de Habilidades",
"Skills Sharing": "Partilha de Habilidades",
"Skip Cache": "Ignorar Cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Algo correu mal :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Pesquisa Profunda Sonar",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Suporte",
"Support this plugin:": "Suporte este plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Tipos MIME Suportados",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} fontes",
"Toggle 1 source": "Alternar 1 fonte",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "Alternar Ditado",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "Ver fonte: {{name}}",
"View source: {{title}}": "Ver fonte: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibilidade",
"Visible": "Visível",
"Visible to all users": "Visível para todos os utilizadores",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Verifică din Nou",
"Check for updates": "Verifică actualizări",
"Checking for updates...": "Se verifică actualizările...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Alege un model înainte de a salva...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Ascult...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Modelul a fost actualizat cu succes",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "Nu există conținut de vorbit",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Nicio distanță disponibilă",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Selectează doar un singur model pentru apel",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "Arată-ți susținerea!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Creativitate expusă",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Autentificare",
"Sign in to {{WEBUI_NAME}}": "Conectează-te la {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Suport",
"Support this plugin:": "Susține acest plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Vizibilitate",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Перепроверьте ещё раз",
"Check for updates": "Проверить обновления",
"Checking for updates...": "Проверка обновлений...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Выберите модель перед сохранением...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Минимальный размер чанка",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Подключите AI-провайдера, чтобы начать общение",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Подключайтесь к экземплярам Open Terminal для просмотра файлов и использования их как постоянно доступных инструментов. Одновременно может быть активен только один.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Подключение к экземплярам Open Terminal. Все пользователи получат доступ к файлам и терминалу через эти серверы.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Подключитесь к своим собственным энд-поинтам API, совместимым с OpenAI.",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Токены контекста",
@@ -1326,8 +1329,8 @@
"Generate an image": "Сгенерировать изображение",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Генерация и редактирование изображений",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Сгенерировать пару сообщений",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "Генерация промпта к изображению",
"Image Prompt Generation Prompt": "Промпт для создание промпта изображения",
"Image Size": "Размер Изображения",
"image/*, video/*": "",
"Images": "Изображения",
"Import": "Импорт",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "Инициалы",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Вставлять содержимое файлов в контекст разговора",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Ввод",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "Список",
"List calendars, search, create, update, and delete calendar events": "Просматривайте календари, ищите, создавайте, обновляйте и удаляйте события календаря",
"List, search, and read files attached to the current chat": "",
"Listening...": "Слушаю...",
"LiteLLM": "",
"Live": "Активно",
@@ -1649,6 +1655,7 @@
"MBR": "Уч.",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Поддержка MCP является экспериментальной, а частые изменения спецификации могут приводить к несовместимостям. Поддержка OpenAPI напрямую обеспечивается командой Open WebUI, что делает её более надёжным вариантом.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Средний",
"Member removed successfully": "Участник успешно удалён",
"members": "участники",
@@ -1731,6 +1738,7 @@
"Model Permissions": "Разрешения Модели",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Ответы и выходные данные модели",
"Model unloaded successfully": "Модель выгружена успешно",
"Model updated successfully": "Модель успешно обновлена",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "Требуются название, промпт и модель",
"Native": "Нативный",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Никогда",
"New": "Новый",
"New Button": "Новая кнопка",
@@ -1815,7 +1825,6 @@
"No content to speak": "Нечего говорить",
"No conversation to save": "Нет разговора для сохранения",
"No data": "Нет данных",
"No data found": "Данные не найдены",
"No description": "",
"No distance available": "Расстояние недоступно",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "Выберите метод",
"Select model": "Выберите модель",
"Select only one model to call": "Выберите только одну модель для вызова",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Поддержите нас!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Продемонстрирован творческий подход",
"Showing all messages (user + assistant) per user.": "Показаны все сообщения (пользователя и ассистента) для каждого пользователя.",
"Sign in": "Войти",
"Sign in to {{WEBUI_NAME}}": "Войти в {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Войти в {{WEBUI_NAME}} по LDAP",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "Публичный доступ к скиллам",
"Skills Sharing": "Общий доступ к скиллам",
"Skip Cache": "Пропустить кэширование",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Что-то пошло не так :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Поддержать",
"Support this plugin:": "Поддержите этот плагин",
"Supported Media MIME Types": "",
"Supported MIME Types": "Поддерживаемые MIME типы",
"Switch camera": "",
"Switch to JSON editor": "Переключиться на редактор JSON",
@@ -2717,6 +2727,7 @@
"Today at": "Сегодня в",
"Toggle {{COUNT}} sources": "Показать/скрыть {{COUNT}} источников",
"Toggle 1 source": "Показать/скрыть 1 источник",
"Toggle Controls": "",
"Toggle details": "Показать/скрыть подробности",
"Toggle Dictation": "Включить/выключить диктовку",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "Просмотреть источник: {{name}}",
"View source: {{title}}": "Просмотреть источник: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Видимость",
"Visible": "Видимо",
"Visible to all users": "Видимо всем пользователям",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Skontroluj znovu",
"Check for updates": "Skontrolovať aktualizácie",
"Checking for updates...": "Kontrola aktualizácií...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Vyberte model pred uložením...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1326,8 +1329,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Počúvanie...",
"LiteLLM": "",
"Live": "",
@@ -1649,6 +1655,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1731,6 +1738,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Model bol úspešne aktualizovaný",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "Nový",
"New Button": "",
@@ -1815,7 +1825,6 @@
"No content to speak": "Žiadny obsah na diskusiu.",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Nie je dostupná žiadna vzdialenosť",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Vyjadrite svoju podporu!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Predvedená kreativita",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Prihlásiť sa",
"Sign in to {{WEBUI_NAME}}": "Prihlásiť sa do {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Podpora",
"Support this plugin:": "Podporte tento plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2717,6 +2727,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Viditeľnosť",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Preveri znova",
"Check for updates": "Preveri posodobitve",
"Checking for updates...": "Preverjanje posodobitev ...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Pred shranjevanjem izberite model ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Chunk Min Size Target",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Poveži to an AI provider to start chatting",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Poveži to Open terminal instances to browse files and use them as always-on tools. Only one can be active at a time.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Poveži to Open terminal instances. All users will have access to file browsing and terminal tools through these servers.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Poveži to your own OpenAI compatible API endpoints.",
@@ -623,6 +625,7 @@
"Context Compaction": "Strnjevanje konteksta",
"Context compaction failed": "Strnjevanje konteksta ni uspelo",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "Context Compaction Prompt",
"Context Compaction Threshold": "Context Compaction Threshold",
"Context Tokens": "Žetoni konteksta",
@@ -1326,8 +1329,8 @@
"Generate an image": "Ustvari sliko",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Ustvari in urejaj slike",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Ustvari sporočilo Pair",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "Ustvarjanje poziva za sliko",
"Image Prompt Generation Prompt": "Poziv za ustvarjanje poziva slike",
"Image Size": "Velikost slike",
"image/*, video/*": "",
"Images": "Slike",
"Import": "Uvozi",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "Začetnice",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Inject file content into conversation context",
"Inject stored memories into conversation context": "",
"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.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Vnos",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "Linkup API Key",
"List": "Seznam",
"List calendars, search, create, update, and delete calendar events": "List calendars, search, create, update, and delete calendar events",
"List, search, and read files attached to the current chat": "",
"Listening...": "Poslušanje ...",
"LiteLLM": "",
"Live": "V živo",
@@ -1649,6 +1655,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Srednje",
"Member removed successfully": "Član je uspešno odstranjen",
"members": "člani",
@@ -1731,6 +1738,7 @@
"Model Permissions": "Dovoljenja modela",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Model responses or outputs",
"Model unloaded successfully": "Model je uspešno odstranjen iz pomnilnika",
"Model updated successfully": "Model je uspešno posodobljen",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "Ime, poziv in model so obvezni",
"Native": "Izvorno",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Nikoli",
"New": "Novo",
"New Button": "Nov gumb",
@@ -1815,7 +1825,6 @@
"No content to speak": "Ni content to speak",
"No conversation to save": "Ni conversation to save",
"No data": "Ni podatkov",
"No data found": "Ni najdenih podatkov",
"No description": "",
"No distance available": "Ni distance available",
"No event webhooks configured.": "Ni event webhooks configured.",
@@ -2382,6 +2391,7 @@
"Select Method": "Izberi Method",
"Select model": "Izberi model",
"Select only one model to call": "Izberite samo en model za klic",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Prikaži your support!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Showcased creativity",
"Showing all messages (user + assistant) per user.": "Showing all messages (user + assistant) per user.",
"Sign in": "Prijava",
"Sign in to {{WEBUI_NAME}}": "Prijava v {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Sign in to {{WEBUI_NAME}} with LDAP",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "Skills Public Sharing",
"Skills Sharing": "Skills Sharing",
"Skip Cache": "Skip Cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Something went wrong :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Podpora",
"Support this plugin:": "Support this plugin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Supported MIME Types",
"Switch camera": "",
"Switch to JSON editor": "Switch to JSON editor",
@@ -2717,6 +2727,7 @@
"Today at": "Danes ob",
"Toggle {{COUNT}} sources": "Toggle {{COUNT}} sources",
"Toggle 1 source": "Toggle 1 source",
"Toggle Controls": "",
"Toggle details": "Toggle details",
"Toggle Dictation": "Toggle Dictation",
"Toggle Mute": "Toggle Mute",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "View source: {{name}}",
"View source: {{title}}": "View source: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Visibility",
"Visible": "Visible",
"Visible to all users": "Visible to all users",
+18 -5
View File
@@ -450,6 +450,7 @@
"Check Again": "Провери поново",
"Check for updates": "Потражи ажурирања",
"Checking for updates...": "Траже се ажурирања...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Изабери модел пре чувања...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -473,6 +474,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -589,7 +591,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -615,6 +617,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1316,8 +1319,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1413,6 +1416,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1441,6 +1445,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1568,6 +1573,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Слушам...",
"LiteLLM": "",
"Live": "",
@@ -1639,6 +1645,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1721,6 +1728,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1760,6 +1768,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1805,7 +1815,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2369,6 +2378,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2473,7 +2483,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Приказана креативност",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Пријави се",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2499,8 +2508,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2567,6 +2576,7 @@
"Summarize this note.": "",
"Support": "Подршка",
"Support this plugin:": "Подржите овај прикључак",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2703,6 +2713,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2885,6 +2896,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Видљивост",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Kontrollera igen",
"Check for updates": "Sök efter uppdateringar",
"Checking for updates...": "Söker efter uppdateringar...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Välj en modell innan du sparar...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Chunk Min Storlek Mål",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Anslut till en AI-leverantör för att börja chatta",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Anslut till Open Terminal-instanser för att bläddra bland filer och använda dem som verktyg som alltid är på. Endast en kan vara aktiv åt gången.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Anslut till Open Terminal-instanser. Alla användare kommer att ha tillgång till filbläddring och terminalverktyg via de här servrar.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Anslut till dina egna OpenAI-kompatibla API-endpoints.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Kontexttoken",
@@ -1306,8 +1309,8 @@
"Generate an image": "Generera en bild",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Generera och redigera bilder",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Generera meddelandepar",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Generering av bildprompt",
"Image Prompt Generation Prompt": "Prompt för generering av bildprompt",
"Image Size": "Bildstorlek",
"image/*, video/*": "",
"Images": "Bilder",
"Import": "Importera",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Initialer",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Injicera filinnehåll i konversationssammanhang",
"Inject stored memories into conversation context": "",
"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, det här rekommenderas för komplexa frågor.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Input",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "Lista",
"List calendars, search, create, update, and delete calendar events": "Lista kalendrar, sök, skapa, uppdatera och ta bort kalenderhändelser",
"List, search, and read files attached to the current chat": "",
"Listening...": "Lyssnar...",
"LiteLLM": "",
"Live": "Lev",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-stödet är experimentellt och dess specifikation ändras ofta, vilket kan leda till inkompatibilitet. OpenAPI-specifikationen underhålls direkt av Open WebUI-teamet, vilket gör det till det mer tillförlitliga alternativet för kompatibilitet.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Medium",
"Member removed successfully": "Medlem borttagen framgångsrikt",
"members": "medlemmar",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Modellbehörigheter",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Modellens svar eller resultat",
"Model unloaded successfully": "Modellen har avlastats",
"Model updated successfully": "Modellen har uppdaterats",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Namn, prompt och modell krävs",
"Native": "Inbyggd",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Aldrig",
"New": "Ny",
"New Button": "Ny knapp",
@@ -1795,7 +1805,6 @@
"No content to speak": "Inget innehåll att tala",
"No conversation to save": "Ingen konversation att spara",
"No data": "Inga uppgifter",
"No data found": "Inga uppgifter hittades",
"No description": "",
"No distance available": "Inget avstånd tillgängligt",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Välj metod",
"Select model": "Välj modell",
"Select only one model to call": "Välj endast en modell att ringa",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Visa ditt stöd!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Visade kreativitet",
"Showing all messages (user + assistant) per user.": "Visar alla meddelanden (användare + assistent) per användare.",
"Sign in": "Logga in",
"Sign in to {{WEBUI_NAME}}": "Logga in på {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Logga in på {{WEBUI_NAME}} med LDAP",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Färdigheter Offentlig delning",
"Skills Sharing": "Delning av färdigheter",
"Skip Cache": "Hoppa över cache",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Något gick fel :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Stöd",
"Support this plugin:": "Stöd den här plugin",
"Supported Media MIME Types": "",
"Supported MIME Types": "MIME-typer som stöds",
"Switch camera": "",
"Switch to JSON editor": "Byt till JSON-redigerare",
@@ -2689,6 +2699,7 @@
"Today at": "Idag kl.",
"Toggle {{COUNT}} sources": "Växla {{COUNT}} källor",
"Toggle 1 source": "Växla 1 källa",
"Toggle Controls": "",
"Toggle details": "Växla detaljer",
"Toggle Dictation": "Växla diktering",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Visa källa: {{name}}",
"View source: {{title}}": "Visa källa: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Synlighet",
"Visible": "Synlig",
"Visible to all users": "Synlig för alla användare",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "மீண்டும் சரிபார்க்கவும்",
"Check for updates": "புதுப்பிப்புகளைச் சரிபார்க்கவும்",
"Checking for updates...": "புதுப்பிப்புகளைச் சரிபார்க்கிறது...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "சேமிக்கும் முன் மாதிரியைத் தேர்வு செய்யவும்...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "துண்டின் குறைந்தபட்ச அளவு இலக்கு",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "அரட்டையைத் தொடங்க AI வழங்குநருடன் இணைக்கவும்",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Open Terminal நிகழ்வுகளுடன் இணைக்கவும், கோப்புகளை உலாவவும் அவற்றை எப்போதும் இயங்கும் கருவிகளாகப் பயன்படுத்தவும். ஒரு நேரத்தில் ஒருவர் மட்டுமே செயலில் இருக்க முடியும்.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal நிகழ்வுகளுடன் இணைக்கவும். இந்த சேவையகங்கள் மூலம் அனைத்து பயனர்களும் கோப்பு உலாவல் மற்றும் முனைய கருவிகளுக்கான அணுகலைப் பெறுவார்கள்.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "உங்கள் சொந்த OpenAI இணக்கமான API இறுதிப்புள்ளிகளுடன் இணைக்கவும்.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "ஒரு படத்தை உருவாக்கவும்",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "படங்களை உருவாக்கி திருத்தவும்",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "செய்தி ஜோடியை உருவாக்கவும்",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "பட ப்ராம்ட் ஜெனரேஷன்",
"Image Prompt Generation Prompt": "பட ப்ராம்ப்ட் ஜெனரேஷன் ப்ராம்ப்ட்",
"Image Size": "படத்தின் அளவு",
"image/*, video/*": "",
"Images": "படங்கள்",
"Import": "இறக்குமதி",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "முதலெழுத்துக்கள்",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "உரையாடல் சூழலில் கோப்பு உள்ளடக்கத்தை உட்செலுத்தவும்",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "முழு உள்ளடக்கத்தையும் விரிவான செயலாக்கத்திற்கான சூழலாக உட்செலுத்தவும், சிக்கலான வினவல்களுக்கு இது பரிந்துரைக்கப்படுகிறது.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "உள்ளீடு",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "பட்டியல்",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "கேட்கிறது...",
"LiteLLM": "",
"Live": "வாழ்க",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP ஆதரவு சோதனையானது மற்றும் அதன் விவரக்குறிப்பு அடிக்கடி மாறுகிறது, இது இணக்கமின்மைக்கு வழிவகுக்கும். OpenAPI விவரக்குறிப்பு ஆதரவு நேரடியாக Open WebUI குழுவால் பராமரிக்கப்படுகிறது, இது இணக்கத்திற்கான மிகவும் நம்பகமான விருப்பமாக அமைகிறது.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "நடுத்தர",
"Member removed successfully": "உறுப்பினர் வெற்றிகரமாக நீக்கப்பட்டார்",
"members": "உறுப்பினர்கள்",
@@ -1711,6 +1718,7 @@
"Model Permissions": "மாதிரி அனுமதிகள்",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "மாதிரி பதில்கள் அல்லது வெளியீடுகள்",
"Model unloaded successfully": "மாடல் வெற்றிகரமாக இறக்கப்பட்டது",
"Model updated successfully": "மாடல் வெற்றிகரமாக புதுப்பிக்கப்பட்டது",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "பெயர், வினா மற்றும் மாதிரி தேவை",
"Native": "பூர்வீகம்",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "ஒருபோதும் இல்லை",
"New": "புதியது",
"New Button": "புதிய பொத்தான்",
@@ -1795,7 +1805,6 @@
"No content to speak": "பேசுவதற்கு உள்ளடக்கம் இல்லை",
"No conversation to save": "சேமிக்க உரையாடல் இல்லை",
"No data": "தரவு இல்லை",
"No data found": "தரவு எதுவும் கிடைக்கவில்லை",
"No description": "",
"No distance available": "தூரம் இல்லை",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "முறையைத் தேர்ந்தெடுக்கவும்",
"Select model": "மாதிரியைத் தேர்ந்தெடுக்கவும்",
"Select only one model to call": "அழைக்க ஒரே ஒரு மாதிரியைத் தேர்ந்தெடுக்கவும்",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "உங்கள் ஆதரவைக் காட்டுங்கள்!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "படைப்பாற்றலை வெளிப்படுத்தியது",
"Showing all messages (user + assistant) per user.": "ஒரு பயனருக்கு அனைத்து செய்திகளையும் (பயனர் + உதவியாளர்) காட்டுகிறது.",
"Sign in": "உள்நுழை",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} இல் உள்நுழையவும்",
"Sign in to {{WEBUI_NAME}} with LDAP": "{{WEBUI_NAME}} இல் LDAP உடன் உள்நுழையவும்",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "திறன்கள் பொது பகிர்வு",
"Skills Sharing": "திறன் பகிர்வு",
"Skip Cache": "தற்காலிக சேமிப்பைத் தவிர்க்கவும்",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "ஏதோ தவறாகிவிட்டது :/",
"Sonar": "சோனார்",
"Sonar Deep Research": "சோனார் ஆழமான ஆராய்ச்சி",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "ஆதரவு",
"Support this plugin:": "இந்த செருகுநிரலை ஆதரிக்கவும்:",
"Supported Media MIME Types": "",
"Supported MIME Types": "ஆதரிக்கப்படும் MIME வகைகள்",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "இன்று",
"Toggle {{COUNT}} sources": "{{COUNT}} ஆதாரங்களை நிலைமாற்று",
"Toggle 1 source": "1 மூலத்தை நிலைமாற்று",
"Toggle Controls": "",
"Toggle details": "விவரங்களை நிலைமாற்று",
"Toggle Dictation": "டிக்டேஷனை நிலைமாற்று",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "மூலத்தைக் காண்க: {{name}}",
"View source: {{title}}": "மூலத்தைக் காண்க: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "தெரிவுநிலை",
"Visible": "தெரியும்",
"Visible to all users": "அனைத்து பயனர்களுக்கும் தெரியும்",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "ตรวจสอบอีกครั้ง",
"Check for updates": "ตรวจสอบการอัปเดต",
"Checking for updates...": "กำลังตรวจสอบการอัปเดต...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "เชื่อมต่อกับ API Endpoint ที่เข้ากันได้กับ OpenAI ของคุณเอง",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1296,8 +1299,8 @@
"Generate an image": "สร้างรูปภาพ",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "สร้างคู่ข้อความ",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "การสร้างพรอมต์รูปภาพ",
"Image Prompt Generation Prompt": "พรอมต์สำหรับสร้างคำสั่งภาพ",
"Image Size": "ขนาดรูปภาพ",
"image/*, video/*": "",
"Images": "",
"Import": "นำเข้า",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "อักษรย่อ",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "เพิ่มเนื้อหาทั้งหมดเป็นบริบทสำหรับการประมวลผลอย่างครอบคลุม แนะนำให้ใช้สำหรับคำถามที่ซับซ้อน",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "อินพุต",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "กำลังฟัง...",
"LiteLLM": "",
"Live": "",
@@ -1619,6 +1625,7 @@
"MBR": "",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "การรองรับ MCP ยังเป็นแบบทดลองและมีการเปลี่ยนแปลงสเปกบ่อยครั้ง ซึ่งอาจทำให้เกิดปัญหาความไม่เข้ากันได้ การรองรับสเปก OpenAPI นั้นดูแลโดยทีม Open WebUI โดยตรง จึงเป็นตัวเลือกที่เชื่อถือได้มากกว่าในด้านความเข้ากันได้",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "ปานกลาง",
"Member removed successfully": "",
"members": "",
@@ -1701,6 +1708,7 @@
"Model Permissions": "สิทธิ์ของโมเดล",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "ยกเลิกการโหลดโมเดลสำเร็จแล้ว",
"Model updated successfully": "อัปเดตโมเดลเรียบร้อยแล้ว",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "",
"Native": "Native",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "ปุ่มใหม่",
@@ -1785,7 +1795,6 @@
"No content to speak": "ไม่มีเนื้อหาสำหรับอ่านออกเสียง",
"No conversation to save": "ไม่มีการสนทนาที่จะบันทึก",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "ไม่มีข้อมูลระยะทาง",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "เลือกวิธี",
"Select model": "",
"Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะเรียกใช้",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "แสดงการสนับสนุนของคุณ!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "แสดงความคิดสร้างสรรค์",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "ลงชื่อเข้าใช้",
"Sign in to {{WEBUI_NAME}}": "ลงชื่อเข้าใช้ {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "ลงชื่อเข้าใช้ {{WEBUI_NAME}} ด้วย LDAP",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "ข้ามแคช",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "มีบางอย่างผิดพลาด :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar การวิจัยเชิงลึก",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "สนับสนุน",
"Support this plugin:": "สนับสนุนปลั๊กอินนี้:",
"Supported Media MIME Types": "",
"Supported MIME Types": "ชนิด MIME ที่รองรับ",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2675,6 +2685,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "การมองเห็น",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Ýene Barla",
"Check for updates": "Täzelenmeleri barla",
"Checking for updates...": "Täzelenmeleri barlamak...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Saklamazdan ozal model saýlaň...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Import",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "",
"Sign in to {{WEBUI_NAME}}": "",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Goldaw",
"Support this plugin:": "",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "Tekrar Kontrol Et",
"Check for updates": "Güncellemeleri kontrol et",
"Checking for updates...": "Güncellemeler kontrol ediliyor...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Kaydetmeden önce bir model seçin...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "Parça Minimum Boyut Hedefi",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "Sohbete başlamak için bir AI sağlayıcısına bağlanın",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "Dosyalara göz atmak ve bunları her zaman açık araçlar olarak kullanmak için Open Terminal örneklerine bağlanın. Aynı anda yalnızca biri etkin olabilir.",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal örneklerine bağlanın. Tüm kullanıcılar bu sunucular üzerinden dosya gezintisine ve terminal araçlarına erişebilecek.",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Kendi OpenAI uyumlu API uç noktalarınıza bağlanın.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "Bağlam Tokenleri",
@@ -1306,8 +1309,8 @@
"Generate an image": "Bir Görsel Oluştur",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "Görseller oluştur ve düzenle",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "Mesaj Çifti Oluştur",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Görüntü Prompt Oluşturma",
"Image Prompt Generation Prompt": "Görüntü Prompt Oluşturma Promptu",
"Image Size": "Görüntü Boyutu",
"image/*, video/*": "",
"Images": "Görüntüler",
"Import": "İçe Aktar",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "Baş Harfler",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "Dosya içeriğini konuşma bağlamına enjekte eder",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kapsamlı işleme için tüm içeriği bağlam olarak enjekte edin; bu, karmaşık sorgular için önerilir.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "Giriş",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "Liste",
"List calendars, search, create, update, and delete calendar events": "Takvimleri listele, takvim etkinliklerini ara, oluştur, güncelle ve sil",
"List, search, and read files attached to the current chat": "",
"Listening...": "Dinleniyor...",
"LiteLLM": "",
"Live": "Canlı",
@@ -1629,6 +1635,7 @@
"MBR": "MBR",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP desteği deneyseldir ve belirtimi sık sık değiştiği için uyumsuzluklara yol açabilir. OpenAPI belirtim desteği doğrudan Open WebUI ekibi tarafından sürdürülür ve bu da onu uyumluluk açısından daha güvenilir seçenek yapar.",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "Orta",
"Member removed successfully": "Üye başarıyla kaldırıldı",
"members": "üyeler",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Model İzinleri",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "Model yanıtları veya çıktıları",
"Model unloaded successfully": "Model bellekten başarıyla boşaltıldı",
"Model updated successfully": "Model başarıyla güncellendi",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "Ad, istem ve model gereklidir",
"Native": "Yerel",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "Asla",
"New": "Yeni",
"New Button": "Yeni Düğme",
@@ -1795,7 +1805,6 @@
"No content to speak": "Konuşacak içerik yok",
"No conversation to save": "Kaydedilecek sohbet yok",
"No data": "Veri yok",
"No data found": "Veri bulunamadı",
"No description": "",
"No distance available": "Mesafe mevcut değil",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "Yöntem Seçin",
"Select model": "Model seç",
"Select only one model to call": "Arama için sadece bir model seç",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Desteğinizi gösterin!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Sergilenen yaratıcılık",
"Showing all messages (user + assistant) per user.": "Kullanıcı başına tüm mesajları (kullanıcı + asistan) gösteriliyor.",
"Sign in": "Oturum aç",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}'e giriş yap",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP ile {{WEBUI_NAME}}'e giriş yap",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "Yeteneklerin Herkese Açık Paylaşımı",
"Skills Sharing": "Yeteneklerin Paylaşımı",
"Skip Cache": "Önbelleği Atla",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "Bir şeyler yanlış gitti :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Destek",
"Support this plugin:": "Bu eklentiyi destekleyin:",
"Supported Media MIME Types": "",
"Supported MIME Types": "Desteklenen MIME Türleri",
"Switch camera": "",
"Switch to JSON editor": "JSON düzenleyiciye geç",
@@ -2689,6 +2699,7 @@
"Today at": "Bugün saat",
"Toggle {{COUNT}} sources": "{{COUNT}} kaynağı aç/kapat",
"Toggle 1 source": "1 kaynağı aç/kapat",
"Toggle Controls": "",
"Toggle details": "Ayrıntıları aç/kapat",
"Toggle Dictation": "Dikteyi Aç/Kapat",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "Kaynağı görüntüle: {{name}}",
"View source: {{title}}": "Kaynağı görüntüle: {{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Görünürlük",
"Visible": "Görünür",
"Visible to all users": "Tüm kullanıcılara görünür",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "قايتا تەكشۈرۈش",
"Check for updates": "يېڭىلاشنى تەكشۈرۈش",
"Checking for updates...": "يېڭىلاشلار تەكشۈرۈلمەكتە...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "ساقلاشتىن بۇرۇن مودېل تاللاڭ...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "ئۆزىڭىزنىڭ OpenAI غا ماس كېلىدىغان API ئۇلانمىلىرىڭىزغا باغلىنىڭ.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "رەسىم ھاسىل قىلىش",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "رەسىم تۈرتكەسى ھاسىل قىلىش",
"Image Prompt Generation Prompt": "رەسىم تۈرتكەسى ھەققىدە تۈرتكە",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "ئىمپورت قىلىش",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "ئاڭلاۋاتىدۇ...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "مودېل ھوقۇقى",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "مودېل مۇۋەپپەقىيەتلىك چىقىرىلدى",
"Model updated successfully": "مودېل مۇۋەپپەقىيەتلىك يېڭىلاندى",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "يەرلىك",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "تاپشۇرىدىغان مەزمۇن يوق",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "ئارىلىق ئۇچۇرى يوق",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "قوللاڭ!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "يېڭىلىق كۆرسىتىلدى",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "كىرىش",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} غا كىرىش",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP ئارقىلىق {{WEBUI_NAME}} غا كىرىش",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "ياردەم",
"Support this plugin:": "بۇ قىستۇرما ئۈچۈن ياردەم قىلىڭ:",
"Supported Media MIME Types": "",
"Supported MIME Types": "قوللايدىغان MIME تىپى",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "كۆرۈنۈشچانلىق",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -457,6 +457,7 @@
"Check Again": "Перевірити ще раз",
"Check for updates": "Перевірити оновлення",
"Checking for updates...": "Перевірка оновлень...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Оберіть модель перед збереженням...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -480,6 +481,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -597,7 +599,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Підключіться до своїх власних API-ендпоінтів, сумісних з OpenAI.",
@@ -623,6 +625,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1326,8 +1329,8 @@
"Generate an image": "Згенерувати зображення",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1423,6 +1426,7 @@
"Image Prompt Generation": "Генерація підказок для зображень",
"Image Prompt Generation Prompt": "Підказка для генерації зображень",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1451,6 +1455,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1578,6 +1583,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Слухаю...",
"LiteLLM": "",
"Live": "",
@@ -1649,6 +1655,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1731,6 +1738,7 @@
"Model Permissions": "Дозволи моделей",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Модель успішно оновлено",
@@ -1770,6 +1778,8 @@
"Name, prompt, and model are required": "",
"Native": "Рідний",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1815,7 +1825,6 @@
"No content to speak": "Нема чого говорити",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Відстань недоступна",
"No event webhooks configured.": "",
@@ -2382,6 +2391,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Оберіть лише одну модель для виклику",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2486,7 +2496,6 @@
"Show your support!": "Підтримайте нас!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Продемонстрований креатив",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Увійти",
"Sign in to {{WEBUI_NAME}}": "Увійти в {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Увійти до {{WEBUI_NAME}} за допомогою LDAP",
@@ -2512,8 +2521,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2581,6 +2590,7 @@
"Summarize this note.": "",
"Support": "Підтримати",
"Support this plugin:": "Підтримайте цей плагін:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2717,6 +2727,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2899,6 +2910,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Видимість",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -443,6 +443,7 @@
"Check Again": "دوبارہ چیک کریں",
"Check for updates": "تازہ ترین معلومات کے لیے چیک کریں",
"Checking for updates...": "تازہ ترین معلومات کی جانچ کر رہا ہے...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "محفوظ کرنے سے پہلے ایک ماڈل منتخب کریں...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "",
"Image Prompt Generation Prompt": "",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "سن رہے ہیں...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "ماڈل کامیابی کے ساتھ اپ ڈیٹ ہو گیا",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "بولنے کے لیے کوئی مواد نہیں",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "فاصلہ دستیاب نہیں ہے",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "اپنی حمایت دکھائیں!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "سائن ان کریں",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} میں سائن ان کریں",
"Sign in to {{WEBUI_NAME}} with LDAP": "",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "مدد کریں",
"Support this plugin:": "اس پلگ ان کی حمایت کریں:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "",
"Visible": "",
"Visible to all users": "",
@@ -443,6 +443,7 @@
"Check Again": "Яна текширинг",
"Check for updates": "Янгиланишларни текширинг",
"Checking for updates...": "Янгиланишлар текширилмоқда...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Сақлашдан олдин моделни танланг...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Ўзингизнинг OpenAIга мос келадиган АПИ сўнгги нуқталарига уланинг.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Тасвир яратиш",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Тасвир сўровини яратиш",
"Image Prompt Generation Prompt": "Тасвир сўровини яратиш таклифи",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Импорт",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Тингланмоқда...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Модел рухсатномалари",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Модел муваффақиятли юклаб олинди",
"Model updated successfully": "Модел муваффақиятли янгиланди",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Маҳаллий",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Гапирадиган таркиб йўқ",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Масофа мавжуд эмас",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Қўллаб-қувватланг!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Кўрсатилган ижодкорлик",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "тизимга кириш",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} ҳисобига киринг",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP ёрдамида {{WEBUI_NAME}} сайтига киринг",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Кешни ўтказиб юбориш",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Қўллаб-қувватлаш",
"Support this plugin:": "Ушбу плагинни қўллаб-қувватланг:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Кўриниш",
"Visible": "",
"Visible to all users": "",
@@ -443,6 +443,7 @@
"Check Again": "Yana tekshiring",
"Check for updates": "Yangilanishlarni tekshiring",
"Checking for updates...": "Yangilanishlar tekshirilmoqda...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Saqlashdan oldin modelni tanlang...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -466,6 +467,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -581,7 +583,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "O'zingizning OpenAI-ga mos keladigan API so'nggi nuqtalariga ulaning.",
@@ -607,6 +609,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1306,8 +1309,8 @@
"Generate an image": "Tasvir yaratish",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1403,6 +1406,7 @@
"Image Prompt Generation": "Tasvir so'rovini yaratish",
"Image Prompt Generation Prompt": "Tasvir soʻrovini yaratish taklifi",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "Import",
"Import admin configuration from a JSON export file.": "",
@@ -1431,6 +1435,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "",
@@ -1558,6 +1563,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Tinglanmoqda...",
"LiteLLM": "",
"Live": "",
@@ -1629,6 +1635,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1711,6 +1718,7 @@
"Model Permissions": "Model ruxsatnomalari",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "Model muvaffaqiyatli yuklab olindi",
"Model updated successfully": "Model muvaffaqiyatli yangilandi",
@@ -1750,6 +1758,8 @@
"Name, prompt, and model are required": "",
"Native": "Mahalliy",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1795,7 +1805,6 @@
"No content to speak": "Gapiradigan tarkib yo'q",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Masofa mavjud emas",
"No event webhooks configured.": "",
@@ -2356,6 +2365,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Qo'ng'iroq qilish uchun faqat bitta modelni tanlang",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2460,7 +2470,6 @@
"Show your support!": "Qo'llab-quvvatlang!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Ko'rsatilgan ijodkorlik",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "tizimga kirish",
"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} hisobiga kiring",
"Sign in to {{WEBUI_NAME}} with LDAP": "LDAP yordamida {{WEBUI_NAME}} saytiga kiring",
@@ -2486,8 +2495,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "Keshni o'tkazib yuborish",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2553,6 +2562,7 @@
"Summarize this note.": "",
"Support": "Qo'llab-quvvatlash",
"Support this plugin:": "Ushbu plaginni qo'llab-quvvatlang:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2689,6 +2699,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2871,6 +2882,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Ko'rinish",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "Kiểm tra Lại",
"Check for updates": "Kiểm tra cập nhật",
"Checking for updates...": "Đang kiểm tra cập nhật...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "Chọn mô hình trước khi lưu...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "Kết nối với các điểm cuối API tương thích OpenAI của riêng bạn.",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "",
@@ -1296,8 +1299,8 @@
"Generate an image": "Tạo một hình ảnh",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "Tạo Prompt Ảnh",
"Image Prompt Generation Prompt": "Prompt Tạo Prompt Ảnh",
"Image Size": "",
"image/*, video/*": "",
"Images": "",
"Import": "",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "",
"Inject stored memories into conversation context": "",
"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.": "",
"Input": "",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "",
"List": "",
"List calendars, search, create, update, and delete calendar events": "",
"List, search, and read files attached to the current chat": "",
"Listening...": "Đang nghe...",
"LiteLLM": "",
"Live": "",
@@ -1619,6 +1625,7 @@
"MBR": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "",
"Member removed successfully": "",
"members": "",
@@ -1701,6 +1708,7 @@
"Model Permissions": "Quyền Mô hình",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "",
"Model unloaded successfully": "",
"Model updated successfully": "Model đã được cập nhật thành công",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "",
"Native": "Gốc",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "",
"New": "",
"New Button": "",
@@ -1785,7 +1795,6 @@
"No content to speak": "Không có nội dung để nói",
"No conversation to save": "",
"No data": "",
"No data found": "",
"No description": "",
"No distance available": "Không có khoảng cách khả dụng",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "",
"Select model": "",
"Select only one model to call": "Chọn model để gọi",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "Thể hiện sự ủng hộ của bạn!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "Thể hiện sự sáng tạo",
"Showing all messages (user + assistant) per user.": "",
"Sign in": "Đăng nhập",
"Sign in to {{WEBUI_NAME}}": "Đăng nhập vào {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "Đăng nhập vào {{WEBUI_NAME}} bằng LDAP",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "",
"Skills Sharing": "",
"Skip Cache": "",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "Hỗ trợ",
"Support this plugin:": "Hỗ trợ plugin này:",
"Supported Media MIME Types": "",
"Supported MIME Types": "",
"Switch camera": "",
"Switch to JSON editor": "",
@@ -2675,6 +2685,7 @@
"Today at": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
"Toggle Controls": "",
"Toggle details": "",
"Toggle Dictation": "",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "",
"View source: {{title}}": "",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "Hiển thị",
"Visible": "",
"Visible to all users": "",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "刷新重试",
"Check for updates": "检查更新",
"Checking for updates...": "正在检查更新...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "保存前选择一个模型...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "最小块的目标大小",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "连接 AI 服务后即可开始对话",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "连接到 Open Terminal 实例后,可随时浏览文件并作为常驻工具使用,但同一时间只能连接一个。",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "连接到 Open Terminal 实例后,所有用户将可以浏览服务器上的文件,并使用终端工具。",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "连接到符合 OpenAI 接口格式的接口",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "上下文 Token",
@@ -1296,8 +1299,8 @@
"Generate an image": "生成图像",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "生成和编辑图像",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "生成消息对",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "图像提示词生成",
"Image Prompt Generation Prompt": "用于生成图像提示词的提示词",
"Image Size": "图片尺寸",
"image/*, video/*": "",
"Images": "图片",
"Import": "导入",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "姓名缩写",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "将文件内容注入为对话上下文",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "输入",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "Linkup 接口密钥",
"List": "列表",
"List calendars, search, create, update, and delete calendar events": "列出日程,并可搜索、创建、更新和删除日程事件",
"List, search, and read files attached to the current chat": "",
"Listening...": "正在倾听...",
"LiteLLM": "",
"Live": "实时",
@@ -1619,6 +1625,7 @@
"MBR": "成员",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 Open WebUI 团队维护,在兼容性方面更加可靠。",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "中",
"Member removed successfully": "成员移除成功",
"members": "成员",
@@ -1701,6 +1708,7 @@
"Model Permissions": "模型权限",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "模型响应或输出",
"Model unloaded successfully": "模型卸载成功",
"Model updated successfully": "模型更新成功",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "名称、提示词和模型不能为空",
"Native": "原生",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "未曾",
"New": "最新",
"New Button": "新按钮",
@@ -1785,7 +1795,6 @@
"No content to speak": "没有内容可朗读",
"No conversation to save": "没有可保存的对话",
"No data": "暂无数据",
"No data found": "未找到数据",
"No description": "",
"No distance available": "没有可用距离",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "选择方法",
"Select model": "选择模型",
"Select only one model to call": "只允许选择一个模型进行语音通话",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "表达您的支持!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "很有创意",
"Showing all messages (user + assistant) per user.": "按用户显示全部消息(用户 + 模型)。",
"Sign in": "登录",
"Sign in to {{WEBUI_NAME}}": "登录 {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "使用 LDAP 登录 {{WEBUI_NAME}}",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "公开分享“技能”",
"Skills Sharing": "分享“技能”",
"Skip Cache": "跳过缓存",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "发生错误",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "支持",
"Support this plugin:": "支持此插件",
"Supported Media MIME Types": "",
"Supported MIME Types": "支持的 MIME 类型",
"Switch camera": "",
"Switch to JSON editor": "切换到 JSON 编辑器",
@@ -2675,6 +2685,7 @@
"Today at": "今天",
"Toggle {{COUNT}} sources": "展开/收起 {{COUNT}} 个来源",
"Toggle 1 source": "展开/收起 1 个来源",
"Toggle Controls": "",
"Toggle details": "展开/收起详情",
"Toggle Dictation": "切换为听写模式",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "查看来源:{{name}}",
"View source: {{title}}": "查看来源:{{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "可见性",
"Visible": "可见",
"Visible to all users": "对所有用户可见",
+18 -5
View File
@@ -436,6 +436,7 @@
"Check Again": "再次檢查",
"Check for updates": "檢查更新",
"Checking for updates...": "正在檢查更新...",
"Choose a dedicated model for context compaction summaries. Current Model follows the active chat model.": "",
"Choose a model before saving...": "儲存前請選擇一個模型...",
"Choose automatic, left-to-right, or right-to-left text flow.": "",
"Choose fallback models for background tasks. Current Model follows the active chat model.": "",
@@ -459,6 +460,7 @@
"Choose the runtime used for generated code blocks.": "",
"Choose the speech provider used for assistant audio output.": "",
"Choose the transcription provider used for audio input.": "",
"Choose where model responses to root-level channel mentions are posted.": "",
"Choose whether Enter sends immediately or uses Ctrl+Enter.": "",
"Choose whether the app opens to the default home or chat view.": "",
"Chunk Min Size Target": "最小塊目標大小",
@@ -573,7 +575,7 @@
"Connect to a stable-diffusion-webui server running with the `--api` flag.": "",
"Connect to an AI provider to start chatting": "連線至 AI 服務後即可開始對話",
"Connect to Open Terminal instances to browse files and use them as always-on tools. Only one can be active at a time.": "連線至 Open Terminal 後,可隨時瀏覽檔案並作為常駐工具使用,但同一時間僅能連線一個。",
"Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "連接到 Open Terminal 實例後,所有使用者將可瀏覽伺服器上的檔案,並使用終端工具。",
"Connect to Open Terminal instances. Admins and users granted access can use file browsing and terminal tools through these servers.": "",
"Connect to the ComfyUI server used for generation.": "",
"Connect to the ComfyUI server used for image edits.": "",
"Connect to your own OpenAI compatible API endpoints.": "連線至您自有或其他與 OpenAI API 相容的端點。",
@@ -599,6 +601,7 @@
"Context Compaction": "",
"Context compaction failed": "",
"Context compaction is disabled": "",
"Context Compaction Model": "",
"Context Compaction Prompt": "",
"Context Compaction Threshold": "",
"Context Tokens": "上下文 Token",
@@ -1296,8 +1299,8 @@
"Generate an image": "產生圖片",
"Generate an image prompt before sending the request.": "",
"Generate and edit images": "生成和編輯圖片",
"Generate message pair": "",
"Generate chat titles automatically from conversation content.": "",
"Generate message pair": "",
"Generate Message Pair": "產生訊息對",
"Generate suggested follow-up prompts after responses.": "",
"Generate tags for chats automatically.": "",
@@ -1393,6 +1396,7 @@
"Image Prompt Generation": "圖片提示詞生成",
"Image Prompt Generation Prompt": "生成圖片提示詞的提示詞",
"Image Size": "圖片尺寸",
"image/*, video/*": "",
"Images": "圖片",
"Import": "匯入",
"Import admin configuration from a JSON export file.": "",
@@ -1421,6 +1425,7 @@
"Initials": "姓名縮寫",
"Inject entire documents as context for comprehensive processing.": "",
"Inject file content into conversation context": "將檔案內容帶入對話脈絡",
"Inject stored memories into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容作為上下文加入以進行全面處理,建議用於複雜查詢。",
"Inject the entire content as context for comprehensive processing.": "",
"Input": "輸入",
@@ -1548,6 +1553,7 @@
"Linkup API Key": "Linkup API 金鑰",
"List": "列表",
"List calendars, search, create, update, and delete calendar events": "列出日程,並可搜尋、新增、更新與刪除日程活動",
"List, search, and read files attached to the current chat": "",
"Listening...": "正在聆聽...",
"LiteLLM": "",
"Live": "即時",
@@ -1619,6 +1625,7 @@
"MBR": "成員",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能,其規範經常變更,可能導致不相容問題。OpenAPI 規範支援直接由 Open WebUI 團隊維護,是相容性更可靠的選擇。",
"Media upload MIME types the content extraction engine may process.": "",
"Medium": "中",
"Member removed successfully": "成功移除成員",
"members": "成員",
@@ -1701,6 +1708,7 @@
"Model Permissions": "模型權限",
"Model removed from pinned models": "",
"Model removed from selected models": "",
"Model Response Mode": "",
"Model responses or outputs": "模型回應或輸出",
"Model unloaded successfully": "已成功解除載入模型",
"Model updated successfully": "成功更新模型",
@@ -1740,6 +1748,8 @@
"Name, prompt, and model are required": "名稱、提示詞與模型為必填項目",
"Native": "原生",
"Native mode (default) leverages the model's built-in tool-calling capabilities. Legacy mode works with a wider range of models by calling tools once before execution via prompt injection.": "",
"Navigate to Next Chat": "",
"Navigate to Previous Chat": "",
"Never": "尚未",
"New": "最新",
"New Button": "新按鈕",
@@ -1785,7 +1795,6 @@
"No content to speak": "無可朗讀的內容",
"No conversation to save": "沒有可儲存的對話",
"No data": "暫無資料",
"No data found": "找不到資料",
"No description": "",
"No distance available": "無可用距離",
"No event webhooks configured.": "",
@@ -2343,6 +2352,7 @@
"Select Method": "選擇方法",
"Select model": "選擇模型",
"Select only one model to call": "僅選擇一個模型來呼叫",
"Select options": "",
"Select Skill": "",
"Select the Gemini endpoint method to call.": "",
"Select the local model precision used by Kokoro.js.": "",
@@ -2447,7 +2457,6 @@
"Show your support!": "表達您的支持!",
"Show your username label instead of You in chat bubbles.": "",
"Showcased creativity": "展現創意",
"Showing all messages (user + assistant) per user.": "依使用者顯示全部訊息(使用者 + 模型)。",
"Sign in": "登入",
"Sign in to {{WEBUI_NAME}}": "登入 {{WEBUI_NAME}}",
"Sign in to {{WEBUI_NAME}} with LDAP": "以 LDAP 登入 {{WEBUI_NAME}}",
@@ -2473,8 +2482,8 @@
"Skills Public Sharing": "公開分享「技能」",
"Skills Sharing": "分享「技能」",
"Skip Cache": "略過快取",
"Skip to main content": "",
"Skip cached Marker results and rerun inference.": "",
"Skip to main content": "",
"Something went wrong :/": "發生錯誤 :/",
"Sonar": "Sonar",
"Sonar Deep Research": "Sonar Deep Research",
@@ -2539,6 +2548,7 @@
"Summarize this note.": "",
"Support": "支援",
"Support this plugin:": "支援這個外掛:",
"Supported Media MIME Types": "",
"Supported MIME Types": "支援的 MIME 類型",
"Switch camera": "",
"Switch to JSON editor": "切換至 JSON 編輯器",
@@ -2675,6 +2685,7 @@
"Today at": "今天",
"Toggle {{COUNT}} sources": "展開/收合 {{COUNT}} 個來源",
"Toggle 1 source": "展開/收合 1 個來源",
"Toggle Controls": "",
"Toggle details": "展開/收合詳細資訊",
"Toggle Dictation": "切換聽寫模式",
"Toggle Mute": "",
@@ -2857,6 +2868,8 @@
"View source: {{name}}": "查看來源:{{name}}",
"View source: {{title}}": "查看來源:{{title}}",
"View the installed version and check release updates.": "",
"Viewport Pinned": "",
"Viewport Unpinned": "",
"Visibility": "可見度",
"Visible": "可見",
"Visible to all users": "對所有使用者可見",