chore: format

This commit is contained in:
Timothy Jaeryang Baek 2025-03-27 01:40:28 -07:00
parent d9b6d78d5c
commit 4a79320253
57 changed files with 414 additions and 113 deletions

View File

@ -1688,7 +1688,7 @@ RAG_TOP_K = PersistentConfig(
RAG_TOP_K_RERANKER = PersistentConfig( RAG_TOP_K_RERANKER = PersistentConfig(
"RAG_TOP_K_RERANKER", "RAG_TOP_K_RERANKER",
"rag.top_k_reranker", "rag.top_k_reranker",
int(os.environ.get("RAG_TOP_K_RERANKER", "3")) int(os.environ.get("RAG_TOP_K_RERANKER", "3")),
) )
RAG_RELEVANCE_THRESHOLD = PersistentConfig( RAG_RELEVANCE_THRESHOLD = PersistentConfig(
"RAG_RELEVANCE_THRESHOLD", "RAG_RELEVANCE_THRESHOLD",

View File

@ -146,7 +146,9 @@ def query_doc_with_hybrid_search(
# retrieve only min(k, k_reranker) items, sort and cut by distance if k < k_reranker # retrieve only min(k, k_reranker) items, sort and cut by distance if k < k_reranker
if k < k_reranker: if k < k_reranker:
sorted_items = sorted(zip(distances, metadatas, documents), key=lambda x: x[0], reverse=True) sorted_items = sorted(
zip(distances, metadatas, documents), key=lambda x: x[0], reverse=True
)
sorted_items = sorted_items[:k] sorted_items = sorted_items[:k]
distances, documents, metadatas = map(list, zip(*sorted_items)) distances, documents, metadatas = map(list, zip(*sorted_items))
result = { result = {
@ -305,6 +307,7 @@ def query_collection_with_hybrid_search(
) )
return merge_and_sort_query_results(results, k=k) return merge_and_sort_query_results(results, k=k)
def get_embedding_function( def get_embedding_function(
embedding_engine, embedding_engine,
embedding_model, embedding_model,

View File

@ -1520,7 +1520,8 @@ def query_doc_handler(
), ),
k=form_data.k if form_data.k else request.app.state.config.TOP_K, k=form_data.k if form_data.k else request.app.state.config.TOP_K,
reranking_function=request.app.state.rf, reranking_function=request.app.state.rf,
k_reranker=form_data.k_reranker or request.app.state.config.TOP_K_RERANKER, k_reranker=form_data.k_reranker
or request.app.state.config.TOP_K_RERANKER,
r=( r=(
form_data.r form_data.r
if form_data.r if form_data.r
@ -1570,7 +1571,8 @@ def query_collection_handler(
), ),
k=form_data.k if form_data.k else request.app.state.config.TOP_K, k=form_data.k if form_data.k else request.app.state.config.TOP_K,
reranking_function=request.app.state.rf, reranking_function=request.app.state.rf,
k_reranker=form_data.k_reranker or request.app.state.config.TOP_K_RERANKER, k_reranker=form_data.k_reranker
or request.app.state.config.TOP_K_RERANKER,
r=( r=(
form_data.r form_data.r
if form_data.r if form_data.r

View File

@ -302,12 +302,12 @@
{:else} {:else}
<div class="text-gray-500 text-xs text-center py-2 px-10"> <div class="text-gray-500 text-xs text-center py-2 px-10">
{#if ollama} {#if ollama}
{$i18n.t('Leave empty to include all models from "{{URL}}/api/tags" endpoint', { {$i18n.t('Leave empty to include all models from "{{url}}/api/tags" endpoint', {
URL: url url: url
})} })}
{:else} {:else}
{$i18n.t('Leave empty to include all models from "{{URL}}/models" endpoint', { {$i18n.t('Leave empty to include all models from "{{url}}/models" endpoint', {
URL: url url: url
})} })}
{/if} {/if}
</div> </div>

View File

@ -132,8 +132,8 @@
</div> </div>
<div class="text-xs text-gray-500 mt-1"> <div class="text-xs text-gray-500 mt-1">
{$i18n.t(`WebUI will make requests to "{{URL}}/openapi.json"`, { {$i18n.t(`WebUI will make requests to "{{url}}/openapi.json"`, {
URL: url url: url
})} })}
</div> </div>

View File

@ -782,7 +782,6 @@
</div> </div>
{/if} {/if}
{#if querySettings.hybrid === true} {#if querySettings.hybrid === true}
<div class=" mb-2.5 flex flex-col w-full justify-between"> <div class=" mb-2.5 flex flex-col w-full justify-between">
<div class=" flex w-full justify-between"> <div class=" flex w-full justify-between">

View File

@ -52,8 +52,8 @@
<div class="flex w-full gap-2 items-center"> <div class="flex w-full gap-2 items-center">
<Tooltip <Tooltip
className="w-full relative" className="w-full relative"
content={$i18n.t(`WebUI will make requests to "{{URL}}/openapi.json"`, { content={$i18n.t(`WebUI will make requests to "{{url}}/openapi.json"`, {
URL: url url: url
})} })}
placement="top-start" placement="top-start"
> >

View File

@ -6,6 +6,7 @@
"(latest)": "(الأخير)", "(latest)": "(الأخير)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ نماذج }}", "{{ models }}": "{{ نماذج }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "دردشات {{user}}", "{{user}}'s Chats": "دردشات {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "اتصالات", "Connections": "اتصالات",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "أدخل Top K", "Enter Top K": "أدخل Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "إدارة خطوط الأنابيب", "Manage Pipelines": "إدارة خطوط الأنابيب",
"Manage Tool Servers": "",
"March": "مارس", "March": "مارس",
"Max Tokens (num_predict)": "ماكس توكنز (num_predict)", "Max Tokens (num_predict)": "ماكس توكنز (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "ما هو الجديد", "Whats New in": "ما هو الجديد",

View File

@ -6,6 +6,7 @@
"(latest)": "(последна)", "(latest)": "(последна)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Отговори", "{{COUNT}} Replies": "{{COUNT}} Отговори",
"{{user}}'s Chats": "{{user}}'s чатове", "{{user}}'s Chats": "{{user}}'s чатове",
@ -215,6 +216,7 @@
"Confirm your action": "Потвърдете действието си", "Confirm your action": "Потвърдете действието си",
"Confirm your new password": "Потвърдете новата си парола", "Confirm your new password": "Потвърдете новата си парола",
"Connect to your own OpenAI compatible API endpoints.": "Свържете се със собствени крайни точки на API, съвместими с OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Свържете се със собствени крайни точки на API, съвместими с OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Връзки", "Connections": "Връзки",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Въведете Top K", "Enter Top K": "Въведете Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)",
"Enter your current password": "Въведете текущата си парола", "Enter your current password": "Въведете текущата си парола",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP сървърът е актуализиран", "LDAP server updated": "LDAP сървърът е актуализиран",
"Leaderboard": "Класация", "Leaderboard": "Класация",
"Leave empty for unlimited": "Оставете празно за неограничено", "Leave empty for unlimited": "Оставете празно за неограничено",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Оставете празно, за да включите всички модели от крайната точка \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Оставете празно, за да включите всички модели от крайната точка \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Оставете празно, за да включите всички модели или изберете конкретни модели", "Leave empty to include all models or select specific models": "Оставете празно, за да включите всички модели или изберете конкретни модели",
"Leave empty to use the default prompt, or enter a custom prompt": "Оставете празно, за да използвате промпта по подразбиране, или въведете персонализиран промпт", "Leave empty to use the default prompt, or enter a custom prompt": "Оставете празно, за да използвате промпта по подразбиране, или въведете персонализиран промпт",
"Leave model field empty to use the default model.": "Оставете полето за модел празно, за да използвате модела по подразбиране.", "Leave model field empty to use the default model.": "Оставете полето за модел празно, за да използвате модела по подразбиране.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Управление на Ollama API връзки", "Manage Ollama API Connections": "Управление на Ollama API връзки",
"Manage OpenAI API Connections": "Управление на OpenAI API връзки", "Manage OpenAI API Connections": "Управление на OpenAI API връзки",
"Manage Pipelines": "Управление на пайплайни", "Manage Pipelines": "Управление на пайплайни",
"Manage Tool Servers": "",
"March": "Март", "March": "Март",
"Max Tokens (num_predict)": "Макс токени (num_predict)", "Max Tokens (num_predict)": "Макс токени (num_predict)",
"Max Upload Count": "Максимален брой качвания", "Max Upload Count": "Максимален брой качвания",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код", "Tools have a function calling system that allows arbitrary code execution": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код",
"Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.", "Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.",
"Top K": "Топ K", "Top K": "Топ K",
"Top K Reranker": "",
"Top P": "Топ P", "Top P": "Топ P",
"Transformers": "Трансформатори", "Transformers": "Трансформатори",
"Trouble accessing Ollama?": "Проблеми с достъпа до Ollama?", "Trouble accessing Ollama?": "Проблеми с достъпа до Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI ще прави заявки към \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI ще прави заявки към \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Какво се опитвате да постигнете?", "What are you trying to achieve?": "Какво се опитвате да постигнете?",
"What are you working on?": "Върху какво работите?", "What are you working on?": "Върху какво работите?",
"Whats New in": "", "Whats New in": "",

View File

@ -6,6 +6,7 @@
"(latest)": "(সর্বশেষ)", "(latest)": "(সর্বশেষ)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ মডেল}}", "{{ models }}": "{{ মডেল}}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}র চ্যাটস", "{{user}}'s Chats": "{{user}}র চ্যাটস",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "কানেকশনগুলো", "Connections": "কানেকশনগুলো",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Top K লিখুন", "Enter Top K": "Top K লিখুন",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "পাইপলাইন পরিচালনা করুন", "Manage Pipelines": "পাইপলাইন পরিচালনা করুন",
"Manage Tool Servers": "",
"March": "মার্চ", "March": "মার্চ",
"Max Tokens (num_predict)": "সর্বোচ্চ টোকেন (num_predict)", "Max Tokens (num_predict)": "সর্বোচ্চ টোকেন (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?", "Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "এতে নতুন কী", "Whats New in": "এতে নতুন কী",

View File

@ -6,6 +6,7 @@
"(latest)": "(últim)", "(latest)": "(últim)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes", "{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
"{{COUNT}} Replies": "{{COUNT}} respostes", "{{COUNT}} Replies": "{{COUNT}} respostes",
"{{user}}'s Chats": "Els xats de {{user}}", "{{user}}'s Chats": "Els xats de {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirma la teva acció", "Confirm your action": "Confirma la teva acció",
"Confirm your new password": "Confirma la teva nova contrasenya", "Confirm your new password": "Confirma la teva nova contrasenya",
"Connect to your own OpenAI compatible API endpoints.": "Connecta als teus propis punts de connexió de l'API compatible amb OpenAI", "Connect to your own OpenAI compatible API endpoints.": "Connecta als teus propis punts de connexió de l'API compatible amb OpenAI",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Connexions", "Connections": "Connexions",
"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": "Posat en contacte amb l'administrador per accedir a WebUI", "Contact Admin for WebUI Access": "Posat en contacte amb l'administrador per accedir a WebUI",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Entra el temps màxim en segons", "Enter timeout in seconds": "Entra el temps màxim en segons",
"Enter to Send": "Enter per enviar", "Enter to Send": "Enter per enviar",
"Enter Top K": "Introdueix Top K", "Enter Top K": "Introdueix Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)",
"Enter your current password": "Introdueix la teva contrasenya actual", "Enter your current password": "Introdueix la teva contrasenya actual",
@ -634,8 +637,8 @@
"LDAP server updated": "Servidor LDAP actualitzat", "LDAP server updated": "Servidor LDAP actualitzat",
"Leaderboard": "Tauler de classificació", "Leaderboard": "Tauler de classificació",
"Leave empty for unlimited": "Deixar-ho buit per il·limitat", "Leave empty for unlimited": "Deixar-ho buit per il·limitat",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Deixar-ho buit per incloure tots els models del punt de connexió \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Deixar-ho buit per incloure tots els models del punt de connexió \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Deixa-ho en blanc per incloure tots els models o selecciona models específics", "Leave empty to include all models or select specific models": "Deixa-ho en blanc per incloure tots els models o selecciona models específics",
"Leave empty to use the default prompt, or enter a custom prompt": "Deixa-ho en blanc per utilitzar la indicació predeterminada o introdueix una indicació personalitzada", "Leave empty to use the default prompt, or enter a custom prompt": "Deixa-ho en blanc per utilitzar la indicació predeterminada o introdueix una indicació personalitzada",
"Leave model field empty to use the default model.": "Deixa el camp de model buit per utilitzar el model per defecte.", "Leave model field empty to use the default model.": "Deixa el camp de model buit per utilitzar el model per defecte.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Gestionar les connexions a l'API d'Ollama", "Manage Ollama API Connections": "Gestionar les connexions a l'API d'Ollama",
"Manage OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI", "Manage OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI",
"Manage Pipelines": "Gestionar les Pipelines", "Manage Pipelines": "Gestionar les Pipelines",
"Manage Tool Servers": "",
"March": "Març", "March": "Març",
"Max Tokens (num_predict)": "Nombre màxim de Tokens (num_predict)", "Max Tokens (num_predict)": "Nombre màxim de Tokens (num_predict)",
"Max Upload Count": "Nombre màxim de càrregues", "Max Upload Count": "Nombre màxim de càrregues",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari", "Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.", "Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformadors", "Transformers": "Transformadors",
"Trouble accessing Ollama?": "Problemes en accedir a Ollama?", "Trouble accessing Ollama?": "Problemes en accedir a Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "URL de WebUI", "WebUI URL": "URL de WebUI",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI farà peticions a \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI farà peticions a \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà peticions a \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà peticions a \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Què intentes aconseguir?", "What are you trying to achieve?": "Què intentes aconseguir?",
"What are you working on?": "En què estàs treballant?", "What are you working on?": "En què estàs treballant?",
"Whats New in": "Què hi ha de nou a", "Whats New in": "Què hi ha de nou a",

View File

@ -6,6 +6,7 @@
"(latest)": "", "(latest)": "",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "", "{{ models }}": "",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Mga koneksyon", "Connections": "Mga koneksyon",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Pagsulod sa Top K", "Enter Top K": "Pagsulod sa Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Pagsulod sa URL (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Pagsulod sa URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "", "Manage Pipelines": "",
"Manage Tool Servers": "",
"March": "", "March": "",
"Max Tokens (num_predict)": "", "Max Tokens (num_predict)": "",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Ibabaw nga P", "Top P": "Ibabaw nga P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?", "Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Unsay bag-o sa", "Whats New in": "Unsay bag-o sa",

View File

@ -6,6 +6,7 @@
"(latest)": "Nejnovější", "(latest)": "Nejnovější",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}'s konverzace", "{{user}}'s Chats": "{{user}}'s konverzace",
@ -215,6 +216,7 @@
"Confirm your action": "Potvrďte svoji akci", "Confirm your action": "Potvrďte svoji akci",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Připojení", "Connections": "Připojení",
"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í.",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Zadejte horní K", "Enter Top K": "Zadejte horní K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadejte URL (např. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Zadejte URL (např. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadejte URL (např. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Zadejte URL (např. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "Žebříček", "Leaderboard": "Žebříček",
"Leave empty for unlimited": "Nechte prázdné pro neomezeně", "Leave empty for unlimited": "Nechte prázdné pro neomezeně",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Nechte prázdné pro zahrnutí všech modelů nebo vyberte konkrétní modely.", "Leave empty to include all models or select specific models": "Nechte prázdné pro zahrnutí všech modelů nebo vyberte konkrétní modely.",
"Leave empty to use the default prompt, or enter a custom prompt": "Nechte prázdné pro použití výchozího podnětu, nebo zadejte vlastní podnět.", "Leave empty to use the default prompt, or enter a custom prompt": "Nechte prázdné pro použití výchozího podnětu, nebo zadejte vlastní podnět.",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Správa pipelines", "Manage Pipelines": "Správa pipelines",
"Manage Tool Servers": "",
"March": "Březen", "March": "Březen",
"Max Tokens (num_predict)": "Maximální počet tokenů (num_predict)", "Max Tokens (num_predict)": "Maximální počet tokenů (num_predict)",
"Max Upload Count": "Maximální počet nahrání", "Max Upload Count": "Maximální počet nahrání",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.", "Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.",
"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Máte potíže s přístupem k Ollama?", "Trouble accessing Ollama?": "Máte potíže s přístupem k Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Co je nového v", "Whats New in": "Co je nového v",

View File

@ -6,6 +6,7 @@
"(latest)": "(seneste)", "(latest)": "(seneste)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modeller }}", "{{ models }}": "{{ modeller }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}s chats", "{{user}}'s Chats": "{{user}}s chats",
@ -215,6 +216,7 @@
"Confirm your action": "Bekræft din handling", "Confirm your action": "Bekræft din handling",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Forbindelser", "Connections": "Forbindelser",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Indtast Top K", "Enter Top K": "Indtast Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Indtast URL (f.eks. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Indtast URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "Lad stå tomt for ubegrænset", "Leave empty for unlimited": "Lad stå tomt for ubegrænset",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "Lad stå tomt for at bruge standardprompten, eller indtast en brugerdefineret prompt", "Leave empty to use the default prompt, or enter a custom prompt": "Lad stå tomt for at bruge standardprompten, eller indtast en brugerdefineret prompt",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Administrer pipelines", "Manage Pipelines": "Administrer pipelines",
"Manage Tool Servers": "",
"March": "Marts", "March": "Marts",
"Max Tokens (num_predict)": "Maks. tokens (num_predict)", "Max Tokens (num_predict)": "Maks. tokens (num_predict)",
"Max Upload Count": "Maks. uploadantal", "Max Upload Count": "Maks. uploadantal",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse", "Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse",
"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.", "Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemer med at få adgang til Ollama?", "Trouble accessing Ollama?": "Problemer med at få adgang til Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Nyheder i", "Whats New in": "Nyheder i",

View File

@ -6,6 +6,7 @@
"(latest)": "(neueste)", "(latest)": "(neueste)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ Modelle }}", "{{ models }}": "{{ Modelle }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen", "{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
"{{COUNT}} Replies": "{{COUNT}} Antworten", "{{COUNT}} Replies": "{{COUNT}} Antworten",
"{{user}}'s Chats": "{{user}}s Chats", "{{user}}'s Chats": "{{user}}s Chats",
@ -215,6 +216,7 @@
"Confirm your action": "Bestätigen Sie Ihre Aktion.", "Confirm your action": "Bestätigen Sie Ihre Aktion.",
"Confirm your new password": "Neues Passwort bestätigen", "Confirm your new password": "Neues Passwort bestätigen",
"Connect to your own OpenAI compatible API endpoints.": "Verbinden Sie sich zu Ihren OpenAI-kompatiblen Endpunkten.", "Connect to your own OpenAI compatible API endpoints.": "Verbinden Sie sich zu Ihren OpenAI-kompatiblen Endpunkten.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Verbindungen", "Connections": "Verbindungen",
"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": "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",
@ -635,8 +637,8 @@
"LDAP server updated": "LDAP-Server aktualisiert", "LDAP server updated": "LDAP-Server aktualisiert",
"Leaderboard": "Bestenliste", "Leaderboard": "Bestenliste",
"Leave empty for unlimited": "Leer lassen für unbegrenzt", "Leave empty for unlimited": "Leer lassen für unbegrenzt",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Leer lassen, um alle Modelle vom \"{{URL}}/api/tags\"-Endpunkt einzuschließen", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Leer lassen, um alle Modelle vom \"{{URL}}/models\"-Endpunkt einzuschließen", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Leer lassen, um alle Modelle einzuschließen oder spezifische Modelle auszuwählen", "Leave empty to include all models or select specific models": "Leer lassen, um alle Modelle einzuschließen oder spezifische Modelle auszuwählen",
"Leave empty to use the default prompt, or enter a custom prompt": "Leer lassen, um den Standardprompt zu verwenden, oder geben Sie einen benutzerdefinierten Prompt ein", "Leave empty to use the default prompt, or enter a custom prompt": "Leer lassen, um den Standardprompt zu verwenden, oder geben Sie einen benutzerdefinierten Prompt ein",
"Leave model field empty to use the default model.": "Leer lassen, um das Standardmodell zu verwenden.", "Leave model field empty to use the default model.": "Leer lassen, um das Standardmodell zu verwenden.",
@ -663,6 +665,7 @@
"Manage Ollama API Connections": "Ollama-API-Verbindungen verwalten", "Manage Ollama API Connections": "Ollama-API-Verbindungen verwalten",
"Manage OpenAI API Connections": "OpenAI-API-Verbindungen verwalten", "Manage OpenAI API Connections": "OpenAI-API-Verbindungen verwalten",
"Manage Pipelines": "Pipelines verwalten", "Manage Pipelines": "Pipelines verwalten",
"Manage Tool Servers": "",
"March": "März", "March": "März",
"Max Tokens (num_predict)": "Maximale Tokenanzahl (num_predict)", "Max Tokens (num_predict)": "Maximale Tokenanzahl (num_predict)",
"Max Upload Count": "Maximale Anzahl der Uploads", "Max Upload Count": "Maximale Anzahl der Uploads",
@ -1079,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht", "Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.", "Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", "Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
@ -1156,6 +1160,7 @@
"WebUI URL": "WebUI-URL", "WebUI URL": "WebUI-URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI wird Anfragen an \"{{url}}/api/chat\" senden", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI wird Anfragen an \"{{url}}/api/chat\" senden",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI wird Anfragen an \"{{url}}/chat/completions\" senden", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI wird Anfragen an \"{{url}}/chat/completions\" senden",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Was versuchen Sie zu erreichen?", "What are you trying to achieve?": "Was versuchen Sie zu erreichen?",
"What are you working on?": "Woran arbeiten Sie?", "What are you working on?": "Woran arbeiten Sie?",
"Whats New in": "Neuigkeiten von", "Whats New in": "Neuigkeiten von",

View File

@ -6,6 +6,7 @@
"(latest)": "(much latest)", "(latest)": "(much latest)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "", "{{ models }}": "",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Connections", "Connections": "Connections",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Enter Top Wow", "Enter Top K": "Enter Top Wow",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "", "Manage Pipelines": "",
"Manage Tool Servers": "",
"March": "", "March": "",
"Max Tokens (num_predict)": "", "Max Tokens (num_predict)": "",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K very top", "Top K": "Top K very top",
"Top K Reranker": "",
"Top P": "Top P very top", "Top P": "Top P very top",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?", "Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Whats New in much new", "Whats New in": "Whats New in much new",

View File

@ -6,6 +6,7 @@
"(latest)": "(τελευταίο)", "(latest)": "(τελευταίο)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Συνομιλίες του {{user}}", "{{user}}'s Chats": "Συνομιλίες του {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Επιβεβαιώστε την ενέργειά σας", "Confirm your action": "Επιβεβαιώστε την ενέργειά σας",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Συνδέσεις", "Connections": "Συνδέσεις",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Εισάγετε το Top K", "Enter Top K": "Εισάγετε το Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Εισάγετε το URL (π.χ. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Εισάγετε το URL (π.χ. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "Ο διακομιστής LDAP ενημερώθηκε", "LDAP server updated": "Ο διακομιστής LDAP ενημερώθηκε",
"Leaderboard": "Κατάταξη", "Leaderboard": "Κατάταξη",
"Leave empty for unlimited": "Αφήστε κενό για απεριόριστο", "Leave empty for unlimited": "Αφήστε κενό για απεριόριστο",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Αφήστε κενό για να συμπεριλάβετε όλα τα μοντέλα από το endpoint \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Αφήστε κενό για να συμπεριλάβετε όλα τα μοντέλα από το endpoint \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα ή επιλέξτε συγκεκριμένα μοντέλα", "Leave empty to include all models or select specific models": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα ή επιλέξτε συγκεκριμένα μοντέλα",
"Leave empty to use the default prompt, or enter a custom prompt": "Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη προτροπή, ή εισάγετε μια προσαρμοσμένη προτροπή", "Leave empty to use the default prompt, or enter a custom prompt": "Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη προτροπή, ή εισάγετε μια προσαρμοσμένη προτροπή",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Διαχείριση Συνδέσεων API Ollama", "Manage Ollama API Connections": "Διαχείριση Συνδέσεων API Ollama",
"Manage OpenAI API Connections": "Διαχείριση Συνδέσεων API OpenAI", "Manage OpenAI API Connections": "Διαχείριση Συνδέσεων API OpenAI",
"Manage Pipelines": "Διαχείριση Καναλιών", "Manage Pipelines": "Διαχείριση Καναλιών",
"Manage Tool Servers": "",
"March": "Μάρτιος", "March": "Μάρτιος",
"Max Tokens (num_predict)": "Μέγιστος Αριθμός Tokens (num_predict)", "Max Tokens (num_predict)": "Μέγιστος Αριθμός Tokens (num_predict)",
"Max Upload Count": "Μέγιστος Αριθμός Ανεβάσματος", "Max Upload Count": "Μέγιστος Αριθμός Ανεβάσματος",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα", "Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα",
"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.", "Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "Προβλήματα πρόσβασης στο Ollama?", "Trouble accessing Ollama?": "Προβλήματα πρόσβασης στο Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?", "What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?",
"What are you working on?": "Τι εργάζεστε;", "What are you working on?": "Τι εργάζεστε;",
"Whats New in": "Τι νέο υπάρχει στο", "Whats New in": "Τι νέο υπάρχει στο",

View File

@ -6,6 +6,7 @@
"(latest)": "", "(latest)": "",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "", "{{ models }}": "",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "", "Connections": "",
"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": "",
@ -635,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -663,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "", "Manage Pipelines": "",
"Manage Tool Servers": "",
"March": "", "March": "",
"Max Tokens (num_predict)": "", "Max Tokens (num_predict)": "",
"Max Upload Count": "", "Max Upload Count": "",
@ -1079,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "", "Top K": "",
"Top K Reranker": "",
"Top P": "", "Top P": "",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "", "Trouble accessing Ollama?": "",
@ -1156,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "", "Whats New in": "",

View File

@ -6,6 +6,7 @@
"(latest)": "", "(latest)": "",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "", "{{ models }}": "",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "", "Connections": "",
"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": "",
@ -635,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -663,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "", "Manage Pipelines": "",
"Manage Tool Servers": "",
"March": "", "March": "",
"Max Tokens (num_predict)": "", "Max Tokens (num_predict)": "",
"Max Upload Count": "", "Max Upload Count": "",
@ -1079,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "", "Top K": "",
"Top K Reranker": "",
"Top P": "", "Top P": "",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "", "Trouble accessing Ollama?": "",
@ -1156,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "", "Whats New in": "",

View File

@ -6,6 +6,7 @@
"(latest)": "(latest)", "(latest)": "(latest)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas", "{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respuestas", "{{COUNT}} Replies": "{{COUNT}} Respuestas",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirma tu acción", "Confirm your action": "Confirma tu acción",
"Confirm your new password": "Confirmar tu nueva contraseña", "Confirm your new password": "Confirmar tu nueva contraseña",
"Connect to your own OpenAI compatible API endpoints.": "Conecta a tus propios endpoints de API compatibles con OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Conecta a tus propios endpoints de API compatibles con OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Conexiones", "Connections": "Conexiones",
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Esfuerzo de razonamiento para 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.": "Esfuerzo de razonamiento para 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 el administrador para obtener acceso al WebUI", "Contact Admin for WebUI Access": "Contacta el administrador para obtener acceso al WebUI",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Introduzca el tiempo de espera en segundos", "Enter timeout in seconds": "Introduzca el tiempo de espera en segundos",
"Enter to Send": "Enter para Enviar", "Enter to Send": "Enter para Enviar",
"Enter Top K": "Ingrese el Top K", "Enter Top K": "Ingrese el Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ingrese la URL (p.ej., http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Ingrese la URL (p.ej., http://localhost:11434)",
"Enter your current password": "Ingrese su contraseña actual", "Enter your current password": "Ingrese su contraseña actual",
@ -634,8 +637,8 @@
"LDAP server updated": "Servidor LDAP actualizado", "LDAP server updated": "Servidor LDAP actualizado",
"Leaderboard": "Tablero de líderes", "Leaderboard": "Tablero de líderes",
"Leave empty for unlimited": "Deje vacío para ilimitado", "Leave empty for unlimited": "Deje vacío para ilimitado",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Deje vacío para incluir todos los modelos desde el endpoint \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Deje vacío para incluir todos los modelos desde el endpoint \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Deje vacío para incluir todos los modelos o seleccione modelos específicos", "Leave empty to include all models or select specific models": "Deje vacío para incluir todos los modelos o seleccione modelos específicos",
"Leave empty to use the default prompt, or enter a custom prompt": "Deje vacío para usar el prompt predeterminado, o ingrese un prompt personalizado", "Leave empty to use the default prompt, or enter a custom prompt": "Deje vacío para usar el prompt predeterminado, o ingrese un prompt personalizado",
"Leave model field empty to use the default model.": "Deje el campo del modelo vacío para usar el modelo predeterminado.", "Leave model field empty to use the default model.": "Deje el campo del modelo vacío para usar el modelo predeterminado.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Gestionar conexiones API de Ollama", "Manage Ollama API Connections": "Gestionar conexiones API de Ollama",
"Manage OpenAI API Connections": "Gestionar conexiones API de OpenAI", "Manage OpenAI API Connections": "Gestionar conexiones API de OpenAI",
"Manage Pipelines": "Administrar Pipelines", "Manage Pipelines": "Administrar Pipelines",
"Manage Tool Servers": "",
"March": "Marzo", "March": "Marzo",
"Max Tokens (num_predict)": "Máximo de fichas (num_predict)", "Max Tokens (num_predict)": "Máximo de fichas (num_predict)",
"Max Upload Count": "Cantidad máxima de cargas", "Max Upload Count": "Cantidad máxima de cargas",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario", "Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario",
"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.", "Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformadores", "Transformers": "Transformadores",
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?", "Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "URL del WebUI", "WebUI URL": "URL del WebUI",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI hará solicitudes a \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI hará solicitudes a \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"WebUI hará solicitudes a \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"WebUI hará solicitudes a \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "¿Qué estás tratando de lograr?", "What are you trying to achieve?": "¿Qué estás tratando de lograr?",
"What are you working on?": "¿En qué estás trabajando?", "What are you working on?": "¿En qué estás trabajando?",
"Whats New in": "Novedades en", "Whats New in": "Novedades en",

View File

@ -6,6 +6,7 @@
"(latest)": "(uusim)", "(latest)": "(uusim)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ mudelid }}", "{{ models }}": "{{ mudelid }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida", "{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
"{{COUNT}} Replies": "{{COUNT}} vastust", "{{COUNT}} Replies": "{{COUNT}} vastust",
"{{user}}'s Chats": "{{user}} vestlused", "{{user}}'s Chats": "{{user}} vestlused",
@ -215,6 +216,7 @@
"Confirm your action": "Kinnita oma toiming", "Confirm your action": "Kinnita oma toiming",
"Confirm your new password": "Kinnita oma uus parool", "Confirm your new password": "Kinnita oma uus parool",
"Connect to your own OpenAI compatible API endpoints.": "Ühendu oma OpenAI-ga ühilduvate API lõpp-punktidega.", "Connect to your own OpenAI compatible API endpoints.": "Ühendu oma OpenAI-ga ühilduvate API lõpp-punktidega.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Ühendused", "Connections": "Ühendused",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Sisestage aegumine sekundites", "Enter timeout in seconds": "Sisestage aegumine sekundites",
"Enter to Send": "Enter saatmiseks", "Enter to Send": "Enter saatmiseks",
"Enter Top K": "Sisestage Top K", "Enter Top K": "Sisestage Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sisestage URL (nt http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Sisestage URL (nt http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sisestage URL (nt http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Sisestage URL (nt http://localhost:11434)",
"Enter your current password": "Sisestage oma praegune parool", "Enter your current password": "Sisestage oma praegune parool",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP server uuendatud", "LDAP server updated": "LDAP server uuendatud",
"Leaderboard": "Edetabel", "Leaderboard": "Edetabel",
"Leave empty for unlimited": "Jäta tühjaks piiranguta kasutamiseks", "Leave empty for unlimited": "Jäta tühjaks piiranguta kasutamiseks",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Jäta tühjaks, et kaasata kõik mudelid \"{{URL}}/api/tags\" lõpp-punktist", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Jäta tühjaks, et kaasata kõik mudelid \"{{URL}}/models\" lõpp-punktist", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Jäta tühjaks, et kaasata kõik mudelid või vali konkreetsed mudelid", "Leave empty to include all models or select specific models": "Jäta tühjaks, et kaasata kõik mudelid või vali konkreetsed mudelid",
"Leave empty to use the default prompt, or enter a custom prompt": "Jäta tühjaks, et kasutada vaikimisi vihjet, või sisesta kohandatud vihje", "Leave empty to use the default prompt, or enter a custom prompt": "Jäta tühjaks, et kasutada vaikimisi vihjet, või sisesta kohandatud vihje",
"Leave model field empty to use the default model.": "Jäta mudeli väli tühjaks, et kasutada vaikimisi mudelit.", "Leave model field empty to use the default model.": "Jäta mudeli väli tühjaks, et kasutada vaikimisi mudelit.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Halda Ollama API ühendusi", "Manage Ollama API Connections": "Halda Ollama API ühendusi",
"Manage OpenAI API Connections": "Halda OpenAI API ühendusi", "Manage OpenAI API Connections": "Halda OpenAI API ühendusi",
"Manage Pipelines": "Halda torustikke", "Manage Pipelines": "Halda torustikke",
"Manage Tool Servers": "",
"March": "Märts", "March": "Märts",
"Max Tokens (num_predict)": "Max tokeneid (num_predict)", "Max Tokens (num_predict)": "Max tokeneid (num_predict)",
"Max Upload Count": "Maksimaalne üleslaadimiste arv", "Max Upload Count": "Maksimaalne üleslaadimiste arv",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist", "Tools have a function calling system that allows arbitrary code execution": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist",
"Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.", "Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "Probleeme Ollama juurdepääsuga?", "Trouble accessing Ollama?": "Probleeme Ollama juurdepääsuga?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI teeb päringuid aadressile \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI teeb päringuid aadressile \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI teeb päringuid aadressile \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI teeb päringuid aadressile \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Mida te püüate saavutada?", "What are you trying to achieve?": "Mida te püüate saavutada?",
"What are you working on?": "Millega te tegelete?", "What are you working on?": "Millega te tegelete?",
"Whats New in": "Mis on uut", "Whats New in": "Mis on uut",

View File

@ -6,6 +6,7 @@
"(latest)": "(azkena)", "(latest)": "(azkena)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}-ren Txatak", "{{user}}'s Chats": "{{user}}-ren Txatak",
@ -215,6 +216,7 @@
"Confirm your action": "Berretsi zure ekintza", "Confirm your action": "Berretsi zure ekintza",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Konexioak", "Connections": "Konexioak",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Sartu Top K", "Enter Top K": "Sartu Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sartu URLa (adib. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Sartu URLa (adib. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP zerbitzaria eguneratu da", "LDAP server updated": "LDAP zerbitzaria eguneratu da",
"Leaderboard": "Sailkapena", "Leaderboard": "Sailkapena",
"Leave empty for unlimited": "Utzi hutsik mugarik ez jartzeko", "Leave empty for unlimited": "Utzi hutsik mugarik ez jartzeko",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Utzi hutsik \"{{URL}}/api/tags\" endpointuko eredu guztiak sartzeko", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Utzi hutsik \"{{URL}}/models\" endpointuko eredu guztiak sartzeko", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Utzi hutsik eredu guztiak sartzeko edo hautatu eredu zehatzak", "Leave empty to include all models or select specific models": "Utzi hutsik eredu guztiak sartzeko edo hautatu eredu zehatzak",
"Leave empty to use the default prompt, or enter a custom prompt": "Utzi hutsik prompt lehenetsia erabiltzeko, edo sartu prompt pertsonalizatu bat", "Leave empty to use the default prompt, or enter a custom prompt": "Utzi hutsik prompt lehenetsia erabiltzeko, edo sartu prompt pertsonalizatu bat",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Kudeatu Ollama API Konexioak", "Manage Ollama API Connections": "Kudeatu Ollama API Konexioak",
"Manage OpenAI API Connections": "Kudeatu OpenAI API Konexioak", "Manage OpenAI API Connections": "Kudeatu OpenAI API Konexioak",
"Manage Pipelines": "Kudeatu Pipeline-ak", "Manage Pipelines": "Kudeatu Pipeline-ak",
"Manage Tool Servers": "",
"March": "Martxoa", "March": "Martxoa",
"Max Tokens (num_predict)": "Token maximoak (num_predict)", "Max Tokens (num_predict)": "Token maximoak (num_predict)",
"Max Upload Count": "Karga kopuru maximoa", "Max Upload Count": "Karga kopuru maximoa",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute", "Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute",
"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.", "Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
"Top K": "Goiko K", "Top K": "Goiko K",
"Top K Reranker": "",
"Top P": "Goiko P", "Top P": "Goiko P",
"Transformers": "Transformatzaileak", "Transformers": "Transformatzaileak",
"Trouble accessing Ollama?": "Arazoak Ollama atzitzeko?", "Trouble accessing Ollama?": "Arazoak Ollama atzitzeko?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI-k eskaerak egingo ditu \"{{url}}/api/chat\"-era", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI-k eskaerak egingo ditu \"{{url}}/api/chat\"-era",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI-k eskaerak egingo ditu \"{{url}}/chat/completions\"-era", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI-k eskaerak egingo ditu \"{{url}}/chat/completions\"-era",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Zer lortu nahi duzu?", "What are you trying to achieve?": "Zer lortu nahi duzu?",
"What are you working on?": "Zertan ari zara lanean?", "What are you working on?": "Zertan ari zara lanean?",
"Whats New in": "Zer berri honetan:", "Whats New in": "Zer berri honetan:",

View File

@ -6,6 +6,7 @@
"(latest)": "(آخرین)", "(latest)": "(آخرین)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} گفتگوهای", "{{user}}'s Chats": "{{user}} گفتگوهای",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "ارتباطات", "Connections": "ارتباطات",
"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 با مدیر تماس بگیرید",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "مقدار Top K را وارد کنید", "Enter Top K": "مقدار Top K را وارد کنید",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "مدیریت خطوط لوله", "Manage Pipelines": "مدیریت خطوط لوله",
"Manage Tool Servers": "",
"March": "مارچ", "March": "مارچ",
"Max Tokens (num_predict)": "توکنهای بیشینه (num_predict)", "Max Tokens (num_predict)": "توکنهای بیشینه (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟", "Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "موارد جدید در", "Whats New in": "موارد جدید در",

View File

@ -6,6 +6,7 @@
"(latest)": "(uusin)", "(latest)": "(uusin)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ mallit }}", "{{ models }}": "{{ mallit }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä", "{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
"{{COUNT}} Replies": "{{COUNT}} vastausta", "{{COUNT}} Replies": "{{COUNT}} vastausta",
"{{user}}'s Chats": "{{user}}:n keskustelut", "{{user}}'s Chats": "{{user}}:n keskustelut",
@ -215,6 +216,7 @@
"Confirm your action": "Vahvista toimintasi", "Confirm your action": "Vahvista toimintasi",
"Confirm your new password": "Vahvista uusi salasanasi", "Confirm your new password": "Vahvista uusi salasanasi",
"Connect to your own OpenAI compatible API endpoints.": "Yhdistä oma OpenAI yhteensopiva API päätepiste.", "Connect to your own OpenAI compatible API endpoints.": "Yhdistä oma OpenAI yhteensopiva API päätepiste.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Yhteydet", "Connections": "Yhteydet",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Aseta aikakatkaisu sekunneissa", "Enter timeout in seconds": "Aseta aikakatkaisu sekunneissa",
"Enter to Send": "Enter lähettääksesi", "Enter to Send": "Enter lähettääksesi",
"Enter Top K": "Kirjoita Top K", "Enter Top K": "Kirjoita Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Kirjoita verkko-osoite (esim. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Kirjoita verkko-osoite (esim. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Kirjoita verkko-osoite (esim. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Kirjoita verkko-osoite (esim. http://localhost:11434)",
"Enter your current password": "Kirjoita nykyinen salasanasi", "Enter your current password": "Kirjoita nykyinen salasanasi",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP-palvelin päivitetty", "LDAP server updated": "LDAP-palvelin päivitetty",
"Leaderboard": "Tulosluettelo", "Leaderboard": "Tulosluettelo",
"Leave empty for unlimited": "Jätä tyhjäksi rajattomaksi", "Leave empty for unlimited": "Jätä tyhjäksi rajattomaksi",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit \"{{URL}}/api/tags\" -päätepistestä", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit \"{{URL}}/models\" -päätepistestä", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit tai valitse tietyt mallit", "Leave empty to include all models or select specific models": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit tai valitse tietyt mallit",
"Leave empty to use the default prompt, or enter a custom prompt": "Jätä tyhjäksi käyttääksesi oletuskehotetta tai kirjoita mukautettu kehote", "Leave empty to use the default prompt, or enter a custom prompt": "Jätä tyhjäksi käyttääksesi oletuskehotetta tai kirjoita mukautettu kehote",
"Leave model field empty to use the default model.": "Jätä malli kenttä tyhjäksi käyttääksesi oletus mallia.", "Leave model field empty to use the default model.": "Jätä malli kenttä tyhjäksi käyttääksesi oletus mallia.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Hallitse Ollama API -yhteyksiä", "Manage Ollama API Connections": "Hallitse Ollama API -yhteyksiä",
"Manage OpenAI API Connections": "Hallitse OpenAI API -yhteyksiä", "Manage OpenAI API Connections": "Hallitse OpenAI API -yhteyksiä",
"Manage Pipelines": "Hallitse putkia", "Manage Pipelines": "Hallitse putkia",
"Manage Tool Servers": "",
"March": "maaliskuu", "March": "maaliskuu",
"Max Tokens (num_predict)": "Tokenien enimmäismäärä (num_predict)", "Max Tokens (num_predict)": "Tokenien enimmäismäärä (num_predict)",
"Max Upload Count": "Latausten enimmäismäärä", "Max Upload Count": "Latausten enimmäismäärä",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen", "Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.", "Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Muunnokset", "Transformers": "Muunnokset",
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?", "Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI-osoite", "WebUI URL": "WebUI-osoite",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Mitä yrität saavuttaa?", "What are you trying to achieve?": "Mitä yrität saavuttaa?",
"What are you working on?": "Mitä olet työskentelemässä?", "What are you working on?": "Mitä olet työskentelemässä?",
"Whats New in": "Mitä uutta", "Whats New in": "Mitä uutta",

View File

@ -6,6 +6,7 @@
"(latest)": "(dernier)", "(latest)": "(dernier)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modèles }}", "{{ models }}": "{{ modèles }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Discussions de {{user}}", "{{user}}'s Chats": "Discussions de {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirmez votre action", "Confirm your action": "Confirmez votre action",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Connexions", "Connections": "Connexions",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Entrez les Top K", "Enter Top K": "Entrez les Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Gérer les pipelines", "Manage Pipelines": "Gérer les pipelines",
"Manage Tool Servers": "",
"March": "Mars", "March": "Mars",
"Max Tokens (num_predict)": "Tokens maximaux (num_predict)", "Max Tokens (num_predict)": "Tokens maximaux (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?", "Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Quoi de neuf", "Whats New in": "Quoi de neuf",

View File

@ -6,6 +6,7 @@
"(latest)": "(dernière version)", "(latest)": "(dernière version)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Replies": "{{COUNT}} réponses",
"{{user}}'s Chats": "Conversations de {{user}}", "{{user}}'s Chats": "Conversations de {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirmer votre action", "Confirm your action": "Confirmer votre action",
"Confirm your new password": "Confirmer votre nouveau mot de passe", "Confirm your new password": "Confirmer votre nouveau mot de passe",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Connexions", "Connections": "Connexions",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Entrez les Top K", "Enter Top K": "Entrez les Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter your current password": "Entrez votre mot de passe actuel", "Enter your current password": "Entrez votre mot de passe actuel",
@ -634,8 +637,8 @@
"LDAP server updated": "Serveur LDAP mis à jour", "LDAP server updated": "Serveur LDAP mis à jour",
"Leaderboard": "Classement", "Leaderboard": "Classement",
"Leave empty for unlimited": "Laissez vide pour illimité", "Leave empty for unlimited": "Laissez vide pour illimité",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Laissez vide pour inclure tous les modèles depuis le point de terminaison \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Laissez vide pour inclure tous les modèles depuis le point de terminaison \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Laissez vide pour inclure tous les modèles ou sélectionnez des modèles spécifiques", "Leave empty to include all models or select specific models": "Laissez vide pour inclure tous les modèles ou sélectionnez des modèles spécifiques",
"Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé", "Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Gérer les connexions API Ollama", "Manage Ollama API Connections": "Gérer les connexions API Ollama",
"Manage OpenAI API Connections": "Gérer les connexions API OpenAI", "Manage OpenAI API Connections": "Gérer les connexions API OpenAI",
"Manage Pipelines": "Gérer les pipelines", "Manage Pipelines": "Gérer les pipelines",
"Manage Tool Servers": "",
"March": "Mars", "March": "Mars",
"Max Tokens (num_predict)": "Nb max de tokens (num_predict)", "Max Tokens (num_predict)": "Nb max de tokens (num_predict)",
"Max Upload Count": "Nombre maximal de téléversements", "Max Upload Count": "Nombre maximal de téléversements",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire", "Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire",
"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.", "Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", "Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?",
@ -1155,6 +1160,7 @@
"WebUI URL": "URL de WebUI", "WebUI URL": "URL de WebUI",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI fera des requêtes à \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI fera des requêtes à \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Que cherchez-vous à accomplir ?", "What are you trying to achieve?": "Que cherchez-vous à accomplir ?",
"What are you working on?": "Sur quoi travaillez-vous ?", "What are you working on?": "Sur quoi travaillez-vous ?",
"Whats New in": "Quoi de neuf dans", "Whats New in": "Quoi de neuf dans",

View File

@ -6,6 +6,7 @@
"(latest)": "(האחרון)", "(latest)": "(האחרון)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ דגמים }}", "{{ models }}": "{{ דגמים }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "צ'אטים של {{user}}", "{{user}}'s Chats": "צ'אטים של {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "חיבורים", "Connections": "חיבורים",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "הזן Top K", "Enter Top K": "הזן Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "הזן כתובת URL (למשל http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "הזן כתובת URL (למשל http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "ניהול צינורות", "Manage Pipelines": "ניהול צינורות",
"Manage Tool Servers": "",
"March": "מרץ", "March": "מרץ",
"Max Tokens (num_predict)": "מקסימום אסימונים (num_predict)", "Max Tokens (num_predict)": "מקסימום אסימונים (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "קשה לגשת לOllama?", "Trouble accessing Ollama?": "קשה לגשת לOllama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "מה חדש ב", "Whats New in": "מה חדש ב",

View File

@ -6,6 +6,7 @@
"(latest)": "(latest)", "(latest)": "(latest)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ मॉडल }}", "{{ models }}": "{{ मॉडल }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} की चैट", "{{user}}'s Chats": "{{user}} की चैट",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "सम्बन्ध", "Connections": "सम्बन्ध",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "शीर्ष K दर्ज करें", "Enter Top K": "शीर्ष K दर्ज करें",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "यूआरएल दर्ज करें (उदा. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "यूआरएल दर्ज करें (उदा. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "पाइपलाइनों का प्रबंधन करें", "Manage Pipelines": "पाइपलाइनों का प्रबंधन करें",
"Manage Tool Servers": "",
"March": "मार्च", "March": "मार्च",
"Max Tokens (num_predict)": "अधिकतम टोकन (num_predict)", "Max Tokens (num_predict)": "अधिकतम टोकन (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "शीर्ष K", "Top K": "शीर्ष K",
"Top K Reranker": "",
"Top P": "शीर्ष P", "Top P": "शीर्ष P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?", "Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "इसमें नया क्या है", "Whats New in": "इसमें नया क्या है",

View File

@ -6,6 +6,7 @@
"(latest)": "(najnovije)", "(latest)": "(najnovije)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modeli }}", "{{ models }}": "{{ modeli }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{user}}'s Chats": "Razgovori korisnika {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Povezivanja", "Connections": "Povezivanja",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Unesite Top K", "Enter Top K": "Unesite Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Unesite URL (npr. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Unesite URL (npr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Unesite URL (npr. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Upravljanje cjevovodima", "Manage Pipelines": "Upravljanje cjevovodima",
"Manage Tool Servers": "",
"March": "Ožujak", "March": "Ožujak",
"Max Tokens (num_predict)": "Maksimalan broj tokena (num_predict)", "Max Tokens (num_predict)": "Maksimalan broj tokena (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemi s pristupom Ollama?", "Trouble accessing Ollama?": "Problemi s pristupom Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Što je novo u", "Whats New in": "Što je novo u",

View File

@ -6,6 +6,7 @@
"(latest)": "(legújabb)", "(latest)": "(legújabb)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modellek }}", "{{ models }}": "{{ modellek }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} beszélgetései", "{{user}}'s Chats": "{{user}} beszélgetései",
@ -215,6 +216,7 @@
"Confirm your action": "Erősítsd meg a műveletet", "Confirm your action": "Erősítsd meg a műveletet",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Kapcsolatok", "Connections": "Kapcsolatok",
"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": "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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Add meg a Top K értéket", "Enter Top K": "Add meg a Top K értéket",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Add meg az URL-t (pl. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Add meg az URL-t (pl. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "Ranglista", "Leaderboard": "Ranglista",
"Leave empty for unlimited": "Hagyja üresen a korlátlan használathoz", "Leave empty for unlimited": "Hagyja üresen a korlátlan használathoz",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Hagyja üresen az összes modell használatához, vagy válasszon ki konkrét modelleket", "Leave empty to include all models or select specific models": "Hagyja üresen az összes modell használatához, vagy válasszon ki konkrét modelleket",
"Leave empty to use the default prompt, or enter a custom prompt": "Hagyja üresen az alapértelmezett prompt használatához, vagy adjon meg egyéni promptot", "Leave empty to use the default prompt, or enter a custom prompt": "Hagyja üresen az alapértelmezett prompt használatához, vagy adjon meg egyéni promptot",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Folyamatok kezelése", "Manage Pipelines": "Folyamatok kezelése",
"Manage Tool Servers": "",
"March": "Március", "March": "Március",
"Max Tokens (num_predict)": "Maximum tokenek (num_predict)", "Max Tokens (num_predict)": "Maximum tokenek (num_predict)",
"Max Upload Count": "Maximum feltöltések száma", "Max Upload Count": "Maximum feltöltések száma",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását", "Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását",
"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.", "Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problémája van az Ollama elérésével?", "Trouble accessing Ollama?": "Problémája van az Ollama elérésével?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "", "Whats New in": "",

View File

@ -6,6 +6,7 @@
"(latest)": "(terbaru)", "(latest)": "(terbaru)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Obrolan {{user}}", "{{user}}'s Chats": "Obrolan {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Konfirmasi tindakan Anda", "Confirm your action": "Konfirmasi tindakan Anda",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Koneksi", "Connections": "Koneksi",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Masukkan Top K", "Enter Top K": "Masukkan Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (mis. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (mis. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Mengelola Saluran Pipa", "Manage Pipelines": "Mengelola Saluran Pipa",
"Manage Tool Servers": "",
"March": "Maret", "March": "Maret",
"Max Tokens (num_predict)": "Token Maksimal (num_prediksi)", "Max Tokens (num_predict)": "Token Maksimal (num_prediksi)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "K atas", "Top K": "K atas",
"Top K Reranker": "",
"Top P": "P Atas", "Top P": "P Atas",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Kesulitan mengakses Ollama?", "Trouble accessing Ollama?": "Kesulitan mengakses Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Apa yang Baru di", "Whats New in": "Apa yang Baru di",

View File

@ -6,6 +6,7 @@
"(latest)": "(is déanaí)", "(latest)": "(is déanaí)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Freagra", "{{COUNT}} Replies": "{{COUNT}} Freagra",
"{{user}}'s Chats": "Comhráite {{user}}", "{{user}}'s Chats": "Comhráite {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Deimhnigh do ghníomh", "Confirm your action": "Deimhnigh do ghníomh",
"Confirm your new password": "Deimhnigh do phasfhocal nua", "Confirm your new password": "Deimhnigh do phasfhocal nua",
"Connect to your own OpenAI compatible API endpoints.": "Ceangail le do chríochphointí API atá comhoiriúnach le OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Ceangail le do chríochphointí API atá comhoiriúnach le OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Naisc", "Connections": "Naisc",
"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": "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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Cuir isteach an t-am istigh i soicindí", "Enter timeout in seconds": "Cuir isteach an t-am istigh i soicindí",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Cuir isteach Barr K", "Enter Top K": "Cuir isteach Barr K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)",
"Enter your current password": "Cuir isteach do phasfhocal reatha", "Enter your current password": "Cuir isteach do phasfhocal reatha",
@ -634,8 +637,8 @@
"LDAP server updated": "Nuashonraíodh freastalaí LDAP", "LDAP server updated": "Nuashonraíodh freastalaí LDAP",
"Leaderboard": "An Clár Ceannairí", "Leaderboard": "An Clár Ceannairí",
"Leave empty for unlimited": "Fág folamh le haghaidh neamhtheoranta", "Leave empty for unlimited": "Fág folamh le haghaidh neamhtheoranta",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Fág folamh chun gach múnla ó chríochphointe \"{{URL}}/api/tags\" a chur san áireamh", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Fág folamh chun gach múnla ón gcríochphointe \"{{URL}}/models\" a chur san áireamh", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Fág folamh chun gach múnla a chur san áireamh nó roghnaigh múnlaí sonracha", "Leave empty to include all models or select specific models": "Fág folamh chun gach múnla a chur san áireamh nó roghnaigh múnlaí sonracha",
"Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an leid réamhshocraithe a úsáid, nó cuir isteach leid saincheaptha", "Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an leid réamhshocraithe a úsáid, nó cuir isteach leid saincheaptha",
"Leave model field empty to use the default model.": "Fág réimse an mhúnla folamh chun an tsamhail réamhshocraithe a úsáid.", "Leave model field empty to use the default model.": "Fág réimse an mhúnla folamh chun an tsamhail réamhshocraithe a úsáid.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Bainistigh Naisc API Ollama", "Manage Ollama API Connections": "Bainistigh Naisc API Ollama",
"Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI", "Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI",
"Manage Pipelines": "Bainistigh píblín", "Manage Pipelines": "Bainistigh píblín",
"Manage Tool Servers": "",
"March": "Márta", "March": "Márta",
"Max Tokens (num_predict)": "Comharthaí Uasta (num_predicate)", "Max Tokens (num_predict)": "Comharthaí Uasta (num_predicate)",
"Max Upload Count": "Líon Uaslódála Max", "Max Upload Count": "Líon Uaslódála Max",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach", "Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.", "Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
"Top K": "Barr K", "Top K": "Barr K",
"Top K Reranker": "",
"Top P": "Barr P", "Top P": "Barr P",
"Transformers": "Claochladáin", "Transformers": "Claochladáin",
"Trouble accessing Ollama?": "Deacracht teacht ar Ollama?", "Trouble accessing Ollama?": "Deacracht teacht ar Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "URL WebUI", "WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}/api/chat\"": "Déanfaidh WebUI iarratais ar \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "Déanfaidh WebUI iarratais ar \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?", "What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?",
"What are you working on?": "Cad air a bhfuil tú ag obair?", "What are you working on?": "Cad air a bhfuil tú ag obair?",
"Whats New in": "Cad atá Nua i", "Whats New in": "Cad atá Nua i",

View File

@ -6,6 +6,7 @@
"(latest)": "(ultima)", "(latest)": "(ultima)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modelli }}", "{{ models }}": "{{ modelli }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} Chat", "{{user}}'s Chats": "{{user}} Chat",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Connessioni", "Connections": "Connessioni",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Inserisci Top K", "Enter Top K": "Inserisci Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Gestire le pipeline", "Manage Pipelines": "Gestire le pipeline",
"Manage Tool Servers": "",
"March": "Marzo", "March": "Marzo",
"Max Tokens (num_predict)": "Numero massimo di gettoni (num_predict)", "Max Tokens (num_predict)": "Numero massimo di gettoni (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemi di accesso a Ollama?", "Trouble accessing Ollama?": "Problemi di accesso a Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Novità in", "Whats New in": "Novità in",

View File

@ -6,6 +6,7 @@
"(latest)": "(最新)", "(latest)": "(最新)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ モデル }}", "{{ models }}": "{{ モデル }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} のチャット", "{{user}}'s Chats": "{{user}} のチャット",
@ -215,6 +216,7 @@
"Confirm your action": "あなたのアクションの確認", "Confirm your action": "あなたのアクションの確認",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "接続", "Connections": "接続",
"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への接続について管理者に問い合わせ下さい。",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "トップ K を入力してください", "Enter Top K": "トップ K を入力してください",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL を入力してください (例: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL を入力してください (例: http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "空欄なら無制限", "Leave empty for unlimited": "空欄なら無制限",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "カスタムプロンプトを入力。空欄ならデフォルトプロンプト", "Leave empty to use the default prompt, or enter a custom prompt": "カスタムプロンプトを入力。空欄ならデフォルトプロンプト",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "パイプラインの管理", "Manage Pipelines": "パイプラインの管理",
"Manage Tool Servers": "",
"March": "3月", "March": "3月",
"Max Tokens (num_predict)": "最大トークン数 (num_predict)", "Max Tokens (num_predict)": "最大トークン数 (num_predict)",
"Max Upload Count": "最大アップロード数", "Max Upload Count": "最大アップロード数",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "トップ K", "Top K": "トップ K",
"Top K Reranker": "",
"Top P": "トップ P", "Top P": "トップ P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?", "Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "新機能", "Whats New in": "新機能",

View File

@ -6,6 +6,7 @@
"(latest)": "(უახლესი)", "(latest)": "(უახლესი)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ მოდელები }}", "{{ models }}": "{{ მოდელები }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} პასუხი", "{{COUNT}} Replies": "{{COUNT}} პასუხი",
"{{user}}'s Chats": "{{user}}-ის ჩათები", "{{user}}'s Chats": "{{user}}-ის ჩათები",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "კავშირები", "Connections": "კავშირები",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "შეიყვანეთ Top K", "Enter Top K": "შეიყვანეთ Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ ბმული (მაგ: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ ბმული (მაგ: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "შეიყვანეთ ბმული (მაგ: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "შეიყვანეთ ბმული (მაგ: http://localhost:11434)",
"Enter your current password": "შეიყვანეთ თქვენი მიმდინარე პაროლი", "Enter your current password": "შეიყვანეთ თქვენი მიმდინარე პაროლი",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "ლიდერების დაფა", "Leaderboard": "ლიდერების დაფა",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "მილსადენების მართვა", "Manage Pipelines": "მილსადენების მართვა",
"Manage Tool Servers": "",
"March": "მარტი", "March": "მარტი",
"Max Tokens (num_predict)": "მაქს. ტოკეტები (num_predict)", "Max Tokens (num_predict)": "მაქს. ტოკეტები (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "ტოპ K", "Top K": "ტოპ K",
"Top K Reranker": "",
"Top P": "ტოპ P", "Top P": "ტოპ P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?", "Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "რა არის ახალი", "Whats New in": "რა არის ახალი",

View File

@ -6,6 +6,7 @@
"(latest)": "(최근)", "(latest)": "(최근)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}의 채팅", "{{user}}'s Chats": "{{user}}의 채팅",
@ -215,6 +216,7 @@
"Confirm your action": "액션 확인", "Confirm your action": "액션 확인",
"Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요", "Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "연결", "Connections": "연결",
"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 접속을 위해서는 관리자에게 연락에 연락하십시오",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Top K 입력", "Enter Top K": "Top K 입력",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL 입력(예: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL 입력(예: http://localhost:11434)",
"Enter your current password": "현재 비밀번호를 입력해 주세요", "Enter your current password": "현재 비밀번호를 입력해 주세요",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "리더보드", "Leaderboard": "리더보드",
"Leave empty for unlimited": "무제한을 위해 빈칸으로 남겨두세요", "Leave empty for unlimited": "무제한을 위해 빈칸으로 남겨두세요",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "특정 모델을 선택하거나 모든 모델을 포함하고 싶으면 빈칸으로 남겨두세요", "Leave empty to include all models or select specific models": "특정 모델을 선택하거나 모든 모델을 포함하고 싶으면 빈칸으로 남겨두세요",
"Leave empty to use the default prompt, or enter a custom prompt": "기본 프롬프트를 사용하기 위해 빈칸으로 남겨두거나, 커스텀 프롬프트를 입력하세요", "Leave empty to use the default prompt, or enter a custom prompt": "기본 프롬프트를 사용하기 위해 빈칸으로 남겨두거나, 커스텀 프롬프트를 입력하세요",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Ollama API 연결 관리", "Manage Ollama API Connections": "Ollama API 연결 관리",
"Manage OpenAI API Connections": "OpenAI API 연결 관리", "Manage OpenAI API Connections": "OpenAI API 연결 관리",
"Manage Pipelines": "파이프라인 관리", "Manage Pipelines": "파이프라인 관리",
"Manage Tool Servers": "",
"March": "3월", "March": "3월",
"Max Tokens (num_predict)": "최대 토큰(num_predict)", "Max Tokens (num_predict)": "최대 토큰(num_predict)",
"Max Upload Count": "업로드 최대 수", "Max Upload Count": "업로드 최대 수",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다", "Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다",
"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.", "Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "올라마(Ollama)에 접근하는 데 문제가 있나요?", "Trouble accessing Ollama?": "올라마(Ollama)에 접근하는 데 문제가 있나요?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI가 \"{{url}}/api/chat\"로 요청을 보냅니다", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI가 \"{{url}}/api/chat\"로 요청을 보냅니다",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI가 \"{{url}}/chat/completions\"로 요청을 보냅니다", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI가 \"{{url}}/chat/completions\"로 요청을 보냅니다",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "무엇을 성취하고 싶으신가요?", "What are you trying to achieve?": "무엇을 성취하고 싶으신가요?",
"What are you working on?": "어떤 작업을 하고 계신가요?", "What are you working on?": "어떤 작업을 하고 계신가요?",
"Whats New in": "새로운 기능:", "Whats New in": "새로운 기능:",

View File

@ -6,6 +6,7 @@
"(latest)": "(naujausias)", "(latest)": "(naujausias)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} susirašinėjimai", "{{user}}'s Chats": "{{user}} susirašinėjimai",
@ -215,6 +216,7 @@
"Confirm your action": "Patvirtinkite veiksmą", "Confirm your action": "Patvirtinkite veiksmą",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Ryšiai", "Connections": "Ryšiai",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Įveskite Top K", "Enter Top K": "Įveskite Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Įveskite nuorodą (pvz. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Įveskite nuorodą (pvz. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434", "Enter URL (e.g. http://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Tvarkyti procesus", "Manage Pipelines": "Tvarkyti procesus",
"Manage Tool Servers": "",
"March": "Kovas", "March": "Kovas",
"Max Tokens (num_predict)": "Maksimalus žetonų kiekis (num_predict)", "Max Tokens (num_predict)": "Maksimalus žetonų kiekis (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą", "Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą", "Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemos prieinant prie Ollama?", "Trouble accessing Ollama?": "Problemos prieinant prie Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Kas naujo", "Whats New in": "Kas naujo",

View File

@ -6,6 +6,7 @@
"(latest)": "(terkini)", "(latest)": "(terkini)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Perbualan {{user}}", "{{user}}'s Chats": "Perbualan {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Sahkan tindakan anda", "Confirm your action": "Sahkan tindakan anda",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Sambungan", "Connections": "Sambungan",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Masukkan 'Top K'", "Enter Top K": "Masukkan 'Top K'",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (cth http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (cth http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (cth http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Masukkan URL (cth http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Urus 'Pipelines'", "Manage Pipelines": "Urus 'Pipelines'",
"Manage Tool Servers": "",
"March": "Mac", "March": "Mac",
"Max Tokens (num_predict)": "Token Maksimum ( num_predict )", "Max Tokens (num_predict)": "Token Maksimum ( num_predict )",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya", "Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya",
"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.", "Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
"Top K": "'Top K'", "Top K": "'Top K'",
"Top K Reranker": "",
"Top P": "'Top P'", "Top P": "'Top P'",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Masalah mengakses Ollama?", "Trouble accessing Ollama?": "Masalah mengakses Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Apakah yang terbaru dalam", "Whats New in": "Apakah yang terbaru dalam",

View File

@ -6,6 +6,7 @@
"(latest)": "(siste)", "(latest)": "(siste)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modeller }}", "{{ models }}": "{{ modeller }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Replies": "{{COUNT}} svar",
"{{user}}'s Chats": "{{user}} sine samtaler", "{{user}}'s Chats": "{{user}} sine samtaler",
@ -215,6 +216,7 @@
"Confirm your action": "Bekreft handlingen", "Confirm your action": "Bekreft handlingen",
"Confirm your new password": "Bekreft det nye passordet ditt", "Confirm your new password": "Bekreft det nye passordet ditt",
"Connect to your own OpenAI compatible API endpoints.": "Koble til egne OpenAI-kompatible API-endepunkter", "Connect to your own OpenAI compatible API endpoints.": "Koble til egne OpenAI-kompatible API-endepunkter",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Tilkoblinger", "Connections": "Tilkoblinger",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Angi tidsavbrudd i sekunder", "Enter timeout in seconds": "Angi tidsavbrudd i sekunder",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Angi Top K", "Enter Top K": "Angi Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Angi URL (f.eks. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Angi URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)",
"Enter your current password": "Angi det gjeldende passordet ditt", "Enter your current password": "Angi det gjeldende passordet ditt",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP-server oppdatert", "LDAP server updated": "LDAP-server oppdatert",
"Leaderboard": "Ledertavle", "Leaderboard": "Ledertavle",
"Leave empty for unlimited": "La stå tomt for ubegrenset", "Leave empty for unlimited": "La stå tomt for ubegrenset",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "La stå tomt for å inkludere alle modeller fra endepunktet \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "La stå tomt for å inkludere alle modeller fra endepunktet \"{{URL}}/api/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "La stå tomt for å inkludere alle modeller", "Leave empty to include all models or select specific models": "La stå tomt for å inkludere alle modeller",
"Leave empty to use the default prompt, or enter a custom prompt": "La stå tomt for å bruke standard ledetekst, eller angi en tilpasset ledetekst", "Leave empty to use the default prompt, or enter a custom prompt": "La stå tomt for å bruke standard ledetekst, eller angi en tilpasset ledetekst",
"Leave model field empty to use the default model.": "La modellfeltet stå tomt for å bruke standard modell.", "Leave model field empty to use the default model.": "La modellfeltet stå tomt for å bruke standard modell.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Behandle API-tilkoblinger for Ollama", "Manage Ollama API Connections": "Behandle API-tilkoblinger for Ollama",
"Manage OpenAI API Connections": "Behandle API-tilkoblinger for OpenAPI", "Manage OpenAI API Connections": "Behandle API-tilkoblinger for OpenAPI",
"Manage Pipelines": "Behandle pipelines", "Manage Pipelines": "Behandle pipelines",
"Manage Tool Servers": "",
"March": "mars", "March": "mars",
"Max Tokens (num_predict)": "Maks antall tokener (num_predict)", "Max Tokens (num_predict)": "Maks antall tokener (num_predict)",
"Max Upload Count": "Maks antall opplastinger", "Max Upload Count": "Maks antall opplastinger",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring", "Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring",
"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.", "Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformatorer", "Transformers": "Transformatorer",
"Trouble accessing Ollama?": "Problemer med å koble til Ollama?", "Trouble accessing Ollama?": "Problemer med å koble til Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "URL for WebUI", "WebUI URL": "URL for WebUI",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI vil rette forespørsler til \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI vil rette forespørsler til \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil rette forespørsler til \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil rette forespørsler til \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Hva prøver du å oppnå?", "What are you trying to achieve?": "Hva prøver du å oppnå?",
"What are you working on?": "Hva jobber du på nå?", "What are you working on?": "Hva jobber du på nå?",
"Whats New in": "Hva er nytt i", "Whats New in": "Hva er nytt i",

View File

@ -6,6 +6,7 @@
"(latest)": "(nieuwste)", "(latest)": "(nieuwste)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modellen }}", "{{ models }}": "{{ modellen }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}'s chats", "{{user}}'s Chats": "{{user}}'s chats",
@ -215,6 +216,7 @@
"Confirm your action": "Bevestig uw actie", "Confirm your action": "Bevestig uw actie",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Verbindingen", "Connections": "Verbindingen",
"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": "Neem contact op met de beheerder voor WebUI-toegang", "Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Voeg Top K toe", "Enter Top K": "Voeg Top K toe",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Voer URL in (Bijv. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Voer URL in (Bijv. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP-server bijgewerkt", "LDAP server updated": "LDAP-server bijgewerkt",
"Leaderboard": "Klassement", "Leaderboard": "Klassement",
"Leave empty for unlimited": "Laat leeg voor ongelimiteerd", "Leave empty for unlimited": "Laat leeg voor ongelimiteerd",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Laat leeg om alle modellen van het \"{{URL}}/api/tags\" endpoint toe te voegen", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Laat leeg om alle modellen van het \"{{URL}}/models\" endpoint toe te voegen", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen", "Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen",
"Leave empty to use the default prompt, or enter a custom prompt": "Laat leeg om de standaard prompt te gebruiken, of selecteer een aangepaste prompt", "Leave empty to use the default prompt, or enter a custom prompt": "Laat leeg om de standaard prompt te gebruiken, of selecteer een aangepaste prompt",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Beheer Ollama API-verbindingen", "Manage Ollama API Connections": "Beheer Ollama API-verbindingen",
"Manage OpenAI API Connections": "Beheer OpenAI API-verbindingen", "Manage OpenAI API Connections": "Beheer OpenAI API-verbindingen",
"Manage Pipelines": "Pijplijnen beheren", "Manage Pipelines": "Pijplijnen beheren",
"Manage Tool Servers": "",
"March": "Maart", "March": "Maart",
"Max Tokens (num_predict)": "Max Tokens (num_predict)", "Max Tokens (num_predict)": "Max Tokens (num_predict)",
"Max Upload Count": "Maximale Uploadhoeveelheid", "Max Upload Count": "Maximale Uploadhoeveelheid",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd", "Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd", "Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemen met toegang tot Ollama?", "Trouble accessing Ollama?": "Problemen met toegang tot Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI zal verzoeken doen aan \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI zal verzoeken doen aan \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI zal verzoeken doen aan \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI zal verzoeken doen aan \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Wat probeer je te bereiken?", "What are you trying to achieve?": "Wat probeer je te bereiken?",
"What are you working on?": "Waar werk je aan?", "What are you working on?": "Waar werk je aan?",
"Whats New in": "Wat is nieuw in", "Whats New in": "Wat is nieuw in",

View File

@ -6,6 +6,7 @@
"(latest)": "(ਤਾਜ਼ਾ)", "(latest)": "(ਤਾਜ਼ਾ)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ ਮਾਡਲ }}", "{{ models }}": "{{ ਮਾਡਲ }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ", "{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "ਕਨੈਕਸ਼ਨ", "Connections": "ਕਨੈਕਸ਼ਨ",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "ਸਿਖਰ K ਦਰਜ ਕਰੋ", "Enter Top K": "ਸਿਖਰ K ਦਰਜ ਕਰੋ",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ", "Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
"Manage Tool Servers": "",
"March": "ਮਾਰਚ", "March": "ਮਾਰਚ",
"Max Tokens (num_predict)": "ਮੈਕਸ ਟੋਕਨ (num_predict)", "Max Tokens (num_predict)": "ਮੈਕਸ ਟੋਕਨ (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "ਸਿਖਰ K", "Top K": "ਸਿਖਰ K",
"Top K Reranker": "",
"Top P": "ਸਿਖਰ P", "Top P": "ਸਿਖਰ P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?", "Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "ਨਵਾਂ ਕੀ ਹੈ", "Whats New in": "ਨਵਾਂ ਕੀ ਹੈ",

View File

@ -6,6 +6,7 @@
"(latest)": "(najnowszy)", "(latest)": "(najnowszy)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modele }}", "{{ models }}": "{{ modele }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi", "{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
"{{user}}'s Chats": "Czaty użytkownika {{user}}", "{{user}}'s Chats": "Czaty użytkownika {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Potwierdź swoją akcję", "Confirm your action": "Potwierdź swoją akcję",
"Confirm your new password": "Potwierdź nowe hasło", "Confirm your new password": "Potwierdź nowe hasło",
"Connect to your own OpenAI compatible API endpoints.": "Połącz się ze swoimi własnymi punktami końcowymi API kompatybilnego z OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Połącz się ze swoimi własnymi punktami końcowymi API kompatybilnego z OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Połączenia", "Connections": "Połączenia",
"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.",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Wprowadź {Top K}", "Enter Top K": "Wprowadź {Top K}",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Podaj adres URL (np. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Podaj adres URL (np. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)",
"Enter your current password": "Wprowadź swoje aktualne hasło", "Enter your current password": "Wprowadź swoje aktualne hasło",
@ -634,8 +637,8 @@
"LDAP server updated": "Serwer LDAP został zaktualizowany", "LDAP server updated": "Serwer LDAP został zaktualizowany",
"Leaderboard": "Tablica wyników", "Leaderboard": "Tablica wyników",
"Leave empty for unlimited": "Pozostaw puste dla nieograniczonego", "Leave empty for unlimited": "Pozostaw puste dla nieograniczonego",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Pozostaw puste, aby uwzględnić wszystkie modele z końca punktu \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Pozostaw puste, aby uwzględnić wszystkie modele z endpointu \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Pozostaw puste, aby uwzględnić wszystkie modele lub wybierz konkretne modele", "Leave empty to include all models or select specific models": "Pozostaw puste, aby uwzględnić wszystkie modele lub wybierz konkretne modele",
"Leave empty to use the default prompt, or enter a custom prompt": "Pozostaw puste, aby użyć domyślnego promptu, lub wprowadź niestandardowy prompt", "Leave empty to use the default prompt, or enter a custom prompt": "Pozostaw puste, aby użyć domyślnego promptu, lub wprowadź niestandardowy prompt",
"Leave model field empty to use the default model.": "Pozostaw pole modelu puste, aby użyć domyślnego modelu.", "Leave model field empty to use the default model.": "Pozostaw pole modelu puste, aby użyć domyślnego modelu.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Zarządzaj połączeniami z API Ollama", "Manage Ollama API Connections": "Zarządzaj połączeniami z API Ollama",
"Manage OpenAI API Connections": "Zarządzaj połączeniami z API OpenAI", "Manage OpenAI API Connections": "Zarządzaj połączeniami z API OpenAI",
"Manage Pipelines": "Zarządzanie przepływem", "Manage Pipelines": "Zarządzanie przepływem",
"Manage Tool Servers": "",
"March": "Marzec", "March": "Marzec",
"Max Tokens (num_predict)": "Maksymalna liczba tokenów (num_predict)", "Max Tokens (num_predict)": "Maksymalna liczba tokenów (num_predict)",
"Max Upload Count": "Maksymalna liczba przesyłanych plików", "Max Upload Count": "Maksymalna liczba przesyłanych plików",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonywanie dowolnego kodu", "Tools have a function calling system that allows arbitrary code execution": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonywanie dowolnego kodu",
"Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.", "Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.",
"Top K": "Najlepsze K", "Top K": "Najlepsze K",
"Top K Reranker": "",
"Top P": "Najlepsze P", "Top P": "Najlepsze P",
"Transformers": "Transformery", "Transformers": "Transformery",
"Trouble accessing Ollama?": "Czy masz problemy z dostępem do Ollama?", "Trouble accessing Ollama?": "Czy masz problemy z dostępem do Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "Adres URL interfejsu internetowego", "WebUI URL": "Adres URL interfejsu internetowego",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI będzie wysyłać żądania do \"{{url}}/api/chat\".", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI będzie wysyłać żądania do \"{{url}}/api/chat\".",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI będzie wysyłać żądania do \"{{url}}/chat/completions\".", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI będzie wysyłać żądania do \"{{url}}/chat/completions\".",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Do czego dążysz?", "What are you trying to achieve?": "Do czego dążysz?",
"What are you working on?": "Nad czym pracujesz?", "What are you working on?": "Nad czym pracujesz?",
"Whats New in": "Co nowego w", "Whats New in": "Co nowego w",

View File

@ -6,6 +6,7 @@
"(latest)": "(último)", "(latest)": "(último)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirme sua ação", "Confirm your action": "Confirme sua ação",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Conexões", "Connections": "Conexões",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Digite o Top K", "Enter Top K": "Digite o Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "Servidor LDAP atualizado", "LDAP server updated": "Servidor LDAP atualizado",
"Leaderboard": "Tabela de classificação", "Leaderboard": "Tabela de classificação",
"Leave empty for unlimited": "Deixe vazio para ilimitado", "Leave empty for unlimited": "Deixe vazio para ilimitado",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Deixe vazio para incluir todos os modelos do endpoint \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Deixe vazio para incluir todos os modelos do endpoint \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Deixe vazio para incluir todos os modelos ou selecione modelos especificos", "Leave empty to include all models or select specific models": "Deixe vazio para incluir todos os modelos ou selecione modelos especificos",
"Leave empty to use the default prompt, or enter a custom prompt": "Deixe vazio para usar o prompt padrão, ou insira um prompt personalizado", "Leave empty to use the default prompt, or enter a custom prompt": "Deixe vazio para usar o prompt padrão, ou insira um prompt personalizado",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Gerenciar Conexões Ollama API", "Manage Ollama API Connections": "Gerenciar Conexões Ollama API",
"Manage OpenAI API Connections": "Gerenciar Conexões OpenAI API", "Manage OpenAI API Connections": "Gerenciar Conexões OpenAI API",
"Manage Pipelines": "Gerenciar Pipelines", "Manage Pipelines": "Gerenciar Pipelines",
"Manage Tool Servers": "",
"March": "Março", "March": "Março",
"Max Tokens (num_predict)": "Máximo de Tokens (num_predict)", "Max Tokens (num_predict)": "Máximo de Tokens (num_predict)",
"Max Upload Count": "Quantidade máxima de anexos", "Max Upload Count": "Quantidade máxima de anexos",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário", "Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário",
"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.", "Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?", "Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "A WebUI fará requisições para \"{{url}}/api/chat\".", "WebUI will make requests to \"{{url}}/api/chat\"": "A WebUI fará requisições para \"{{url}}/api/chat\".",
"WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI fará requisições para \"{{url}}/chat/completions\".", "WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI fará requisições para \"{{url}}/chat/completions\".",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "O que está tentando alcançar?", "What are you trying to achieve?": "O que está tentando alcançar?",
"What are you working on?": "No que está trabalhando?", "What are you working on?": "No que está trabalhando?",
"Whats New in": "O que há de novo em", "Whats New in": "O que há de novo em",

View File

@ -6,6 +6,7 @@
"(latest)": "(mais recente)", "(latest)": "(mais recente)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modelos }}", "{{ models }}": "{{ modelos }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Conexões", "Connections": "Conexões",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Escreva o Top K", "Enter Top K": "Escreva o Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Escreva o URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Escreva o URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Gerir pipelines", "Manage Pipelines": "Gerir pipelines",
"Manage Tool Servers": "",
"March": "Março", "March": "Março",
"Max Tokens (num_predict)": "Máx Tokens (num_predict)", "Max Tokens (num_predict)": "Máx Tokens (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problemas a aceder ao Ollama?", "Trouble accessing Ollama?": "Problemas a aceder ao Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "O que há de novo em", "Whats New in": "O que há de novo em",

View File

@ -6,6 +6,7 @@
"(latest)": "(ultimul)", "(latest)": "(ultimul)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modele }}", "{{ models }}": "{{ modele }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "Conversațiile lui {{user}}", "{{user}}'s Chats": "Conversațiile lui {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Confirmă acțiunea ta", "Confirm your action": "Confirmă acțiunea ta",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Conexiuni", "Connections": "Conexiuni",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Introduceți Top K", "Enter Top K": "Introduceți Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introduceți URL-ul (de ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Introduceți URL-ul (de ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "Tabel de clasament", "Leaderboard": "Tabel de clasament",
"Leave empty for unlimited": "Lăsați gol pentru nelimitat", "Leave empty for unlimited": "Lăsați gol pentru nelimitat",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Lăsați gol pentru a include toate modelele sau selectați modele specifice", "Leave empty to include all models or select specific models": "Lăsați gol pentru a include toate modelele sau selectați modele specifice",
"Leave empty to use the default prompt, or enter a custom prompt": "Lăsați gol pentru a utiliza promptul implicit sau introduceți un prompt personalizat", "Leave empty to use the default prompt, or enter a custom prompt": "Lăsați gol pentru a utiliza promptul implicit sau introduceți un prompt personalizat",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Gestionează Conductele", "Manage Pipelines": "Gestionează Conductele",
"Manage Tool Servers": "",
"March": "Martie", "March": "Martie",
"Max Tokens (num_predict)": "Număr Maxim de Tokeni (num_predict)", "Max Tokens (num_predict)": "Număr Maxim de Tokeni (num_predict)",
"Max Upload Count": "Număr maxim de încărcări", "Max Upload Count": "Număr maxim de încărcări",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului", "Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului",
"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.", "Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Probleme la accesarea Ollama?", "Trouble accessing Ollama?": "Probleme la accesarea Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Ce e Nou în", "Whats New in": "Ce e Nou în",

View File

@ -6,6 +6,7 @@
"(latest)": "(последняя)", "(latest)": "(последняя)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ модели }}", "{{ models }}": "{{ модели }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк", "{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
"{{COUNT}} Replies": "{{COUNT}} Ответов", "{{COUNT}} Replies": "{{COUNT}} Ответов",
"{{user}}'s Chats": "Чаты {{user}}'а", "{{user}}'s Chats": "Чаты {{user}}'а",
@ -215,6 +216,7 @@
"Confirm your action": "Подтвердите свое действие", "Confirm your action": "Подтвердите свое действие",
"Confirm your new password": "Подтвердите свой новый пароль", "Confirm your new password": "Подтвердите свой новый пароль",
"Connect to your own OpenAI compatible API endpoints.": "Подключитесь к своим собственным энд-поинтам API, совместимым с OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Подключитесь к своим собственным энд-поинтам API, совместимым с OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Соединение", "Connections": "Соединение",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Введите время ожидания в секундах", "Enter timeout in seconds": "Введите время ожидания в секундах",
"Enter to Send": "Enter для отправки", "Enter to Send": "Enter для отправки",
"Enter Top K": "Введите Top K", "Enter Top K": "Введите Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)",
"Enter your current password": "Введите ваш текущий пароль", "Enter your current password": "Введите ваш текущий пароль",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP сервер обновлен", "LDAP server updated": "LDAP сервер обновлен",
"Leaderboard": "Таблица Лидеров", "Leaderboard": "Таблица Лидеров",
"Leave empty for unlimited": "Оставьте пустым для неограниченного", "Leave empty for unlimited": "Оставьте пустым для неограниченного",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Оставьте пустым, чтобы включить все модели из энд-поинта \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Оставьте пустым, чтобы включить все модели из энд-поинта \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Оставьте поле пустым, чтобы включить все модели или выбрать конкретные модели", "Leave empty to include all models or select specific models": "Оставьте поле пустым, чтобы включить все модели или выбрать конкретные модели",
"Leave empty to use the default prompt, or enter a custom prompt": "Оставьте пустым, чтобы использовать промпт по умолчанию, или введите пользовательский промпт", "Leave empty to use the default prompt, or enter a custom prompt": "Оставьте пустым, чтобы использовать промпт по умолчанию, или введите пользовательский промпт",
"Leave model field empty to use the default model.": "Оставьте поле model пустым, чтобы использовать модель по умолчанию.", "Leave model field empty to use the default model.": "Оставьте поле model пустым, чтобы использовать модель по умолчанию.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Управление соединениями API Ollama", "Manage Ollama API Connections": "Управление соединениями API Ollama",
"Manage OpenAI API Connections": "Управление соединениями API OpenAI", "Manage OpenAI API Connections": "Управление соединениями API OpenAI",
"Manage Pipelines": "Управление конвейерами", "Manage Pipelines": "Управление конвейерами",
"Manage Tool Servers": "",
"March": "Март", "March": "Март",
"Max Tokens (num_predict)": "Максимальное количество токенов (num_predict)", "Max Tokens (num_predict)": "Максимальное количество токенов (num_predict)",
"Max Upload Count": "Максимальное количество загрузок", "Max Upload Count": "Максимальное количество загрузок",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код", "Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код",
"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.", "Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Проблемы с доступом к Ollama?", "Trouble accessing Ollama?": "Проблемы с доступом к Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI будет отправлять запросы к \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI будет отправлять запросы к \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI будет отправлять запросы к \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI будет отправлять запросы к \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Чего вы пытаетесь достичь?", "What are you trying to achieve?": "Чего вы пытаетесь достичь?",
"What are you working on?": "Над чем вы работаете?", "What are you working on?": "Над чем вы работаете?",
"Whats New in": "Что нового в", "Whats New in": "Что нового в",

View File

@ -6,6 +6,7 @@
"(latest)": "Najnovšie", "(latest)": "Najnovšie",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}'s konverzácie", "{{user}}'s Chats": "{{user}}'s konverzácie",
@ -215,6 +216,7 @@
"Confirm your action": "Potvrďte svoju akciu", "Confirm your action": "Potvrďte svoju akciu",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Pripojenia", "Connections": "Pripojenia",
"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.",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Zadajte horné K", "Enter Top K": "Zadajte horné K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadajte URL (napr. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Zadajte URL (napr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "Rebríček", "Leaderboard": "Rebríček",
"Leave empty for unlimited": "Nechajte prázdne pre neobmedzene", "Leave empty for unlimited": "Nechajte prázdne pre neobmedzene",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Nechajte prázdne pre zahrnutie všetkých modelov alebo vyberte konkrétne modely.", "Leave empty to include all models or select specific models": "Nechajte prázdne pre zahrnutie všetkých modelov alebo vyberte konkrétne modely.",
"Leave empty to use the default prompt, or enter a custom prompt": "Nechajte prázdne pre použitie predvoleného podnetu, alebo zadajte vlastný podnet.", "Leave empty to use the default prompt, or enter a custom prompt": "Nechajte prázdne pre použitie predvoleného podnetu, alebo zadajte vlastný podnet.",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Správa pipelines", "Manage Pipelines": "Správa pipelines",
"Manage Tool Servers": "",
"March": "Marec", "March": "Marec",
"Max Tokens (num_predict)": "Maximálny počet tokenov (num_predict)", "Max Tokens (num_predict)": "Maximálny počet tokenov (num_predict)",
"Max Upload Count": "Maximálny počet nahraní", "Max Upload Count": "Maximálny počet nahraní",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.", "Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.",
"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Máte problémy s prístupom k Ollama?", "Trouble accessing Ollama?": "Máte problémy s prístupom k Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Čo je nové v", "Whats New in": "Čo je nové v",

View File

@ -6,6 +6,7 @@
"(latest)": "(најновије)", "(latest)": "(најновије)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ модели }}", "{{ models }}": "{{ модели }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} одговора", "{{COUNT}} Replies": "{{COUNT}} одговора",
"{{user}}'s Chats": "Ћаскања корисника {{user}}", "{{user}}'s Chats": "Ћаскања корисника {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "Потврди радњу", "Confirm your action": "Потврди радњу",
"Confirm your new password": "Потврди нову лозинку", "Confirm your new password": "Потврди нову лозинку",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Везе", "Connections": "Везе",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Унесите Топ К", "Enter Top K": "Унесите Топ К",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Унесите адресу (нпр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Унесите адресу (нпр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "ЛДАП сервер измењен", "LDAP server updated": "ЛДАП сервер измењен",
"Leaderboard": "Ранг листа", "Leaderboard": "Ранг листа",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Управљај Ollama АПИ везама", "Manage Ollama API Connections": "Управљај Ollama АПИ везама",
"Manage OpenAI API Connections": "Управљај OpenAI АПИ везама", "Manage OpenAI API Connections": "Управљај OpenAI АПИ везама",
"Manage Pipelines": "Управљање цевоводима", "Manage Pipelines": "Управљање цевоводима",
"Manage Tool Servers": "",
"March": "Март", "March": "Март",
"Max Tokens (num_predict)": "Маx Токенс (нум_предицт)", "Max Tokens (num_predict)": "Маx Токенс (нум_предицт)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Топ К", "Top K": "Топ К",
"Top K Reranker": "",
"Top P": "Топ П", "Top P": "Топ П",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?", "Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI адреса", "WebUI URL": "WebUI адреса",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Шта је ново у", "Whats New in": "Шта је ново у",

View File

@ -6,6 +6,7 @@
"(latest)": "(senaste)", "(latest)": "(senaste)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ modeller }}", "{{ models }}": "{{ modeller }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Svar", "{{COUNT}} Replies": "{{COUNT}} Svar",
"{{user}}'s Chats": "{{user}}s Chats", "{{user}}'s Chats": "{{user}}s Chats",
@ -215,6 +216,7 @@
"Confirm your action": "Bekräfta åtgärd", "Confirm your action": "Bekräfta åtgärd",
"Confirm your new password": "Bekräfta ditt nya lösenord", "Confirm your new password": "Bekräfta ditt nya lösenord",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Anslutningar", "Connections": "Anslutningar",
"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": "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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Ange Top K", "Enter Top K": "Ange Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Hantera rörledningar", "Manage Pipelines": "Hantera rörledningar",
"Manage Tool Servers": "",
"March": "mars", "March": "mars",
"Max Tokens (num_predict)": "Maximalt antal tokens (num_predict)", "Max Tokens (num_predict)": "Maximalt antal tokens (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning", "Tools have a function calling system that allows arbitrary code execution": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
"Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning", "Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
"Top K": "Topp K", "Top K": "Topp K",
"Top K Reranker": "",
"Top P": "Topp P", "Top P": "Topp P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Problem med att komma åt Ollama?", "Trouble accessing Ollama?": "Problem med att komma åt Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Vad försöker du uppnå?", "What are you trying to achieve?": "Vad försöker du uppnå?",
"What are you working on?": "Var arbetar du med?", "What are you working on?": "Var arbetar du med?",
"Whats New in": "Vad är nytt i", "Whats New in": "Vad är nytt i",

View File

@ -6,6 +6,7 @@
"(latest)": "(ล่าสุด)", "(latest)": "(ล่าสุด)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "การสนทนาของ {{user}}", "{{user}}'s Chats": "การสนทนาของ {{user}}",
@ -215,6 +216,7 @@
"Confirm your action": "ยืนยันการดำเนินการของคุณ", "Confirm your action": "ยืนยันการดำเนินการของคุณ",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "การเชื่อมต่อ", "Connections": "การเชื่อมต่อ",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "ใส่ Top K", "Enter Top K": "ใส่ Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "จัดการไปป์ไลน์", "Manage Pipelines": "จัดการไปป์ไลน์",
"Manage Tool Servers": "",
"March": "มีนาคม", "March": "มีนาคม",
"Max Tokens (num_predict)": "โทเค็นสูงสุด (num_predict)", "Max Tokens (num_predict)": "โทเค็นสูงสุด (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้", "Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้", "Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?", "Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "มีอะไรใหม่ใน", "Whats New in": "มีอะไรใหม่ใน",

View File

@ -6,6 +6,7 @@
"(latest)": "", "(latest)": "",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "", "{{ models }}": "",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
@ -215,6 +216,7 @@
"Confirm your action": "", "Confirm your action": "",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "", "Connections": "",
"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": "",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "", "Enter Top K": "",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "", "Manage Pipelines": "",
"Manage Tool Servers": "",
"March": "", "March": "",
"Max Tokens (num_predict)": "", "Max Tokens (num_predict)": "",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "", "Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "", "Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "", "Top K": "",
"Top K Reranker": "",
"Top P": "", "Top P": "",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "", "Trouble accessing Ollama?": "",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "", "Whats New in": "",

View File

@ -6,6 +6,7 @@
"(latest)": "(en son)", "(latest)": "(en son)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Yanıt", "{{COUNT}} Replies": "{{COUNT}} Yanıt",
"{{user}}'s Chats": "{{user}}'ın Sohbetleri", "{{user}}'s Chats": "{{user}}'ın Sohbetleri",
@ -215,6 +216,7 @@
"Confirm your action": "İşleminizi onaylayın", "Confirm your action": "İşleminizi onaylayın",
"Confirm your new password": "Yeni parolanızı onaylayın", "Confirm your new password": "Yeni parolanızı onaylayın",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Bağlantılar", "Connections": "Bağlantılar",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Top K'yı girin", "Enter Top K": "Top K'yı girin",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)",
"Enter your current password": "Mevcut parolanızı girin", "Enter your current password": "Mevcut parolanızı girin",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP sunucusu güncellendi", "LDAP server updated": "LDAP sunucusu güncellendi",
"Leaderboard": "Liderlik Tablosu", "Leaderboard": "Liderlik Tablosu",
"Leave empty for unlimited": "Sınırsız için boş bırakınız", "Leave empty for unlimited": "Sınırsız için boş bırakınız",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Tüm modelleri dahil etmek için boş bırakın veya belirli modelleri seçin", "Leave empty to include all models or select specific models": "Tüm modelleri dahil etmek için boş bırakın veya belirli modelleri seçin",
"Leave empty to use the default prompt, or enter a custom prompt": "Varsayılan promptu kullanmak için boş bırakın veya özel bir prompt girin", "Leave empty to use the default prompt, or enter a custom prompt": "Varsayılan promptu kullanmak için boş bırakın veya özel bir prompt girin",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Ollama API Bağlantılarını Yönet", "Manage Ollama API Connections": "Ollama API Bağlantılarını Yönet",
"Manage OpenAI API Connections": "OpenAI API Bağlantılarını Yönet", "Manage OpenAI API Connections": "OpenAI API Bağlantılarını Yönet",
"Manage Pipelines": "Pipelineları Yönet", "Manage Pipelines": "Pipelineları Yönet",
"Manage Tool Servers": "",
"March": "Mart", "March": "Mart",
"Max Tokens (num_predict)": "Maksimum Token (num_predict)", "Max Tokens (num_predict)": "Maksimum Token (num_predict)",
"Max Upload Count": "Maksimum Yükleme Sayısı", "Max Upload Count": "Maksimum Yükleme Sayısı",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir", "Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir",
"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.", "Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Dönüştürücüler", "Transformers": "Dönüştürücüler",
"Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?", "Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL'si", "WebUI URL": "WebUI URL'si",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI, \"{{url}}/api/chat\" adresine istek yapacak", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI, \"{{url}}/api/chat\" adresine istek yapacak",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI, \"{{url}}/chat/completions\" adresine istek yapacak", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI, \"{{url}}/chat/completions\" adresine istek yapacak",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Ne yapmaya çalışıyorsunuz?", "What are you trying to achieve?": "Ne yapmaya çalışıyorsunuz?",
"What are you working on?": "Üzerinde çalıştığınız nedir?", "What are you working on?": "Üzerinde çalıştığınız nedir?",
"Whats New in": "Yenilikler:", "Whats New in": "Yenilikler:",

View File

@ -6,6 +6,7 @@
"(latest)": "(остання)", "(latest)": "(остання)",
"(Ollama)": "(Ollama)", "(Ollama)": "(Ollama)",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків", "{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
"{{COUNT}} Replies": "{{COUNT}} Відповіді", "{{COUNT}} Replies": "{{COUNT}} Відповіді",
"{{user}}'s Chats": "Чати {{user}}а", "{{user}}'s Chats": "Чати {{user}}а",
@ -215,6 +216,7 @@
"Confirm your action": "Підтвердіть свою дію", "Confirm your action": "Підтвердіть свою дію",
"Confirm your new password": "Підтвердіть свій новий пароль", "Confirm your new password": "Підтвердіть свій новий пароль",
"Connect to your own OpenAI compatible API endpoints.": "Підключіться до своїх власних API-ендпоінтів, сумісних з OpenAI.", "Connect to your own OpenAI compatible API endpoints.": "Підключіться до своїх власних API-ендпоінтів, сумісних з OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "З'єднання", "Connections": "З'єднання",
"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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "Введіть тайм-аут у секундах", "Enter timeout in seconds": "Введіть тайм-аут у секундах",
"Enter to Send": "Введіть для відправки", "Enter to Send": "Введіть для відправки",
"Enter Top K": "Введіть Top K", "Enter Top K": "Введіть Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)",
"Enter your current password": "Введіть ваш поточний пароль", "Enter your current password": "Введіть ваш поточний пароль",
@ -634,8 +637,8 @@
"LDAP server updated": "Сервер LDAP оновлено", "LDAP server updated": "Сервер LDAP оновлено",
"Leaderboard": "Таблиця лідерів", "Leaderboard": "Таблиця лідерів",
"Leave empty for unlimited": "Залиште порожнім для необмеженого розміру", "Leave empty for unlimited": "Залиште порожнім для необмеженого розміру",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Залиште порожнім, щоб включити усі моделі з кінцевої точки \"{{URL}}/api/tags\"", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Залиште порожнім, щоб включити усі моделі з кінцевої точки \"{{URL}}/models\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "Залиште порожнім, щоб включити усі моделі, або виберіть конкретні моделі.", "Leave empty to include all models or select specific models": "Залиште порожнім, щоб включити усі моделі, або виберіть конкретні моделі.",
"Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит", "Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит",
"Leave model field empty to use the default model.": "Залиште поле моделі порожнім, щоб використовувати модель за замовчуванням.", "Leave model field empty to use the default model.": "Залиште поле моделі порожнім, щоб використовувати модель за замовчуванням.",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "Керувати з'єднаннями Ollama API", "Manage Ollama API Connections": "Керувати з'єднаннями Ollama API",
"Manage OpenAI API Connections": "Керувати з'єднаннями OpenAI API", "Manage OpenAI API Connections": "Керувати з'єднаннями OpenAI API",
"Manage Pipelines": "Керування конвеєрами", "Manage Pipelines": "Керування конвеєрами",
"Manage Tool Servers": "",
"March": "Березень", "March": "Березень",
"Max Tokens (num_predict)": "Макс токенів (num_predict)", "Max Tokens (num_predict)": "Макс токенів (num_predict)",
"Max Upload Count": "Макс. кількість завантажень", "Max Upload Count": "Макс. кількість завантажень",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду", "Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.", "Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Трансформери", "Transformers": "Трансформери",
"Trouble accessing Ollama?": "Проблеми з доступом до Ollama?", "Trouble accessing Ollama?": "Проблеми з доступом до Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI надсилатиме запити до \"{{url}}/api/chat\"", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI надсилатиме запити до \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "Чого ви прагнете досягти?", "What are you trying to achieve?": "Чого ви прагнете досягти?",
"What are you working on?": "Над чим ти працюєш?", "What are you working on?": "Над чим ти працюєш?",
"Whats New in": "Що нового в", "Whats New in": "Що нового в",

View File

@ -6,6 +6,7 @@
"(latest)": "(تازہ ترین)", "(latest)": "(تازہ ترین)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ ماڈلز }}", "{{ models }}": "{{ ماڈلز }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{ صارف }} کی بات چیت", "{{user}}'s Chats": "{{ صارف }} کی بات چیت",
@ -215,6 +216,7 @@
"Confirm your action": "اپنی کارروائی کی تصدیق کریں", "Confirm your action": "اپنی کارروائی کی تصدیق کریں",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "کنکشنز", "Connections": "کنکشنز",
"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": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "اوپر کے K درج کریں", "Enter Top K": "اوپر کے K درج کریں",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "یو آر ایل درج کریں (جیسے کہ http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "یو آر ایل درج کریں (جیسے کہ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "لیڈر بورڈ", "Leaderboard": "لیڈر بورڈ",
"Leave empty for unlimited": "لامحدود کے لیے خالی چھوڑیں", "Leave empty for unlimited": "لامحدود کے لیے خالی چھوڑیں",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "تمام ماڈلز کو شامل کرنے کے لئے خالی چھوڑ دیں یا مخصوص ماڈلز منتخب کریں", "Leave empty to include all models or select specific models": "تمام ماڈلز کو شامل کرنے کے لئے خالی چھوڑ دیں یا مخصوص ماڈلز منتخب کریں",
"Leave empty to use the default prompt, or enter a custom prompt": "خالی چھوڑیں تاکہ ڈیفالٹ پرامپٹ استعمال ہو، یا ایک حسب ضرورت پرامپٹ درج کریں", "Leave empty to use the default prompt, or enter a custom prompt": "خالی چھوڑیں تاکہ ڈیفالٹ پرامپٹ استعمال ہو، یا ایک حسب ضرورت پرامپٹ درج کریں",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "پائپ لائنز کا نظم کریں", "Manage Pipelines": "پائپ لائنز کا نظم کریں",
"Manage Tool Servers": "",
"March": "مارچ", "March": "مارچ",
"Max Tokens (num_predict)": "زیادہ سے زیادہ ٹوکنز (num_predict)", "Max Tokens (num_predict)": "زیادہ سے زیادہ ٹوکنز (num_predict)",
"Max Upload Count": "زیادہ سے زیادہ اپلوڈ تعداد", "Max Upload Count": "زیادہ سے زیادہ اپلوڈ تعداد",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے", "Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے",
"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے", "Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
"Top K": "اوپر کے K", "Top K": "اوپر کے K",
"Top K Reranker": "",
"Top P": "ٹاپ پی", "Top P": "ٹاپ پی",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Ollama تک رسائی میں مشکل؟", "Trouble accessing Ollama?": "Ollama تک رسائی میں مشکل؟",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "میں نیا کیا ہے", "Whats New in": "میں نیا کیا ہے",

View File

@ -6,6 +6,7 @@
"(latest)": "(mới nhất)", "(latest)": "(mới nhất)",
"(Ollama)": "", "(Ollama)": "",
"{{ models }}": "{{ mô hình }}", "{{ models }}": "{{ mô hình }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
@ -215,6 +216,7 @@
"Confirm your action": "Xác nhận hành động của bạn", "Confirm your action": "Xác nhận hành động của bạn",
"Confirm your new password": "", "Confirm your new password": "",
"Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAI compatible API endpoints.": "",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "Kết nối", "Connections": "Kết nối",
"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": "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",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "", "Enter timeout in seconds": "",
"Enter to Send": "", "Enter to Send": "",
"Enter Top K": "Nhập Top K", "Enter Top K": "Nhập Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Nhập URL (vd: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Nhập URL (vd: http://localhost:11434)",
"Enter your current password": "", "Enter your current password": "",
@ -634,8 +637,8 @@
"LDAP server updated": "", "LDAP server updated": "",
"Leaderboard": "", "Leaderboard": "",
"Leave empty for unlimited": "", "Leave empty for unlimited": "",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "", "Leave empty to include all models or select specific models": "",
"Leave empty to use the default prompt, or enter a custom prompt": "", "Leave empty to use the default prompt, or enter a custom prompt": "",
"Leave model field empty to use the default model.": "", "Leave model field empty to use the default model.": "",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "", "Manage Ollama API Connections": "",
"Manage OpenAI API Connections": "", "Manage OpenAI API Connections": "",
"Manage Pipelines": "Quản lý Pipelines", "Manage Pipelines": "Quản lý Pipelines",
"Manage Tool Servers": "",
"March": "Tháng 3", "March": "Tháng 3",
"Max Tokens (num_predict)": "Tokens tối đa (num_predict)", "Max Tokens (num_predict)": "Tokens tối đa (num_predict)",
"Max Upload Count": "", "Max Upload Count": "",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý", "Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý",
"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.", "Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "", "Transformers": "",
"Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?", "Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?",
@ -1155,6 +1160,7 @@
"WebUI URL": "", "WebUI URL": "",
"WebUI will make requests to \"{{url}}/api/chat\"": "", "WebUI will make requests to \"{{url}}/api/chat\"": "",
"WebUI will make requests to \"{{url}}/chat/completions\"": "", "WebUI will make requests to \"{{url}}/chat/completions\"": "",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"Whats New in": "Thông tin mới về", "Whats New in": "Thông tin mới về",

View File

@ -6,6 +6,7 @@
"(latest)": "(最新版)", "(latest)": "(最新版)",
"(Ollama)": "(Ollama)", "(Ollama)": "(Ollama)",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏", "{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
"{{COUNT}} Replies": "{{COUNT}} 回复", "{{COUNT}} Replies": "{{COUNT}} 回复",
"{{user}}'s Chats": "{{user}} 的对话记录", "{{user}}'s Chats": "{{user}} 的对话记录",
@ -215,6 +216,7 @@
"Confirm your action": "确定吗?", "Confirm your action": "确定吗?",
"Confirm your new password": "确认新密码", "Confirm your new password": "确认新密码",
"Connect to your own OpenAI compatible API endpoints.": "连接到你自己的与 OpenAI 兼容的 API 接口端点。", "Connect to your own OpenAI compatible API endpoints.": "连接到你自己的与 OpenAI 兼容的 API 接口端点。",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "外部连接", "Connections": "外部连接",
"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": "请联系管理员以获取访问权限",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "输入以秒为单位的超时时间", "Enter timeout in seconds": "输入以秒为单位的超时时间",
"Enter to Send": "Enter 键发送", "Enter to Send": "Enter 键发送",
"Enter Top K": "输入 Top K", "Enter Top K": "输入 Top K",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "输入地址 (例如http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "输入地址 (例如http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "输入地址 (例如http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "输入地址 (例如http://localhost:11434)",
"Enter your current password": "输入当前密码", "Enter your current password": "输入当前密码",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP 服务器已更新", "LDAP server updated": "LDAP 服务器已更新",
"Leaderboard": "排行榜", "Leaderboard": "排行榜",
"Leave empty for unlimited": "留空表示无限制", "Leave empty for unlimited": "留空表示无限制",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "留空表示包含所有来自 \"{{URL}}/api/tags\" 的模型", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "留空表示包含所有来自 \"{{URL}}/models\" 的模型", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "留空表示包含所有模型或请选择模型", "Leave empty to include all models or select specific models": "留空表示包含所有模型或请选择模型",
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词。", "Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词。",
"Leave model field empty to use the default model.": "将模型字段留空以使用默认模型。", "Leave model field empty to use the default model.": "将模型字段留空以使用默认模型。",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "管理Ollama API连接", "Manage Ollama API Connections": "管理Ollama API连接",
"Manage OpenAI API Connections": "管理OpenAI API连接", "Manage OpenAI API Connections": "管理OpenAI API连接",
"Manage Pipelines": "管理 Pipeline", "Manage Pipelines": "管理 Pipeline",
"Manage Tool Servers": "",
"March": "三月", "March": "三月",
"Max Tokens (num_predict)": "最大Token数量 (num_predict)", "Max Tokens (num_predict)": "最大Token数量 (num_predict)",
"Max Upload Count": "最大上传数量", "Max Upload Count": "最大上传数量",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码", "Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码",
"Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。", "Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "访问 Ollama 时遇到问题?", "Trouble accessing Ollama?": "访问 Ollama 时遇到问题?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 将向 \"{{url}}/api/chat\" 发出请求", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 将向 \"{{url}}/api/chat\" 发出请求",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 将向 \"{{url}}/chat/completions\" 发出请求", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 将向 \"{{url}}/chat/completions\" 发出请求",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "你想要达到什么目标?", "What are you trying to achieve?": "你想要达到什么目标?",
"What are you working on?": "你在忙于什么?", "What are you working on?": "你在忙于什么?",
"Whats New in": "最近更新内容于", "Whats New in": "最近更新内容于",

View File

@ -6,6 +6,7 @@
"(latest)": "(最新版)", "(latest)": "(最新版)",
"(Ollama)": "(Ollama)", "(Ollama)": "(Ollama)",
"{{ models }}": "{{ models }}", "{{ models }}": "{{ models }}",
"{{COUNT}} Available Tool Servers": "",
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行", "{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
"{{COUNT}} Replies": "{{COUNT}} 回覆", "{{COUNT}} Replies": "{{COUNT}} 回覆",
"{{user}}'s Chats": "{{user}} 的對話", "{{user}}'s Chats": "{{user}} 的對話",
@ -215,6 +216,7 @@
"Confirm your action": "確認您的操作", "Confirm your action": "確認您的操作",
"Confirm your new password": "確認您的新密碼", "Confirm your new password": "確認您的新密碼",
"Connect to your own OpenAI compatible API endpoints.": "連線到您自己的 OpenAI 相容 API 端點。", "Connect to your own OpenAI compatible API endpoints.": "連線到您自己的 OpenAI 相容 API 端點。",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connections": "連線", "Connections": "連線",
"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 存取權限",
@ -437,6 +439,7 @@
"Enter timeout in seconds": "請以秒為單位輸入超時時間", "Enter timeout in seconds": "請以秒為單位輸入超時時間",
"Enter to Send": "使用 Enter 傳送", "Enter to Send": "使用 Enter 傳送",
"Enter Top K": "輸入 Top K 值", "Enter Top K": "輸入 Top K 值",
"Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如http://127.0.0.1:7860/", "Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如http://127.0.0.1:7860/",
"Enter URL (e.g. http://localhost:11434)": "輸入 URL例如http://localhost:11434", "Enter URL (e.g. http://localhost:11434)": "輸入 URL例如http://localhost:11434",
"Enter your current password": "輸入您的目前密碼", "Enter your current password": "輸入您的目前密碼",
@ -634,8 +637,8 @@
"LDAP server updated": "LDAP 伺服器已更新", "LDAP server updated": "LDAP 伺服器已更新",
"Leaderboard": "排行榜", "Leaderboard": "排行榜",
"Leave empty for unlimited": "留空表示無限制", "Leave empty for unlimited": "留空表示無限制",
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "留空以包含來自 \"{{URL}}/api/tags\" 端點的所有模型", "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "留空以包含來自 \"{{URL}}/models\" 端點的所有模型", "Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models or select specific models": "留空以包含所有模型或選擇特定模型", "Leave empty to include all models or select specific models": "留空以包含所有模型或選擇特定模型",
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞", "Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞",
"Leave model field empty to use the default model.": "留空模型欄位以使用預設模型。", "Leave model field empty to use the default model.": "留空模型欄位以使用預設模型。",
@ -662,6 +665,7 @@
"Manage Ollama API Connections": "管理 Ollama API 連線", "Manage Ollama API Connections": "管理 Ollama API 連線",
"Manage OpenAI API Connections": "管理 OpenAI API 連線", "Manage OpenAI API Connections": "管理 OpenAI API 連線",
"Manage Pipelines": "管理管線", "Manage Pipelines": "管理管線",
"Manage Tool Servers": "",
"March": "3 月", "March": "3 月",
"Max Tokens (num_predict)": "最大 token 數num_predict", "Max Tokens (num_predict)": "最大 token 數num_predict",
"Max Upload Count": "最大上傳數量", "Max Upload Count": "最大上傳數量",
@ -1078,6 +1082,7 @@
"Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統", "Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統",
"Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。", "Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。",
"Top K": "Top K", "Top K": "Top K",
"Top K Reranker": "",
"Top P": "Top P", "Top P": "Top P",
"Transformers": "Transformers", "Transformers": "Transformers",
"Trouble accessing Ollama?": "存取 Ollama 時遇到問題?", "Trouble accessing Ollama?": "存取 Ollama 時遇到問題?",
@ -1155,6 +1160,7 @@
"WebUI URL": "WebUI URL", "WebUI URL": "WebUI URL",
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 將向 \"{{url}}/api/chat\" 傳送請求", "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 將向 \"{{url}}/api/chat\" 傳送請求",
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 將向 \"{{url}}/chat/completions\" 傳送請求", "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 將向 \"{{url}}/chat/completions\" 傳送請求",
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
"What are you trying to achieve?": "您正在試圖完成什麼?", "What are you trying to achieve?": "您正在試圖完成什麼?",
"What are you working on?": "您現在的工作是什麼?", "What are you working on?": "您現在的工作是什麼?",
"Whats New in": "新功能", "Whats New in": "新功能",