mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
chore: format
This commit is contained in:
parent
e06cdea0b5
commit
1b064a6c85
58 changed files with 289 additions and 61 deletions
|
|
@ -36,7 +36,9 @@ def search_brave(
|
||||||
|
|
||||||
return [
|
return [
|
||||||
SearchResult(
|
SearchResult(
|
||||||
link=result["url"], title=result.get("title"), snippet=result.get("description")
|
link=result["url"],
|
||||||
|
title=result.get("title"),
|
||||||
|
snippet=result.get("description"),
|
||||||
)
|
)
|
||||||
for result in results[:count]
|
for result in results[:count]
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -303,10 +303,12 @@ async def update_image_config(
|
||||||
):
|
):
|
||||||
set_image_model(request, form_data.MODEL)
|
set_image_model(request, form_data.MODEL)
|
||||||
|
|
||||||
if (form_data.IMAGE_SIZE == "auto" and form_data.MODEL != 'gpt-image-1'):
|
if form_data.IMAGE_SIZE == "auto" and form_data.MODEL != "gpt-image-1":
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
status_code=400,
|
status_code=400,
|
||||||
detail=ERROR_MESSAGES.INCORRECT_FORMAT(" (auto is only allowed with gpt-image-1).")
|
detail=ERROR_MESSAGES.INCORRECT_FORMAT(
|
||||||
|
" (auto is only allowed with gpt-image-1)."
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
pattern = r"^\d+x\d+$"
|
pattern = r"^\d+x\d+$"
|
||||||
|
|
@ -483,7 +485,7 @@ async def image_generations(
|
||||||
# image model other than gpt-image-1, which is warned about on settings save
|
# image model other than gpt-image-1, which is warned about on settings save
|
||||||
width, height = (
|
width, height = (
|
||||||
tuple(map(int, request.app.state.config.IMAGE_SIZE.split("x")))
|
tuple(map(int, request.app.state.config.IMAGE_SIZE.split("x")))
|
||||||
if 'x' in request.app.state.config.IMAGE_SIZE
|
if "x" in request.app.state.config.IMAGE_SIZE
|
||||||
else (512, 512)
|
else (512, 512)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "اتصالات",
|
"Connections": "اتصالات",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "الاتصال",
|
"Content": "الاتصال",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "الموديل المختار",
|
"Current Model": "الموديل المختار",
|
||||||
"Current Password": "كلمة السر الحالية",
|
"Current Password": "كلمة السر الحالية",
|
||||||
"Custom": "مخصص",
|
"Custom": "مخصص",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "الإفتراضي",
|
"Default": "الإفتراضي",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
|
"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "النموذج الافتراضي",
|
"Default Model": "النموذج الافتراضي",
|
||||||
"Default model updated": "الإفتراضي تحديث الموديل",
|
"Default model updated": "الإفتراضي تحديث الموديل",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "رقم الموديل",
|
"Model ID": "رقم الموديل",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "لم تختار موديل",
|
"Model not selected": "لم تختار موديل",
|
||||||
"Model Params": "معلمات النموذج",
|
"Model Params": "معلمات النموذج",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "بواسطة {{name}}",
|
"By {{name}}": "بواسطة {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "تجاوز التضمين والاسترجاع",
|
"Bypass Embedding and Retrieval": "تجاوز التضمين والاسترجاع",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "التقويم",
|
"Calendar": "التقويم",
|
||||||
"Call": "مكالمة",
|
"Call": "مكالمة",
|
||||||
"Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT",
|
"Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "الاتصالات",
|
"Connections": "الاتصالات",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "يقيّد الجهد في التفكير لنماذج التفكير. ينطبق فقط على نماذج التفكير من مقدمي خدمات محددين يدعمون جهد التفكير.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "يقيّد الجهد في التفكير لنماذج التفكير. ينطبق فقط على نماذج التفكير من مقدمي خدمات محددين يدعمون جهد التفكير.",
|
||||||
"Contact Admin for WebUI Access": "اتصل بالمسؤول للوصول إلى واجهة الويب",
|
"Contact Admin for WebUI Access": "اتصل بالمسؤول للوصول إلى واجهة الويب",
|
||||||
"Content": "المحتوى",
|
"Content": "المحتوى",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "النموذج الحالي",
|
"Current Model": "النموذج الحالي",
|
||||||
"Current Password": "كلمة المرور الحالية",
|
"Current Password": "كلمة المرور الحالية",
|
||||||
"Custom": "مخصص",
|
"Custom": "مخصص",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "منطقة الخطر",
|
"Danger Zone": "منطقة الخطر",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "افتراضي",
|
"Default": "افتراضي",
|
||||||
"Default (Open AI)": "افتراضي (Open AI)",
|
"Default (Open AI)": "افتراضي (Open AI)",
|
||||||
"Default (SentenceTransformers)": "افتراضي (SentenceTransformers)",
|
"Default (SentenceTransformers)": "افتراضي (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "الوضع الافتراضي يعمل مع مجموعة أوسع من النماذج من خلال استدعاء الأدوات مرة واحدة قبل التنفيذ. أما الوضع الأصلي فيستخدم قدرات استدعاء الأدوات المدمجة في النموذج، لكنه يتطلب دعمًا داخليًا لهذه الميزة.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "الوضع الافتراضي يعمل مع مجموعة أوسع من النماذج من خلال استدعاء الأدوات مرة واحدة قبل التنفيذ. أما الوضع الأصلي فيستخدم قدرات استدعاء الأدوات المدمجة في النموذج، لكنه يتطلب دعمًا داخليًا لهذه الميزة.",
|
||||||
"Default Model": "النموذج الافتراضي",
|
"Default Model": "النموذج الافتراضي",
|
||||||
"Default model updated": "الإفتراضي تحديث الموديل",
|
"Default model updated": "الإفتراضي تحديث الموديل",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "الاتصالات المباشرة",
|
"Direct Connections": "الاتصالات المباشرة",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "تتيح الاتصالات المباشرة للمستخدمين الاتصال بنقاط نهاية API متوافقة مع OpenAI الخاصة بهم.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "تتيح الاتصالات المباشرة للمستخدمين الاتصال بنقاط نهاية API متوافقة مع OpenAI الخاصة بهم.",
|
||||||
"Direct Connections settings updated": "تم تحديث إعدادات الاتصالات المباشرة",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "تصفية النماذج",
|
"Model Filtering": "تصفية النماذج",
|
||||||
"Model ID": "رقم الموديل",
|
"Model ID": "رقم الموديل",
|
||||||
"Model IDs": "معرّفات النماذج",
|
"Model IDs": "معرّفات النماذج",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "اسم النموذج",
|
"Model Name": "اسم النموذج",
|
||||||
"Model not selected": "لم تختار موديل",
|
"Model not selected": "لم تختار موديل",
|
||||||
"Model Params": "معلمات النموذج",
|
"Model Params": "معلمات النموذج",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "От {{name}}",
|
"By {{name}}": "От {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Календар",
|
"Calendar": "Календар",
|
||||||
"Call": "Обаждане",
|
"Call": "Обаждане",
|
||||||
"Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател",
|
"Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Връзки",
|
"Connections": "Връзки",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Свържете се с администратор за достъп до WebUI",
|
"Contact Admin for WebUI Access": "Свържете се с администратор за достъп до WebUI",
|
||||||
"Content": "Съдържание",
|
"Content": "Съдържание",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Текущ модел",
|
"Current Model": "Текущ модел",
|
||||||
"Current Password": "Текуща Парола",
|
"Current Password": "Текуща Парола",
|
||||||
"Custom": "Персонализиран",
|
"Custom": "Персонализиран",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "По подразбиране",
|
"Default": "По подразбиране",
|
||||||
"Default (Open AI)": "По подразбиране (Open AI)",
|
"Default (Open AI)": "По подразбиране (Open AI)",
|
||||||
"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
|
"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режимът по подразбиране работи с по-широк набор от модели, като извиква инструменти веднъж преди изпълнение. Нативният режим използва вградените възможности за извикване на инструменти на модела, но изисква моделът да поддържа тази функция по същество.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режимът по подразбиране работи с по-широк набор от модели, като извиква инструменти веднъж преди изпълнение. Нативният режим използва вградените възможности за извикване на инструменти на модела, но изисква моделът да поддържа тази функция по същество.",
|
||||||
"Default Model": "Модел по подразбиране",
|
"Default Model": "Модел по подразбиране",
|
||||||
"Default model updated": "Моделът по подразбиране е обновен",
|
"Default model updated": "Моделът по подразбиране е обновен",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "Директни връзки",
|
"Direct Connections": "Директни връзки",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Директните връзки позволяват на потребителите да се свързват със собствени OpenAI съвместими API крайни точки.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Директните връзки позволяват на потребителите да се свързват със собствени OpenAI съвместими API крайни точки.",
|
||||||
"Direct Connections settings updated": "Настройките за директни връзки са актуализирани",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Филтриране на модели",
|
"Model Filtering": "Филтриране на модели",
|
||||||
"Model ID": "ИД на модел",
|
"Model ID": "ИД на модел",
|
||||||
"Model IDs": "ИД-та на моделите",
|
"Model IDs": "ИД-та на моделите",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Име на модел",
|
"Model Name": "Име на модел",
|
||||||
"Model not selected": "Не е избран модел",
|
"Model not selected": "Не е избран модел",
|
||||||
"Model Params": "Параметри на модела",
|
"Model Params": "Параметри на модела",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "কানেকশনগুলো",
|
"Connections": "কানেকশনগুলো",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "বিষয়বস্তু",
|
"Content": "বিষয়বস্তু",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "বর্তমান মডেল",
|
"Current Model": "বর্তমান মডেল",
|
||||||
"Current Password": "বর্তমান পাসওয়ার্ড",
|
"Current Password": "বর্তমান পাসওয়ার্ড",
|
||||||
"Custom": "কাস্টম",
|
"Custom": "কাস্টম",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "ডিফল্ট",
|
"Default": "ডিফল্ট",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
|
"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "ডিফল্ট মডেল",
|
"Default Model": "ডিফল্ট মডেল",
|
||||||
"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
|
"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "মডেল ID",
|
"Model ID": "মডেল ID",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "মডেল নির্বাচন করা হয়নি",
|
"Model not selected": "মডেল নির্বাচন করা হয়নি",
|
||||||
"Model Params": "মডেল প্যারাম",
|
"Model Params": "মডেল প্যারাম",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "{{name}} ཡིས།",
|
"By {{name}}": "{{name}} ཡིས།",
|
||||||
"Bypass Embedding and Retrieval": "ཚུད་འཇུག་དང་ལེན་ཚུར་སྒྲུབ་ལས་བརྒལ་བ།",
|
"Bypass Embedding and Retrieval": "ཚུད་འཇུག་དང་ལེན་ཚུར་སྒྲུབ་ལས་བརྒལ་བ།",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "ལོ་ཐོ།",
|
"Calendar": "ལོ་ཐོ།",
|
||||||
"Call": "སྐད་འབོད།",
|
"Call": "སྐད་འབོད།",
|
||||||
"Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།",
|
"Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "སྦྲེལ་མཐུད།",
|
"Connections": "སྦྲེལ་མཐུད།",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "རྒྱུ་མཚན་འདྲེན་པའི་དཔེ་དབྱིབས་ཀྱི་རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན་ལ་ཚད་བཀག་བྱེད་པ། རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན་ལ་རྒྱབ་སྐྱོར་བྱེད་པའི་མཁོ་སྤྲོད་པ་ངེས་ཅན་གྱི་རྒྱུ་མཚན་འདྲེན་པའི་དཔེ་དབྱིབས་ལ་ཁོ་ན་འཕྲོད་པ།",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "རྒྱུ་མཚན་འདྲེན་པའི་དཔེ་དབྱིབས་ཀྱི་རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན་ལ་ཚད་བཀག་བྱེད་པ། རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན་ལ་རྒྱབ་སྐྱོར་བྱེད་པའི་མཁོ་སྤྲོད་པ་ངེས་ཅན་གྱི་རྒྱུ་མཚན་འདྲེན་པའི་དཔེ་དབྱིབས་ལ་ཁོ་ན་འཕྲོད་པ།",
|
||||||
"Contact Admin for WebUI Access": "WebUI འཛུལ་སྤྱོད་ཆེད་དུ་དོ་དམ་པ་དང་འབྲེལ་གཏུག་བྱེད་པ།",
|
"Contact Admin for WebUI Access": "WebUI འཛུལ་སྤྱོད་ཆེད་དུ་དོ་དམ་པ་དང་འབྲེལ་གཏུག་བྱེད་པ།",
|
||||||
"Content": "ནང་དོན།",
|
"Content": "ནང་དོན།",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "ད་ལྟའི་དཔེ་དབྱིབས།",
|
"Current Model": "ད་ལྟའི་དཔེ་དབྱིབས།",
|
||||||
"Current Password": "ད་ལྟའི་གསང་གྲངས།",
|
"Current Password": "ད་ལྟའི་གསང་གྲངས།",
|
||||||
"Custom": "སྲོལ་བཟོས།",
|
"Custom": "སྲོལ་བཟོས།",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།",
|
"Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "སྔོན་སྒྲིག",
|
"Default": "སྔོན་སྒྲིག",
|
||||||
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
|
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
|
||||||
"Default (SentenceTransformers)": "སྔོན་སྒྲིག (SentenceTransformers)",
|
"Default (SentenceTransformers)": "སྔོན་སྒྲིག (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "སྔོན་སྒྲིག་མ་དཔེ་ནི་ལག་བསྟར་མ་བྱས་སྔོན་དུ་ལག་ཆ་ཐེངས་གཅིག་འབོད་ནས་དཔེ་དབྱིབས་རྒྱ་ཆེ་བའི་ཁྱབ་ཁོངས་དང་མཉམ་ལས་བྱེད་ཐུབ། ས་སྐྱེས་མ་དཔེ་ཡིས་དཔེ་དབྱིབས་ཀྱི་ནང་འདྲེས་ལག་ཆ་འབོད་པའི་ནུས་པ་སྤྱོད་ཀྱི་ཡོད་མོད། འོན་ཀྱང་དཔེ་དབྱིབས་དེས་ཁྱད་ཆོས་འདི་ལ་ངོ་བོའི་ཐོག་ནས་རྒྱབ་སྐྱོར་བྱེད་དགོས།",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "སྔོན་སྒྲིག་མ་དཔེ་ནི་ལག་བསྟར་མ་བྱས་སྔོན་དུ་ལག་ཆ་ཐེངས་གཅིག་འབོད་ནས་དཔེ་དབྱིབས་རྒྱ་ཆེ་བའི་ཁྱབ་ཁོངས་དང་མཉམ་ལས་བྱེད་ཐུབ། ས་སྐྱེས་མ་དཔེ་ཡིས་དཔེ་དབྱིབས་ཀྱི་ནང་འདྲེས་ལག་ཆ་འབོད་པའི་ནུས་པ་སྤྱོད་ཀྱི་ཡོད་མོད། འོན་ཀྱང་དཔེ་དབྱིབས་དེས་ཁྱད་ཆོས་འདི་ལ་ངོ་བོའི་ཐོག་ནས་རྒྱབ་སྐྱོར་བྱེད་དགོས།",
|
||||||
"Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས།",
|
"Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས།",
|
||||||
"Default model updated": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་གསར་སྒྱུར་བྱས།",
|
"Default model updated": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་གསར་སྒྱུར་བྱས།",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "ཐད་ཀར།",
|
"Direct": "ཐད་ཀར།",
|
||||||
"Direct Connections": "ཐད་ཀར་སྦྲེལ་མཐུད།",
|
"Direct Connections": "ཐད་ཀར་སྦྲེལ་མཐུད།",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ཐད་ཀར་སྦྲེལ་མཐུད་ཀྱིས་བེད་སྤྱོད་མཁན་ཚོར་ཁོ་ཚོའི་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བར་གནང་བ་སྤྲོད།",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ཐད་ཀར་སྦྲེལ་མཐུད་ཀྱིས་བེད་སྤྱོད་མཁན་ཚོར་ཁོ་ཚོའི་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བར་གནང་བ་སྤྲོད།",
|
||||||
"Direct Connections settings updated": "ཐད་ཀར་སྦྲེལ་མཐུད་ཀྱི་སྒྲིག་འགོད་གསར་སྒྱུར་བྱས།",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "དཔེ་དབྱིབས་འཚག་མ།",
|
"Model Filtering": "དཔེ་དབྱིབས་འཚག་མ།",
|
||||||
"Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID",
|
"Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID",
|
||||||
"Model IDs": "དཔེ་དབྱིབས་ཀྱི་ IDs",
|
"Model IDs": "དཔེ་དབྱིབས་ཀྱི་ IDs",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "དཔེ་དབྱིབས་ཀྱི་མིང་།",
|
"Model Name": "དཔེ་དབྱིབས་ཀྱི་མིང་།",
|
||||||
"Model not selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།",
|
"Model not selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།",
|
||||||
"Model Params": "དཔེ་དབྱིབས་ཀྱི་ཞུགས་གྲངས།",
|
"Model Params": "དཔེ་དབྱིབས་ཀྱི་ཞུགས་གྲངས།",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Per {{name}}",
|
"By {{name}}": "Per {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Desactivar l'Embedding i el Retrieval",
|
"Bypass Embedding and Retrieval": "Desactivar l'Embedding i el Retrieval",
|
||||||
"Bypass Web Loader": "Ometre el càrregador web",
|
"Bypass Web Loader": "Ometre el càrregador web",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Calendari",
|
"Calendar": "Calendari",
|
||||||
"Call": "Trucada",
|
"Call": "Trucada",
|
||||||
"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
|
"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Tipus de connexió",
|
"Connection Type": "Tipus de connexió",
|
||||||
"Connections": "Connexions",
|
"Connections": "Connexions",
|
||||||
"Connections saved successfully": "Les connexions s'han desat correctament",
|
"Connections saved successfully": "Les connexions s'han desat correctament",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Restringeix l'esforç de raonament dels models de raonament. Només aplicable a models de raonament de proveïdors específics que donen suport a l'esforç de raonament.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Restringeix l'esforç de raonament dels models de raonament. Només aplicable a models de raonament de proveïdors específics que donen suport a l'esforç de raonament.",
|
||||||
"Contact Admin for WebUI Access": "Posa't en contacte amb l'administrador per accedir a WebUI",
|
"Contact Admin for WebUI Access": "Posa't en contacte amb l'administrador per accedir a WebUI",
|
||||||
"Content": "Contingut",
|
"Content": "Contingut",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Model actual",
|
"Current Model": "Model actual",
|
||||||
"Current Password": "Contrasenya actual",
|
"Current Password": "Contrasenya actual",
|
||||||
"Custom": "Personalitzat",
|
"Custom": "Personalitzat",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Nom del paràmetre personalitzat",
|
"Custom Parameter Name": "Nom del paràmetre personalitzat",
|
||||||
"Custom Parameter Value": "Valor del paràmetre personalitzat",
|
"Custom Parameter Value": "Valor del paràmetre personalitzat",
|
||||||
"Danger Zone": "Zona de perill",
|
"Danger Zone": "Zona de perill",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Per defecte",
|
"Default": "Per defecte",
|
||||||
"Default (Open AI)": "Per defecte (Open AI)",
|
"Default (Open AI)": "Per defecte (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El mode predeterminat funciona amb una gamma més àmplia de models cridant a les eines una vegada abans de l'execució. El mode natiu aprofita les capacitats de crida d'eines integrades del model, però requereix que el model admeti aquesta funció de manera inherent.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El mode predeterminat funciona amb una gamma més àmplia de models cridant a les eines una vegada abans de l'execució. El mode natiu aprofita les capacitats de crida d'eines integrades del model, però requereix que el model admeti aquesta funció de manera inherent.",
|
||||||
"Default Model": "Model per defecte",
|
"Default Model": "Model per defecte",
|
||||||
"Default model updated": "Model per defecte actualitzat",
|
"Default model updated": "Model per defecte actualitzat",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Directe",
|
"Direct": "Directe",
|
||||||
"Direct Connections": "Connexions directes",
|
"Direct Connections": "Connexions directes",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permeten als usuaris connectar-se als seus propis endpoints d'API compatibles amb OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permeten als usuaris connectar-se als seus propis endpoints d'API compatibles amb OpenAI.",
|
||||||
"Direct Connections settings updated": "Configuració de les connexions directes actualitzada",
|
|
||||||
"Direct Tool Servers": "Servidors d'eines directes",
|
"Direct Tool Servers": "Servidors d'eines directes",
|
||||||
"Disable Image Extraction": "Deshabilitar l'extracció d'imatges",
|
"Disable Image Extraction": "Deshabilitar l'extracció d'imatges",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desactiva l'extracció d'imatges del PDF. Si Utilitza LLM està habilitat, les imatges es descriuran automàticament. Per defecte és Fals.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desactiva l'extracció d'imatges del PDF. Si Utilitza LLM està habilitat, les imatges es descriuran automàticament. Per defecte és Fals.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrat de models",
|
"Model Filtering": "Filtrat de models",
|
||||||
"Model ID": "Identificador del model",
|
"Model ID": "Identificador del model",
|
||||||
"Model IDs": "Identificadors del model",
|
"Model IDs": "Identificadors del model",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nom del model",
|
"Model Name": "Nom del model",
|
||||||
"Model not selected": "Model no seleccionat",
|
"Model not selected": "Model no seleccionat",
|
||||||
"Model Params": "Paràmetres del model",
|
"Model Params": "Paràmetres del model",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Mga koneksyon",
|
"Connections": "Mga koneksyon",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "Kontento",
|
"Content": "Kontento",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Kasamtangang modelo",
|
"Current Model": "Kasamtangang modelo",
|
||||||
"Current Password": "Kasamtangang Password",
|
"Current Password": "Kasamtangang Password",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Pinaagi sa default",
|
"Default": "Pinaagi sa default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "",
|
"Default (SentenceTransformers)": "",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "",
|
"Default Model": "",
|
||||||
"Default model updated": "Gi-update nga default template",
|
"Default model updated": "Gi-update nga default template",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "",
|
"Model ID": "",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Wala gipili ang modelo",
|
"Model not selected": "Wala gipili ang modelo",
|
||||||
"Model Params": "",
|
"Model Params": "",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Volání",
|
"Call": "Volání",
|
||||||
"Call feature is not supported when using Web STT engine": "Funkce pro volání není podporována při použití Web STT engine.",
|
"Call feature is not supported when using Web STT engine": "Funkce pro volání není podporována při použití Web STT engine.",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Připojení",
|
"Connections": "Připojení",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
|
"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
|
||||||
"Content": "Obsah",
|
"Content": "Obsah",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Aktuální model",
|
"Current Model": "Aktuální model",
|
||||||
"Current Password": "Aktuální heslo",
|
"Current Password": "Aktuální heslo",
|
||||||
"Custom": "Na míru",
|
"Custom": "Na míru",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Výchozí hodnoty nebo nastavení.",
|
"Default": "Výchozí hodnoty nebo nastavení.",
|
||||||
"Default (Open AI)": "Výchozí (Open AI)",
|
"Default (Open AI)": "Výchozí (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Výchozí (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Výchozí (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Výchozí model",
|
"Default Model": "Výchozí model",
|
||||||
"Default model updated": "Výchozí model aktualizován.",
|
"Default model updated": "Výchozí model aktualizován.",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID modelu",
|
"Model ID": "ID modelu",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Název modelu",
|
"Model Name": "Název modelu",
|
||||||
"Model not selected": "Model nebyl vybrán",
|
"Model not selected": "Model nebyl vybrán",
|
||||||
"Model Params": "Parametry modelu",
|
"Model Params": "Parametry modelu",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Af {{name}}",
|
"By {{name}}": "Af {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalender",
|
"Calendar": "Kalender",
|
||||||
"Call": "Opkald",
|
"Call": "Opkald",
|
||||||
"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
|
"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Forbindelser",
|
"Connections": "Forbindelser",
|
||||||
"Connections saved successfully": "Forbindelser gemt",
|
"Connections saved successfully": "Forbindelser gemt",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
|
"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
|
||||||
"Content": "Indhold",
|
"Content": "Indhold",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Nuværende model",
|
"Current Model": "Nuværende model",
|
||||||
"Current Password": "Nuværende password",
|
"Current Password": "Nuværende password",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Danger Zone",
|
"Danger Zone": "Danger Zone",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Standard model",
|
"Default Model": "Standard model",
|
||||||
"Default model updated": "Standard model opdateret",
|
"Default model updated": "Standard model opdateret",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Direkte",
|
"Direct": "Direkte",
|
||||||
"Direct Connections": "Direkte forbindelser",
|
"Direct Connections": "Direkte forbindelser",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkte forbindelser tillader brugere at oprette forbindelse til deres egen OpenAI kompatible API endpoints.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkte forbindelser tillader brugere at oprette forbindelse til deres egen OpenAI kompatible API endpoints.",
|
||||||
"Direct Connections settings updated": "Direkte forbindelser indstillinger opdateret",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "Model-ID",
|
"Model ID": "Model-ID",
|
||||||
"Model IDs": "Model-ID'er",
|
"Model IDs": "Model-ID'er",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modelnavn",
|
"Model Name": "Modelnavn",
|
||||||
"Model not selected": "Model ikke valgt",
|
"Model not selected": "Model ikke valgt",
|
||||||
"Model Params": "Modelparametre",
|
"Model Params": "Modelparametre",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Von {{name}}",
|
"By {{name}}": "Von {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Embedding und Retrieval umgehen",
|
"Bypass Embedding and Retrieval": "Embedding und Retrieval umgehen",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalender",
|
"Calendar": "Kalender",
|
||||||
"Call": "Anrufen",
|
"Call": "Anrufen",
|
||||||
"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird nicht unterstützt, wenn die Web-STT-Engine verwendet wird.",
|
"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird nicht unterstützt, wenn die Web-STT-Engine verwendet wird.",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Verbindungstyp",
|
"Connection Type": "Verbindungstyp",
|
||||||
"Connections": "Verbindungen",
|
"Connections": "Verbindungen",
|
||||||
"Connections saved successfully": "Verbindungen erfolgreich gespeichert",
|
"Connections saved successfully": "Verbindungen erfolgreich gespeichert",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Beschränkt den reasoning effort für Reasoning-Modelle. Nur anwendbar auf Reasoning-Modelle von spezifischen Anbietern, die den reasoning effort Parameter unterstützen.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Beschränkt den reasoning effort für Reasoning-Modelle. Nur anwendbar auf Reasoning-Modelle von spezifischen Anbietern, die den reasoning effort Parameter unterstützen.",
|
||||||
"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
|
"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
|
||||||
"Content": "",
|
"Content": "",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Aktuelles Modell",
|
"Current Model": "Aktuelles Modell",
|
||||||
"Current Password": "Aktuelles Passwort",
|
"Current Password": "Aktuelles Passwort",
|
||||||
"Custom": "Benutzerdefiniert",
|
"Custom": "Benutzerdefiniert",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Gefahrenzone",
|
"Danger Zone": "Gefahrenzone",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Der Standardmodus funktioniert mit einer breiteren Auswahl von Modellen, indem er Werkzeuge einmal vor der Ausführung aufruft. Der native Modus nutzt die integrierten Tool-Aufrufmöglichkeiten des Modells, erfordert jedoch, dass das Modell diese Funktion von Natur aus unterstützt.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Der Standardmodus funktioniert mit einer breiteren Auswahl von Modellen, indem er Werkzeuge einmal vor der Ausführung aufruft. Der native Modus nutzt die integrierten Tool-Aufrufmöglichkeiten des Modells, erfordert jedoch, dass das Modell diese Funktion von Natur aus unterstützt.",
|
||||||
"Default Model": "Standardmodell",
|
"Default Model": "Standardmodell",
|
||||||
"Default model updated": "Standardmodell aktualisiert",
|
"Default model updated": "Standardmodell aktualisiert",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Direkt",
|
"Direct": "Direkt",
|
||||||
"Direct Connections": "Direktverbindungen",
|
"Direct Connections": "Direktverbindungen",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.",
|
||||||
"Direct Connections settings updated": "Direktverbindungs-Einstellungen aktualisiert",
|
|
||||||
"Direct Tool Servers": "Direkt verbundene Werkzeug-Server",
|
"Direct Tool Servers": "Direkt verbundene Werkzeug-Server",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modellfilterung",
|
"Model Filtering": "Modellfilterung",
|
||||||
"Model ID": "Modell-ID",
|
"Model ID": "Modell-ID",
|
||||||
"Model IDs": "Modell-IDs",
|
"Model IDs": "Modell-IDs",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modell-Name",
|
"Model Name": "Modell-Name",
|
||||||
"Model not selected": "Modell nicht ausgewählt",
|
"Model not selected": "Modell nicht ausgewählt",
|
||||||
"Model Params": "Modell-Parameter",
|
"Model Params": "Modell-Parameter",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Connections",
|
"Connections": "Connections",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "Content",
|
"Content": "Content",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Current Model",
|
"Current Model": "Current Model",
|
||||||
"Current Password": "Current Password",
|
"Current Password": "Current Password",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "",
|
"Default (SentenceTransformers)": "",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "",
|
"Default Model": "",
|
||||||
"Default model updated": "Default model much updated",
|
"Default model updated": "Default model much updated",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "",
|
"Model ID": "",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Model not selected",
|
"Model not selected": "Model not selected",
|
||||||
"Model Params": "",
|
"Model Params": "",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Από {{name}}",
|
"By {{name}}": "Από {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Κλήση",
|
"Call": "Κλήση",
|
||||||
"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
|
"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Συνδέσεις",
|
"Connections": "Συνδέσεις",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
|
"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
|
||||||
"Content": "Περιεχόμενο",
|
"Content": "Περιεχόμενο",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Τρέχον Μοντέλο",
|
"Current Model": "Τρέχον Μοντέλο",
|
||||||
"Current Password": "Τρέχων Κωδικός",
|
"Current Password": "Τρέχων Κωδικός",
|
||||||
"Custom": "Προσαρμοσμένο",
|
"Custom": "Προσαρμοσμένο",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Προεπιλογή",
|
"Default": "Προεπιλογή",
|
||||||
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Προεπιλεγμένο Μοντέλο",
|
"Default Model": "Προεπιλεγμένο Μοντέλο",
|
||||||
"Default model updated": "Το προεπιλεγμένο μοντέλο ενημερώθηκε",
|
"Default model updated": "Το προεπιλεγμένο μοντέλο ενημερώθηκε",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Φιλτράρισμα Μοντέλων",
|
"Model Filtering": "Φιλτράρισμα Μοντέλων",
|
||||||
"Model ID": "ID Μοντέλου",
|
"Model ID": "ID Μοντέλου",
|
||||||
"Model IDs": "IDs Μοντέλων",
|
"Model IDs": "IDs Μοντέλων",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Όνομα Μοντέλου",
|
"Model Name": "Όνομα Μοντέλου",
|
||||||
"Model not selected": "Το μοντέλο δεν έχει επιλεγεί",
|
"Model not selected": "Το μοντέλο δεν έχει επιλεγεί",
|
||||||
"Model Params": "Παράμετροι Μοντέλου",
|
"Model Params": "Παράμετροι Μοντέλου",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "",
|
"Connections": "",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "",
|
"Content": "",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "",
|
"Current Model": "",
|
||||||
"Current Password": "",
|
"Current Password": "",
|
||||||
"Custom": "",
|
"Custom": "",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "",
|
"Default": "",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "",
|
"Default (SentenceTransformers)": "",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "",
|
"Default Model": "",
|
||||||
"Default model updated": "",
|
"Default model updated": "",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "",
|
"Model ID": "",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "",
|
"Model not selected": "",
|
||||||
"Model Params": "",
|
"Model Params": "",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "",
|
"Connections": "",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "",
|
"Content": "",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "",
|
"Current Model": "",
|
||||||
"Current Password": "",
|
"Current Password": "",
|
||||||
"Custom": "",
|
"Custom": "",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "",
|
"Default": "",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "",
|
"Default (SentenceTransformers)": "",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "",
|
"Default Model": "",
|
||||||
"Default model updated": "",
|
"Default model updated": "",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "",
|
"Model ID": "",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "",
|
"Model not selected": "",
|
||||||
"Model Params": "",
|
"Model Params": "",
|
||||||
|
|
@ -1237,7 +1241,7 @@
|
||||||
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
|
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
|
||||||
"This model is not publicly available. Please select another model.": "",
|
"This model is not publicly available. Please select another model.": "",
|
||||||
"This option controls how long the model will stay loaded into memory following the request (default: 5m)": "",
|
"This option controls how long the model will stay loaded into memory following the request (default: 5m)": "",
|
||||||
"This option controls how many first tokens are preserved when refreshing the context. For example, if set to 2, the first 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics.": "",
|
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics.": "",
|
||||||
"This option enables or disables the use of the reasoning feature in Ollama, which allows the model to think before generating a response. When enabled, the model can take a moment to process the conversation context and generate a more thoughtful response.": "",
|
"This option enables or disables the use of the reasoning feature in Ollama, which allows the model to think before generating a response. When enabled, the model can take a moment to process the conversation context and generate a more thoughtful response.": "",
|
||||||
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.": "",
|
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.": "",
|
||||||
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
|
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Por {{name}}",
|
"By {{name}}": "Por {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Desactivar Incrustración y Recuperación",
|
"Bypass Embedding and Retrieval": "Desactivar Incrustración y Recuperación",
|
||||||
"Bypass Web Loader": "Desactivar Cargar de Web",
|
"Bypass Web Loader": "Desactivar Cargar de Web",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Calendario",
|
"Calendar": "Calendario",
|
||||||
"Call": "Llamada",
|
"Call": "Llamada",
|
||||||
"Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT",
|
"Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Tipo de Conexión",
|
"Connection Type": "Tipo de Conexión",
|
||||||
"Connections": "Conexiones",
|
"Connections": "Conexiones",
|
||||||
"Connections saved successfully": "Conexiones grabadas correctamente",
|
"Connections saved successfully": "Conexiones grabadas correctamente",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Limita el esfuerzo de razonamiento para los modelos de razonamiento. Solo aplicable a modelos de razonamiento de proveedores específicos que soportan el esfuerzo de razonamiento.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Limita el esfuerzo de razonamiento para los modelos de razonamiento. Solo aplicable a modelos de razonamiento de proveedores específicos que soportan el esfuerzo de razonamiento.",
|
||||||
"Contact Admin for WebUI Access": "Contacta con Admin para obtener acceso a WebUI",
|
"Contact Admin for WebUI Access": "Contacta con Admin para obtener acceso a WebUI",
|
||||||
"Content": "Contenido",
|
"Content": "Contenido",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modelo Actual",
|
"Current Model": "Modelo Actual",
|
||||||
"Current Password": "Contraseña Actual",
|
"Current Password": "Contraseña Actual",
|
||||||
"Custom": "Personalizado",
|
"Custom": "Personalizado",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Nombre del Parámetro Personalizado",
|
"Custom Parameter Name": "Nombre del Parámetro Personalizado",
|
||||||
"Custom Parameter Value": "Valor del Parámetro Personalizado",
|
"Custom Parameter Value": "Valor del Parámetro Personalizado",
|
||||||
"Danger Zone": "Zona Peligrosa",
|
"Danger Zone": "Zona Peligrosa",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Predeterminado",
|
"Default": "Predeterminado",
|
||||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Modelo Predeterminado",
|
"Default Model": "Modelo Predeterminado",
|
||||||
"Default model updated": "El modelo Predeterminado ha sido actualizado",
|
"Default model updated": "El modelo Predeterminado ha sido actualizado",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Directo",
|
"Direct": "Directo",
|
||||||
"Direct Connections": "Conexiones Directas",
|
"Direct Connections": "Conexiones Directas",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Las Conexiones Directas permiten a los usuarios conectar a sus propios endpoints compatibles API OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Las Conexiones Directas permiten a los usuarios conectar a sus propios endpoints compatibles API OpenAI.",
|
||||||
"Direct Connections settings updated": "Se actualizaron las configuraciones de las Conexiones Directas",
|
|
||||||
"Direct Tool Servers": "Servidores de Herramientas Directos",
|
"Direct Tool Servers": "Servidores de Herramientas Directos",
|
||||||
"Disable Image Extraction": "Deshabilitar Extracción de Imágenes",
|
"Disable Image Extraction": "Deshabilitar Extracción de Imágenes",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilita la extracción de imágenes del pdf. Si está habilitado Usar LLM las imágenes se capturan automáticamente. Por defecto el valor es Falso (las imágenes se extraen).",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilita la extracción de imágenes del pdf. Si está habilitado Usar LLM las imágenes se capturan automáticamente. Por defecto el valor es Falso (las imágenes se extraen).",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrado de modelos",
|
"Model Filtering": "Filtrado de modelos",
|
||||||
"Model ID": "ID Modelo",
|
"Model ID": "ID Modelo",
|
||||||
"Model IDs": "IDs Modelo",
|
"Model IDs": "IDs Modelo",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nombre Modelo",
|
"Model Name": "Nombre Modelo",
|
||||||
"Model not selected": "Modelo no seleccionado",
|
"Model not selected": "Modelo no seleccionado",
|
||||||
"Model Params": "Paráms Modelo",
|
"Model Params": "Paráms Modelo",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Autor: {{name}}",
|
"By {{name}}": "Autor: {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Möödaminek sisestamisest ja taastamisest",
|
"Bypass Embedding and Retrieval": "Möödaminek sisestamisest ja taastamisest",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalender",
|
"Calendar": "Kalender",
|
||||||
"Call": "Kõne",
|
"Call": "Kõne",
|
||||||
"Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud",
|
"Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Ühendused",
|
"Connections": "Ühendused",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Piirab arutluse pingutust arutlusvõimelistele mudelitele. Kohaldatav ainult konkreetsete pakkujate arutlusmudelitele, mis toetavad arutluspingutust.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Piirab arutluse pingutust arutlusvõimelistele mudelitele. Kohaldatav ainult konkreetsete pakkujate arutlusmudelitele, mis toetavad arutluspingutust.",
|
||||||
"Contact Admin for WebUI Access": "Võtke WebUI juurdepääsu saamiseks ühendust administraatoriga",
|
"Contact Admin for WebUI Access": "Võtke WebUI juurdepääsu saamiseks ühendust administraatoriga",
|
||||||
"Content": "Sisu",
|
"Content": "Sisu",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Praegune mudel",
|
"Current Model": "Praegune mudel",
|
||||||
"Current Password": "Praegune parool",
|
"Current Password": "Praegune parool",
|
||||||
"Custom": "Kohandatud",
|
"Custom": "Kohandatud",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Ohutsoon",
|
"Danger Zone": "Ohutsoon",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Vaikimisi",
|
"Default": "Vaikimisi",
|
||||||
"Default (Open AI)": "Vaikimisi (Open AI)",
|
"Default (Open AI)": "Vaikimisi (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Vaikimisi mudel",
|
"Default Model": "Vaikimisi mudel",
|
||||||
"Default model updated": "Vaikimisi mudel uuendatud",
|
"Default model updated": "Vaikimisi mudel uuendatud",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "Otsesed ühendused",
|
"Direct Connections": "Otsesed ühendused",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Otsesed ühendused võimaldavad kasutajatel ühenduda oma OpenAI-ga ühilduvate API lõpp-punktidega.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Otsesed ühendused võimaldavad kasutajatel ühenduda oma OpenAI-ga ühilduvate API lõpp-punktidega.",
|
||||||
"Direct Connections settings updated": "Otseste ühenduste seaded uuendatud",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Mudeli filtreerimine",
|
"Model Filtering": "Mudeli filtreerimine",
|
||||||
"Model ID": "Mudeli ID",
|
"Model ID": "Mudeli ID",
|
||||||
"Model IDs": "Mudeli ID-d",
|
"Model IDs": "Mudeli ID-d",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Mudeli nimi",
|
"Model Name": "Mudeli nimi",
|
||||||
"Model not selected": "Mudel pole valitud",
|
"Model not selected": "Mudel pole valitud",
|
||||||
"Model Params": "Mudeli parameetrid",
|
"Model Params": "Mudeli parameetrid",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "{{name}}-k",
|
"By {{name}}": "{{name}}-k",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Deia",
|
"Call": "Deia",
|
||||||
"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
|
"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Konexioak",
|
"Connections": "Konexioak",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
|
"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
|
||||||
"Content": "Edukia",
|
"Content": "Edukia",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Uneko Eredua",
|
"Current Model": "Uneko Eredua",
|
||||||
"Current Password": "Uneko Pasahitza",
|
"Current Password": "Uneko Pasahitza",
|
||||||
"Custom": "Pertsonalizatua",
|
"Custom": "Pertsonalizatua",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Lehenetsia",
|
"Default": "Lehenetsia",
|
||||||
"Default (Open AI)": "Lehenetsia (Open AI)",
|
"Default (Open AI)": "Lehenetsia (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Eredu Lehenetsia",
|
"Default Model": "Eredu Lehenetsia",
|
||||||
"Default model updated": "Eredu lehenetsia eguneratu da",
|
"Default model updated": "Eredu lehenetsia eguneratu da",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modelo iragazketa",
|
"Model Filtering": "Modelo iragazketa",
|
||||||
"Model ID": "Modelo ID",
|
"Model ID": "Modelo ID",
|
||||||
"Model IDs": "Modelo IDak",
|
"Model IDs": "Modelo IDak",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modeloaren izena",
|
"Model Name": "Modeloaren izena",
|
||||||
"Model not selected": "Ez da modelorik hautatu",
|
"Model not selected": "Ez da modelorik hautatu",
|
||||||
"Model Params": "Modelo parametroak",
|
"Model Params": "Modelo parametroak",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "توسط {{name}}",
|
"By {{name}}": "توسط {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "دور زدن جاسازی و بازیابی",
|
"Bypass Embedding and Retrieval": "دور زدن جاسازی و بازیابی",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "تقویم",
|
"Calendar": "تقویم",
|
||||||
"Call": "تماس",
|
"Call": "تماس",
|
||||||
"Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود",
|
"Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "ارتباطات",
|
"Connections": "ارتباطات",
|
||||||
"Connections saved successfully": "ارتباطات با موفقیت ذخیره شدند",
|
"Connections saved successfully": "ارتباطات با موفقیت ذخیره شدند",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "تلاش برای استدلال در مدل\u200cهای استدلالی را محدود می\u200cکند. فقط برای مدل\u200cهای استدلالی از ارائه\u200cدهندگان خاصی که از تلاش استدلالی پشتیبانی می\u200cکنند قابل اجراست.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "تلاش برای استدلال در مدل\u200cهای استدلالی را محدود می\u200cکند. فقط برای مدل\u200cهای استدلالی از ارائه\u200cدهندگان خاصی که از تلاش استدلالی پشتیبانی می\u200cکنند قابل اجراست.",
|
||||||
"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
|
"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
|
||||||
"Content": "محتوا",
|
"Content": "محتوا",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "مدل فعلی",
|
"Current Model": "مدل فعلی",
|
||||||
"Current Password": "رمز عبور فعلی",
|
"Current Password": "رمز عبور فعلی",
|
||||||
"Custom": "دلخواه",
|
"Custom": "دلخواه",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "منطقه خطر",
|
"Danger Zone": "منطقه خطر",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "پیشفرض",
|
"Default": "پیشفرض",
|
||||||
"Default (Open AI)": "پیشفرض (Open AI)",
|
"Default (Open AI)": "پیشفرض (Open AI)",
|
||||||
"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
|
"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "مدل پیشفرض",
|
"Default Model": "مدل پیشفرض",
|
||||||
"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
|
"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "مستقیم",
|
"Direct": "مستقیم",
|
||||||
"Direct Connections": "اتصالات مستقیم",
|
"Direct Connections": "اتصالات مستقیم",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "اتصالات مستقیم به کاربران اجازه می\u200cدهد به نقاط پایانی API سازگار با OpenAI خود متصل شوند.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "اتصالات مستقیم به کاربران اجازه می\u200cدهد به نقاط پایانی API سازگار با OpenAI خود متصل شوند.",
|
||||||
"Direct Connections settings updated": "تنظیمات اتصالات مستقیم به\u200cروزرسانی شد",
|
|
||||||
"Direct Tool Servers": "سرورهای ابزار مستقیم",
|
"Direct Tool Servers": "سرورهای ابزار مستقیم",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "فیلتر کردن مدل",
|
"Model Filtering": "فیلتر کردن مدل",
|
||||||
"Model ID": "شناسه مدل",
|
"Model ID": "شناسه مدل",
|
||||||
"Model IDs": "شناسه\u200cهای مدل",
|
"Model IDs": "شناسه\u200cهای مدل",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "نام مدل",
|
"Model Name": "نام مدل",
|
||||||
"Model not selected": "مدل انتخاب نشده",
|
"Model not selected": "مدل انتخاب نشده",
|
||||||
"Model Params": "مدل پارامز",
|
"Model Params": "مدل پارامز",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Tekijä {{name}}",
|
"By {{name}}": "Tekijä {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Ohita upotus ja haku",
|
"Bypass Embedding and Retrieval": "Ohita upotus ja haku",
|
||||||
"Bypass Web Loader": "Ohita verkkolataaja",
|
"Bypass Web Loader": "Ohita verkkolataaja",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalenteri",
|
"Calendar": "Kalenteri",
|
||||||
"Call": "Puhelu",
|
"Call": "Puhelu",
|
||||||
"Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
|
"Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Yhteystyyppi",
|
"Connection Type": "Yhteystyyppi",
|
||||||
"Connections": "Yhteydet",
|
"Connections": "Yhteydet",
|
||||||
"Connections saved successfully": "Yhteyksien tallentaminen onnistui",
|
"Connections saved successfully": "Yhteyksien tallentaminen onnistui",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
|
"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
|
||||||
"Content": "Sisältö",
|
"Content": "Sisältö",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Nykyinen malli",
|
"Current Model": "Nykyinen malli",
|
||||||
"Current Password": "Nykyinen salasana",
|
"Current Password": "Nykyinen salasana",
|
||||||
"Custom": "Mukautettu",
|
"Custom": "Mukautettu",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Mukautetun parametrin nimi",
|
"Custom Parameter Name": "Mukautetun parametrin nimi",
|
||||||
"Custom Parameter Value": "Mukautetun parametrin arvo",
|
"Custom Parameter Value": "Mukautetun parametrin arvo",
|
||||||
"Danger Zone": "Vaara-alue",
|
"Danger Zone": "Vaara-alue",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Oletus",
|
"Default": "Oletus",
|
||||||
"Default (Open AI)": "Oletus (Open AI)",
|
"Default (Open AI)": "Oletus (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oletustila toimii laajemman mallivalikoiman kanssa kutsumalla työkaluja kerran ennen suorittamista. Natiivitila hyödyntää mallin sisäänrakennettuja työkalujen kutsumisominaisuuksia, mutta edellyttää, että malli tukee tätä ominaisuutta.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oletustila toimii laajemman mallivalikoiman kanssa kutsumalla työkaluja kerran ennen suorittamista. Natiivitila hyödyntää mallin sisäänrakennettuja työkalujen kutsumisominaisuuksia, mutta edellyttää, että malli tukee tätä ominaisuutta.",
|
||||||
"Default Model": "Oletusmalli",
|
"Default Model": "Oletusmalli",
|
||||||
"Default model updated": "Oletusmalli päivitetty",
|
"Default model updated": "Oletusmalli päivitetty",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Suora",
|
"Direct": "Suora",
|
||||||
"Direct Connections": "Suorat yhteydet",
|
"Direct Connections": "Suorat yhteydet",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Suorat yhteydet mahdollistavat käyttäjien yhdistää omia OpenAI-yhteensopivia API-päätepisteitä.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Suorat yhteydet mahdollistavat käyttäjien yhdistää omia OpenAI-yhteensopivia API-päätepisteitä.",
|
||||||
"Direct Connections settings updated": "Suorien yhteyksien asetukset päivitetty",
|
|
||||||
"Direct Tool Servers": "Suorat työkalu palvelimet",
|
"Direct Tool Servers": "Suorat työkalu palvelimet",
|
||||||
"Disable Image Extraction": "Poista kuvien poiminta käytöstä",
|
"Disable Image Extraction": "Poista kuvien poiminta käytöstä",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Poista kuvien poiminta käytöstä PDF tiedostoista. Jos LLM on käytössä, kuvat tekstitetään automaattisesti. Oletuksena ei käytössä.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Poista kuvien poiminta käytöstä PDF tiedostoista. Jos LLM on käytössä, kuvat tekstitetään automaattisesti. Oletuksena ei käytössä.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Mallin suodatus",
|
"Model Filtering": "Mallin suodatus",
|
||||||
"Model ID": "Mallin tunnus",
|
"Model ID": "Mallin tunnus",
|
||||||
"Model IDs": "Mallitunnukset",
|
"Model IDs": "Mallitunnukset",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Mallin nimi",
|
"Model Name": "Mallin nimi",
|
||||||
"Model not selected": "Mallia ei ole valittu",
|
"Model not selected": "Mallia ei ole valittu",
|
||||||
"Model Params": "Mallin parametrit",
|
"Model Params": "Mallin parametrit",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Appeler",
|
"Call": "Appeler",
|
||||||
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
|
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Connexions",
|
"Connections": "Connexions",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
|
"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
|
||||||
"Content": "Contenu",
|
"Content": "Contenu",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modèle actuel amélioré",
|
"Current Model": "Modèle actuel amélioré",
|
||||||
"Current Password": "Mot de passe actuel",
|
"Current Password": "Mot de passe actuel",
|
||||||
"Custom": "Sur mesure",
|
"Custom": "Sur mesure",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Par défaut",
|
"Default": "Par défaut",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Modèle standard",
|
"Default Model": "Modèle standard",
|
||||||
"Default model updated": "Modèle par défaut mis à jour",
|
"Default model updated": "Modèle par défaut mis à jour",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID du modèle",
|
"Model ID": "ID du modèle",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Modèle non sélectionné",
|
"Model not selected": "Modèle non sélectionné",
|
||||||
"Model Params": "Paramètres du modèle",
|
"Model Params": "Paramètres du modèle",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Par {{name}}",
|
"By {{name}}": "Par {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval",
|
"Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Calendrier",
|
"Calendar": "Calendrier",
|
||||||
"Call": "Appeler",
|
"Call": "Appeler",
|
||||||
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
|
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Connexions",
|
"Connections": "Connexions",
|
||||||
"Connections saved successfully": "Connexions enregistrées avec succès",
|
"Connections saved successfully": "Connexions enregistrées avec succès",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
|
"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
|
||||||
"Content": "Contenu",
|
"Content": "Contenu",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modèle actuel",
|
"Current Model": "Modèle actuel",
|
||||||
"Current Password": "Mot de passe actuel",
|
"Current Password": "Mot de passe actuel",
|
||||||
"Custom": "Sur mesure",
|
"Custom": "Sur mesure",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Zone de danger",
|
"Danger Zone": "Zone de danger",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Par défaut",
|
"Default": "Par défaut",
|
||||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||||
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Modèle standard",
|
"Default Model": "Modèle standard",
|
||||||
"Default model updated": "Modèle par défaut mis à jour",
|
"Default model updated": "Modèle par défaut mis à jour",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Direct",
|
"Direct": "Direct",
|
||||||
"Direct Connections": "Direct connexions",
|
"Direct Connections": "Direct connexions",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.",
|
||||||
"Direct Connections settings updated": "Paramètres des connexions directes mis à jour",
|
|
||||||
"Direct Tool Servers": "Serveur d'outils directs",
|
"Direct Tool Servers": "Serveur d'outils directs",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrage de modèle",
|
"Model Filtering": "Filtrage de modèle",
|
||||||
"Model ID": "ID du modèle",
|
"Model ID": "ID du modèle",
|
||||||
"Model IDs": "ID des modèles",
|
"Model IDs": "ID des modèles",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nom du modèle",
|
"Model Name": "Nom du modèle",
|
||||||
"Model not selected": "Modèle non sélectionné",
|
"Model not selected": "Modèle non sélectionné",
|
||||||
"Model Params": "Paramètres du modèle",
|
"Model Params": "Paramètres du modèle",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Por {{name}}",
|
"By {{name}}": "Por {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Chamada",
|
"Call": "Chamada",
|
||||||
"Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web",
|
"Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Conexions",
|
"Connections": "Conexions",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Define o esforzo do modelo de razonamento, so aplicable a modelos de razonamento de provedores específicos que soportan o esforzo de razonamento.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Define o esforzo do modelo de razonamento, so aplicable a modelos de razonamento de provedores específicos que soportan o esforzo de razonamento.",
|
||||||
"Contact Admin for WebUI Access": "Contacta o administrador para obter acceso o WebUI",
|
"Contact Admin for WebUI Access": "Contacta o administrador para obter acceso o WebUI",
|
||||||
"Content": "Contido",
|
"Content": "Contido",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modelo Actual",
|
"Current Model": "Modelo Actual",
|
||||||
"Current Password": "contrasinal Actual",
|
"Current Password": "contrasinal Actual",
|
||||||
"Custom": "Personalizado",
|
"Custom": "Personalizado",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Por defecto",
|
"Default": "Por defecto",
|
||||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "O modo predeterminado funciona con unha gama mais ampla de modelos chamando as ferramentas unha vez antes da execución. o modo nativo aproveita as capacidades integradas de chamada de ferramentas do modelo, pero requiere que o modelo soporte esta función de manera inherente.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "O modo predeterminado funciona con unha gama mais ampla de modelos chamando as ferramentas unha vez antes da execución. o modo nativo aproveita as capacidades integradas de chamada de ferramentas do modelo, pero requiere que o modelo soporte esta función de manera inherente.",
|
||||||
"Default Model": "Modelo predeterminado",
|
"Default Model": "Modelo predeterminado",
|
||||||
"Default model updated": "O modelo por defecto foi actualizado",
|
"Default model updated": "O modelo por defecto foi actualizado",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "Conexións directas",
|
"Direct Connections": "Conexións directas",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Conexións directas permiten aos usuarios conectar cos seus propios puntos finais de API compatibles con OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Conexións directas permiten aos usuarios conectar cos seus propios puntos finais de API compatibles con OpenAI.",
|
||||||
"Direct Connections settings updated": "Configuración de Conexións directas actualizada",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrado de modelos",
|
"Model Filtering": "Filtrado de modelos",
|
||||||
"Model ID": "ID do modelo",
|
"Model ID": "ID do modelo",
|
||||||
"Model IDs": "IDs de modelos",
|
"Model IDs": "IDs de modelos",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nombre do modelo",
|
"Model Name": "Nombre do modelo",
|
||||||
"Model not selected": "Modelo no seleccionado",
|
"Model not selected": "Modelo no seleccionado",
|
||||||
"Model Params": "Parámetros do modelo",
|
"Model Params": "Parámetros do modelo",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "לוח שנה",
|
"Calendar": "לוח שנה",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "סוג חיבור",
|
"Connection Type": "סוג חיבור",
|
||||||
"Connections": "חיבורים",
|
"Connections": "חיבורים",
|
||||||
"Connections saved successfully": "החיבור נשמר בהצלחה",
|
"Connections saved successfully": "החיבור נשמר בהצלחה",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "תוכן",
|
"Content": "תוכן",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "המודל הנוכחי",
|
"Current Model": "המודל הנוכחי",
|
||||||
"Current Password": "הסיסמה הנוכחית",
|
"Current Password": "הסיסמה הנוכחית",
|
||||||
"Custom": "מותאם אישית",
|
"Custom": "מותאם אישית",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "ברירת מחדל",
|
"Default": "ברירת מחדל",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
|
"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "מודל ברירת מחדל",
|
"Default Model": "מודל ברירת מחדל",
|
||||||
"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
|
"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "מזהה דגם",
|
"Model ID": "מזהה דגם",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "שם המודל",
|
"Model Name": "שם המודל",
|
||||||
"Model not selected": "לא נבחר מודל",
|
"Model not selected": "לא נבחר מודל",
|
||||||
"Model Params": "פרמטרי המודל",
|
"Model Params": "פרמטרי המודל",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "सम्बन्ध",
|
"Connections": "सम्बन्ध",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "सामग्री",
|
"Content": "सामग्री",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "वर्तमान मॉडल",
|
"Current Model": "वर्तमान मॉडल",
|
||||||
"Current Password": "वर्तमान पासवर्ड",
|
"Current Password": "वर्तमान पासवर्ड",
|
||||||
"Custom": "कस्टम संस्करण",
|
"Custom": "कस्टम संस्करण",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "डिफ़ॉल्ट",
|
"Default": "डिफ़ॉल्ट",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
|
"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "डिफ़ॉल्ट मॉडल",
|
"Default Model": "डिफ़ॉल्ट मॉडल",
|
||||||
"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
|
"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "मॉडल आईडी",
|
"Model ID": "मॉडल आईडी",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "मॉडल चयनित नहीं है",
|
"Model not selected": "मॉडल चयनित नहीं है",
|
||||||
"Model Params": "मॉडल Params",
|
"Model Params": "मॉडल Params",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Poziv",
|
"Call": "Poziv",
|
||||||
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
|
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Povezivanja",
|
"Connections": "Povezivanja",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
|
"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
|
||||||
"Content": "Sadržaj",
|
"Content": "Sadržaj",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Trenutni model",
|
"Current Model": "Trenutni model",
|
||||||
"Current Password": "Trenutna lozinka",
|
"Current Password": "Trenutna lozinka",
|
||||||
"Custom": "Prilagođeno",
|
"Custom": "Prilagođeno",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Zadano",
|
"Default": "Zadano",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Zadani model",
|
"Default Model": "Zadani model",
|
||||||
"Default model updated": "Zadani model ažuriran",
|
"Default model updated": "Zadani model ažuriran",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID modela",
|
"Model ID": "ID modela",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Model nije odabran",
|
"Model not selected": "Model nije odabran",
|
||||||
"Model Params": "Model parametri",
|
"Model Params": "Model parametri",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Készítette: {{name}}",
|
"By {{name}}": "Készítette: {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Beágyazás és visszakeresés kihagyása",
|
"Bypass Embedding and Retrieval": "Beágyazás és visszakeresés kihagyása",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Naptár",
|
"Calendar": "Naptár",
|
||||||
"Call": "Hívás",
|
"Call": "Hívás",
|
||||||
"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
|
"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Kapcsolatok",
|
"Connections": "Kapcsolatok",
|
||||||
"Connections saved successfully": "Kapcsolatok sikeresen mentve",
|
"Connections saved successfully": "Kapcsolatok sikeresen mentve",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Korlátozza az érvelési erőfeszítést az érvelési modellek esetében. Csak bizonyos szolgáltatóktól származó, érvelési erőfeszítést támogató modellekre alkalmazható.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Korlátozza az érvelési erőfeszítést az érvelési modellek esetében. Csak bizonyos szolgáltatóktól származó, érvelési erőfeszítést támogató modellekre alkalmazható.",
|
||||||
"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
|
"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
|
||||||
"Content": "Tartalom",
|
"Content": "Tartalom",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Jelenlegi modell",
|
"Current Model": "Jelenlegi modell",
|
||||||
"Current Password": "Jelenlegi jelszó",
|
"Current Password": "Jelenlegi jelszó",
|
||||||
"Custom": "Egyéni",
|
"Custom": "Egyéni",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Veszélyzóna",
|
"Danger Zone": "Veszélyzóna",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Alapértelmezett",
|
"Default": "Alapértelmezett",
|
||||||
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Az alapértelmezett mód szélesebb modellválasztékkal működik az eszközök egyszeri meghívásával a végrehajtás előtt. A natív mód a modell beépített eszközhívási képességeit használja ki, de ehhez a modellnek eredendően támogatnia kell ezt a funkciót.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Az alapértelmezett mód szélesebb modellválasztékkal működik az eszközök egyszeri meghívásával a végrehajtás előtt. A natív mód a modell beépített eszközhívási képességeit használja ki, de ehhez a modellnek eredendően támogatnia kell ezt a funkciót.",
|
||||||
"Default Model": "Alapértelmezett modell",
|
"Default Model": "Alapértelmezett modell",
|
||||||
"Default model updated": "Alapértelmezett modell frissítve",
|
"Default model updated": "Alapértelmezett modell frissítve",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Közvetlen",
|
"Direct": "Közvetlen",
|
||||||
"Direct Connections": "Közvetlen kapcsolatok",
|
"Direct Connections": "Közvetlen kapcsolatok",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "A közvetlen kapcsolatok lehetővé teszik a felhasználók számára, hogy saját OpenAI kompatibilis API végpontjaikhoz csatlakozzanak.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "A közvetlen kapcsolatok lehetővé teszik a felhasználók számára, hogy saját OpenAI kompatibilis API végpontjaikhoz csatlakozzanak.",
|
||||||
"Direct Connections settings updated": "Közvetlen kapcsolatok beállításai frissítve",
|
|
||||||
"Direct Tool Servers": "Közvetlen eszköszerverek",
|
"Direct Tool Servers": "Közvetlen eszköszerverek",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modellszűrés",
|
"Model Filtering": "Modellszűrés",
|
||||||
"Model ID": "Modell azonosító",
|
"Model ID": "Modell azonosító",
|
||||||
"Model IDs": "Modell azonosítók",
|
"Model IDs": "Modell azonosítók",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modell neve",
|
"Model Name": "Modell neve",
|
||||||
"Model not selected": "Nincs kiválasztva modell",
|
"Model not selected": "Nincs kiválasztva modell",
|
||||||
"Model Params": "Modell paraméterek",
|
"Model Params": "Modell paraméterek",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Panggilan",
|
"Call": "Panggilan",
|
||||||
"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
|
"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Koneksi",
|
"Connections": "Koneksi",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
|
"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
|
||||||
"Content": "Konten",
|
"Content": "Konten",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Model Saat Ini",
|
"Current Model": "Model Saat Ini",
|
||||||
"Current Password": "Kata Sandi Saat Ini",
|
"Current Password": "Kata Sandi Saat Ini",
|
||||||
"Custom": "Kustom",
|
"Custom": "Kustom",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Default (Pengubah Kalimat)",
|
"Default (SentenceTransformers)": "Default (Pengubah Kalimat)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Model Default",
|
"Default Model": "Model Default",
|
||||||
"Default model updated": "Model default diperbarui",
|
"Default model updated": "Model default diperbarui",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID Model",
|
"Model ID": "ID Model",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Model tidak dipilih",
|
"Model not selected": "Model tidak dipilih",
|
||||||
"Model Params": "Parameter Model",
|
"Model Params": "Parameter Model",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Le {{name}}",
|
"By {{name}}": "Le {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Seachbhóthar Leabú agus Aisghabháil",
|
"Bypass Embedding and Retrieval": "Seachbhóthar Leabú agus Aisghabháil",
|
||||||
"Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin",
|
"Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Féilire",
|
"Calendar": "Féilire",
|
||||||
"Call": "Glaoigh",
|
"Call": "Glaoigh",
|
||||||
"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
|
"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Cineál Ceangail",
|
"Connection Type": "Cineál Ceangail",
|
||||||
"Connections": "Naisc",
|
"Connections": "Naisc",
|
||||||
"Connections saved successfully": "D'éirigh le naisc a shábháil",
|
"Connections saved successfully": "D'éirigh le naisc a shábháil",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta.",
|
||||||
"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
|
"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
|
||||||
"Content": "Ábhar",
|
"Content": "Ábhar",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Múnla Reatha",
|
"Current Model": "Múnla Reatha",
|
||||||
"Current Password": "Pasfhocal Reatha",
|
"Current Password": "Pasfhocal Reatha",
|
||||||
"Custom": "Saincheaptha",
|
"Custom": "Saincheaptha",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Ainm Paraiméadair Saincheaptha",
|
"Custom Parameter Name": "Ainm Paraiméadair Saincheaptha",
|
||||||
"Custom Parameter Value": "Luach Paraiméadair Saincheaptha",
|
"Custom Parameter Value": "Luach Paraiméadair Saincheaptha",
|
||||||
"Danger Zone": "Crios Contúirte",
|
"Danger Zone": "Crios Contúirte",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Réamhshocraithe",
|
"Default": "Réamhshocraithe",
|
||||||
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
||||||
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
|
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oibríonn mód réamhshocraithe le raon níos leithne samhlacha trí ghlaoch a chur ar uirlisí uair amháin roimh fhorghníomhú. Déanann mód dúchasach cumas glaoite uirlisí ionsuite an mhúnla a ghiaráil, ach éilíonn sé go dtacaíonn an tsamhail leis an ngné seo go bunúsach.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oibríonn mód réamhshocraithe le raon níos leithne samhlacha trí ghlaoch a chur ar uirlisí uair amháin roimh fhorghníomhú. Déanann mód dúchasach cumas glaoite uirlisí ionsuite an mhúnla a ghiaráil, ach éilíonn sé go dtacaíonn an tsamhail leis an ngné seo go bunúsach.",
|
||||||
"Default Model": "Múnla Réamhshocraithe",
|
"Default Model": "Múnla Réamhshocraithe",
|
||||||
"Default model updated": "Nuashonraíodh an múnla réamhshocraithe",
|
"Default model updated": "Nuashonraíodh an múnla réamhshocraithe",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Díreach",
|
"Direct": "Díreach",
|
||||||
"Direct Connections": "Naisc Dhíreacha",
|
"Direct Connections": "Naisc Dhíreacha",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Ligeann Connections Direct d'úsáideoirí ceangal lena gcríochphointí API féin atá comhoiriúnach le OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Ligeann Connections Direct d'úsáideoirí ceangal lena gcríochphointí API féin atá comhoiriúnach le OpenAI.",
|
||||||
"Direct Connections settings updated": "Nuashonraíodh socruithe Connections Direct",
|
|
||||||
"Direct Tool Servers": "Freastalaithe Uirlisí Díreacha",
|
"Direct Tool Servers": "Freastalaithe Uirlisí Díreacha",
|
||||||
"Disable Image Extraction": "Díchumasaigh Eastóscadh Íomhá",
|
"Disable Image Extraction": "Díchumasaigh Eastóscadh Íomhá",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Díchumasaigh eastóscadh íomhánna ón PDF. Má tá Úsáid LLM cumasaithe, cuirfear fotheidil leis na híomhánna go huathoibríoch. Is é Bréag an réamhshocrú.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Díchumasaigh eastóscadh íomhánna ón PDF. Má tá Úsáid LLM cumasaithe, cuirfear fotheidil leis na híomhánna go huathoibríoch. Is é Bréag an réamhshocrú.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Scagadh Múnla",
|
"Model Filtering": "Scagadh Múnla",
|
||||||
"Model ID": "ID Múnla",
|
"Model ID": "ID Múnla",
|
||||||
"Model IDs": "IDanna Múnla",
|
"Model IDs": "IDanna Múnla",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Ainm Múnla",
|
"Model Name": "Ainm Múnla",
|
||||||
"Model not selected": "Múnla nach roghnaíodh",
|
"Model not selected": "Múnla nach roghnaíodh",
|
||||||
"Model Params": "Múnla Params",
|
"Model Params": "Múnla Params",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Di {{name}}",
|
"By {{name}}": "Di {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Bypass embedding e recupero",
|
"Bypass Embedding and Retrieval": "Bypass embedding e recupero",
|
||||||
"Bypass Web Loader": "Bypassa il Web Loader",
|
"Bypass Web Loader": "Bypassa il Web Loader",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Calendario",
|
"Calendar": "Calendario",
|
||||||
"Call": "Chiamata",
|
"Call": "Chiamata",
|
||||||
"Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT",
|
"Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Tipo Connessione",
|
"Connection Type": "Tipo Connessione",
|
||||||
"Connections": "Connessioni",
|
"Connections": "Connessioni",
|
||||||
"Connections saved successfully": "Connessioni salvate con successo",
|
"Connections saved successfully": "Connessioni salvate con successo",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Limita lo sforzo di ragionamento per i modelli di ragionamento. Applicabile solo a modelli di ragionamento di fornitori specifici che supportano lo sforzo di ragionamento.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Limita lo sforzo di ragionamento per i modelli di ragionamento. Applicabile solo a modelli di ragionamento di fornitori specifici che supportano lo sforzo di ragionamento.",
|
||||||
"Contact Admin for WebUI Access": "Contatta l'amministratore per l'accesso al servizio WebUI",
|
"Contact Admin for WebUI Access": "Contatta l'amministratore per l'accesso al servizio WebUI",
|
||||||
"Content": "Contenuto",
|
"Content": "Contenuto",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modello corrente",
|
"Current Model": "Modello corrente",
|
||||||
"Current Password": "Password corrente",
|
"Current Password": "Password corrente",
|
||||||
"Custom": "Personalizzato",
|
"Custom": "Personalizzato",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Nome parametro personalizzato",
|
"Custom Parameter Name": "Nome parametro personalizzato",
|
||||||
"Custom Parameter Value": "Valore parametro personalizzato",
|
"Custom Parameter Value": "Valore parametro personalizzato",
|
||||||
"Danger Zone": "Zona di pericolo",
|
"Danger Zone": "Zona di pericolo",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Predefinito",
|
"Default": "Predefinito",
|
||||||
"Default (Open AI)": "Predefinito (Open AI)",
|
"Default (Open AI)": "Predefinito (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Il modello predefinito funziona con un'ampia gamma di modelli chiamando gli strumenti una volta prima dell'esecuzione. La modalità nativa sfrutta le capacità di chiamata degli strumenti integrate nel modello, ma richiede che il modello supporti intrinsecamente questa funzionalità.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Il modello predefinito funziona con un'ampia gamma di modelli chiamando gli strumenti una volta prima dell'esecuzione. La modalità nativa sfrutta le capacità di chiamata degli strumenti integrate nel modello, ma richiede che il modello supporti intrinsecamente questa funzionalità.",
|
||||||
"Default Model": "Modello predefinito",
|
"Default Model": "Modello predefinito",
|
||||||
"Default model updated": "Modello predefinito aggiornato",
|
"Default model updated": "Modello predefinito aggiornato",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Diretto",
|
"Direct": "Diretto",
|
||||||
"Direct Connections": "Connessioni Dirette",
|
"Direct Connections": "Connessioni Dirette",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Le Connessioni Dirette consentono agli utenti di connettersi ai propri endpoint API compatibili con OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Le Connessioni Dirette consentono agli utenti di connettersi ai propri endpoint API compatibili con OpenAI.",
|
||||||
"Direct Connections settings updated": "Impostazioni Connessioni Dirette aggiornate",
|
|
||||||
"Direct Tool Servers": "Strimentu Server Diretti",
|
"Direct Tool Servers": "Strimentu Server Diretti",
|
||||||
"Disable Image Extraction": "Disattiva l'estrazione immagini",
|
"Disable Image Extraction": "Disattiva l'estrazione immagini",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Disattiva l'estrazione immagini dai PDF. Se LLM è attivo le immagini saranno didascalizzate. Predefinito a Falso.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Disattiva l'estrazione immagini dai PDF. Se LLM è attivo le immagini saranno didascalizzate. Predefinito a Falso.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtraggio modelli",
|
"Model Filtering": "Filtraggio modelli",
|
||||||
"Model ID": "ID modello",
|
"Model ID": "ID modello",
|
||||||
"Model IDs": "ID modello",
|
"Model IDs": "ID modello",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nome modello",
|
"Model Name": "Nome modello",
|
||||||
"Model not selected": "Modello non selezionato",
|
"Model not selected": "Modello non selezionato",
|
||||||
"Model Params": "Parametri del modello",
|
"Model Params": "Parametri del modello",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "{{name}}による",
|
"By {{name}}": "{{name}}による",
|
||||||
"Bypass Embedding and Retrieval": "埋め込みと検索をバイパス",
|
"Bypass Embedding and Retrieval": "埋め込みと検索をバイパス",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "カレンダー",
|
"Calendar": "カレンダー",
|
||||||
"Call": "コール",
|
"Call": "コール",
|
||||||
"Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能はサポートされていません。",
|
"Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能はサポートされていません。",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "接続",
|
"Connections": "接続",
|
||||||
"Connections saved successfully": "接続が保存されました",
|
"Connections saved successfully": "接続が保存されました",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
|
"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
|
||||||
"Content": "コンテンツ",
|
"Content": "コンテンツ",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "現在のモデル",
|
"Current Model": "現在のモデル",
|
||||||
"Current Password": "現在のパスワード",
|
"Current Password": "現在のパスワード",
|
||||||
"Custom": "カスタム",
|
"Custom": "カスタム",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "危険なゾーン",
|
"Danger Zone": "危険なゾーン",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "デフォルト",
|
"Default": "デフォルト",
|
||||||
"Default (Open AI)": "デフォルト(OpenAI)",
|
"Default (Open AI)": "デフォルト(OpenAI)",
|
||||||
"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
|
"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "デフォルトモデル",
|
"Default Model": "デフォルトモデル",
|
||||||
"Default model updated": "デフォルトモデルが更新されました",
|
"Default model updated": "デフォルトモデルが更新されました",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "直接",
|
"Direct": "直接",
|
||||||
"Direct Connections": "ダイレクトコネクション",
|
"Direct Connections": "ダイレクトコネクション",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ダイレクトコネクションは、ユーザーが独自のOpenAI互換APIエンドポイントに接続できるようにします。",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ダイレクトコネクションは、ユーザーが独自のOpenAI互換APIエンドポイントに接続できるようにします。",
|
||||||
"Direct Connections settings updated": "ダイレクトコネクションの設定が更新されました",
|
|
||||||
"Direct Tool Servers": "ダイレクトツールサーバー",
|
"Direct Tool Servers": "ダイレクトツールサーバー",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "モデルフィルタリング",
|
"Model Filtering": "モデルフィルタリング",
|
||||||
"Model ID": "モデルID",
|
"Model ID": "モデルID",
|
||||||
"Model IDs": "モデルID",
|
"Model IDs": "モデルID",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "モデル名",
|
"Model Name": "モデル名",
|
||||||
"Model not selected": "モデルが選択されていません",
|
"Model not selected": "モデルが選択されていません",
|
||||||
"Model Params": "モデルパラメータ",
|
"Model Params": "モデルパラメータ",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "ავტორი {{name}}",
|
"By {{name}}": "ავტორი {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "კალენდარი",
|
"Calendar": "კალენდარი",
|
||||||
"Call": "ზარი",
|
"Call": "ზარი",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "კავშირები",
|
"Connections": "კავშირები",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "შემცველობა",
|
"Content": "შემცველობა",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "მიმდინარე მოდელი",
|
"Current Model": "მიმდინარე მოდელი",
|
||||||
"Current Password": "მიმდინარე პაროლი",
|
"Current Password": "მიმდინარე პაროლი",
|
||||||
"Custom": "ხელით",
|
"Custom": "ხელით",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "ნაგულისხმევი",
|
"Default": "ნაგულისხმევი",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "ნაგულისხმევი (SentenceTransformers)",
|
"Default (SentenceTransformers)": "ნაგულისხმევი (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "ნაგულისხმევი მოდელი",
|
"Default Model": "ნაგულისხმევი მოდელი",
|
||||||
"Default model updated": "ნაგულისხმევი მოდელი განახლდა",
|
"Default model updated": "ნაგულისხმევი მოდელი განახლდა",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "პირდაპირი მიერთება",
|
"Direct Connections": "პირდაპირი მიერთება",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "მოდელების გაფილტვრა",
|
"Model Filtering": "მოდელების გაფილტვრა",
|
||||||
"Model ID": "მოდელის ID",
|
"Model ID": "მოდელის ID",
|
||||||
"Model IDs": "მოდელის ID-ები",
|
"Model IDs": "მოდელის ID-ები",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Მოდელის სახელი",
|
"Model Name": "Მოდელის სახელი",
|
||||||
"Model not selected": "მოდელი არჩეული არაა",
|
"Model not selected": "მოდელი არჩეული არაა",
|
||||||
"Model Params": "მოდელის პარამეტრები",
|
"Model Params": "მოდელის პარამეტრები",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "작성자: {{name}}",
|
"By {{name}}": "작성자: {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "임베딩 검색 우회",
|
"Bypass Embedding and Retrieval": "임베딩 검색 우회",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "캘린더",
|
"Calendar": "캘린더",
|
||||||
"Call": "음성 기능",
|
"Call": "음성 기능",
|
||||||
"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
|
"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "연결",
|
"Connections": "연결",
|
||||||
"Connections saved successfully": "연결이 성공적으로 저장되었습니다",
|
"Connections saved successfully": "연결이 성공적으로 저장되었습니다",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "추론 모델의 추론 난이도를 제한합니다. 추론 난이도를 지원하는 특정 공급자의 추론 모델에만 적용됩니다.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "추론 모델의 추론 난이도를 제한합니다. 추론 난이도를 지원하는 특정 공급자의 추론 모델에만 적용됩니다.",
|
||||||
"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
|
"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
|
||||||
"Content": "내용",
|
"Content": "내용",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "현재 모델",
|
"Current Model": "현재 모델",
|
||||||
"Current Password": "현재 비밀번호",
|
"Current Password": "현재 비밀번호",
|
||||||
"Custom": "사용자 정의",
|
"Custom": "사용자 정의",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "위험 기능",
|
"Danger Zone": "위험 기능",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "기본값",
|
"Default": "기본값",
|
||||||
"Default (Open AI)": "기본값 (Open AI)",
|
"Default (Open AI)": "기본값 (Open AI)",
|
||||||
"Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
|
"Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "기본 모드는 실행 전에 도구를 한 번 호출하여 더 다양한 모델에서 작동합니다. 기본 모드는 모델에 내장된 도구 호출 기능을 활용하지만, 모델이 이 기능을 본질적으로 지원해야 합니다.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "기본 모드는 실행 전에 도구를 한 번 호출하여 더 다양한 모델에서 작동합니다. 기본 모드는 모델에 내장된 도구 호출 기능을 활용하지만, 모델이 이 기능을 본질적으로 지원해야 합니다.",
|
||||||
"Default Model": "기본 모델",
|
"Default Model": "기본 모델",
|
||||||
"Default model updated": "기본 모델이 업데이트되었습니다.",
|
"Default model updated": "기본 모델이 업데이트되었습니다.",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "직접 연결",
|
"Direct Connections": "직접 연결",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "직접 연결을 통해 사용자는 자체 OpenAI 호환 API 엔드포인트에 연결할 수 있습니다.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "직접 연결을 통해 사용자는 자체 OpenAI 호환 API 엔드포인트에 연결할 수 있습니다.",
|
||||||
"Direct Connections settings updated": "직접 연결 설정이 업데이트되었습니다",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "모델 필터링",
|
"Model Filtering": "모델 필터링",
|
||||||
"Model ID": "모델 ID",
|
"Model ID": "모델 ID",
|
||||||
"Model IDs": "모델 IDs",
|
"Model IDs": "모델 IDs",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "모델 이름",
|
"Model Name": "모델 이름",
|
||||||
"Model not selected": "모델이 선택되지 않았습니다.",
|
"Model not selected": "모델이 선택되지 않았습니다.",
|
||||||
"Model Params": "모델 파라미터",
|
"Model Params": "모델 파라미터",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Skambinti",
|
"Call": "Skambinti",
|
||||||
"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
|
"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Ryšiai",
|
"Connections": "Ryšiai",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
|
"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
|
||||||
"Content": "Turinys",
|
"Content": "Turinys",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Dabartinis modelis",
|
"Current Model": "Dabartinis modelis",
|
||||||
"Current Password": "Esamas slaptažodis",
|
"Current Password": "Esamas slaptažodis",
|
||||||
"Custom": "Personalizuota",
|
"Custom": "Personalizuota",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Numatytasis",
|
"Default": "Numatytasis",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Numatytasis modelis",
|
"Default Model": "Numatytasis modelis",
|
||||||
"Default model updated": "Numatytasis modelis atnaujintas",
|
"Default model updated": "Numatytasis modelis atnaujintas",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "Modelio ID",
|
"Model ID": "Modelio ID",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Modelis nepasirinktas",
|
"Model not selected": "Modelis nepasirinktas",
|
||||||
"Model Params": "Modelio parametrai",
|
"Model Params": "Modelio parametrai",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Hubungi",
|
"Call": "Hubungi",
|
||||||
"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
|
"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Sambungan",
|
"Connections": "Sambungan",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
|
"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
|
||||||
"Content": "Kandungan",
|
"Content": "Kandungan",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Model Semasa",
|
"Current Model": "Model Semasa",
|
||||||
"Current Password": "Kata laluan semasa",
|
"Current Password": "Kata laluan semasa",
|
||||||
"Custom": "Tersuai",
|
"Custom": "Tersuai",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Lalai",
|
"Default": "Lalai",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Lalai (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Lalai (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Model Lalai",
|
"Default Model": "Model Lalai",
|
||||||
"Default model updated": "Model lalai dikemas kini",
|
"Default model updated": "Model lalai dikemas kini",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID Model",
|
"Model ID": "ID Model",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Model tidak dipilih",
|
"Model not selected": "Model tidak dipilih",
|
||||||
"Model Params": "Model Params",
|
"Model Params": "Model Params",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Etter {{name}}",
|
"By {{name}}": "Etter {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalender",
|
"Calendar": "Kalender",
|
||||||
"Call": "Ring",
|
"Call": "Ring",
|
||||||
"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
|
"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Tilkoblinger",
|
"Connections": "Tilkoblinger",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
|
"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
|
||||||
"Content": "Innhold",
|
"Content": "Innhold",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Nåværende modell",
|
"Current Model": "Nåværende modell",
|
||||||
"Current Password": "Nåværende passord",
|
"Current Password": "Nåværende passord",
|
||||||
"Custom": "Tilpasset",
|
"Custom": "Tilpasset",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standard modus fungerer med et bredere utvalg av modeller ved at verktøyene kalles én gang før kjøring. Opprinnelig modus utnytter modellens innebygde funksjoner for verktøykalling, men krever at modellen i seg selv støtter denne funksjonen.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standard modus fungerer med et bredere utvalg av modeller ved at verktøyene kalles én gang før kjøring. Opprinnelig modus utnytter modellens innebygde funksjoner for verktøykalling, men krever at modellen i seg selv støtter denne funksjonen.",
|
||||||
"Default Model": "Standard modell",
|
"Default Model": "Standard modell",
|
||||||
"Default model updated": "Standard modell oppdatert",
|
"Default model updated": "Standard modell oppdatert",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "Direkte koblinger",
|
"Direct Connections": "Direkte koblinger",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Med direkte koblinger kan brukerne koble til egne OpenAI-kompatible API-endepunkter.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Med direkte koblinger kan brukerne koble til egne OpenAI-kompatible API-endepunkter.",
|
||||||
"Direct Connections settings updated": "Innstillinger for direkte koblinger er oppdatert",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrering av modeller",
|
"Model Filtering": "Filtrering av modeller",
|
||||||
"Model ID": "Modell-ID",
|
"Model ID": "Modell-ID",
|
||||||
"Model IDs": "Modell-ID-er",
|
"Model IDs": "Modell-ID-er",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modell",
|
"Model Name": "Modell",
|
||||||
"Model not selected": "Modell ikke valgt",
|
"Model not selected": "Modell ikke valgt",
|
||||||
"Model Params": "Modellparametere",
|
"Model Params": "Modellparametere",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Op {{name}}",
|
"By {{name}}": "Op {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Embedding en ophalen omzeilen ",
|
"Bypass Embedding and Retrieval": "Embedding en ophalen omzeilen ",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Agenda",
|
"Calendar": "Agenda",
|
||||||
"Call": "Oproep",
|
"Call": "Oproep",
|
||||||
"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
|
"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Verbindingen",
|
"Connections": "Verbindingen",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Beperkt de redeneerinspanning voor redeneermodellen. Alleen van toepassing op redeneermodellen van specifieke providers die redeneerinspanning ondersteunen.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Beperkt de redeneerinspanning voor redeneermodellen. Alleen van toepassing op redeneermodellen van specifieke providers die redeneerinspanning ondersteunen.",
|
||||||
"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
|
"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
|
||||||
"Content": "Inhoud",
|
"Content": "Inhoud",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Huidig model",
|
"Current Model": "Huidig model",
|
||||||
"Current Password": "Huidig wachtwoord",
|
"Current Password": "Huidig wachtwoord",
|
||||||
"Custom": "Aangepast",
|
"Custom": "Aangepast",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Gevarenzone",
|
"Danger Zone": "Gevarenzone",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standaard",
|
"Default": "Standaard",
|
||||||
"Default (Open AI)": "Standaard (Open AI)",
|
"Default (Open AI)": "Standaard (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "De standaardmodus werkt met een breder scala aan modellen door gereedschappen één keer aan te roepen voordat ze worden uitgevoerd. De native modus maakt gebruik van de ingebouwde mogelijkheden van het model om gereedschappen aan te roepen, maar vereist dat het model deze functie inherent ondersteunt.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "De standaardmodus werkt met een breder scala aan modellen door gereedschappen één keer aan te roepen voordat ze worden uitgevoerd. De native modus maakt gebruik van de ingebouwde mogelijkheden van het model om gereedschappen aan te roepen, maar vereist dat het model deze functie inherent ondersteunt.",
|
||||||
"Default Model": "Standaardmodel",
|
"Default Model": "Standaardmodel",
|
||||||
"Default model updated": "Standaardmodel bijgewerkt",
|
"Default model updated": "Standaardmodel bijgewerkt",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Direct",
|
"Direct": "Direct",
|
||||||
"Direct Connections": "Directe verbindingen",
|
"Direct Connections": "Directe verbindingen",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Directe verbindingen stellen gebruikers in staat om met hun eigen OpenAI compatibele API-endpoints te verbinden.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Directe verbindingen stellen gebruikers in staat om met hun eigen OpenAI compatibele API-endpoints te verbinden.",
|
||||||
"Direct Connections settings updated": "Directe verbindingsopties bijgewerkt",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modelfiltratie",
|
"Model Filtering": "Modelfiltratie",
|
||||||
"Model ID": "Model-ID",
|
"Model ID": "Model-ID",
|
||||||
"Model IDs": "Model-IDs",
|
"Model IDs": "Model-IDs",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modelnaam",
|
"Model Name": "Modelnaam",
|
||||||
"Model not selected": "Model niet geselecteerd",
|
"Model not selected": "Model niet geselecteerd",
|
||||||
"Model Params": "Modelparams",
|
"Model Params": "Modelparams",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "ਕਨੈਕਸ਼ਨ",
|
"Connections": "ਕਨੈਕਸ਼ਨ",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "ਸਮੱਗਰੀ",
|
"Content": "ਸਮੱਗਰੀ",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
|
"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
|
||||||
"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
|
"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
|
||||||
"Custom": "ਕਸਟਮ",
|
"Custom": "ਕਸਟਮ",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "ਮੂਲ",
|
"Default": "ਮੂਲ",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
|
"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
|
"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
|
||||||
"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
|
"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ਮਾਡਲ ID",
|
"Model ID": "ਮਾਡਲ ID",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "ਮਾਡਲ ਚੁਣਿਆ ਨਹੀਂ ਗਿਆ",
|
"Model not selected": "ਮਾਡਲ ਚੁਣਿਆ ਨਹੀਂ ਗਿਆ",
|
||||||
"Model Params": "ਮਾਡਲ ਪਰਮਜ਼",
|
"Model Params": "ਮਾਡਲ ਪਰਮਜ਼",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Przez {{name}}",
|
"By {{name}}": "Przez {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalendarz",
|
"Calendar": "Kalendarz",
|
||||||
"Call": "Rozmowa",
|
"Call": "Rozmowa",
|
||||||
"Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana podczas korzystania z silnika Web STT",
|
"Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana podczas korzystania z silnika Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Połączenia",
|
"Connections": "Połączenia",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Skontaktuj się z administratorem, aby uzyskać dostęp do WebUI.",
|
"Contact Admin for WebUI Access": "Skontaktuj się z administratorem, aby uzyskać dostęp do WebUI.",
|
||||||
"Content": "Treść",
|
"Content": "Treść",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Aktualny model",
|
"Current Model": "Aktualny model",
|
||||||
"Current Password": "Aktualne hasło",
|
"Current Password": "Aktualne hasło",
|
||||||
"Custom": "Niestandardowy",
|
"Custom": "Niestandardowy",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Domyślny",
|
"Default": "Domyślny",
|
||||||
"Default (Open AI)": "Domyślny (Open AI)",
|
"Default (Open AI)": "Domyślny (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Tryb domyślny współpracuje z szerszym zakresem modeli, wywołując narzędzia raz przed wykonaniem. Tryb natywny wykorzystuje wbudowane możliwości wywoływania narzędzi przez model, ale wymaga, aby model wewnętrznie obsługiwał tę funkcję.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Tryb domyślny współpracuje z szerszym zakresem modeli, wywołując narzędzia raz przed wykonaniem. Tryb natywny wykorzystuje wbudowane możliwości wywoływania narzędzi przez model, ale wymaga, aby model wewnętrznie obsługiwał tę funkcję.",
|
||||||
"Default Model": "Model domyślny",
|
"Default Model": "Model domyślny",
|
||||||
"Default model updated": "Domyślny model został zaktualizowany",
|
"Default model updated": "Domyślny model został zaktualizowany",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "Połączenia bezpośrednie",
|
"Direct Connections": "Połączenia bezpośrednie",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Połączenia bezpośrednie umożliwiają użytkownikom łączenie się z własnymi końcówkami API kompatybilnymi z OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Połączenia bezpośrednie umożliwiają użytkownikom łączenie się z własnymi końcówkami API kompatybilnymi z OpenAI.",
|
||||||
"Direct Connections settings updated": "Ustawienia połączeń bezpośrednich zaktualizowane",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtracja modeli",
|
"Model Filtering": "Filtracja modeli",
|
||||||
"Model ID": "Identyfikator modelu",
|
"Model ID": "Identyfikator modelu",
|
||||||
"Model IDs": "Identyfikatory modeli",
|
"Model IDs": "Identyfikatory modeli",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nazwa modelu",
|
"Model Name": "Nazwa modelu",
|
||||||
"Model not selected": "Model nie został wybrany",
|
"Model not selected": "Model nie został wybrany",
|
||||||
"Model Params": "Parametry modelu",
|
"Model Params": "Parametry modelu",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Por {{name}}",
|
"By {{name}}": "Por {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Chamada",
|
"Call": "Chamada",
|
||||||
"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
|
"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Conexões",
|
"Connections": "Conexões",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
|
"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
|
||||||
"Content": "Conteúdo",
|
"Content": "Conteúdo",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modelo Atual",
|
"Current Model": "Modelo Atual",
|
||||||
"Current Password": "Senha Atual",
|
"Current Password": "Senha Atual",
|
||||||
"Custom": "Personalizado",
|
"Custom": "Personalizado",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Padrão",
|
"Default": "Padrão",
|
||||||
"Default (Open AI)": "Padrão (Open AI)",
|
"Default (Open AI)": "Padrão (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Modelo Padrão",
|
"Default Model": "Modelo Padrão",
|
||||||
"Default model updated": "Modelo padrão atualizado",
|
"Default model updated": "Modelo padrão atualizado",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Filtrando modelo",
|
"Model Filtering": "Filtrando modelo",
|
||||||
"Model ID": "ID do Modelo",
|
"Model ID": "ID do Modelo",
|
||||||
"Model IDs": "IDs do modelo",
|
"Model IDs": "IDs do modelo",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nome do Modelo",
|
"Model Name": "Nome do Modelo",
|
||||||
"Model not selected": "Modelo não selecionado",
|
"Model not selected": "Modelo não selecionado",
|
||||||
"Model Params": "Parâmetros do Modelo",
|
"Model Params": "Parâmetros do Modelo",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Chamar",
|
"Call": "Chamar",
|
||||||
"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
|
"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Conexões",
|
"Connections": "Conexões",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
|
"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
|
||||||
"Content": "Conteúdo",
|
"Content": "Conteúdo",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Modelo Atual",
|
"Current Model": "Modelo Atual",
|
||||||
"Current Password": "Senha Atual",
|
"Current Password": "Senha Atual",
|
||||||
"Custom": "Personalizado",
|
"Custom": "Personalizado",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Padrão",
|
"Default": "Padrão",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Modelo padrão",
|
"Default Model": "Modelo padrão",
|
||||||
"Default model updated": "Modelo padrão atualizado",
|
"Default model updated": "Modelo padrão atualizado",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID do modelo",
|
"Model ID": "ID do modelo",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Modelo não selecionado",
|
"Model not selected": "Modelo não selecionado",
|
||||||
"Model Params": "Params Modelo",
|
"Model Params": "Params Modelo",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Apel",
|
"Call": "Apel",
|
||||||
"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
|
"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Tip conexiune",
|
"Connection Type": "Tip conexiune",
|
||||||
"Connections": "Conexiuni",
|
"Connections": "Conexiuni",
|
||||||
"Connections saved successfully": "Conexiunile au fost salvate cu succes",
|
"Connections saved successfully": "Conexiunile au fost salvate cu succes",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
|
"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
|
||||||
"Content": "Conținut",
|
"Content": "Conținut",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Model Curent",
|
"Current Model": "Model Curent",
|
||||||
"Current Password": "Parola Curentă",
|
"Current Password": "Parola Curentă",
|
||||||
"Custom": "Personalizat",
|
"Custom": "Personalizat",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Implicit",
|
"Default": "Implicit",
|
||||||
"Default (Open AI)": "Implicit (Open AI)",
|
"Default (Open AI)": "Implicit (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Implicit (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Implicit (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Model Implicit",
|
"Default Model": "Model Implicit",
|
||||||
"Default model updated": "Modelul implicit a fost actualizat",
|
"Default model updated": "Modelul implicit a fost actualizat",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID Model",
|
"Model ID": "ID Model",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Nume model",
|
"Model Name": "Nume model",
|
||||||
"Model not selected": "Modelul nu a fost selectat",
|
"Model not selected": "Modelul nu a fost selectat",
|
||||||
"Model Params": "Parametri Model",
|
"Model Params": "Parametri Model",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "От {{name}}",
|
"By {{name}}": "От {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Обход встраивания и извлечения данных",
|
"Bypass Embedding and Retrieval": "Обход встраивания и извлечения данных",
|
||||||
"Bypass Web Loader": "Обход веб-загрузчика",
|
"Bypass Web Loader": "Обход веб-загрузчика",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Календарь",
|
"Calendar": "Календарь",
|
||||||
"Call": "Вызов",
|
"Call": "Вызов",
|
||||||
"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
|
"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Тип подключения",
|
"Connection Type": "Тип подключения",
|
||||||
"Connections": "Подключения",
|
"Connections": "Подключения",
|
||||||
"Connections saved successfully": "Подключение успешно сохранено",
|
"Connections saved successfully": "Подключение успешно сохранено",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Ограничивает усилия по обоснованию для моделей обоснования. Применимо только к моделям обоснования от конкретных поставщиков, которые поддерживают усилия по обоснованию.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Ограничивает усилия по обоснованию для моделей обоснования. Применимо только к моделям обоснования от конкретных поставщиков, которые поддерживают усилия по обоснованию.",
|
||||||
"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
|
"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
|
||||||
"Content": "Содержание",
|
"Content": "Содержание",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Текущая модель",
|
"Current Model": "Текущая модель",
|
||||||
"Current Password": "Текущий пароль",
|
"Current Password": "Текущий пароль",
|
||||||
"Custom": "Пользовательский",
|
"Custom": "Пользовательский",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Название пользовательского параметра",
|
"Custom Parameter Name": "Название пользовательского параметра",
|
||||||
"Custom Parameter Value": "Значение пользовательского параметра",
|
"Custom Parameter Value": "Значение пользовательского параметра",
|
||||||
"Danger Zone": "Опасная зона",
|
"Danger Zone": "Опасная зона",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "По умолчанию",
|
"Default": "По умолчанию",
|
||||||
"Default (Open AI)": "По умолчанию (Open AI)",
|
"Default (Open AI)": "По умолчанию (Open AI)",
|
||||||
"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
|
"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим по умолчанию работает с более широким спектром моделей, вызывая инструменты один раз перед выполнением. Режим Нативно использует встроенные в модель возможности вызова инструментов, но требует, чтобы модель изначально поддерживала эту функцию.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим по умолчанию работает с более широким спектром моделей, вызывая инструменты один раз перед выполнением. Режим Нативно использует встроенные в модель возможности вызова инструментов, но требует, чтобы модель изначально поддерживала эту функцию.",
|
||||||
"Default Model": "Модель по умолчанию",
|
"Default Model": "Модель по умолчанию",
|
||||||
"Default model updated": "Модель по умолчанию обновлена",
|
"Default model updated": "Модель по умолчанию обновлена",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Прямое",
|
"Direct": "Прямое",
|
||||||
"Direct Connections": "Прямые подключения",
|
"Direct Connections": "Прямые подключения",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямые подключения позволяют пользователям подключаться к своим собственным конечным точкам API, совместимым с OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямые подключения позволяют пользователям подключаться к своим собственным конечным точкам API, совместимым с OpenAI.",
|
||||||
"Direct Connections settings updated": "Настройки прямых подключений обновлены",
|
|
||||||
"Direct Tool Servers": "Доступ к серверам инструментов",
|
"Direct Tool Servers": "Доступ к серверам инструментов",
|
||||||
"Disable Image Extraction": "Отключить извлечение изображений",
|
"Disable Image Extraction": "Отключить извлечение изображений",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Отключить извлечение изображений из PDF. Если включена параметр Использовать LLM, изображения будут подписаны автоматически. По умолчанию установлено значение Выкл.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Отключить извлечение изображений из PDF. Если включена параметр Использовать LLM, изображения будут подписаны автоматически. По умолчанию установлено значение Выкл.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Фильтрация Моделей",
|
"Model Filtering": "Фильтрация Моделей",
|
||||||
"Model ID": "ID Модели",
|
"Model ID": "ID Модели",
|
||||||
"Model IDs": "IDs Модели",
|
"Model IDs": "IDs Модели",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Название Модели",
|
"Model Name": "Название Модели",
|
||||||
"Model not selected": "Модель не выбрана",
|
"Model not selected": "Модель не выбрана",
|
||||||
"Model Params": "Параметры модели",
|
"Model Params": "Параметры модели",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Volanie",
|
"Call": "Volanie",
|
||||||
"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
|
"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Pripojenia",
|
"Connections": "Pripojenia",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
|
"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
|
||||||
"Content": "Obsah",
|
"Content": "Obsah",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Aktuálny model",
|
"Current Model": "Aktuálny model",
|
||||||
"Current Password": "Aktuálne heslo",
|
"Current Password": "Aktuálne heslo",
|
||||||
"Custom": "Na mieru",
|
"Custom": "Na mieru",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Predvolené hodnoty alebo nastavenia.",
|
"Default": "Predvolené hodnoty alebo nastavenia.",
|
||||||
"Default (Open AI)": "Predvolené (Open AI)",
|
"Default (Open AI)": "Predvolené (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Predvolené (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Predvolené (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Predvolený model",
|
"Default Model": "Predvolený model",
|
||||||
"Default model updated": "Predvolený model aktualizovaný.",
|
"Default model updated": "Predvolený model aktualizovaný.",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ID modelu",
|
"Model ID": "ID modelu",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Názov modelu",
|
"Model Name": "Názov modelu",
|
||||||
"Model not selected": "Model nebol vybraný",
|
"Model not selected": "Model nebol vybraný",
|
||||||
"Model Params": "Parametre modelu",
|
"Model Params": "Parametre modelu",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Од {{name}}",
|
"By {{name}}": "Од {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "Позив",
|
"Call": "Позив",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Везе",
|
"Connections": "Везе",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI",
|
"Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI",
|
||||||
"Content": "Садржај",
|
"Content": "Садржај",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Тренутни модел",
|
"Current Model": "Тренутни модел",
|
||||||
"Current Password": "Тренутна лозинка",
|
"Current Password": "Тренутна лозинка",
|
||||||
"Custom": "Прилагођено",
|
"Custom": "Прилагођено",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Подразумевано",
|
"Default": "Подразумевано",
|
||||||
"Default (Open AI)": "Подразумевано (Open AI)",
|
"Default (Open AI)": "Подразумевано (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Подразумевани модел",
|
"Default Model": "Подразумевани модел",
|
||||||
"Default model updated": "Подразумевани модел ажуриран",
|
"Default model updated": "Подразумевани модел ажуриран",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ИД модела",
|
"Model ID": "ИД модела",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "Модел није изабран",
|
"Model not selected": "Модел није изабран",
|
||||||
"Model Params": "Модел Парамс",
|
"Model Params": "Модел Парамс",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Av {{name}}",
|
"By {{name}}": "Av {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Kringgå inbäddning och hämtning",
|
"Bypass Embedding and Retrieval": "Kringgå inbäddning och hämtning",
|
||||||
"Bypass Web Loader": "Kringgå webbläsare",
|
"Bypass Web Loader": "Kringgå webbläsare",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalender",
|
"Calendar": "Kalender",
|
||||||
"Call": "Samtal",
|
"Call": "Samtal",
|
||||||
"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
|
"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Anslutningstyp",
|
"Connection Type": "Anslutningstyp",
|
||||||
"Connections": "Anslutningar",
|
"Connections": "Anslutningar",
|
||||||
"Connections saved successfully": "Anslutningar sparades framgångsrikt",
|
"Connections saved successfully": "Anslutningar sparades framgångsrikt",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Begränsar ansträngningen för resonemang för resonemangsmodeller. Gäller endast resonemangsmodeller från specifika leverantörer som stöder resonemangsinsats.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Begränsar ansträngningen för resonemang för resonemangsmodeller. Gäller endast resonemangsmodeller från specifika leverantörer som stöder resonemangsinsats.",
|
||||||
"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
|
"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
|
||||||
"Content": "Innehåll",
|
"Content": "Innehåll",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Aktuell modell",
|
"Current Model": "Aktuell modell",
|
||||||
"Current Password": "Nuvarande lösenord",
|
"Current Password": "Nuvarande lösenord",
|
||||||
"Custom": "Anpassad",
|
"Custom": "Anpassad",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Anpassat parameternamn",
|
"Custom Parameter Name": "Anpassat parameternamn",
|
||||||
"Custom Parameter Value": "Anpassat parametervärde",
|
"Custom Parameter Value": "Anpassat parametervärde",
|
||||||
"Danger Zone": "Fara",
|
"Danger Zone": "Fara",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardläget fungerar med ett bredare utbud av modeller genom att anropa verktyg en gång före körning. Inbyggt läge utnyttjar modellens inbyggda verktygsanropsfunktioner, men kräver att modellen har stöd för den här funktionen.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardläget fungerar med ett bredare utbud av modeller genom att anropa verktyg en gång före körning. Inbyggt läge utnyttjar modellens inbyggda verktygsanropsfunktioner, men kräver att modellen har stöd för den här funktionen.",
|
||||||
"Default Model": "Standardmodell",
|
"Default Model": "Standardmodell",
|
||||||
"Default model updated": "Standardmodell uppdaterad",
|
"Default model updated": "Standardmodell uppdaterad",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Direkt",
|
"Direct": "Direkt",
|
||||||
"Direct Connections": "Direkta anslutningar",
|
"Direct Connections": "Direkta anslutningar",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkta anslutningar tillåter användare att ansluta till sina egna OpenAI-kompatibla API-endpoints.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkta anslutningar tillåter användare att ansluta till sina egna OpenAI-kompatibla API-endpoints.",
|
||||||
"Direct Connections settings updated": "Inställningar för direkta anslutningar uppdaterade",
|
|
||||||
"Direct Tool Servers": "Direkta verktygsservrar",
|
"Direct Tool Servers": "Direkta verktygsservrar",
|
||||||
"Disable Image Extraction": "Inaktivera bildextrahering",
|
"Disable Image Extraction": "Inaktivera bildextrahering",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Inaktivera bildextrahering från PDF-filen. Om Använd LLM är aktiverat kommer bilder att automatiskt bildtextas. Standardvärdet är False.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Inaktivera bildextrahering från PDF-filen. Om Använd LLM är aktiverat kommer bilder att automatiskt bildtextas. Standardvärdet är False.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modellfiltrering",
|
"Model Filtering": "Modellfiltrering",
|
||||||
"Model ID": "Modell-ID",
|
"Model ID": "Modell-ID",
|
||||||
"Model IDs": "Modell-ID:n",
|
"Model IDs": "Modell-ID:n",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Modellnamn",
|
"Model Name": "Modellnamn",
|
||||||
"Model not selected": "Modell inte vald",
|
"Model not selected": "Modell inte vald",
|
||||||
"Model Params": "Modellparametrar",
|
"Model Params": "Modellparametrar",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "โทร",
|
"Call": "โทร",
|
||||||
"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เครื่องยนต์ Web STT",
|
"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เครื่องยนต์ Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "การเชื่อมต่อ",
|
"Connections": "การเชื่อมต่อ",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
|
"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
|
||||||
"Content": "เนื้อหา",
|
"Content": "เนื้อหา",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "โมเดลปัจจุบัน",
|
"Current Model": "โมเดลปัจจุบัน",
|
||||||
"Current Password": "รหัสผ่านปัจจุบัน",
|
"Current Password": "รหัสผ่านปัจจุบัน",
|
||||||
"Custom": "กำหนดเอง",
|
"Custom": "กำหนดเอง",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "ค่าเริ่มต้น",
|
"Default": "ค่าเริ่มต้น",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)",
|
"Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "โมเดลค่าเริ่มต้น",
|
"Default Model": "โมเดลค่าเริ่มต้น",
|
||||||
"Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว",
|
"Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "รหัสโมเดล",
|
"Model ID": "รหัสโมเดล",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "ยังไม่ได้เลือกโมเดล",
|
"Model not selected": "ยังไม่ได้เลือกโมเดล",
|
||||||
"Model Params": "พารามิเตอร์ของโมเดล",
|
"Model Params": "พารามิเตอร์ของโมเดล",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "",
|
"Call": "",
|
||||||
"Call feature is not supported when using Web STT engine": "",
|
"Call feature is not supported when using Web STT engine": "",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Baglanyşyklar",
|
"Connections": "Baglanyşyklar",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "",
|
"Contact Admin for WebUI Access": "",
|
||||||
"Content": "Mazmuny",
|
"Content": "Mazmuny",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Häzirki Model",
|
"Current Model": "Häzirki Model",
|
||||||
"Current Password": "Häzirki Parol",
|
"Current Password": "Häzirki Parol",
|
||||||
"Custom": "Özboluşly",
|
"Custom": "Özboluşly",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Nokatlaýyn",
|
"Default": "Nokatlaýyn",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
"Default (SentenceTransformers)": "Nokatlaýyn (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Nokatlaýyn (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Nokatlaýyn Model",
|
"Default Model": "Nokatlaýyn Model",
|
||||||
"Default model updated": "",
|
"Default model updated": "",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "",
|
"Model ID": "",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "",
|
"Model Name": "",
|
||||||
"Model not selected": "",
|
"Model not selected": "",
|
||||||
"Model Params": "",
|
"Model Params": "",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "{{name}} Tarafından",
|
"By {{name}}": "{{name}} Tarafından",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Takvim",
|
"Calendar": "Takvim",
|
||||||
"Call": "Arama",
|
"Call": "Arama",
|
||||||
"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
|
"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Bağlantılar",
|
"Connections": "Bağlantılar",
|
||||||
"Connections saved successfully": "Bağlantılar başarıyla kaydedildi",
|
"Connections saved successfully": "Bağlantılar başarıyla kaydedildi",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
|
"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
|
||||||
"Content": "İçerik",
|
"Content": "İçerik",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Mevcut Model",
|
"Current Model": "Mevcut Model",
|
||||||
"Current Password": "Mevcut Parola",
|
"Current Password": "Mevcut Parola",
|
||||||
"Custom": "Özel",
|
"Custom": "Özel",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Tehlikeli Bölge",
|
"Danger Zone": "Tehlikeli Bölge",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Varsayılan",
|
"Default": "Varsayılan",
|
||||||
"Default (Open AI)": "Varsayılan (Open AI)",
|
"Default (Open AI)": "Varsayılan (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Varsayılan mod, araçları yürütmeden önce bir kez çağırarak daha geniş bir model yelpazesiyle çalışır. Yerel mod, modelin yerleşik araç çağırma yeteneklerinden yararlanır, ancak modelin bu özelliği doğal olarak desteklemesini gerektirir.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Varsayılan mod, araçları yürütmeden önce bir kez çağırarak daha geniş bir model yelpazesiyle çalışır. Yerel mod, modelin yerleşik araç çağırma yeteneklerinden yararlanır, ancak modelin bu özelliği doğal olarak desteklemesini gerektirir.",
|
||||||
"Default Model": "Varsayılan Model",
|
"Default Model": "Varsayılan Model",
|
||||||
"Default model updated": "Varsayılan model güncellendi",
|
"Default model updated": "Varsayılan model güncellendi",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Doğrudan",
|
"Direct": "Doğrudan",
|
||||||
"Direct Connections": "Doğrudan Bağlantılar",
|
"Direct Connections": "Doğrudan Bağlantılar",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Model Filtreleme",
|
"Model Filtering": "Model Filtreleme",
|
||||||
"Model ID": "Model ID",
|
"Model ID": "Model ID",
|
||||||
"Model IDs": "Model Kimlikleri",
|
"Model IDs": "Model Kimlikleri",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Model Adı",
|
"Model Name": "Model Adı",
|
||||||
"Model not selected": "Model seçilmedi",
|
"Model not selected": "Model seçilmedi",
|
||||||
"Model Params": "Model Parametreleri",
|
"Model Params": "Model Parametreleri",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "{{name}} تەرىپىدىن",
|
"By {{name}}": "{{name}} تەرىپىدىن",
|
||||||
"Bypass Embedding and Retrieval": "كىرگۈزۈش ۋە قايتۇرۇشتىن ئۆتۈپ كېتىش",
|
"Bypass Embedding and Retrieval": "كىرگۈزۈش ۋە قايتۇرۇشتىن ئۆتۈپ كېتىش",
|
||||||
"Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش",
|
"Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "كالىندار",
|
"Calendar": "كالىندار",
|
||||||
"Call": "چاقىرىش",
|
"Call": "چاقىرىش",
|
||||||
"Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ",
|
"Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "ئۇلىنىش تىپى",
|
"Connection Type": "ئۇلىنىش تىپى",
|
||||||
"Connections": "ئۇلىنىشلەر",
|
"Connections": "ئۇلىنىشلەر",
|
||||||
"Connections saved successfully": "ئۇلىنىشلەر مۇۋەپپەقىيەتلىك ساقلاندى",
|
"Connections saved successfully": "ئۇلىنىشلەر مۇۋەپپەقىيەتلىك ساقلاندى",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "پەقەت مۇناسىۋەتلىك تەمىنلىگۈچىنىڭ چۈشەندۈرۈش مودېلى بىلەنلا ئىشلىتىلىدۇ.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "پەقەت مۇناسىۋەتلىك تەمىنلىگۈچىنىڭ چۈشەندۈرۈش مودېلى بىلەنلا ئىشلىتىلىدۇ.",
|
||||||
"Contact Admin for WebUI Access": "WebUI كىرىش ئۈچۈن باشقۇرغۇچى بىلەن ئالاقىلىشىڭ",
|
"Contact Admin for WebUI Access": "WebUI كىرىش ئۈچۈن باشقۇرغۇچى بىلەن ئالاقىلىشىڭ",
|
||||||
"Content": "مەزمۇن",
|
"Content": "مەزمۇن",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "نۆۋەتتىكى مودېل",
|
"Current Model": "نۆۋەتتىكى مودېل",
|
||||||
"Current Password": "ھازىرقى پارول",
|
"Current Password": "ھازىرقى پارول",
|
||||||
"Custom": "ئۆزلۈك",
|
"Custom": "ئۆزلۈك",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "ئۆزلۈك پارامېتىر نامى",
|
"Custom Parameter Name": "ئۆزلۈك پارامېتىر نامى",
|
||||||
"Custom Parameter Value": "ئۆزلۈك پارامېتىر قىممىتى",
|
"Custom Parameter Value": "ئۆزلۈك پارامېتىر قىممىتى",
|
||||||
"Danger Zone": "خەۋپلىك رايون",
|
"Danger Zone": "خەۋپلىك رايون",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "كۆڭۈلدىكى",
|
"Default": "كۆڭۈلدىكى",
|
||||||
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
|
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
|
||||||
"Default (SentenceTransformers)": "كۆڭۈلدىكى (SentenceTransformers)",
|
"Default (SentenceTransformers)": "كۆڭۈلدىكى (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "سۈكۈتتىكى ھالەت ئىجرا قىلىنىشتىن بۇرۇن بىر قېتىم چاقىرىش قوراللىرى ئارقىلىق تېخىمۇ كەڭ مودېللار بىلەن ئىشلەيدۇ. يەرلىك ھالەت مودېلنىڭ ئىچىگە قورال چاقىرىش ئىقتىدارىنى جارى قىلدۇرىدۇ ، ئەمما مودېلنىڭ بۇ ئىقتىدارنى ئەسلىدىنلا قوللىشىنى تەلەپ قىلىدۇ.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "سۈكۈتتىكى ھالەت ئىجرا قىلىنىشتىن بۇرۇن بىر قېتىم چاقىرىش قوراللىرى ئارقىلىق تېخىمۇ كەڭ مودېللار بىلەن ئىشلەيدۇ. يەرلىك ھالەت مودېلنىڭ ئىچىگە قورال چاقىرىش ئىقتىدارىنى جارى قىلدۇرىدۇ ، ئەمما مودېلنىڭ بۇ ئىقتىدارنى ئەسلىدىنلا قوللىشىنى تەلەپ قىلىدۇ.",
|
||||||
"Default Model": "كۆڭۈلدىكى مودېل",
|
"Default Model": "كۆڭۈلدىكى مودېل",
|
||||||
"Default model updated": "كۆڭۈلدىكى مودېل يېڭىلاندى",
|
"Default model updated": "كۆڭۈلدىكى مودېل يېڭىلاندى",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "بىۋاسىتە",
|
"Direct": "بىۋاسىتە",
|
||||||
"Direct Connections": "بىۋاسىتە ئۇلىنىشلار",
|
"Direct Connections": "بىۋاسىتە ئۇلىنىشلار",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "بىۋاسىتە ئۇلىنىشلار ئىشلەتكۈچىلەرگە ئۆز OpenAI ماس كېلىدىغان API ئۇلانمىسىغا باغلىنىشقا يول قويىدۇ.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "بىۋاسىتە ئۇلىنىشلار ئىشلەتكۈچىلەرگە ئۆز OpenAI ماس كېلىدىغان API ئۇلانمىسىغا باغلىنىشقا يول قويىدۇ.",
|
||||||
"Direct Connections settings updated": "بىۋاسىتە ئۇلىنىش تەڭشەكلىرى يېڭىلاندى",
|
|
||||||
"Direct Tool Servers": "بىۋاسىتە قورال مۇلازىمېتىرلىرى",
|
"Direct Tool Servers": "بىۋاسىتە قورال مۇلازىمېتىرلىرى",
|
||||||
"Disable Image Extraction": "رەسىم چىقىرىشنى چەكلە",
|
"Disable Image Extraction": "رەسىم چىقىرىشنى چەكلە",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF دىن رەسىم چىقىرىش چەكلىنىدۇ. LLM ئىشلىتىلسە، رەسىملەر ئاپتوماتىك تېمىغا ئىگە بولىدۇ. كۆڭۈلدىكىچە چەكلەنمەيدۇ.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF دىن رەسىم چىقىرىش چەكلىنىدۇ. LLM ئىشلىتىلسە، رەسىملەر ئاپتوماتىك تېمىغا ئىگە بولىدۇ. كۆڭۈلدىكىچە چەكلەنمەيدۇ.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "مودېل سۈزگۈچ",
|
"Model Filtering": "مودېل سۈزگۈچ",
|
||||||
"Model ID": "مودېل ID",
|
"Model ID": "مودېل ID",
|
||||||
"Model IDs": "مودېل IDلىرى",
|
"Model IDs": "مودېل IDلىرى",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "مودېل نامى",
|
"Model Name": "مودېل نامى",
|
||||||
"Model not selected": "مودېل تاللانمىغان",
|
"Model not selected": "مودېل تاللانمىغان",
|
||||||
"Model Params": "مودېل پارامېتىرلىرى",
|
"Model Params": "مودېل پارامېتىرلىرى",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Від {{name}}",
|
"By {{name}}": "Від {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Минути вбудовування та пошук",
|
"Bypass Embedding and Retrieval": "Минути вбудовування та пошук",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Календар",
|
"Calendar": "Календар",
|
||||||
"Call": "Виклик",
|
"Call": "Виклик",
|
||||||
"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
|
"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "З'єднання",
|
"Connections": "З'єднання",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Обмежує зусилля на міркування для моделей міркування. Діє лише для моделей міркування від конкретних постачальників, які підтримують зусилля міркування.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Обмежує зусилля на міркування для моделей міркування. Діє лише для моделей міркування від конкретних постачальників, які підтримують зусилля міркування.",
|
||||||
"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
|
"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
|
||||||
"Content": "Зміст",
|
"Content": "Зміст",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Поточна модель",
|
"Current Model": "Поточна модель",
|
||||||
"Current Password": "Поточний пароль",
|
"Current Password": "Поточний пароль",
|
||||||
"Custom": "Налаштувати",
|
"Custom": "Налаштувати",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Зона небезпеки",
|
"Danger Zone": "Зона небезпеки",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "За замовчуванням",
|
"Default": "За замовчуванням",
|
||||||
"Default (Open AI)": "За замовчуванням (Open AI)",
|
"Default (Open AI)": "За замовчуванням (Open AI)",
|
||||||
"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
|
"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим за замовчуванням працює з ширшим діапазоном моделей, викликаючи інструменти один раз перед виконанням. Рідний режим використовує вбудовані можливості виклику інструментів моделі, але вимагає, щоб модель спочатку підтримувала цю функцію.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим за замовчуванням працює з ширшим діапазоном моделей, викликаючи інструменти один раз перед виконанням. Рідний режим використовує вбудовані можливості виклику інструментів моделі, але вимагає, щоб модель спочатку підтримувала цю функцію.",
|
||||||
"Default Model": "Модель за замовчуванням",
|
"Default Model": "Модель за замовчуванням",
|
||||||
"Default model updated": "Модель за замовчуванням оновлено",
|
"Default model updated": "Модель за замовчуванням оновлено",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Прямий",
|
"Direct": "Прямий",
|
||||||
"Direct Connections": "Прямі з'єднання",
|
"Direct Connections": "Прямі з'єднання",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямі з'єднання дозволяють користувачам підключатися до своїх власних API-кінцевих точок, сумісних з OpenAI.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямі з'єднання дозволяють користувачам підключатися до своїх власних API-кінцевих точок, сумісних з OpenAI.",
|
||||||
"Direct Connections settings updated": "Налаштування прямих з'єднань оновлено",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Фільтрація моделей",
|
"Model Filtering": "Фільтрація моделей",
|
||||||
"Model ID": "ID моделі",
|
"Model ID": "ID моделі",
|
||||||
"Model IDs": "ID моделей",
|
"Model IDs": "ID моделей",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Назва моделі",
|
"Model Name": "Назва моделі",
|
||||||
"Model not selected": "Модель не вибрана",
|
"Model not selected": "Модель не вибрана",
|
||||||
"Model Params": "Параметри моделі",
|
"Model Params": "Параметри моделі",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "",
|
"By {{name}}": "",
|
||||||
"Bypass Embedding and Retrieval": "",
|
"Bypass Embedding and Retrieval": "",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "",
|
"Calendar": "",
|
||||||
"Call": "کال کریں",
|
"Call": "کال کریں",
|
||||||
"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
|
"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "کنکشنز",
|
"Connections": "کنکشنز",
|
||||||
"Connections saved successfully": "",
|
"Connections saved successfully": "",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||||
"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
|
"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
|
||||||
"Content": "مواد",
|
"Content": "مواد",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "موجودہ ماڈل",
|
"Current Model": "موجودہ ماڈل",
|
||||||
"Current Password": "موجودہ پاس ورڈ",
|
"Current Password": "موجودہ پاس ورڈ",
|
||||||
"Custom": "حسب ضرورت",
|
"Custom": "حسب ضرورت",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "",
|
"Danger Zone": "",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "پہلے سے طے شدہ",
|
"Default": "پہلے سے طے شدہ",
|
||||||
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
||||||
"Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)",
|
"Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "ڈیفالٹ ماڈل",
|
"Default Model": "ڈیفالٹ ماڈل",
|
||||||
"Default model updated": "ڈیفالٹ ماڈل اپ ڈیٹ ہو گیا",
|
"Default model updated": "ڈیفالٹ ماڈل اپ ڈیٹ ہو گیا",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "",
|
"Direct": "",
|
||||||
"Direct Connections": "",
|
"Direct Connections": "",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||||
"Direct Connections settings updated": "",
|
|
||||||
"Direct Tool Servers": "",
|
"Direct Tool Servers": "",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "",
|
"Model Filtering": "",
|
||||||
"Model ID": "ماڈل آئی ڈی",
|
"Model ID": "ماڈل آئی ڈی",
|
||||||
"Model IDs": "",
|
"Model IDs": "",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "ماڈل نام",
|
"Model Name": "ماڈل نام",
|
||||||
"Model not selected": "ماڈل منتخب نہیں ہوا",
|
"Model not selected": "ماڈل منتخب نہیں ہوا",
|
||||||
"Model Params": "ماڈل پیرامیٹرز",
|
"Model Params": "ماڈل پیرامیٹرز",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Муаллиф: {{name}}",
|
"By {{name}}": "Муаллиф: {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Ўрнатиш ва қидиришни четлаб ўтиш",
|
"Bypass Embedding and Retrieval": "Ўрнатиш ва қидиришни четлаб ўтиш",
|
||||||
"Bypass Web Loader": "Веб юклагични четлаб ўтиш",
|
"Bypass Web Loader": "Веб юклагични четлаб ўтиш",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Календар",
|
"Calendar": "Календар",
|
||||||
"Call": "Қўнғироқ қилинг",
|
"Call": "Қўнғироқ қилинг",
|
||||||
"Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди",
|
"Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Уланиш тури",
|
"Connection Type": "Уланиш тури",
|
||||||
"Connections": "Уланишлар",
|
"Connections": "Уланишлар",
|
||||||
"Connections saved successfully": "Уланишлар муваффақиятли сақланди",
|
"Connections saved successfully": "Уланишлар муваффақиятли сақланди",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Фикрлаш моделлари учун мулоҳаза юритиш бўйича ҳаракатларни чеклайди. Фақат фикрлаш ҳаракатларини қўллаб-қувватлайдиган махсус провайдерларнинг фикрлаш моделлари учун қўлланилади.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Фикрлаш моделлари учун мулоҳаза юритиш бўйича ҳаракатларни чеклайди. Фақат фикрлаш ҳаракатларини қўллаб-қувватлайдиган махсус провайдерларнинг фикрлаш моделлари учун қўлланилади.",
|
||||||
"Contact Admin for WebUI Access": "WebUIга кириш учун администратор билан боғланинг",
|
"Contact Admin for WebUI Access": "WebUIга кириш учун администратор билан боғланинг",
|
||||||
"Content": "Таркиб",
|
"Content": "Таркиб",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Жорий Модел",
|
"Current Model": "Жорий Модел",
|
||||||
"Current Password": "Жорий парол",
|
"Current Password": "Жорий парол",
|
||||||
"Custom": "Махсус",
|
"Custom": "Махсус",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Махсус параметр номи",
|
"Custom Parameter Name": "Махсус параметр номи",
|
||||||
"Custom Parameter Value": "Махсус параметр қиймати",
|
"Custom Parameter Value": "Махсус параметр қиймати",
|
||||||
"Danger Zone": "Хавфли зона",
|
"Danger Zone": "Хавфли зона",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Стандарт",
|
"Default": "Стандарт",
|
||||||
"Default (Open AI)": "Стандарт (Open AI)",
|
"Default (Open AI)": "Стандарт (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Стандарт (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Стандарт (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Стандарт модел",
|
"Default Model": "Стандарт модел",
|
||||||
"Default model updated": "Стандарт модел янгиланди",
|
"Default model updated": "Стандарт модел янгиланди",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Тўғридан-тўғри",
|
"Direct": "Тўғридан-тўғри",
|
||||||
"Direct Connections": "Тўғридан-тўғри уланишлар",
|
"Direct Connections": "Тўғридан-тўғри уланишлар",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Тўғридан-тўғри уланишлар фойдаланувчиларга ўзларининг OpenAIга мос келувчи API сўнгги нуқталарига уланиш имконини беради.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Тўғридан-тўғри уланишлар фойдаланувчиларга ўзларининг OpenAIга мос келувчи API сўнгги нуқталарига уланиш имконини беради.",
|
||||||
"Direct Connections settings updated": "Тўғридан-тўғри уланиш созламалари янгиланди",
|
|
||||||
"Direct Tool Servers": "Тўғридан-тўғри асбоблар серверлари",
|
"Direct Tool Servers": "Тўғридан-тўғри асбоблар серверлари",
|
||||||
"Disable Image Extraction": "Расм чиқаришни ўчириб қўйинг",
|
"Disable Image Extraction": "Расм чиқаришни ўчириб қўйинг",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDFдан тасвирни ажратиб олишни ўчириб қўйинг. Агар LLM дан фойдаланиш ёқилган бўлса, тасвирларга автоматик сарлавҳа қўйилади. Бирламчи параметрлар False.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDFдан тасвирни ажратиб олишни ўчириб қўйинг. Агар LLM дан фойдаланиш ёқилган бўлса, тасвирларга автоматик сарлавҳа қўйилади. Бирламчи параметрлар False.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Моделни филтрлаш",
|
"Model Filtering": "Моделни филтрлаш",
|
||||||
"Model ID": "Модел ИД",
|
"Model ID": "Модел ИД",
|
||||||
"Model IDs": "Модел идентификаторлари",
|
"Model IDs": "Модел идентификаторлари",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Модел номи",
|
"Model Name": "Модел номи",
|
||||||
"Model not selected": "Модел танланмаган",
|
"Model not selected": "Модел танланмаган",
|
||||||
"Model Params": "Модел параметрлари",
|
"Model Params": "Модел параметрлари",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Muallif: {{name}}",
|
"By {{name}}": "Muallif: {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "O'rnatish va qidirishni chetlab o'tish",
|
"Bypass Embedding and Retrieval": "O'rnatish va qidirishni chetlab o'tish",
|
||||||
"Bypass Web Loader": "Veb yuklagichni chetlab o'tish",
|
"Bypass Web Loader": "Veb yuklagichni chetlab o'tish",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Kalendar",
|
"Calendar": "Kalendar",
|
||||||
"Call": "Qo'ng'iroq qiling",
|
"Call": "Qo'ng'iroq qiling",
|
||||||
"Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi",
|
"Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "Ulanish turi",
|
"Connection Type": "Ulanish turi",
|
||||||
"Connections": "Ulanishlar",
|
"Connections": "Ulanishlar",
|
||||||
"Connections saved successfully": "Ulanishlar muvaffaqiyatli saqlandi",
|
"Connections saved successfully": "Ulanishlar muvaffaqiyatli saqlandi",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Fikrlash modellari uchun mulohaza yuritish bo'yicha harakatlarni cheklaydi. Faqat fikrlash harakatlarini qo'llab-quvvatlaydigan maxsus provayderlarning fikrlash modellari uchun qo'llaniladi.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Fikrlash modellari uchun mulohaza yuritish bo'yicha harakatlarni cheklaydi. Faqat fikrlash harakatlarini qo'llab-quvvatlaydigan maxsus provayderlarning fikrlash modellari uchun qo'llaniladi.",
|
||||||
"Contact Admin for WebUI Access": "WebUI-ga kirish uchun administrator bilan bog'laning",
|
"Contact Admin for WebUI Access": "WebUI-ga kirish uchun administrator bilan bog'laning",
|
||||||
"Content": "Tarkib",
|
"Content": "Tarkib",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Joriy Model",
|
"Current Model": "Joriy Model",
|
||||||
"Current Password": "Joriy parol",
|
"Current Password": "Joriy parol",
|
||||||
"Custom": "Maxsus",
|
"Custom": "Maxsus",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "Maxsus parametr nomi",
|
"Custom Parameter Name": "Maxsus parametr nomi",
|
||||||
"Custom Parameter Value": "Maxsus parametr qiymati",
|
"Custom Parameter Value": "Maxsus parametr qiymati",
|
||||||
"Danger Zone": "Xavfli zona",
|
"Danger Zone": "Xavfli zona",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Standart",
|
"Default": "Standart",
|
||||||
"Default (Open AI)": "Standart (Ochiq AI)",
|
"Default (Open AI)": "Standart (Ochiq AI)",
|
||||||
"Default (SentenceTransformers)": "Birlamchi (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Birlamchi (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||||
"Default Model": "Standart model",
|
"Default Model": "Standart model",
|
||||||
"Default model updated": "Standart model yangilandi",
|
"Default model updated": "Standart model yangilandi",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "To'g'ridan-to'g'ri",
|
"Direct": "To'g'ridan-to'g'ri",
|
||||||
"Direct Connections": "To'g'ridan-to'g'ri ulanishlar",
|
"Direct Connections": "To'g'ridan-to'g'ri ulanishlar",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "To'g'ridan-to'g'ri ulanishlar foydalanuvchilarga o'zlarining OpenAI-ga mos keluvchi API so'nggi nuqtalariga ulanish imkonini beradi.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "To'g'ridan-to'g'ri ulanishlar foydalanuvchilarga o'zlarining OpenAI-ga mos keluvchi API so'nggi nuqtalariga ulanish imkonini beradi.",
|
||||||
"Direct Connections settings updated": "To‘g‘ridan-to‘g‘ri ulanish sozlamalari yangilandi",
|
|
||||||
"Direct Tool Servers": "To'g'ridan-to'g'ri asboblar serverlari",
|
"Direct Tool Servers": "To'g'ridan-to'g'ri asboblar serverlari",
|
||||||
"Disable Image Extraction": "Rasm chiqarishni o'chirib qo'ying",
|
"Disable Image Extraction": "Rasm chiqarishni o'chirib qo'ying",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF-dan tasvirni ajratib olishni o'chirib qo'ying. Agar LLM dan foydalanish yoqilgan boʻlsa, tasvirlarga avtomatik sarlavha qoʻyiladi. Birlamchi parametrlar False.",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF-dan tasvirni ajratib olishni o'chirib qo'ying. Agar LLM dan foydalanish yoqilgan boʻlsa, tasvirlarga avtomatik sarlavha qoʻyiladi. Birlamchi parametrlar False.",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Modelni filtrlash",
|
"Model Filtering": "Modelni filtrlash",
|
||||||
"Model ID": "Model ID",
|
"Model ID": "Model ID",
|
||||||
"Model IDs": "Model identifikatorlari",
|
"Model IDs": "Model identifikatorlari",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Model nomi",
|
"Model Name": "Model nomi",
|
||||||
"Model not selected": "Model tanlanmagan",
|
"Model not selected": "Model tanlanmagan",
|
||||||
"Model Params": "Model parametrlari",
|
"Model Params": "Model parametrlari",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "Bởi {{name}}",
|
"By {{name}}": "Bởi {{name}}",
|
||||||
"Bypass Embedding and Retrieval": "Bỏ qua Embedding và Truy xuất",
|
"Bypass Embedding and Retrieval": "Bỏ qua Embedding và Truy xuất",
|
||||||
"Bypass Web Loader": "",
|
"Bypass Web Loader": "",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "Lịch",
|
"Calendar": "Lịch",
|
||||||
"Call": "Gọi",
|
"Call": "Gọi",
|
||||||
"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
|
"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "",
|
"Connection Type": "",
|
||||||
"Connections": "Kết nối",
|
"Connections": "Kết nối",
|
||||||
"Connections saved successfully": "Đã lưu kết nối thành công",
|
"Connections saved successfully": "Đã lưu kết nối thành công",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Hạn chế nỗ lực suy luận cho các mô hình suy luận. Chỉ áp dụng cho các mô hình suy luận từ các nhà cung cấp cụ thể hỗ trợ nỗ lực suy luận.",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Hạn chế nỗ lực suy luận cho các mô hình suy luận. Chỉ áp dụng cho các mô hình suy luận từ các nhà cung cấp cụ thể hỗ trợ nỗ lực suy luận.",
|
||||||
"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
|
"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
|
||||||
"Content": "Nội dung",
|
"Content": "Nội dung",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "Mô hình hiện tại",
|
"Current Model": "Mô hình hiện tại",
|
||||||
"Current Password": "Mật khẩu hiện tại",
|
"Current Password": "Mật khẩu hiện tại",
|
||||||
"Custom": "Tùy chỉnh",
|
"Custom": "Tùy chỉnh",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "",
|
"Custom Parameter Name": "",
|
||||||
"Custom Parameter Value": "",
|
"Custom Parameter Value": "",
|
||||||
"Danger Zone": "Vùng Nguy hiểm",
|
"Danger Zone": "Vùng Nguy hiểm",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "Mặc định",
|
"Default": "Mặc định",
|
||||||
"Default (Open AI)": "Mặc định (Open AI)",
|
"Default (Open AI)": "Mặc định (Open AI)",
|
||||||
"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
|
"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Chế độ mặc định hoạt động với nhiều loại mô hình hơn bằng cách gọi các công cụ một lần trước khi thực thi. Chế độ gốc tận dụng khả năng gọi công cụ tích hợp sẵn của mô hình, nhưng yêu cầu mô hình phải hỗ trợ tính năng này vốn có.",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Chế độ mặc định hoạt động với nhiều loại mô hình hơn bằng cách gọi các công cụ một lần trước khi thực thi. Chế độ gốc tận dụng khả năng gọi công cụ tích hợp sẵn của mô hình, nhưng yêu cầu mô hình phải hỗ trợ tính năng này vốn có.",
|
||||||
"Default Model": "Model mặc định",
|
"Default Model": "Model mặc định",
|
||||||
"Default model updated": "Mô hình mặc định đã được cập nhật",
|
"Default model updated": "Mô hình mặc định đã được cập nhật",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "Trực tiếp",
|
"Direct": "Trực tiếp",
|
||||||
"Direct Connections": "Kết nối Trực tiếp",
|
"Direct Connections": "Kết nối Trực tiếp",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Kết nối Trực tiếp cho phép người dùng kết nối với các điểm cuối API tương thích OpenAI của riêng họ.",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Kết nối Trực tiếp cho phép người dùng kết nối với các điểm cuối API tương thích OpenAI của riêng họ.",
|
||||||
"Direct Connections settings updated": "Đã cập nhật cài đặt Kết nối Trực tiếp",
|
|
||||||
"Direct Tool Servers": "Máy chủ Công cụ Trực tiếp",
|
"Direct Tool Servers": "Máy chủ Công cụ Trực tiếp",
|
||||||
"Disable Image Extraction": "",
|
"Disable Image Extraction": "",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "Lọc Mô hình",
|
"Model Filtering": "Lọc Mô hình",
|
||||||
"Model ID": "ID mẫu",
|
"Model ID": "ID mẫu",
|
||||||
"Model IDs": "Các ID Mô hình",
|
"Model IDs": "Các ID Mô hình",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "Tên Mô hình",
|
"Model Name": "Tên Mô hình",
|
||||||
"Model not selected": "Chưa chọn Mô hình",
|
"Model not selected": "Chưa chọn Mô hình",
|
||||||
"Model Params": "Mô hình Params",
|
"Model Params": "Mô hình Params",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "由 {{name}} 提供",
|
"By {{name}}": "由 {{name}} 提供",
|
||||||
"Bypass Embedding and Retrieval": "绕过嵌入和检索",
|
"Bypass Embedding and Retrieval": "绕过嵌入和检索",
|
||||||
"Bypass Web Loader": "绕过网页加载器",
|
"Bypass Web Loader": "绕过网页加载器",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "日历",
|
"Calendar": "日历",
|
||||||
"Call": "语音通话",
|
"Call": "语音通话",
|
||||||
"Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持语音通话功能",
|
"Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持语音通话功能",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "连接类型",
|
"Connection Type": "连接类型",
|
||||||
"Connections": "外部连接",
|
"Connections": "外部连接",
|
||||||
"Connections saved successfully": "连接保存成功",
|
"Connections saved successfully": "连接保存成功",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "限制推理模型的推理努力。仅适用于支持推理努力控制的特定提供商的推理模型。",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "限制推理模型的推理努力。仅适用于支持推理努力控制的特定提供商的推理模型。",
|
||||||
"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
|
"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
|
||||||
"Content": "内容",
|
"Content": "内容",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "当前模型",
|
"Current Model": "当前模型",
|
||||||
"Current Password": "当前密码",
|
"Current Password": "当前密码",
|
||||||
"Custom": "自定义",
|
"Custom": "自定义",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "自定义参数名称",
|
"Custom Parameter Name": "自定义参数名称",
|
||||||
"Custom Parameter Value": "自定义参数值",
|
"Custom Parameter Value": "自定义参数值",
|
||||||
"Danger Zone": "危险区域",
|
"Danger Zone": "危险区域",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "默认",
|
"Default": "默认",
|
||||||
"Default (Open AI)": "默认 (OpenAI)",
|
"Default (Open AI)": "默认 (OpenAI)",
|
||||||
"Default (SentenceTransformers)": "默认 (SentenceTransformers)",
|
"Default (SentenceTransformers)": "默认 (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "默认模式通过在执行前调用一次工具,能够兼容更广泛的模型。原生模式利用模型内置的工具调用能力,但需要模型本身具备该功能的原生支持。",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "默认模式通过在执行前调用一次工具,能够兼容更广泛的模型。原生模式利用模型内置的工具调用能力,但需要模型本身具备该功能的原生支持。",
|
||||||
"Default Model": "默认模型",
|
"Default Model": "默认模型",
|
||||||
"Default model updated": "默认模型已更新",
|
"Default model updated": "默认模型已更新",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "直接",
|
"Direct": "直接",
|
||||||
"Direct Connections": "直接连接",
|
"Direct Connections": "直接连接",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接连接允许用户连接自有的 OpenAI 兼容的 API 端点",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接连接允许用户连接自有的 OpenAI 兼容的 API 端点",
|
||||||
"Direct Connections settings updated": "直接连接设置已更新",
|
|
||||||
"Direct Tool Servers": "直接连接工具服务器",
|
"Direct Tool Servers": "直接连接工具服务器",
|
||||||
"Disable Image Extraction": "禁用图像提取",
|
"Disable Image Extraction": "禁用图像提取",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "禁用从 PDF 中提取图像。若启用 “使用大语言模型(LLM)”,图像将自动添加描述。默认为关闭",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "禁用从 PDF 中提取图像。若启用 “使用大语言模型(LLM)”,图像将自动添加描述。默认为关闭",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "模型白名单",
|
"Model Filtering": "模型白名单",
|
||||||
"Model ID": "模型 ID",
|
"Model ID": "模型 ID",
|
||||||
"Model IDs": "模型 ID",
|
"Model IDs": "模型 ID",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "模型名称",
|
"Model Name": "模型名称",
|
||||||
"Model not selected": "未选择模型",
|
"Model not selected": "未选择模型",
|
||||||
"Model Params": "模型参数",
|
"Model Params": "模型参数",
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,7 @@
|
||||||
"By {{name}}": "由 {{name}} 製作",
|
"By {{name}}": "由 {{name}} 製作",
|
||||||
"Bypass Embedding and Retrieval": "繞過嵌入與檢索",
|
"Bypass Embedding and Retrieval": "繞過嵌入與檢索",
|
||||||
"Bypass Web Loader": "繞過網頁載入器",
|
"Bypass Web Loader": "繞過網頁載入器",
|
||||||
|
"Cache Model List": "",
|
||||||
"Calendar": "日曆",
|
"Calendar": "日曆",
|
||||||
"Call": "通話",
|
"Call": "通話",
|
||||||
"Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能",
|
"Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能",
|
||||||
|
|
@ -245,6 +246,7 @@
|
||||||
"Connection Type": "連線類型",
|
"Connection Type": "連線類型",
|
||||||
"Connections": "連線",
|
"Connections": "連線",
|
||||||
"Connections saved successfully": "連線已成功儲存",
|
"Connections saved successfully": "連線已成功儲存",
|
||||||
|
"Connections settings updated": "",
|
||||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "限制推理模型的推理程度。僅適用於特定供應商支援推理程度的推理模型。",
|
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "限制推理模型的推理程度。僅適用於特定供應商支援推理程度的推理模型。",
|
||||||
"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
|
"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
|
||||||
"Content": "內容",
|
"Content": "內容",
|
||||||
|
|
@ -289,6 +291,7 @@
|
||||||
"Current Model": "目前模型",
|
"Current Model": "目前模型",
|
||||||
"Current Password": "目前密碼",
|
"Current Password": "目前密碼",
|
||||||
"Custom": "自訂",
|
"Custom": "自訂",
|
||||||
|
"Custom description enabled": "",
|
||||||
"Custom Parameter Name": "自訂參數名稱",
|
"Custom Parameter Name": "自訂參數名稱",
|
||||||
"Custom Parameter Value": "自訂參數值",
|
"Custom Parameter Value": "自訂參數值",
|
||||||
"Danger Zone": "危險區域",
|
"Danger Zone": "危險區域",
|
||||||
|
|
@ -300,6 +303,7 @@
|
||||||
"Default": "預設",
|
"Default": "預設",
|
||||||
"Default (Open AI)": "預設 (OpenAI)",
|
"Default (Open AI)": "預設 (OpenAI)",
|
||||||
"Default (SentenceTransformers)": "預設 (SentenceTransformers)",
|
"Default (SentenceTransformers)": "預設 (SentenceTransformers)",
|
||||||
|
"Default description enabled": "",
|
||||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "預設模式透過在執行前呼叫工具一次,來與更廣泛的模型相容。原生模式則利用模型內建的工具呼叫能力,但需要模型本身就支援此功能。",
|
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "預設模式透過在執行前呼叫工具一次,來與更廣泛的模型相容。原生模式則利用模型內建的工具呼叫能力,但需要模型本身就支援此功能。",
|
||||||
"Default Model": "預設模型",
|
"Default Model": "預設模型",
|
||||||
"Default model updated": "預設模型已更新",
|
"Default model updated": "預設模型已更新",
|
||||||
|
|
@ -340,7 +344,6 @@
|
||||||
"Direct": "直接",
|
"Direct": "直接",
|
||||||
"Direct Connections": "直接連線",
|
"Direct Connections": "直接連線",
|
||||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接連線允許使用者連線至自有或其他與 OpenAI API 相容的端點。",
|
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接連線允許使用者連線至自有或其他與 OpenAI API 相容的端點。",
|
||||||
"Direct Connections settings updated": "直接連線設定已更新。",
|
|
||||||
"Direct Tool Servers": "直連工具伺服器",
|
"Direct Tool Servers": "直連工具伺服器",
|
||||||
"Disable Image Extraction": "停用圖片擷取",
|
"Disable Image Extraction": "停用圖片擷取",
|
||||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "停用從 PDF 擷取圖片。若啟用「使用 LLM」,圖片將自動新增說明。預設為 False。",
|
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "停用從 PDF 擷取圖片。若啟用「使用 LLM」,圖片將自動新增說明。預設為 False。",
|
||||||
|
|
@ -838,6 +841,7 @@
|
||||||
"Model Filtering": "模型篩選",
|
"Model Filtering": "模型篩選",
|
||||||
"Model ID": "模型 ID",
|
"Model ID": "模型 ID",
|
||||||
"Model IDs": "模型 IDs",
|
"Model IDs": "模型 IDs",
|
||||||
|
"Model List Cache speeds up access by fetching models only at startup or on settings save—faster, but may not show recent model changes.": "",
|
||||||
"Model Name": "模型名稱",
|
"Model Name": "模型名稱",
|
||||||
"Model not selected": "未選取模型",
|
"Model not selected": "未選取模型",
|
||||||
"Model Params": "模型參數",
|
"Model Params": "模型參數",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue