mirror of
https://github.com/open-webui/open-webui.git
synced 2025-04-21 22:14:47 +02:00
chore: format
This commit is contained in:
parent
d9b6d78d5c
commit
4a79320253
@ -1688,7 +1688,7 @@ RAG_TOP_K = PersistentConfig(
|
||||
RAG_TOP_K_RERANKER = PersistentConfig(
|
||||
"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",
|
||||
|
@ -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
|
||||
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]
|
||||
distances, documents, metadatas = map(list, zip(*sorted_items))
|
||||
result = {
|
||||
@ -305,6 +307,7 @@ def query_collection_with_hybrid_search(
|
||||
)
|
||||
return merge_and_sort_query_results(results, k=k)
|
||||
|
||||
|
||||
def get_embedding_function(
|
||||
embedding_engine,
|
||||
embedding_model,
|
||||
|
@ -1520,7 +1520,8 @@ def query_doc_handler(
|
||||
),
|
||||
k=form_data.k if form_data.k else request.app.state.config.TOP_K,
|
||||
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=(
|
||||
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,
|
||||
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=(
|
||||
form_data.r
|
||||
if form_data.r
|
||||
|
@ -302,12 +302,12 @@
|
||||
{:else}
|
||||
<div class="text-gray-500 text-xs text-center py-2 px-10">
|
||||
{#if ollama}
|
||||
{$i18n.t('Leave empty to include all models from "{{URL}}/api/tags" endpoint', {
|
||||
URL: url
|
||||
{$i18n.t('Leave empty to include all models from "{{url}}/api/tags" endpoint', {
|
||||
url: url
|
||||
})}
|
||||
{:else}
|
||||
{$i18n.t('Leave empty to include all models from "{{URL}}/models" endpoint', {
|
||||
URL: url
|
||||
{$i18n.t('Leave empty to include all models from "{{url}}/models" endpoint', {
|
||||
url: url
|
||||
})}
|
||||
{/if}
|
||||
</div>
|
||||
|
@ -132,8 +132,8 @@
|
||||
</div>
|
||||
|
||||
<div class="text-xs text-gray-500 mt-1">
|
||||
{$i18n.t(`WebUI will make requests to "{{URL}}/openapi.json"`, {
|
||||
URL: url
|
||||
{$i18n.t(`WebUI will make requests to "{{url}}/openapi.json"`, {
|
||||
url: url
|
||||
})}
|
||||
</div>
|
||||
|
||||
|
@ -782,7 +782,6 @@
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
||||
{#if querySettings.hybrid === true}
|
||||
<div class=" mb-2.5 flex flex-col w-full justify-between">
|
||||
<div class=" flex w-full justify-between">
|
||||
|
@ -52,8 +52,8 @@
|
||||
<div class="flex w-full gap-2 items-center">
|
||||
<Tooltip
|
||||
className="w-full relative"
|
||||
content={$i18n.t(`WebUI will make requests to "{{URL}}/openapi.json"`, {
|
||||
URL: url
|
||||
content={$i18n.t(`WebUI will make requests to "{{url}}/openapi.json"`, {
|
||||
url: url
|
||||
})}
|
||||
placement="top-start"
|
||||
>
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(الأخير)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ نماذج }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "دردشات {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "اتصالات",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "URL (e.g. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "إدارة خطوط الأنابيب",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "مارس",
|
||||
"Max Tokens (num_predict)": "ماكس توكنز (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "ما هو الجديد",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(последна)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Отговори",
|
||||
"{{user}}'s Chats": "{{user}}'s чатове",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Потвърдете действието си",
|
||||
"Confirm your new password": "Потвърдете новата си парола",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "Свържете се със собствени крайни точки на API, съвместими с OpenAI.",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Връзки",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Въведете URL (напр. http://localhost:11434)",
|
||||
"Enter your current password": "Въведете текущата си парола",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP сървърът е актуализиран",
|
||||
"Leaderboard": "Класация",
|
||||
"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}}/models\" endpoint": "Оставете празно, за да включите всички модели от крайната точка \"{{URL}}/models\"",
|
||||
"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 or select specific models": "Оставете празно, за да включите всички модели или изберете конкретни модели",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Оставете празно, за да използвате промпта по подразбиране, или въведете персонализиран промпт",
|
||||
"Leave model field empty to use the default model.": "Оставете полето за модел празно, за да използвате модела по подразбиране.",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Управление на Ollama API връзки",
|
||||
"Manage OpenAI API Connections": "Управление на OpenAI API връзки",
|
||||
"Manage Pipelines": "Управление на пайплайни",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Март",
|
||||
"Max Tokens (num_predict)": "Макс токени (num_predict)",
|
||||
"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.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.",
|
||||
"Top K": "Топ K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Топ P",
|
||||
"Transformers": "Трансформатори",
|
||||
"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}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"",
|
||||
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "Какво се опитвате да постигнете?",
|
||||
"What are you working on?": "Върху какво работите?",
|
||||
"What’s New in": "",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(সর্বশেষ)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ মডেল}}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}র চ্যাটস",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "কানেকশনগুলো",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "পাইপলাইন পরিচালনা করুন",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "মার্চ",
|
||||
"Max Tokens (num_predict)": "সর্বোচ্চ টোকেন (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "এতে নতুন কী",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(últim)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
|
||||
"{{COUNT}} Replies": "{{COUNT}} respostes",
|
||||
"{{user}}'s Chats": "Els xats de {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirma la teva acció",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"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.",
|
||||
"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 to Send": "Enter per enviar",
|
||||
"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://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)",
|
||||
"Enter your current password": "Introdueix la teva contrasenya actual",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Servidor LDAP actualitzat",
|
||||
"Leaderboard": "Tauler de classificació",
|
||||
"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}}/models\" endpoint": "Deixar-ho buit per incloure tots els models del punt de connexió \"{{URL}}/models\"",
|
||||
"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 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 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 OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI",
|
||||
"Manage Pipelines": "Gestionar les Pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Març",
|
||||
"Max Tokens (num_predict)": "Nombre màxim de Tokens (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformadors",
|
||||
"Trouble accessing Ollama?": "Problemes en accedir a Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "En què estàs treballant?",
|
||||
"What’s New in": "Què hi ha de nou a",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Mga koneksyon",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Max Tokens (num_predict)": "",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Ibabaw nga P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Unsay bag-o sa",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "Nejnovější",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}'s konverzace",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Potvrďte svoji akci",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Připojení",
|
||||
"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í.",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Zadejte URL (např. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "Žebříček",
|
||||
"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}}/models\" 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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Správa pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Březen",
|
||||
"Max Tokens (num_predict)": "Maximální počet tokenů (num_predict)",
|
||||
"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 spuštění libovolného kódu.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Máte potíže s přístupem k Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Co je nového v",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(seneste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}s chats",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Bekræft din handling",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Forbindelser",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"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}}/models\" 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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Administrer pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Marts",
|
||||
"Max Tokens (num_predict)": "Maks. tokens (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemer med at få adgang til Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Nyheder i",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(neueste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ Modelle }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Antworten",
|
||||
"{{user}}'s Chats": "{{user}}s Chats",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Bestätigen Sie Ihre Aktion.",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Verbindungen",
|
||||
"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",
|
||||
@ -635,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP-Server aktualisiert",
|
||||
"Leaderboard": "Bestenliste",
|
||||
"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}}/models\" endpoint": "Leer lassen, um alle Modelle vom \"{{URL}}/models\"-Endpunkt einzuschließen",
|
||||
"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 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 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 OpenAI API Connections": "OpenAI-API-Verbindungen verwalten",
|
||||
"Manage Pipelines": "Pipelines verwalten",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "März",
|
||||
"Max Tokens (num_predict)": "Maximale Tokenanzahl (num_predict)",
|
||||
"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.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
|
||||
@ -1156,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Woran arbeiten Sie?",
|
||||
"What’s New in": "Neuigkeiten von",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(much latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"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.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Max Tokens (num_predict)": "",
|
||||
"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.": "",
|
||||
"Top K": "Top K very top",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P very top",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "What’s New in much new",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(τελευταίο)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Συνομιλίες του {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Επιβεβαιώστε την ενέργειά σας",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Συνδέσεις",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Ο διακομιστής LDAP ενημερώθηκε",
|
||||
"Leaderboard": "Κατάταξη",
|
||||
"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}}/models\" endpoint": "Αφήστε κενό για να συμπεριλάβετε όλα τα μοντέλα από το endpoint \"{{URL}}/models\"",
|
||||
"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 or select specific models": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα ή επιλέξτε συγκεκριμένα μοντέλα",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη προτροπή, ή εισάγετε μια προσαρμοσμένη προτροπή",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Διαχείριση Συνδέσεων API Ollama",
|
||||
"Manage OpenAI API Connections": "Διαχείριση Συνδέσεων API OpenAI",
|
||||
"Manage Pipelines": "Διαχείριση Καναλιών",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Μάρτιος",
|
||||
"Max Tokens (num_predict)": "Μέγιστος Αριθμός Tokens (num_predict)",
|
||||
"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.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"Trouble accessing Ollama?": "Προβλήματα πρόσβασης στο Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"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}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?",
|
||||
"What are you working on?": "Τι εργάζεστε;",
|
||||
"What’s New in": "Τι νέο υπάρχει στο",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -635,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -663,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Max Tokens (num_predict)": "",
|
||||
"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.": "",
|
||||
"Top K": "",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "",
|
||||
@ -1156,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -635,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -663,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Max Tokens (num_predict)": "",
|
||||
"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.": "",
|
||||
"Top K": "",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "",
|
||||
@ -1156,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Respuestas",
|
||||
"{{user}}'s Chats": "Chats de {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirma tu acción",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"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.",
|
||||
"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 to Send": "Enter para Enviar",
|
||||
"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://localhost:11434)": "Ingrese la URL (p.ej., http://localhost:11434)",
|
||||
"Enter your current password": "Ingrese su contraseña actual",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Servidor LDAP actualizado",
|
||||
"Leaderboard": "Tablero de líderes",
|
||||
"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}}/models\" endpoint": "Deje vacío para incluir todos los modelos desde el endpoint \"{{URL}}/models\"",
|
||||
"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 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 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 OpenAI API Connections": "Gestionar conexiones API de OpenAI",
|
||||
"Manage Pipelines": "Administrar Pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Marzo",
|
||||
"Max Tokens (num_predict)": "Máximo de fichas (num_predict)",
|
||||
"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 llamada de funciones que permite la ejecución de código arbitrario.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformadores",
|
||||
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "¿En qué estás trabajando?",
|
||||
"What’s New in": "Novedades en",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(uusim)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mudelid }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastust",
|
||||
"{{user}}'s Chats": "{{user}} vestlused",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Kinnita oma toiming",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"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.",
|
||||
"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 to Send": "Enter saatmiseks",
|
||||
"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://localhost:11434)": "Sisestage URL (nt http://localhost:11434)",
|
||||
"Enter your current password": "Sisestage oma praegune parool",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP server uuendatud",
|
||||
"Leaderboard": "Edetabel",
|
||||
"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}}/models\" endpoint": "Jäta tühjaks, et kaasata kõik mudelid \"{{URL}}/models\" lõpp-punktist",
|
||||
"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 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 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 OpenAI API Connections": "Halda OpenAI API ühendusi",
|
||||
"Manage Pipelines": "Halda torustikke",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Märts",
|
||||
"Max Tokens (num_predict)": "Max tokeneid (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"Trouble accessing Ollama?": "Probleeme Ollama juurdepääsuga?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Millega te tegelete?",
|
||||
"What’s New in": "Mis on uut",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(azkena)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}-ren Txatak",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Berretsi zure ekintza",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Konexioak",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP zerbitzaria eguneratu da",
|
||||
"Leaderboard": "Sailkapena",
|
||||
"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}}/models\" endpoint": "Utzi hutsik \"{{URL}}/models\" 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": "",
|
||||
"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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Kudeatu Ollama API Konexioak",
|
||||
"Manage OpenAI API Connections": "Kudeatu OpenAI API Konexioak",
|
||||
"Manage Pipelines": "Kudeatu Pipeline-ak",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Martxoa",
|
||||
"Max Tokens (num_predict)": "Token maximoak (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Goiko K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Goiko P",
|
||||
"Transformers": "Transformatzaileak",
|
||||
"Trouble accessing Ollama?": "Arazoak Ollama atzitzeko?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Zertan ari zara lanean?",
|
||||
"What’s New in": "Zer berri honetan:",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(آخرین)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} گفتگوهای",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "ارتباطات",
|
||||
"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 با مدیر تماس بگیرید",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "مدیریت خطوط لوله",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "مارچ",
|
||||
"Max Tokens (num_predict)": "توکنهای بیشینه (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "موارد جدید در",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(uusin)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mallit }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastausta",
|
||||
"{{user}}'s Chats": "{{user}}:n keskustelut",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Vahvista toimintasi",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Yhteydet",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "Aseta aikakatkaisu sekunneissa",
|
||||
"Enter to Send": "Enter lähettääksesi",
|
||||
"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://localhost:11434)": "Kirjoita verkko-osoite (esim. http://localhost:11434)",
|
||||
"Enter your current password": "Kirjoita nykyinen salasanasi",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP-palvelin päivitetty",
|
||||
"Leaderboard": "Tulosluettelo",
|
||||
"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}}/models\" endpoint": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit \"{{URL}}/models\" -päätepistestä",
|
||||
"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 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 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 OpenAI API Connections": "Hallitse OpenAI API -yhteyksiä",
|
||||
"Manage Pipelines": "Hallitse putkia",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "maaliskuu",
|
||||
"Max Tokens (num_predict)": "Tokenien enimmäismäärä (num_predict)",
|
||||
"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ökalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Muunnokset",
|
||||
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Mitä olet työskentelemässä?",
|
||||
"What’s New in": "Mitä uutta",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(dernier)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modèles }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Discussions de {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirmez votre action",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Connexions",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gérer les pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Mars",
|
||||
"Max Tokens (num_predict)": "Tokens maximaux (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Quoi de neuf",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(dernière version)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} réponses",
|
||||
"{{user}}'s Chats": "Conversations de {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirmer votre action",
|
||||
"Confirm your new password": "Confirmer votre nouveau mot de passe",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Connexions",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
|
||||
"Enter your current password": "Entrez votre mot de passe actuel",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Serveur LDAP mis à jour",
|
||||
"Leaderboard": "Classement",
|
||||
"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}}/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}}/api/tags\" endpoint": "",
|
||||
"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 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.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Gérer les connexions API Ollama",
|
||||
"Manage OpenAI API Connections": "Gérer les connexions API OpenAI",
|
||||
"Manage Pipelines": "Gérer les pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Mars",
|
||||
"Max Tokens (num_predict)": "Nb max de tokens (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Sur quoi travaillez-vous ?",
|
||||
"What’s New in": "Quoi de neuf dans",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(האחרון)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ דגמים }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "צ'אטים של {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "חיבורים",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "ניהול צינורות",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "מרץ",
|
||||
"Max Tokens (num_predict)": "מקסימום אסימונים (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "קשה לגשת לOllama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "מה חדש ב",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ मॉडल }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} की चैट",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "सम्बन्ध",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "पाइपलाइनों का प्रबंधन करें",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "मार्च",
|
||||
"Max Tokens (num_predict)": "अधिकतम टोकन (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "शीर्ष K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "शीर्ष P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "इसमें नया क्या है",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(najnovije)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeli }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Povezivanja",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Upravljanje cjevovodima",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Ožujak",
|
||||
"Max Tokens (num_predict)": "Maksimalan broj tokena (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemi s pristupom Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Što je novo u",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(legújabb)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modellek }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} beszélgetései",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Erősítsd meg a műveletet",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Kapcsolatok",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "Ranglista",
|
||||
"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}}/models\" 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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Folyamatok kezelése",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Március",
|
||||
"Max Tokens (num_predict)": "Maximum tokenek (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problémája van az Ollama elérésével?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(terbaru)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Obrolan {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Konfirmasi tindakan Anda",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Koneksi",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Mengelola Saluran Pipa",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Maret",
|
||||
"Max Tokens (num_predict)": "Token Maksimal (num_prediksi)",
|
||||
"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.": "",
|
||||
"Top K": "K atas",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "P Atas",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Kesulitan mengakses Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Apa yang Baru di",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(is déanaí)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Freagra",
|
||||
"{{user}}'s Chats": "Comhráite {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Deimhnigh do ghníomh",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Naisc",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "Cuir isteach an t-am istigh i soicindí",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)",
|
||||
"Enter your current password": "Cuir isteach do phasfhocal reatha",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Nuashonraíodh freastalaí LDAP",
|
||||
"Leaderboard": "An Clár Ceannairí",
|
||||
"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}}/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}}/api/tags\" endpoint": "",
|
||||
"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 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.",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Bainistigh Naisc API Ollama",
|
||||
"Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI",
|
||||
"Manage Pipelines": "Bainistigh píblín",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Márta",
|
||||
"Max Tokens (num_predict)": "Comharthaí Uasta (num_predicate)",
|
||||
"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.",
|
||||
"Top K": "Barr K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Barr P",
|
||||
"Transformers": "Claochladáin",
|
||||
"Trouble accessing Ollama?": "Deacracht teacht ar Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Cad air a bhfuil tú ag obair?",
|
||||
"What’s New in": "Cad atá Nua i",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(ultima)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modelli }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} Chat",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Connessioni",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gestire le pipeline",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Marzo",
|
||||
"Max Tokens (num_predict)": "Numero massimo di gettoni (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemi di accesso a Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Novità in",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(最新)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ モデル }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} のチャット",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "あなたのアクションの確認",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "接続",
|
||||
"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への接続について管理者に問い合わせ下さい。",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "URL を入力してください (例: http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "空欄なら無制限",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "カスタムプロンプトを入力。空欄ならデフォルトプロンプト",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "パイプラインの管理",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "3月",
|
||||
"Max Tokens (num_predict)": "最大トークン数 (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "トップ K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "トップ P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "新機能",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(უახლესი)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ მოდელები }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} პასუხი",
|
||||
"{{user}}'s Chats": "{{user}}-ის ჩათები",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "კავშირები",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "შეიყვანეთ ბმული (მაგ: http://localhost:11434)",
|
||||
"Enter your current password": "შეიყვანეთ თქვენი მიმდინარე პაროლი",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "ლიდერების დაფა",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "მილსადენების მართვა",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "მარტი",
|
||||
"Max Tokens (num_predict)": "მაქს. ტოკეტები (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "ტოპ K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "ტოპ P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "რა არის ახალი",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(최근)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}의 채팅",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "액션 확인",
|
||||
"Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "연결",
|
||||
"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 접속을 위해서는 관리자에게 연락에 연락하십시오",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "URL 입력(예: http://localhost:11434)",
|
||||
"Enter your current password": "현재 비밀번호를 입력해 주세요",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "리더보드",
|
||||
"Leave empty for unlimited": "무제한을 위해 빈칸으로 남겨두세요",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "특정 모델을 선택하거나 모든 모델을 포함하고 싶으면 빈칸으로 남겨두세요",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "기본 프롬프트를 사용하기 위해 빈칸으로 남겨두거나, 커스텀 프롬프트를 입력하세요",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Ollama API 연결 관리",
|
||||
"Manage OpenAI API Connections": "OpenAI API 연결 관리",
|
||||
"Manage Pipelines": "파이프라인 관리",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "3월",
|
||||
"Max Tokens (num_predict)": "최대 토큰(num_predict)",
|
||||
"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.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "올라마(Ollama)에 접근하는 데 문제가 있나요?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"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}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "무엇을 성취하고 싶으신가요?",
|
||||
"What are you working on?": "어떤 작업을 하고 계신가요?",
|
||||
"What’s New in": "새로운 기능:",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(naujausias)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} susirašinėjimai",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Patvirtinkite veiksmą",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Ryšiai",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Tvarkyti procesus",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Kovas",
|
||||
"Max Tokens (num_predict)": "Maksimalus žetonų kiekis (num_predict)",
|
||||
"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ą",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemos prieinant prie Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Kas naujo",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(terkini)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Perbualan {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Sahkan tindakan anda",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Sambungan",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Masukkan URL (cth http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Urus 'Pipelines'",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Mac",
|
||||
"Max Tokens (num_predict)": "Token Maksimum ( num_predict )",
|
||||
"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.",
|
||||
"Top K": "'Top K'",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "'Top P'",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Masalah mengakses Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Apakah yang terbaru dalam",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(siste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} svar",
|
||||
"{{user}}'s Chats": "{{user}} sine samtaler",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Bekreft handlingen",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Tilkoblinger",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "Angi tidsavbrudd i sekunder",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)",
|
||||
"Enter your current password": "Angi det gjeldende passordet ditt",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP-server oppdatert",
|
||||
"Leaderboard": "Ledertavle",
|
||||
"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}}/models\" endpoint": "La stå tomt for å inkludere alle modeller fra endepunktet \"{{URL}}/api/models\"",
|
||||
"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 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 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 OpenAI API Connections": "Behandle API-tilkoblinger for OpenAPI",
|
||||
"Manage Pipelines": "Behandle pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "mars",
|
||||
"Max Tokens (num_predict)": "Maks antall tokener (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformatorer",
|
||||
"Trouble accessing Ollama?": "Problemer med å koble til Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Hva jobber du på nå?",
|
||||
"What’s New in": "Hva er nytt i",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(nieuwste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modellen }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}'s chats",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Bevestig uw actie",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Verbindingen",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP-server bijgewerkt",
|
||||
"Leaderboard": "Klassement",
|
||||
"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}}/models\" endpoint": "Laat leeg om alle modellen van het \"{{URL}}/models\" 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": "",
|
||||
"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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Beheer Ollama API-verbindingen",
|
||||
"Manage OpenAI API Connections": "Beheer OpenAI API-verbindingen",
|
||||
"Manage Pipelines": "Pijplijnen beheren",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Maart",
|
||||
"Max Tokens (num_predict)": "Max Tokens (num_predict)",
|
||||
"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",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemen met toegang tot Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"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}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "Wat probeer je te bereiken?",
|
||||
"What are you working on?": "Waar werk je aan?",
|
||||
"What’s New in": "Wat is nieuw in",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(ਤਾਜ਼ਾ)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ ਮਾਡਲ }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "ਕਨੈਕਸ਼ਨ",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "ਮਾਰਚ",
|
||||
"Max Tokens (num_predict)": "ਮੈਕਸ ਟੋਕਨ (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "ਸਿਖਰ K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "ਸਿਖਰ P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(najnowszy)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
|
||||
"{{user}}'s Chats": "Czaty użytkownika {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Potwierdź swoją akcję",
|
||||
"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 OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Połączenia",
|
||||
"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.",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)",
|
||||
"Enter your current password": "Wprowadź swoje aktualne hasło",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Serwer LDAP został zaktualizowany",
|
||||
"Leaderboard": "Tablica wyników",
|
||||
"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}}/models\" endpoint": "Pozostaw puste, aby uwzględnić wszystkie modele z endpointu \"{{URL}}/models\"",
|
||||
"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 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 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 OpenAI API Connections": "Zarządzaj połączeniami z API OpenAI",
|
||||
"Manage Pipelines": "Zarządzanie przepływem",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Marzec",
|
||||
"Max Tokens (num_predict)": "Maksymalna liczba tokenów (num_predict)",
|
||||
"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 wykonanie dowolnego kodu.",
|
||||
"Top K": "Najlepsze K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Najlepsze P",
|
||||
"Transformers": "Transformery",
|
||||
"Trouble accessing Ollama?": "Czy masz problemy z dostępem do Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Nad czym pracujesz?",
|
||||
"What’s New in": "Co nowego w",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(último)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Chats de {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirme sua ação",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Conexões",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Servidor LDAP atualizado",
|
||||
"Leaderboard": "Tabela de classificação",
|
||||
"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}}/models\" endpoint": "Deixe vazio para incluir todos os modelos do endpoint \"{{URL}}/models\"",
|
||||
"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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Gerenciar Conexões Ollama API",
|
||||
"Manage OpenAI API Connections": "Gerenciar Conexões OpenAI API",
|
||||
"Manage Pipelines": "Gerenciar Pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Março",
|
||||
"Max Tokens (num_predict)": "Máximo de Tokens (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "No que está trabalhando?",
|
||||
"What’s New in": "O que há de novo em",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(mais recente)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modelos }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}'s Chats",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Conexões",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gerir pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Março",
|
||||
"Max Tokens (num_predict)": "Máx Tokens (num_predict)",
|
||||
"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.": "",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problemas a aceder ao Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "O que há de novo em",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(ultimul)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "Conversațiile lui {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Confirmă acțiunea ta",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Conexiuni",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "Tabel de clasament",
|
||||
"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}}/models\" 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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gestionează Conductele",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Martie",
|
||||
"Max Tokens (num_predict)": "Număr Maxim de Tokeni (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Probleme la accesarea Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Ce e Nou în",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(последняя)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Ответов",
|
||||
"{{user}}'s Chats": "Чаты {{user}}'а",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Подтвердите свое действие",
|
||||
"Confirm your new password": "Подтвердите свой новый пароль",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "Подключитесь к своим собственным энд-поинтам API, совместимым с OpenAI.",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Соединение",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "Введите время ожидания в секундах",
|
||||
"Enter to Send": "Enter для отправки",
|
||||
"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://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)",
|
||||
"Enter your current password": "Введите ваш текущий пароль",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP сервер обновлен",
|
||||
"Leaderboard": "Таблица Лидеров",
|
||||
"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}}/models\" endpoint": "Оставьте пустым, чтобы включить все модели из энд-поинта \"{{URL}}/models\"",
|
||||
"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 or select specific models": "Оставьте поле пустым, чтобы включить все модели или выбрать конкретные модели",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Оставьте пустым, чтобы использовать промпт по умолчанию, или введите пользовательский промпт",
|
||||
"Leave model field empty to use the default model.": "Оставьте поле model пустым, чтобы использовать модель по умолчанию.",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Управление соединениями API Ollama",
|
||||
"Manage OpenAI API Connections": "Управление соединениями API OpenAI",
|
||||
"Manage Pipelines": "Управление конвейерами",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Март",
|
||||
"Max Tokens (num_predict)": "Максимальное количество токенов (num_predict)",
|
||||
"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.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Проблемы с доступом к Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"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}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "Чего вы пытаетесь достичь?",
|
||||
"What are you working on?": "Над чем вы работаете?",
|
||||
"What’s New in": "Что нового в",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "Najnovšie",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{user}}'s konverzácie",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Potvrďte svoju akciu",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Pripojenia",
|
||||
"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.",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "Rebríček",
|
||||
"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}}/models\" 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 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 model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Správa pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Marec",
|
||||
"Max Tokens (num_predict)": "Maximálny počet tokenov (num_predict)",
|
||||
"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 spúšťanie ľubovoľného kódu.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Máte problémy s prístupom k Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Čo je nové v",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(најновије)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} одговора",
|
||||
"{{user}}'s Chats": "Ћаскања корисника {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Потврди радњу",
|
||||
"Confirm your new password": "Потврди нову лозинку",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Везе",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "ЛДАП сервер измењен",
|
||||
"Leaderboard": "Ранг листа",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Управљај Ollama АПИ везама",
|
||||
"Manage OpenAI API Connections": "Управљај OpenAI АПИ везама",
|
||||
"Manage Pipelines": "Управљање цевоводима",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Март",
|
||||
"Max Tokens (num_predict)": "Маx Токенс (нум_предицт)",
|
||||
"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.": "",
|
||||
"Top K": "Топ К",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Топ П",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "WebUI адреса",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Шта је ново у",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(senaste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Svar",
|
||||
"{{user}}'s Chats": "{{user}}s Chats",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Bekräfta åtgärd",
|
||||
"Confirm your new password": "Bekräfta ditt nya lösenord",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Anslutningar",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Hantera rörledningar",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "mars",
|
||||
"Max Tokens (num_predict)": "Maximalt antal tokens (num_predict)",
|
||||
"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",
|
||||
"Top K": "Topp K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Topp P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Problem med att komma åt Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "Var arbetar du med?",
|
||||
"What’s New in": "Vad är nytt i",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(ล่าสุด)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "การสนทนาของ {{user}}",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "ยืนยันการดำเนินการของคุณ",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "การเชื่อมต่อ",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "จัดการไปป์ไลน์",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "มีนาคม",
|
||||
"Max Tokens (num_predict)": "โทเค็นสูงสุด (num_predict)",
|
||||
"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.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "มีอะไรใหม่ใน",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"Enter Top K": "",
|
||||
"Enter Top K Reranker": "",
|
||||
"Enter URL (e.g. http://127.0.0.1:7860/)": "",
|
||||
"Enter URL (e.g. http://localhost:11434)": "",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Max Tokens (num_predict)": "",
|
||||
"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.": "",
|
||||
"Top K": "",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(en son)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Yanıt",
|
||||
"{{user}}'s Chats": "{{user}}'ın Sohbetleri",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "İşleminizi onaylayın",
|
||||
"Confirm your new password": "Yeni parolanızı onaylayın",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Bağlantılar",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)",
|
||||
"Enter your current password": "Mevcut parolanızı girin",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP sunucusu güncellendi",
|
||||
"Leaderboard": "Liderlik Tablosu",
|
||||
"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}}/models\" 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 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 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 OpenAI API Connections": "OpenAI API Bağlantılarını Yönet",
|
||||
"Manage Pipelines": "Pipelineları Yönet",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Mart",
|
||||
"Max Tokens (num_predict)": "Maksimum Token (num_predict)",
|
||||
"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.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Dönüştürücüler",
|
||||
"Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"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}}/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 working on?": "Üzerinde çalıştığınız nedir?",
|
||||
"What’s New in": "Yenilikler:",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(остання)",
|
||||
"(Ollama)": "(Ollama)",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Відповіді",
|
||||
"{{user}}'s Chats": "Чати {{user}}а",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "Підтвердіть свою дію",
|
||||
"Confirm your new password": "Підтвердіть свій новий пароль",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "Підключіться до своїх власних API-ендпоінтів, сумісних з OpenAI.",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "З'єднання",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "Введіть тайм-аут у секундах",
|
||||
"Enter to Send": "Введіть для відправки",
|
||||
"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://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)",
|
||||
"Enter your current password": "Введіть ваш поточний пароль",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "Сервер LDAP оновлено",
|
||||
"Leaderboard": "Таблиця лідерів",
|
||||
"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}}/models\" endpoint": "Залиште порожнім, щоб включити усі моделі з кінцевої точки \"{{URL}}/models\"",
|
||||
"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 or select specific models": "Залиште порожнім, щоб включити усі моделі, або виберіть конкретні моделі.",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит",
|
||||
"Leave model field empty to use the default model.": "Залиште поле моделі порожнім, щоб використовувати модель за замовчуванням.",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "Керувати з'єднаннями Ollama API",
|
||||
"Manage OpenAI API Connections": "Керувати з'єднаннями OpenAI API",
|
||||
"Manage Pipelines": "Керування конвеєрами",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Березень",
|
||||
"Max Tokens (num_predict)": "Макс токенів (num_predict)",
|
||||
"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.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Трансформери",
|
||||
"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}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"",
|
||||
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "Чого ви прагнете досягти?",
|
||||
"What are you working on?": "Над чим ти працюєш?",
|
||||
"What’s New in": "Що нового в",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(تازہ ترین)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ ماڈلز }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{user}}'s Chats": "{{ صارف }} کی بات چیت",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "اپنی کارروائی کی تصدیق کریں",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "کنکشنز",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
|
||||
"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "لیڈر بورڈ",
|
||||
"Leave empty for unlimited": "لامحدود کے لیے خالی چھوڑیں",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "تمام ماڈلز کو شامل کرنے کے لئے خالی چھوڑ دیں یا مخصوص ماڈلز منتخب کریں",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "خالی چھوڑیں تاکہ ڈیفالٹ پرامپٹ استعمال ہو، یا ایک حسب ضرورت پرامپٹ درج کریں",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "پائپ لائنز کا نظم کریں",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "مارچ",
|
||||
"Max Tokens (num_predict)": "زیادہ سے زیادہ ٹوکنز (num_predict)",
|
||||
"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.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
|
||||
"Top K": "اوپر کے K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "ٹاپ پی",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Ollama تک رسائی میں مشکل؟",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "میں نیا کیا ہے",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(mới nhất)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mô hình }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{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 new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "Kết nối",
|
||||
"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",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "",
|
||||
"Enter to Send": "",
|
||||
"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://localhost:11434)": "Nhập URL (vd: http://localhost:11434)",
|
||||
"Enter your current password": "",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "",
|
||||
"Leaderboard": "",
|
||||
"Leave empty for unlimited": "",
|
||||
"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}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
|
||||
"Leave empty to include all models or select specific models": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "",
|
||||
"Leave model field empty to use the default model.": "",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Quản lý Pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "Tháng 3",
|
||||
"Max Tokens (num_predict)": "Tokens tối đa (num_predict)",
|
||||
"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 ý.",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?",
|
||||
@ -1155,6 +1160,7 @@
|
||||
"WebUI URL": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"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 working on?": "",
|
||||
"What’s New in": "Thông tin mới về",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(最新版)",
|
||||
"(Ollama)": "(Ollama)",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回复",
|
||||
"{{user}}'s Chats": "{{user}} 的对话记录",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "确定吗?",
|
||||
"Confirm your new password": "确认新密码",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "连接到你自己的与 OpenAI 兼容的 API 接口端点。",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "外部连接",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "约束推理模型的推理努力程度。仅适用于支持推理努力控制的特定提供商的推理模型。",
|
||||
"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "输入以秒为单位的超时时间",
|
||||
"Enter to Send": "Enter 键发送",
|
||||
"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://localhost:11434)": "输入地址 (例如:http://localhost:11434)",
|
||||
"Enter your current password": "输入当前密码",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP 服务器已更新",
|
||||
"Leaderboard": "排行榜",
|
||||
"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}}/models\" endpoint": "留空表示包含所有来自 \"{{URL}}/models\" 的模型",
|
||||
"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 or select specific models": "留空表示包含所有模型或请选择模型",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词。",
|
||||
"Leave model field empty to use the default model.": "将模型字段留空以使用默认模型。",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "管理Ollama API连接",
|
||||
"Manage OpenAI API Connections": "管理OpenAI API连接",
|
||||
"Manage Pipelines": "管理 Pipeline",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "三月",
|
||||
"Max Tokens (num_predict)": "最大Token数量 (num_predict)",
|
||||
"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.": "注意:工具有权执行任意代码。",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"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}}/chat/completions\"": "WebUI 将向 \"{{url}}/chat/completions\" 发出请求",
|
||||
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "你想要达到什么目标?",
|
||||
"What are you working on?": "你在忙于什么?",
|
||||
"What’s New in": "最近更新内容于",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"(latest)": "(最新版)",
|
||||
"(Ollama)": "(Ollama)",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tool Servers": "",
|
||||
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回覆",
|
||||
"{{user}}'s Chats": "{{user}} 的對話",
|
||||
@ -215,6 +216,7 @@
|
||||
"Confirm your action": "確認您的操作",
|
||||
"Confirm your new password": "確認您的新密碼",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "連線到您自己的 OpenAI 相容 API 端點。",
|
||||
"Connect to your own OpenAPI compatible external tool servers.": "",
|
||||
"Connections": "連線",
|
||||
"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 存取權限",
|
||||
@ -437,6 +439,7 @@
|
||||
"Enter timeout in seconds": "請以秒為單位輸入超時時間",
|
||||
"Enter to Send": "使用 Enter 傳送",
|
||||
"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://localhost:11434)": "輸入 URL(例如:http://localhost:11434)",
|
||||
"Enter your current password": "輸入您的目前密碼",
|
||||
@ -634,8 +637,8 @@
|
||||
"LDAP server updated": "LDAP 伺服器已更新",
|
||||
"Leaderboard": "排行榜",
|
||||
"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}}/models\" endpoint": "留空以包含來自 \"{{URL}}/models\" 端點的所有模型",
|
||||
"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 or select specific models": "留空以包含所有模型或選擇特定模型",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞",
|
||||
"Leave model field empty to use the default model.": "留空模型欄位以使用預設模型。",
|
||||
@ -662,6 +665,7 @@
|
||||
"Manage Ollama API Connections": "管理 Ollama API 連線",
|
||||
"Manage OpenAI API Connections": "管理 OpenAI API 連線",
|
||||
"Manage Pipelines": "管理管線",
|
||||
"Manage Tool Servers": "",
|
||||
"March": "3 月",
|
||||
"Max Tokens (num_predict)": "最大 token 數(num_predict)",
|
||||
"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.": "工具具有允許執行任意程式碼的函式呼叫系統。",
|
||||
"Top K": "Top K",
|
||||
"Top K Reranker": "",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "Transformers",
|
||||
"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}}/chat/completions\"": "WebUI 將向 \"{{url}}/chat/completions\" 傳送請求",
|
||||
"WebUI will make requests to \"{{url}}/openapi.json\"": "",
|
||||
"What are you trying to achieve?": "您正在試圖完成什麼?",
|
||||
"What are you working on?": "您現在的工作是什麼?",
|
||||
"What’s New in": "新功能",
|
||||
|
Loading…
x
Reference in New Issue
Block a user