mirror of
https://github.com/open-webui/open-webui.git
synced 2025-03-27 02:02:31 +01:00
chore: format
This commit is contained in:
parent
83e5db7be7
commit
5626426c31
@ -9,6 +9,7 @@ from open_webui.env import SRC_LOG_LEVELS
|
||||
log = logging.getLogger(__name__)
|
||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||
|
||||
|
||||
def _parse_response(response):
|
||||
result = {}
|
||||
if "data" in response:
|
||||
@ -25,7 +26,8 @@ def _parse_response(response):
|
||||
"summary": item.get("summary", ""),
|
||||
"siteName": item.get("siteName", ""),
|
||||
"siteIcon": item.get("siteIcon", ""),
|
||||
"datePublished": item.get("datePublished", "") or item.get("dateLastCrawled", ""),
|
||||
"datePublished": item.get("datePublished", "")
|
||||
or item.get("dateLastCrawled", ""),
|
||||
}
|
||||
for item in webPages["value"]
|
||||
]
|
||||
@ -42,17 +44,11 @@ def search_bocha(
|
||||
query (str): The query to search for
|
||||
"""
|
||||
url = "https://api.bochaai.com/v1/web-search?utm_source=ollama"
|
||||
headers = {
|
||||
"Authorization": f"Bearer {api_key}",
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
|
||||
payload = json.dumps({
|
||||
"query": query,
|
||||
"summary": True,
|
||||
"freshness": "noLimit",
|
||||
"count": count
|
||||
})
|
||||
headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
|
||||
|
||||
payload = json.dumps(
|
||||
{"query": query, "summary": True, "freshness": "noLimit", "count": count}
|
||||
)
|
||||
|
||||
response = requests.post(url, headers=headers, data=payload, timeout=5)
|
||||
response.raise_for_status()
|
||||
@ -63,10 +59,7 @@ def search_bocha(
|
||||
|
||||
return [
|
||||
SearchResult(
|
||||
link=result["url"],
|
||||
title=result.get("name"),
|
||||
snippet=result.get("summary")
|
||||
link=result["url"], title=result.get("name"), snippet=result.get("summary")
|
||||
)
|
||||
for result in results.get("webpage", [])[:count]
|
||||
for result in results.get("webpage", [])[:count]
|
||||
]
|
||||
|
||||
|
@ -8,6 +8,7 @@ from open_webui.env import SRC_LOG_LEVELS
|
||||
log = logging.getLogger(__name__)
|
||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||
|
||||
|
||||
def search_google_pse(
|
||||
api_key: str,
|
||||
search_engine_id: str,
|
||||
@ -46,12 +47,14 @@ def search_google_pse(
|
||||
response.raise_for_status()
|
||||
json_response = response.json()
|
||||
results = json_response.get("items", [])
|
||||
if results: # check if results are returned. If not, no more pages to fetch.
|
||||
if results: # check if results are returned. If not, no more pages to fetch.
|
||||
all_results.extend(results)
|
||||
count -= len(results) # Decrement count by the number of results fetched in this page.
|
||||
start_index += 10 # Increment start index for the next page
|
||||
count -= len(
|
||||
results
|
||||
) # Decrement count by the number of results fetched in this page.
|
||||
start_index += 10 # Increment start index for the next page
|
||||
else:
|
||||
break # No more results from Google PSE, break the loop
|
||||
break # No more results from Google PSE, break the loop
|
||||
|
||||
if filter_list:
|
||||
all_results = get_filtered_results(all_results, filter_list)
|
||||
|
@ -725,10 +725,12 @@
|
||||
sourceButton.click();
|
||||
} else if (sourcesCollapsible) {
|
||||
// Open sources collapsible so we can click the source button
|
||||
sourcesCollapsible.querySelector("div:first-child").dispatchEvent(new PointerEvent('pointerup', {}))
|
||||
sourcesCollapsible
|
||||
.querySelector('div:first-child')
|
||||
.dispatchEvent(new PointerEvent('pointerup', {}));
|
||||
|
||||
// Wait for next frame to ensure DOM updates
|
||||
await new Promise(resolve => {
|
||||
await new Promise((resolve) => {
|
||||
requestAnimationFrame(() => {
|
||||
requestAnimationFrame(resolve);
|
||||
});
|
||||
|
@ -128,6 +128,10 @@
|
||||
<div class="my-1.5">
|
||||
<div class="text-xs text-gray-500">
|
||||
{$i18n.t('Connect to your own OpenAI compatible API endpoints.')}
|
||||
<br />
|
||||
{$i18n.t(
|
||||
'Ensure that CORS is properly configured to allow requests from Open WebUI.'
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -47,7 +47,7 @@
|
||||
export let hide = false;
|
||||
</script>
|
||||
|
||||
<div id={id} class={className}>
|
||||
<div {id} class={className}>
|
||||
{#if title !== null}
|
||||
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "مجموعة",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "تأكيد كلمة المرور",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "اتصالات",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "وصف",
|
||||
"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "اكتشف نموذجا",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "تمكين مشاركة المجتمع",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "تمكين بحث الويب",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
|
||||
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "أدخل مفتاح واجهة برمجة تطبيقات البحث الشجاع",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
|
||||
"Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "أدخل كود اللغة",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "معاينة JSON",
|
||||
"July": "يوليو",
|
||||
"June": "يونيو",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT تجريبي",
|
||||
"JWT Token": "JWT Token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "نص عادي (.txt)",
|
||||
"Playground": "مكان التجربة",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "حدد مسارا",
|
||||
"Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Смел ключ за API за търсене",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Колекция",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Потвърди Парола",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Връзки",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Описание",
|
||||
"Didn't fully follow instructions": "Не следва инструкциите",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Открийте модел",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Разрешаване на споделяне в общност",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Разрешаване на търсене в уеб",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
|
||||
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да се herinnerат вашите LLMs",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Въведете Brave Search API ключ",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Въведете идентификатор на двигателя на Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Въведете кодове на езика",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON Преглед",
|
||||
"July": "Июл",
|
||||
"June": "Июн",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Expiration",
|
||||
"JWT Token": "JWT Token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Plain text (.txt)",
|
||||
"Playground": "Плейграунд",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Изберете тръбопровод",
|
||||
"Select a pipeline url": "Избор на URL адрес на канал",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "সংগ্রহ",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "কানেকশনগুলো",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "বিবরণ",
|
||||
"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "একটি মডেল আবিষ্কার করুন",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
|
||||
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
|
||||
"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "সাহসী অনুসন্ধান API কী লিখুন",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি লিখুন",
|
||||
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "ল্যাঙ্গুয়েজ কোড লিখুন",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON প্রিভিউ",
|
||||
"July": "জুলাই",
|
||||
"June": "জুন",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-র মেয়াদ",
|
||||
"JWT Token": "JWT টোকেন",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
|
||||
"Playground": "খেলাঘর",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "একটি পাইপলাইন নির্বাচন করুন",
|
||||
"Select a pipeline url": "একটি পাইপলাইন URL নির্বাচন করুন",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Clau API de Brave Search",
|
||||
"By {{name}}": "Per {{name}}",
|
||||
"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Execució de codi",
|
||||
"Code formatted successfully": "Codi formatat correctament",
|
||||
"Code Interpreter": "Intèrpret de codi",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Col·lecció",
|
||||
"Color": "Color",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmar la contrasenya",
|
||||
"Confirm your action": "Confirma la teva acció",
|
||||
"Confirm your new password": "Confirma la teva nova contrasenya",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "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. (Per defecte: mitjà)",
|
||||
"Contact Admin for WebUI Access": "Posat en contacte amb l'administrador per accedir a WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius",
|
||||
"Description": "Descripció",
|
||||
"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Deshabilitat",
|
||||
"Discover a function": "Descobrir una funció",
|
||||
"Discover a model": "Descobrir un model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
|
||||
"Enable API Key": "Activar la Clau API",
|
||||
"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
|
||||
"Enable Google Drive": "Activar Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Activar la cerca web",
|
||||
"Enabled": "Habilitat",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
|
||||
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Introdueix la contrasenya del DN d'aplicació",
|
||||
"Enter Bing Search V7 Endpoint": "Introdueix el punt de connexió de Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Introdueix la clau de subscripció de Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Introdueix la clau API de Brave Search",
|
||||
"Enter certificate path": "Introdueix el camí del certificat",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Entra l'escala CFG (p.ex. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google",
|
||||
"Enter Image Size (e.g. 512x512)": "Introdueix la mida de la imatge (p. ex. 512x512)",
|
||||
"Enter Jina API Key": "Introdueix la clau API de Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Introdueix la clau API de Kagi Search",
|
||||
"Enter language codes": "Introdueix els codis de llenguatge",
|
||||
"Enter Model ID": "Introdueix l'identificador del model",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Vista prèvia del document JSON",
|
||||
"July": "Juliol",
|
||||
"June": "Juny",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Caducitat del JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "Clau API de Kagi Search",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Escoltant...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Local",
|
||||
"Local Models": "Models locals",
|
||||
"Lost": "Perdut",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Arena Models": "Gestionar els models de l'Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Gestionar els models",
|
||||
"Manage Ollama": "Gestionar Ollama",
|
||||
"Manage Ollama API Connections": "Gestionar les connexions a l'API d'Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Text pla (.txt)",
|
||||
"Playground": "Zona de jocs",
|
||||
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Si us plau, entra una indicació",
|
||||
"Please fill in all fields.": "Emplena tots els camps, si us plau.",
|
||||
"Please select a model first.": "Si us plau, selecciona un model primer",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Seleccionar una Pipeline",
|
||||
"Select a pipeline url": "Seleccionar l'URL d'una Pipeline",
|
||||
"Select a tool": "Seleccionar una eina",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Seleccionar una instància d'Ollama",
|
||||
"Select Engine": "Seleccionar el motor",
|
||||
"Select Knowledge": "Seleccionar coneixement",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Koleksyon",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Kumpirma ang password",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Mga koneksyon",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Deskripsyon",
|
||||
"Didn't fully follow instructions": "",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
|
||||
"Enter a detail about yourself for your LLMs to recall": "",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Pagsulod sa gidak-on sa hulagway (pananglitan 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "",
|
||||
"July": "",
|
||||
"June": "",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Pag-expire sa JWT",
|
||||
"JWT Token": "JWT token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "",
|
||||
"Playground": "Dulaanan",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "",
|
||||
"Select a pipeline url": "",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Klíč API pro Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Obcházení ověření SSL pro webové stránky",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Provádění kódu",
|
||||
"Code formatted successfully": "Kód byl úspěšně naformátován.",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "",
|
||||
"Color": "Barva",
|
||||
"ComfyUI": "ComfyUI.",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Potvrzení hesla",
|
||||
"Confirm your action": "Potvrďte svoji akci",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Připojení",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Popis",
|
||||
"Didn't fully follow instructions": "Nenásledovali jste přesně všechny instrukce.",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Zakázáno",
|
||||
"Discover a function": "Objevit funkci",
|
||||
"Discover a model": "Objevte model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Povolit sdílení komunity",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Povolit webové vyhledávání",
|
||||
"Enabled": "Povoleno",
|
||||
"Engine": "Engine",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Zadejte API klíč pro Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Zadejte měřítko CFG (např. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Zadejte ID vyhledávacího mechanismu Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Zadejte kódy jazyků",
|
||||
"Enter Model ID": "Zadejte ID modelu",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Náhled JSON",
|
||||
"July": "Červenec",
|
||||
"June": "červen",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Vypršení JWT",
|
||||
"JWT Token": "JWT Token (JSON Web Token)",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Poslouchání...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokální modely",
|
||||
"Lost": "Ztracený",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
|
||||
"Manage": "Spravovat",
|
||||
"Manage Arena Models": "Správa modelů v Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Čistý text (.txt)",
|
||||
"Playground": "",
|
||||
"Please carefully review the following warnings:": "Prosím, pečlivě si přečtěte následující upozornění:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Prosím, zadejte zadání.",
|
||||
"Please fill in all fields.": "Prosím, vyplňte všechna pole.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Vyberte pipeline",
|
||||
"Select a pipeline url": "Vyberte URL adresu kanálu",
|
||||
"Select a tool": "Vyberte nástroj",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Vyberte engine",
|
||||
"Select Knowledge": "Vybrat znalosti",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API nøgle",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Forbigå SSL verifikation på websider",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kode formateret korrekt",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Bekræft password",
|
||||
"Confirm your action": "Bekræft din handling",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Forbindelser",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Beskrivelse",
|
||||
"Didn't fully follow instructions": "Fulgte ikke instruktioner",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Inaktiv",
|
||||
"Discover a function": "Find en funktion",
|
||||
"Discover a model": "Find en model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktiver deling til Community",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Aktiver websøgning",
|
||||
"Enabled": "Aktiveret",
|
||||
"Engine": "engine",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Indtast {{role}} besked her",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Indtast Brave Search API-nøgle",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Indtast CFG-skala (f.eks. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Indtast Google PSE Engine ID",
|
||||
"Enter Image Size (e.g. 512x512)": "Indtast billedstørrelse (f.eks. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Indtast sprogkoder",
|
||||
"Enter Model ID": "Indtast model-ID",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON-forhåndsvisning",
|
||||
"July": "Juli",
|
||||
"June": "Juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-udløb",
|
||||
"JWT Token": "JWT-token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Lytter...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokale modeller",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
|
||||
"Manage": "Administrer",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Almindelig tekst (.txt)",
|
||||
"Playground": "Legeplads",
|
||||
"Please carefully review the following warnings:": "Gennemgå omhyggeligt følgende advarsler:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "Udfyld alle felter.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Vælg en pipeline",
|
||||
"Select a pipeline url": "Vælg en pipeline-URL",
|
||||
"Select a tool": "Vælg et værktøj",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Vælg engine",
|
||||
"Select Knowledge": "Vælg viden",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API-Schlüssel",
|
||||
"By {{name}}": "Von {{name}}",
|
||||
"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Codeausführung",
|
||||
"Code formatted successfully": "Code erfolgreich formatiert",
|
||||
"Code Interpreter": "Code-Interpreter",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Kollektion",
|
||||
"Color": "Farbe",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Passwort bestätigen",
|
||||
"Confirm your action": "Bestätigen Sie Ihre Aktion.",
|
||||
"Confirm your new password": "Neues Passwort bestätigen",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Verbindungen",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Beschränkt den Aufwand für das Schlussfolgern bei Schlussfolgerungsmodellen. Nur anwendbar auf Schlussfolgerungsmodelle von spezifischen Anbietern, die den Schlussfolgerungsaufwand unterstützen. (Standard: medium)",
|
||||
"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Beschreibe deinen Wissensspeicher und deine Ziele",
|
||||
"Description": "Beschreibung",
|
||||
"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Deaktiviert",
|
||||
"Discover a function": "Entdecken Sie weitere Funktionen",
|
||||
"Discover a model": "Entdecken Sie weitere Modelle",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
|
||||
"Enable API Key": "API-Schlüssel aktivieren",
|
||||
"Enable autocomplete generation for chat messages": "Automatische Vervollständigung für Chat-Nachrichten aktivieren",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Community-Freigabe aktivieren",
|
||||
"Enable Google Drive": "Google Drive aktivieren",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Aktiviere Memory Locking (mlock), um zu verhindern, dass Modelldaten aus dem RAM ausgelagert werden. Diese Option sperrt die Arbeitsseiten des Modells im RAM, um sicherzustellen, dass sie nicht auf die Festplatte ausgelagert werden. Dies kann die Leistung verbessern, indem Page Faults vermieden und ein schneller Datenzugriff sichergestellt werden.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Websuche aktivieren",
|
||||
"Enabled": "Aktiviert",
|
||||
"Engine": "Engine",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
|
||||
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Geben Sie das Anwendungs-DN-Passwort ein",
|
||||
"Enter Bing Search V7 Endpoint": "Geben Sie den Bing Search V7-Endpunkt ein",
|
||||
"Enter Bing Search V7 Subscription Key": "Geben Sie den Bing Search V7-Abonnement-Schlüssel ein",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Geben Sie den Brave Search API-Schlüssel ein",
|
||||
"Enter certificate path": "Geben Sie den Zertifikatpfad ein",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Geben Sie die CFG-Skala ein (z. B. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Geben Sie die Google PSE-Engine-ID ein",
|
||||
"Enter Image Size (e.g. 512x512)": "Geben Sie die Bildgröße ein (z. B. 512x512)",
|
||||
"Enter Jina API Key": "Geben Sie den Jina-API-Schlüssel ein",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Geben sie den Kagi Search API-Schlüssel ein",
|
||||
"Enter language codes": "Geben Sie die Sprachcodes ein",
|
||||
"Enter Model ID": "Geben Sie die Modell-ID ein",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON-Vorschau",
|
||||
"July": "Juli",
|
||||
"June": "Juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-Ablauf",
|
||||
"JWT Token": "JWT-Token",
|
||||
"Kagi Search API Key": "Kagi Search API-Schlüssel",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Höre zu...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Lokal",
|
||||
"Local Models": "Lokale Modelle",
|
||||
"Lost": "Verloren",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
|
||||
"Manage": "Verwalten",
|
||||
"Manage Arena Models": "Arena-Modelle verwalten",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Modelle verwalten",
|
||||
"Manage Ollama": "Ollama verwalten",
|
||||
"Manage Ollama API Connections": "Ollama-API-Verbindungen verwalten",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Nur Text (.txt)",
|
||||
"Playground": "Testumgebung",
|
||||
"Please carefully review the following warnings:": "Bitte überprüfen Sie die folgenden Warnungen sorgfältig:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
|
||||
"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
|
||||
"Please select a model first.": "Bitte wählen Sie zuerst ein Modell aus.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Wählen Sie eine Pipeline",
|
||||
"Select a pipeline url": "Wählen Sie eine Pipeline-URL",
|
||||
"Select a tool": "Wählen Sie ein Werkzeug",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Wählen Sie eine Ollama-Instanz",
|
||||
"Select Engine": "Engine auswählen",
|
||||
"Select Knowledge": "Wissensdatenbank auswählen",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirm Password",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Connections",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Description",
|
||||
"Didn't fully follow instructions": "",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||
"Enter {{role}} message here": "Enter {{role}} bork here",
|
||||
"Enter a detail about yourself for your LLMs to recall": "",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "",
|
||||
"July": "",
|
||||
"June": "",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Expire",
|
||||
"JWT Token": "JWT Borken",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Plain text (.txt)",
|
||||
"Playground": "Playground",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "",
|
||||
"Select a pipeline url": "",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Κλειδί API Brave Search",
|
||||
"By {{name}}": "Από {{name}}",
|
||||
"Bypass SSL verification for Websites": "Παράκαμψη επαλήθευσης SSL για Ιστότοπους",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Εκτέλεση κώδικα",
|
||||
"Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Συλλογή",
|
||||
"Color": "Χρώμα",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Επιβεβαίωση Κωδικού",
|
||||
"Confirm your action": "Επιβεβαιώστε την ενέργειά σας",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Συνδέσεις",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Περιγράψτε τη βάση γνώσης και τους στόχους σας",
|
||||
"Description": "Περιγραφή",
|
||||
"Didn't fully follow instructions": "Δεν ακολούθησε πλήρως τις οδηγίες",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Απενεργοποιημένο",
|
||||
"Discover a function": "Ανακάλυψη λειτουργίας",
|
||||
"Discover a model": "Ανακάλυψη μοντέλου",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Ενεργοποίηση Κλείδωσης Μνήμης (mlock) για την αποτροπή της ανταλλαγής δεδομένων του μοντέλου από τη μνήμη RAM. Αυτή η επιλογή κλειδώνει το σύνολο εργασίας των σελίδων του μοντέλου στη μνήμη RAM, διασφαλίζοντας ότι δεν θα ανταλλαχθούν στο δίσκο. Αυτό μπορεί να βοηθήσει στη διατήρηση της απόδοσης αποφεύγοντας σφάλματα σελίδων και διασφαλίζοντας γρήγορη πρόσβαση στα δεδομένα.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Ενεργοποίηση Αναζήτησης στο Διαδίκτυο",
|
||||
"Enabled": "Ενεργοποιημένο",
|
||||
"Engine": "Μηχανή",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
|
||||
"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Εισάγετε Κωδικό DN Εφαρμογής",
|
||||
"Enter Bing Search V7 Endpoint": "Εισάγετε το Τέλος Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Εισάγετε το Κλειδί Συνδρομής Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Εισάγετε το Κλειδί API Brave Search",
|
||||
"Enter certificate path": "Εισάγετε τη διαδρομή πιστοποιητικού",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Εισάγετε το CFG Scale (π.χ. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Εισάγετε το Αναγνωριστικό Μηχανής Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Εισάγετε το Μέγεθος Εικόνας (π.χ. 512x512)",
|
||||
"Enter Jina API Key": "Εισάγετε το Κλειδί API Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Εισάγετε κωδικούς γλώσσας",
|
||||
"Enter Model ID": "Εισάγετε το ID Μοντέλου",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Προεπισκόπηση JSON",
|
||||
"July": "Ιούλιος",
|
||||
"June": "Ιούνιος",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Λήξη JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Ακούγεται...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Τοπικό",
|
||||
"Local Models": "Τοπικά Μοντέλα",
|
||||
"Lost": "Χαμένος",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
|
||||
"Manage": "Διαχείριση",
|
||||
"Manage Arena Models": "Διαχείριση Μοντέλων Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Διαχείριση Ollama",
|
||||
"Manage Ollama API Connections": "Διαχείριση Συνδέσεων API Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Απλό κείμενο (.txt)",
|
||||
"Playground": "Γήπεδο παιχνιδιών",
|
||||
"Please carefully review the following warnings:": "Παρακαλώ αναθεωρήστε προσεκτικά τις ακόλουθες προειδοποιήσεις:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Παρακαλώ εισάγετε μια προτροπή",
|
||||
"Please fill in all fields.": "Παρακαλώ συμπληρώστε όλα τα πεδία.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Επιλέξτε ένα pipeline",
|
||||
"Select a pipeline url": "Επιλέξτε ένα pipeline url",
|
||||
"Select a tool": "Επιλέξτε ένα εργαλείο",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Επιλέξτε Μηχανή",
|
||||
"Select Knowledge": "Επιλέξτε Γνώση",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "",
|
||||
"Didn't fully follow instructions": "",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||
"Enter {{role}} message here": "",
|
||||
"Enter a detail about yourself for your LLMs to recall": "",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "",
|
||||
"July": "",
|
||||
"June": "",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "",
|
||||
"JWT Token": "",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "",
|
||||
"Playground": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "",
|
||||
"Select a pipeline url": "",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "",
|
||||
"Didn't fully follow instructions": "",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||
"Enter {{role}} message here": "",
|
||||
"Enter a detail about yourself for your LLMs to recall": "",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "",
|
||||
"July": "",
|
||||
"June": "",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "",
|
||||
"JWT Token": "",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "",
|
||||
"Playground": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "",
|
||||
"Select a pipeline url": "",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endpoint de Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clave de suscripción de Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Clave de API de Brave Search",
|
||||
"By {{name}}": "Por {{name}}",
|
||||
"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Ejecución de código",
|
||||
"Code formatted successfully": "Se ha formateado correctamente el código.",
|
||||
"Code Interpreter": "Interprete de Código",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Colección",
|
||||
"Color": "Color",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmar Contraseña",
|
||||
"Confirm your action": "Confirma tu acción",
|
||||
"Confirm your new password": "Confirmar tu nueva contraseña",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Conexiones",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": " Restringe el esfuerzo en la razonamiento para los modelos de razonamiento. Solo aplicable a los modelos de razonamiento de proveedores específicos que admiten el esfuerzo de razonamiento. (Por defecto: medio)",
|
||||
"Contact Admin for WebUI Access": "Contacta el administrador para obtener acceso al WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Describe tu base de conocimientos y objetivos",
|
||||
"Description": "Descripción",
|
||||
"Didn't fully follow instructions": "No siguió las instrucciones",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Desactivado",
|
||||
"Discover a function": "Descubre una función",
|
||||
"Discover a model": "Descubrir un modelo",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
|
||||
"Enable API Key": "Habilitar clave de API",
|
||||
"Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
|
||||
"Enable Google Drive": "Habilitar Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Habilitar bloqueo de memoria (mlock) para evitar que los datos del modelo se intercambien fuera de la RAM. Esta opción bloquea el conjunto de páginas de trabajo del modelo en la RAM, asegurando que no se intercambiarán fuera del disco. Esto puede ayudar a mantener el rendimiento evitando fallos de página y asegurando un acceso rápido a los datos.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Habilitar la búsqueda web",
|
||||
"Enabled": "Activado",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
|
||||
"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Ingrese la contraseña de la DN de la aplicación",
|
||||
"Enter Bing Search V7 Endpoint": "Ingrese el endpoint de Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Ingrese la clave de suscripción de Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Ingresa la clave de API de Brave Search",
|
||||
"Enter certificate path": "Ingrese la ruta del certificado",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Ingresa la escala de CFG (p.ej., 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Introduzca el ID del motor PSE de Google",
|
||||
"Enter Image Size (e.g. 512x512)": "Ingrese el tamaño de la imagen (p.ej. 512x512)",
|
||||
"Enter Jina API Key": "Ingrese la clave API de Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Ingrese la clave API de Kagi Search",
|
||||
"Enter language codes": "Ingrese códigos de idioma",
|
||||
"Enter Model ID": "Ingresa el ID del modelo",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Vista previa de JSON",
|
||||
"July": "Julio",
|
||||
"June": "Junio",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expiración del JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "Clave API de Kagi Search",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Escuchando...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Local",
|
||||
"Local Models": "Modelos locales",
|
||||
"Lost": "Perdido",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrese de exportar un archivo workflow.json en formato API desde ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Arena Models": "Gestionar modelos de Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Gestionar modelos",
|
||||
"Manage Ollama": "Gestionar Ollama",
|
||||
"Manage Ollama API Connections": "Gestionar conexiones API de Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Texto plano (.txt)",
|
||||
"Playground": "Patio de juegos",
|
||||
"Please carefully review the following warnings:": "Por favor revise con cuidado los siguientes avisos:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Por favor ingrese un prompt",
|
||||
"Please fill in all fields.": "Por favor llene todos los campos.",
|
||||
"Please select a model first.": "Por favor seleccione un modelo primero.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selección de una Pipeline",
|
||||
"Select a pipeline url": "Selección de una dirección URL de Pipeline",
|
||||
"Select a tool": "Busca una herramienta",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Seleccionar una instancia de Ollama",
|
||||
"Select Engine": "Selecciona Motor",
|
||||
"Select Knowledge": "Selecciona Conocimiento",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
|
||||
"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Bilaketa API Gakoa",
|
||||
"By {{name}}": "{{name}}-k",
|
||||
"Bypass SSL verification for Websites": "Saihestu SSL egiaztapena Webguneentzat",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Kodearen exekuzioa",
|
||||
"Code formatted successfully": "Kodea ongi formateatu da",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Bilduma",
|
||||
"Color": "Kolorea",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Berretsi Pasahitza",
|
||||
"Confirm your action": "Berretsi zure ekintza",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Konexioak",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Deskribatu zure ezagutza-basea eta helburuak",
|
||||
"Description": "Deskribapena",
|
||||
"Didn't fully follow instructions": "Ez ditu jarraibideak guztiz jarraitu",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Desgaituta",
|
||||
"Discover a function": "Aurkitu funtzio bat",
|
||||
"Discover a model": "Aurkitu eredu bat",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Gaitu Memoria Blokeatzea (mlock) ereduaren datuak RAM memoriatik kanpo ez trukatzeko. Aukera honek ereduaren lan-orri multzoa RAMean blokatzen du, diskora ez direla trukatuko ziurtatuz. Honek errendimendua mantentzen lagun dezake, orri-hutsegiteak saihestuz eta datuen sarbide azkarra bermatuz.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Gaitu Web Bilaketa",
|
||||
"Enabled": "Gaituta",
|
||||
"Engine": "Motorea",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
|
||||
"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Sartu Aplikazioaren DN Pasahitza",
|
||||
"Enter Bing Search V7 Endpoint": "Sartu Bing Bilaketa V7 Endpointua",
|
||||
"Enter Bing Search V7 Subscription Key": "Sartu Bing Bilaketa V7 Harpidetza Gakoa",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Sartu Brave Bilaketa API Gakoa",
|
||||
"Enter certificate path": "Sartu ziurtagiriaren bidea",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Sartu CFG Eskala (adib. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Sartu Google PSE Motor IDa",
|
||||
"Enter Image Size (e.g. 512x512)": "Sartu Irudi Tamaina (adib. 512x512)",
|
||||
"Enter Jina API Key": "Sartu Jina API Gakoa",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Sartu hizkuntza kodeak",
|
||||
"Enter Model ID": "Sartu Eredu IDa",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON Aurrebista",
|
||||
"July": "Uztaila",
|
||||
"June": "Ekaina",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Iraungitzea",
|
||||
"JWT Token": "JWT Tokena",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Entzuten...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Lokala",
|
||||
"Local Models": "Modelo lokalak",
|
||||
"Lost": "Galduta",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
|
||||
"Manage": "Kudeatu",
|
||||
"Manage Arena Models": "Kudeatu Arena Modeloak",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Kudeatu Ollama",
|
||||
"Manage Ollama API Connections": "Kudeatu Ollama API Konexioak",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Testu laua (.txt)",
|
||||
"Playground": "Jolaslekua",
|
||||
"Please carefully review the following warnings:": "Mesedez, berrikusi arretaz hurrengo oharrak:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Mesedez, sartu prompt bat",
|
||||
"Please fill in all fields.": "Mesedez, bete eremu guztiak.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Hautatu pipeline bat",
|
||||
"Select a pipeline url": "Hautatu pipeline url bat",
|
||||
"Select a tool": "Hautatu tresna bat",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Hautatu motorra",
|
||||
"Select Knowledge": "Hautatu ezagutza",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "کلید API جستجوی شجاع",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "مجموعه",
|
||||
"Color": "",
|
||||
"ComfyUI": "کومیوآی",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "تایید رمز عبور",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "ارتباطات",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "توضیحات",
|
||||
"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "کشف یک مدل",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "فعالسازی اشتراک انجمن",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "فعالسازی جستجوی وب",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
|
||||
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
|
||||
"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "کلید API جستجوی شجاع را وارد کنید",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "شناسه موتور PSE گوگل را وارد کنید",
|
||||
"Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "کد زبان را وارد کنید",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "پیش نمایش JSON",
|
||||
"July": "ژوئن",
|
||||
"June": "جولای",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT انقضای",
|
||||
"JWT Token": "JWT توکن",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "متن ساده (.txt)",
|
||||
"Playground": "زمین بازی",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "انتخاب یک خط لوله",
|
||||
"Select a pipeline url": "یک ادرس خط لوله را انتخاب کنید",
|
||||
"Select a tool": "انتخاب یک ابقزار",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "انتخاب موتور",
|
||||
"Select Knowledge": "انتخاب دانش",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API -avain",
|
||||
"By {{name}}": "Tekijä {{name}}",
|
||||
"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Koodin suorittaminen",
|
||||
"Code formatted successfully": "Koodin muotoilu onnistui",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Kokoelma",
|
||||
"Color": "Väri",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Vahvista salasana",
|
||||
"Confirm your action": "Vahvista toimintasi",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Yhteydet",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Kuvaa tietokantasi ja tavoitteesi",
|
||||
"Description": "Kuvaus",
|
||||
"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Ei käytössä",
|
||||
"Discover a function": "Löydä toiminto",
|
||||
"Discover a model": "Tutustu malliin",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Ota Memory Locking (mlock) käyttöön estääksesi mallidatan vaihtamisen pois RAM-muistista. Tämä lukitsee mallin työsivut RAM-muistiin, varmistaen että niitä ei vaihdeta levylle. Tämä voi parantaa suorituskykyä välttämällä sivuvikoja ja varmistamalla nopean tietojen käytön.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Ota verkkohaku käyttöön",
|
||||
"Enabled": "Käytössä",
|
||||
"Engine": "Moottori",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
|
||||
"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Kirjoita sovelluksen DN-salasana",
|
||||
"Enter Bing Search V7 Endpoint": "Kirjoita Bing Search V7 -päätepisteen osoite",
|
||||
"Enter Bing Search V7 Subscription Key": "Kirjoita Bing Search V7 -tilauskäyttäjäavain",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Kirjoita Brave Search API -avain",
|
||||
"Enter certificate path": "Kirjoita varmennepolku",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Kirjoita CFG-mitta (esim. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus",
|
||||
"Enter Image Size (e.g. 512x512)": "Kirjoita kuvan koko (esim. 512x512)",
|
||||
"Enter Jina API Key": "Kirjoita Jina API -avain",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Kirjoita kielikoodit",
|
||||
"Enter Model ID": "Kirjoita mallitunnus",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON-esikatselu",
|
||||
"July": "heinäkuu",
|
||||
"June": "kesäkuu",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-vanheneminen",
|
||||
"JWT Token": "JWT-token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Kuuntelee...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Paikallinen",
|
||||
"Local Models": "Paikalliset mallit",
|
||||
"Lost": "Mennyt",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
|
||||
"Manage": "Hallitse",
|
||||
"Manage Arena Models": "Hallitse Arena-malleja",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Hallitse Ollamaa",
|
||||
"Manage Ollama API Connections": "Hallitse Ollama API -yhteyksiä",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Pelkkä teksti (.txt)",
|
||||
"Playground": "Leikkipaikka",
|
||||
"Please carefully review the following warnings:": "Tarkista huolellisesti seuraavat varoitukset:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Kirjoita kehote",
|
||||
"Please fill in all fields.": "Täytä kaikki kentät.",
|
||||
"Please select a model first.": "Valitse ensin malli.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Valitse putki",
|
||||
"Select a pipeline url": "Valitse putken URL-osoite",
|
||||
"Select a tool": "Valitse työkalu",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Valitse moottori",
|
||||
"Select Knowledge": "Valitse tietämys",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Le code a été formaté avec succès",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmer le mot de passe",
|
||||
"Confirm your action": "Confirmez votre action",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Description",
|
||||
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "Découvrez une fonction",
|
||||
"Discover a model": "Découvrir un modèle",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activer le partage communautaire",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Activer la recherche sur le Web",
|
||||
"Enabled": "",
|
||||
"Engine": "Moteur",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Entrez la clé API Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Entrez les codes de langue",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Aperçu JSON",
|
||||
"July": "Juillet",
|
||||
"June": "Juin",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expiration du jeton JWT",
|
||||
"JWT Token": "Jeton JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "En train d'écouter...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Modèles locaux",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gérer",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Texte simple (.txt)",
|
||||
"Playground": "Aire de jeux",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Sélectionnez un pipeline",
|
||||
"Select a pipeline url": "Sélectionnez l'URL du pipeline",
|
||||
"Select a tool": "Sélectionnez un outil",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Bêta",
|
||||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
"By {{name}}": "Par {{name}}",
|
||||
"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Exécution de code",
|
||||
"Code formatted successfully": "Le code a été formaté avec succès",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Collection",
|
||||
"Color": "Couleur",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmer le mot de passe",
|
||||
"Confirm your action": "Confirmer votre action",
|
||||
"Confirm your new password": "Confirmer votre nouveau mot de passe",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Contraint l'effort de raisonnement pour les modèles de raisonnement. Applicable uniquement aux modèles de raisonnement de fournisseurs spécifiques qui prennent en charge l'effort de raisonnement. (Par défaut : medium)",
|
||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs",
|
||||
"Description": "Description",
|
||||
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Désactivé",
|
||||
"Discover a function": "Trouvez une fonction",
|
||||
"Discover a model": "Trouvez un modèle",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
|
||||
"Enable API Key": "Activer la clé API",
|
||||
"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activer le partage communautaire",
|
||||
"Enable Google Drive": "Activer Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Activer le verrouillage de la mémoire (mlock) pour empêcher les données du modèle d'être échangées de la RAM. Cette option verrouille l'ensemble de pages de travail du modèle en RAM, garantissant qu'elles ne seront pas échangées vers le disque. Cela peut aider à maintenir les performances en évitant les défauts de page et en assurant un accès rapide aux données.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Activer la recherche Web",
|
||||
"Enabled": "Activé",
|
||||
"Engine": "Moteur",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Entrez le mot de passe DN de l'application",
|
||||
"Enter Bing Search V7 Endpoint": "Entrez le point de terminaison Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Entrez la clé d'abonnement Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Entrez la clé API Brave Search",
|
||||
"Enter certificate path": "Entrez le chemin du certificat",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Entrez l'échelle CFG (par ex. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
|
||||
"Enter Jina API Key": "Entrez la clé API Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Entrez la clé API Kagi Search",
|
||||
"Enter language codes": "Entrez les codes de langue",
|
||||
"Enter Model ID": "Entrez l'ID du modèle",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Aperçu JSON",
|
||||
"July": "Juillet",
|
||||
"June": "Juin",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expiration du token JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "Clé API Kagi Search",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Écoute en cours...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Local",
|
||||
"Local Models": "Modèles locaux",
|
||||
"Lost": "Perdu",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
|
||||
"Manage": "Gérer",
|
||||
"Manage Arena Models": "Gérer les modèles d'arène",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Gérer les modèles",
|
||||
"Manage Ollama": "Gérer Ollama",
|
||||
"Manage Ollama API Connections": "Gérer les connexions API Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Texte simple (.txt)",
|
||||
"Playground": "Playground",
|
||||
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Veuillez saisir un prompt",
|
||||
"Please fill in all fields.": "Veuillez remplir tous les champs.",
|
||||
"Please select a model first.": "Veuillez d'abord sélectionner un modèle.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Sélectionnez un pipeline",
|
||||
"Select a pipeline url": "Sélectionnez l'URL du pipeline",
|
||||
"Select a tool": "Sélectionnez un outil",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Sélectionnez une instance Ollama",
|
||||
"Select Engine": "Sélectionnez le moteur",
|
||||
"Select Knowledge": "Sélectionnez une connaissance",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "מפתח API של חיפוש אמיץ",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "אוסף",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "אשר סיסמה",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "חיבורים",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "תיאור",
|
||||
"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "גלה מודל",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
|
||||
"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
|
||||
"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "הזן מפתח API של חיפוש אמיץ",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "הזן את מזהה מנוע PSE של Google",
|
||||
"Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "הזן קודי שפה",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "תצוגה מקדימה של JSON",
|
||||
"July": "יולי",
|
||||
"June": "יוני",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "תפוגת JWT",
|
||||
"JWT Token": "אסימון JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "טקסט פשוט (.txt)",
|
||||
"Playground": "אזור משחקים",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "בחר קו צינור",
|
||||
"Select a pipeline url": "בחר כתובת URL של קו צינור",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "संग्रह",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "पासवर्ड की पुष्टि कीजिये",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "सम्बन्ध",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "विवरण",
|
||||
"Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "एक मॉडल की खोज करें",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "वेब खोज सक्षम करें",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
|
||||
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
|
||||
"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Brave सर्च एपीआई कुंजी डालें",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Google PSE इंजन आईडी दर्ज करें",
|
||||
"Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "भाषा कोड दर्ज करें",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON पूर्वावलोकन",
|
||||
"July": "जुलाई",
|
||||
"June": "जुन",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT समाप्ति",
|
||||
"JWT Token": "जट टोकन",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "सादा पाठ (.txt)",
|
||||
"Playground": "कार्यक्षेत्र",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "एक पाइपलाइन का चयन करें",
|
||||
"Select a pipeline url": "एक पाइपलाइन url चुनें",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave tražilica - API ključ",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Kolekcija",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Potvrdite lozinku",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Povezivanja",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Opis",
|
||||
"Didn't fully follow instructions": "Nije u potpunosti slijedio upute",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Otkrijte model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Omogući pretraživanje weba",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Unesite Brave Search API ključ",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Unesite ID Google PSE motora",
|
||||
"Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Unesite kodove jezika",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON pretpregled",
|
||||
"July": "Srpanj",
|
||||
"June": "Lipanj",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Isticanje JWT-a",
|
||||
"JWT Token": "JWT token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Slušam...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokalni modeli",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Upravljaj",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Običan tekst (.txt)",
|
||||
"Playground": "Igralište",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Odabir kanala",
|
||||
"Select a pipeline url": "Odabir URL-a kanala",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API kulcs",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "SSL ellenőrzés kihagyása weboldalakhoz",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Kód végrehajtás",
|
||||
"Code formatted successfully": "Kód sikeresen formázva",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Gyűjtemény",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Jelszó megerősítése",
|
||||
"Confirm your action": "Erősítsd meg a műveletet",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Kapcsolatok",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Leírás",
|
||||
"Didn't fully follow instructions": "Nem követte teljesen az utasításokat",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Letiltva",
|
||||
"Discover a function": "Funkció felfedezése",
|
||||
"Discover a model": "Modell felfedezése",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Közösségi megosztás engedélyezése",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Webes keresés engedélyezése",
|
||||
"Enabled": "Engedélyezve",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
|
||||
"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Add meg a Brave Search API kulcsot",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Add meg a CFG skálát (pl. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Add meg a Google PSE motor azonosítót",
|
||||
"Enter Image Size (e.g. 512x512)": "Add meg a kép méretet (pl. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Add meg a nyelvi kódokat",
|
||||
"Enter Model ID": "Add meg a modell azonosítót",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON előnézet",
|
||||
"July": "Július",
|
||||
"June": "Június",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT lejárat",
|
||||
"JWT Token": "JWT token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Hallgatás...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Helyi modellek",
|
||||
"Lost": "Elveszett",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
|
||||
"Manage": "Kezelés",
|
||||
"Manage Arena Models": "Arena modellek kezelése",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Egyszerű szöveg (.txt)",
|
||||
"Playground": "Játszótér",
|
||||
"Please carefully review the following warnings:": "Kérjük, gondosan tekintse át a következő figyelmeztetéseket:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Kérjük, adjon meg egy promptot",
|
||||
"Please fill in all fields.": "Kérjük, töltse ki az összes mezőt.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Válasszon egy folyamatot",
|
||||
"Select a pipeline url": "Válasszon egy folyamat URL-t",
|
||||
"Select a tool": "Válasszon egy eszközt",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Motor kiválasztása",
|
||||
"Select Knowledge": "Tudásbázis kiválasztása",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Kunci API Pencarian Berani",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Lewati verifikasi SSL untuk Situs Web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kode berhasil diformat",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Koleksi",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Konfirmasi Kata Sandi",
|
||||
"Confirm your action": "Konfirmasi tindakan Anda",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Koneksi",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Deskripsi",
|
||||
"Didn't fully follow instructions": "Tidak sepenuhnya mengikuti instruksi",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "Menemukan sebuah fungsi",
|
||||
"Discover a model": "Menemukan sebuah model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Aktifkan Pencarian Web",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
|
||||
"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Masukkan Kunci API Pencarian Berani",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Mesin Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Masukkan Ukuran Gambar (mis. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Masukkan kode bahasa",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Pratinjau JSON",
|
||||
"July": "Juli",
|
||||
"June": "Juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Kedaluwarsa JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Mendengarkan",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Model Lokal",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Mengelola",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Teks biasa (.txt)",
|
||||
"Playground": "Taman bermain",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Pilih saluran pipa",
|
||||
"Select a pipeline url": "Pilih url saluran pipa",
|
||||
"Select a tool": "Pilih alat",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Béite",
|
||||
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
|
||||
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Eochair API Cuardaigh Brave",
|
||||
"By {{name}}": "Le {{name}}",
|
||||
"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Cód a fhorghníomhú",
|
||||
"Code formatted successfully": "Cód formáidithe go rathúil",
|
||||
"Code Interpreter": "Ateangaire Cód",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Bailiúchán",
|
||||
"Color": "Dath",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Deimhnigh Pasfhocal",
|
||||
"Confirm your action": "Deimhnigh do ghníomh",
|
||||
"Confirm your new password": "Deimhnigh do phasfhocal nua",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Naisc",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta. (Réamhshocrú: meánach)",
|
||||
"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí",
|
||||
"Description": "Cur síos",
|
||||
"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Díchumasaithe",
|
||||
"Discover a function": "Faigh amach feidhm",
|
||||
"Discover a model": "Faigh amach múnla",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Samhail leabaithe atá socraithe go \"{{embedding_model}}\"",
|
||||
"Enable API Key": "Cumasaigh Eochair API",
|
||||
"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
|
||||
"Enable Google Drive": "Cumasaigh Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Cumasaigh Glasáil Cuimhne (mlock) chun sonraí samhaltaithe a chosc ó RAM. Glasálann an rogha seo sraith oibre leathanaigh an mhúnla isteach i RAM, ag cinntiú nach ndéanfar iad a mhalartú go diosca. Is féidir leis seo cabhrú le feidhmíocht a choinneáil trí lochtanna leathanaigh a sheachaint agus rochtain tapa ar shonraí a chinntiú.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
|
||||
"Enabled": "Cumasaithe",
|
||||
"Engine": "Inneall",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
|
||||
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Iontráil Feidhmchlár DN Pasfhocal",
|
||||
"Enter Bing Search V7 Endpoint": "Cuir isteach Cuardach Bing V7 Críochphointe",
|
||||
"Enter Bing Search V7 Subscription Key": "Cuir isteach Eochair Síntiúis Bing Cuardach V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Cuir isteach Eochair API Brave Cuardach",
|
||||
"Enter certificate path": "Cuir isteach cosán an teastais",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Cuir isteach Scála CFG (m.sh. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)",
|
||||
"Enter Jina API Key": "Cuir isteach Eochair API Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Cuir isteach Eochair Kagi Search API",
|
||||
"Enter language codes": "Cuir isteach cóid teanga",
|
||||
"Enter Model ID": "Iontráil ID Mhúnla",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Réamhamharc JSON",
|
||||
"July": "Lúil",
|
||||
"June": "Meitheamh",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Éag JWT",
|
||||
"JWT Token": "Comhartha JWT",
|
||||
"Kagi Search API Key": "Eochair API Chuardaigh Kagi",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Éisteacht...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Áitiúil",
|
||||
"Local Models": "Múnlaí Áitiúla",
|
||||
"Lost": "Cailleadh",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
|
||||
"Manage": "Bainistiú",
|
||||
"Manage Arena Models": "Bainistigh Múnlaí Airéine",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Samhlacha a bhainistiú",
|
||||
"Manage Ollama": "Bainistigh Ollama",
|
||||
"Manage Ollama API Connections": "Bainistigh Naisc API Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Téacs simplí (.txt)",
|
||||
"Playground": "Clós súgartha",
|
||||
"Please carefully review the following warnings:": "Déan athbhreithniú cúramach ar na rabhaidh seo a leanas le do thoil:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Cuir isteach leid",
|
||||
"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
|
||||
"Please select a model first.": "Roghnaigh munla ar dtús le do thoil.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Roghnaigh píblíne",
|
||||
"Select a pipeline url": "Roghnaigh url píblíne",
|
||||
"Select a tool": "Roghnaigh uirlis",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Roghnaigh sampla Olama",
|
||||
"Select Engine": "Roghnaigh Inneall",
|
||||
"Select Knowledge": "Roghnaigh Eolais",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Chiave API di ricerca Brave",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Collezione",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Conferma password",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Connessioni",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Descrizione",
|
||||
"Didn't fully follow instructions": "Non ha seguito completamente le istruzioni",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Scopri un modello",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Abilita la condivisione della community",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Abilita ricerca Web",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
|
||||
"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Inserisci la chiave API di Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Inserisci l'ID motore PSE di Google",
|
||||
"Enter Image Size (e.g. 512x512)": "Inserisci la dimensione dell'immagine (ad esempio 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Inserisci i codici lingua",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Anteprima JSON",
|
||||
"July": "Luglio",
|
||||
"June": "Giugno",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Scadenza JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Testo normale (.txt)",
|
||||
"Playground": "Terreno di gioco",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selezionare una tubazione",
|
||||
"Select a pipeline url": "Selezionare l'URL di una pipeline",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search APIキー",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "コードフォーマットに成功しました",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "コレクション",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "パスワードの確認",
|
||||
"Confirm your action": "あなたのアクションの確認",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "接続",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "説明",
|
||||
"Didn't fully follow instructions": "説明に沿って操作していませんでした",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "無効",
|
||||
"Discover a function": "Functionを探す",
|
||||
"Discover a model": "モデルを探す",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "コミュニティ共有を有効にする",
|
||||
"Enable Google Drive": "Google Driveの有効化",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "ウェブ検索を有効にする",
|
||||
"Enabled": "有効",
|
||||
"Engine": "エンジン",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
|
||||
"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Brave Search APIキーの入力",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "CFGスケースを入力してください (例: 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Google PSE エンジン ID を入力します。",
|
||||
"Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "言語コードを入力してください",
|
||||
"Enter Model ID": "モデルIDを入力してください。",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON プレビュー",
|
||||
"July": "7月",
|
||||
"June": "6月",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT 有効期限",
|
||||
"JWT Token": "JWT トークン",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "ローカルモデル",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "管理",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "プレーンテキスト (.txt)",
|
||||
"Playground": "プレイグラウンド",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "パイプラインの選択",
|
||||
"Select a pipeline url": "パイプラインの URL を選択する",
|
||||
"Select a tool": "ツールの選択",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "エンジンの選択",
|
||||
"Select Knowledge": "ナレッジベースの選択",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API გასაღები",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "ნაკრები",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "პაროლის დამოწმება",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "კავშირები",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "აღწერა",
|
||||
"Didn't fully follow instructions": "ვერ ყველა ინფორმაციისთვის ვერ ხელახლა ჩაწერე",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "გაიგეთ მოდელი",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "ვებ ძიების ჩართვა",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "გთხოვთ, უზრუნველყოთ, რომთქვევის CSV-ფაილი შეიცავს 4 ველი, ჩაწერილი ორივე ველი უდრის პირველი ველით.",
|
||||
"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
|
||||
"Enter a detail about yourself for your LLMs to recall": "შეიყვანე დეტალი ჩემთათვის, რომ ჩვენი LLMs-ს შეიძლოს აღაქვს",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "შეიყვანეთ Brave Search API გასაღები",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "შეიყვანეთ Google PSE ძრავის ID",
|
||||
"Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "შეიყვანეთ ენის კოდი",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON გადახედვა",
|
||||
"July": "ივნისი",
|
||||
"June": "ივლა",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-ის ვადა",
|
||||
"JWT Token": "JWT ტოკენი",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "შესაძლოა LLM-ებმა შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "ტექსტი (.txt)",
|
||||
"Playground": "სათამაშო მოედანი",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "აირჩიეთ მილსადენი",
|
||||
"Select a pipeline url": "აირჩიეთ მილსადენის url",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 엔드포인트",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 구독 키",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API 키",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "웹 사이트에 대한 SSL 검증 무시: ",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "코드 실행",
|
||||
"Code formatted successfully": "성공적으로 코드가 생성되었습니다",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "컬렉션",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "비밀번호 확인",
|
||||
"Confirm your action": "액션 확인",
|
||||
"Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "연결",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "지식 기반에 대한 설명과 목적을 입력하세요",
|
||||
"Description": "설명",
|
||||
"Didn't fully follow instructions": "완전히 지침을 따르지 않음",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "제한됨",
|
||||
"Discover a function": "함수 검색",
|
||||
"Discover a model": "모델 검색",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
|
||||
"Enable API Key": "API 키 활성화",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "커뮤니티 공유 활성화",
|
||||
"Enable Google Drive": "Google Drive 활성화",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "웹 검색 활성화",
|
||||
"Enabled": "활성화됨",
|
||||
"Engine": "엔진",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
|
||||
"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
|
||||
"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "Bing Search V7 엔드포인트 입력",
|
||||
"Enter Bing Search V7 Subscription Key": "Bing Search V7 구독 키 입력",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Brave Search API Key 입력",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "CFG Scale 입력 (예: 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Google PSE 엔진 ID 입력",
|
||||
"Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)",
|
||||
"Enter Jina API Key": "Jina API 키 입력",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Kagi Search API 키 입력",
|
||||
"Enter language codes": "언어 코드 입력",
|
||||
"Enter Model ID": "모델 ID 입력",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON 미리 보기",
|
||||
"July": "7월",
|
||||
"June": "6월",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT 만료",
|
||||
"JWT Token": "JWT 토큰",
|
||||
"Kagi Search API Key": "Kagi Search API 키",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "듣는 중...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "로컬 모델",
|
||||
"Lost": "패배",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
|
||||
"Manage": "관리",
|
||||
"Manage Arena Models": "아레나 모델 관리",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "Ollama API 연결 관리",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "일반 텍스트(.txt)",
|
||||
"Playground": "놀이터",
|
||||
"Please carefully review the following warnings:": "다음 주의를 조심히 확인해주십시오",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "프롬프트를 입력해주세요",
|
||||
"Please fill in all fields.": "모두 빈칸없이 채워주세요",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "파이프라인 선택",
|
||||
"Select a pipeline url": "파이프라인 URL 선택",
|
||||
"Select a tool": "도구 선택",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "엔진 선택",
|
||||
"Select Knowledge": "지식 기반 선택",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API raktas",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kodas suformatuotas sėkmingai",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Kolekcija",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Patvirtinkite slaptažodį",
|
||||
"Confirm your action": "Patvirtinkite veiksmą",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Ryšiai",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Aprašymas",
|
||||
"Didn't fully follow instructions": "Pilnai nesekė instrukcijų",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Išjungta",
|
||||
"Discover a function": "Atrasti funkciją",
|
||||
"Discover a model": "Atrasti modelį",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Leisti paiešką internete",
|
||||
"Enabled": "Leisti",
|
||||
"Engine": "Variklis",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Įveskite Bravo Search API raktą",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Įveskite Google PSE variklio ID",
|
||||
"Enter Image Size (e.g. 512x512)": "Įveskite paveiksliuko dydį (pvz. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Įveskite kalbos kodus",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON peržiūra",
|
||||
"July": "liepa",
|
||||
"June": "birželis",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT išėjimas iš galiojimo",
|
||||
"JWT Token": "JWT žetonas",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Klausoma...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokalūs modeliai",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Tvarkyti",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Grynas tekstas (.txt)",
|
||||
"Playground": "Eksperimentavimo erdvė",
|
||||
"Please carefully review the following warnings:": "Peržiūrėkite šiuos perspėjimus:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Pasirinkite procesą",
|
||||
"Select a pipeline url": "Pasirinkite proceso nuorodą",
|
||||
"Select a tool": "Pasirinkite įrankį",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Kunci API Carian Brave",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Pintas pengesahan SSL untuk Laman Web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Kod berjaya diformatkan",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Koleksi",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Sahkan kata laluan",
|
||||
"Confirm your action": "Sahkan tindakan anda",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Sambungan",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Penerangan",
|
||||
"Didn't fully follow instructions": "Tidak mengikut arahan sepenuhnya",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Dilumpuhkan",
|
||||
"Discover a function": "Temui fungsi",
|
||||
"Discover a model": "Temui model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Benarkan Carian Web",
|
||||
"Enabled": "Dibenarkan",
|
||||
"Engine": "Enjin",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
|
||||
"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Masukkan Kekunci API carian Brave",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Enjin Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Masukkan Saiz Imej (cth 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Masukkan kod bahasa",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Pratonton JSON",
|
||||
"July": "Julai",
|
||||
"June": "Jun",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Tempoh Tamat JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Mendengar...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Model Tempatan",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Urus",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Teks biasa (.txt)",
|
||||
"Playground": "Taman Permainan",
|
||||
"Please carefully review the following warnings:": "Sila semak dengan teliti amaran berikut:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Pilih 'pipeline'",
|
||||
"Select a pipeline url": "Pilih url 'pipeline'",
|
||||
"Select a tool": "Pilih alat",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "API-nøkkel for Brave Search",
|
||||
"By {{name}}": "Etter {{name}}",
|
||||
"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Kodekjøring",
|
||||
"Code formatted successfully": "Koden er formatert",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "Farge",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Bekreft passordet",
|
||||
"Confirm your action": "Bekreft handlingen",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Tilkoblinger",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Beskriv kunnskapsbasen din og målene dine",
|
||||
"Description": "Beskrivelse",
|
||||
"Didn't fully follow instructions": "Fulgte ikke instruksjonene fullstendig",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Deaktivert",
|
||||
"Discover a function": "Oppdag en funksjon",
|
||||
"Discover a model": "Oppdag en modell",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Innbyggingsmodell angitt til \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktiver deling i fellesskap",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Aktiver Memory Locking (mlock) for å forhindre at modelldata byttes ut av RAM. Dette alternativet låser modellens arbeidssett med sider i RAM-minnet, slik at de ikke byttes ut til disk. Dette kan bidra til å opprettholde ytelsen ved å unngå sidefeil og sikre rask datatilgang.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Aktiver websøk",
|
||||
"Enabled": "Aktivert",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
|
||||
"Enter {{role}} message here": "Skriv inn {{role}} melding her",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Angi applikasjonens DN-passord",
|
||||
"Enter Bing Search V7 Endpoint": "Angi endepunkt for Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Angi abonnementsnøkkel for Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Angi API-nøkkel for Brave Search",
|
||||
"Enter certificate path": "Angi sertifikatets bane",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Angi CFG-skala (f.eks. 7,0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Angi motor-ID for Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Angi bildestørrelse (f.eks. 512x512)",
|
||||
"Enter Jina API Key": "Angi API-nøkkel for Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Angi språkkoder",
|
||||
"Enter Model ID": "Angi modellens ID",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Forhåndsvisning av JSON",
|
||||
"July": "juli",
|
||||
"June": "juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-utløp",
|
||||
"JWT Token": "JWT-token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Lytter ...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Lokal",
|
||||
"Local Models": "Lokale modeller",
|
||||
"Lost": "Tapt",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
|
||||
"Manage": "Administrer",
|
||||
"Manage Arena Models": "Behandle Arena-modeller",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Behandle Ollama",
|
||||
"Manage Ollama API Connections": "Behandle API-tilkoblinger for Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Ren tekst (.txt)",
|
||||
"Playground": "Lekeplass",
|
||||
"Please carefully review the following warnings:": "Les gjennom følgende advarsler grundig:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Angi en ledetekst",
|
||||
"Please fill in all fields.": "Fyll i alle felter",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Velg en pipeline",
|
||||
"Select a pipeline url": "Velg en pipeline-URL",
|
||||
"Select a tool": "Velg et verktøy",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Velg motor",
|
||||
"Select Knowledge": "Velg kunnskap",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API-sleutel",
|
||||
"By {{name}}": "Op {{name}}",
|
||||
"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Code uitvoeren",
|
||||
"Code formatted successfully": "Code succesvol geformateerd",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Verzameling",
|
||||
"Color": "Kleur",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Bevestig wachtwoord",
|
||||
"Confirm your action": "Bevestig uw actie",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Verbindingen",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Beschrijf je kennisbasis en doelstellingen",
|
||||
"Description": "Beschrijving",
|
||||
"Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Uitgeschakeld",
|
||||
"Discover a function": "Ontdek een functie",
|
||||
"Discover a model": "Ontdek een model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Delen via de community inschakelen",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Schakel Memory Locking (mlock) in om te voorkomen dat modelgegevens uit het RAM worden verwisseld. Deze optie vergrendelt de werkset pagina's van het model in het RAM, zodat ze niet naar de schijf worden uitgewisseld. Dit kan helpen om de prestaties op peil te houden door paginafouten te voorkomen en snelle gegevenstoegang te garanderen.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Zoeken op het web inschakelen",
|
||||
"Enabled": "Ingeschakeld",
|
||||
"Engine": "Engine",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
|
||||
"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Voer applicatie-DN wachtwoord in",
|
||||
"Enter Bing Search V7 Endpoint": "Voer Bing Search V7 Endpoint in",
|
||||
"Enter Bing Search V7 Subscription Key": "Voer Bing Search V7 abonnementscode in",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Voer de Brave Search API-sleutel in",
|
||||
"Enter certificate path": "Voer certificaatpad in",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Voer CFG schaal in (bv. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
|
||||
"Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
|
||||
"Enter Jina API Key": "Voer Jina API-sleutel in",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Voeg taal codes toe",
|
||||
"Enter Model ID": "Voer model-ID in",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON-voorbeeld",
|
||||
"July": "Juli",
|
||||
"June": "Juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Expiration",
|
||||
"JWT Token": "JWT Token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Aan het luisteren...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Lokaal",
|
||||
"Local Models": "Lokale modellen",
|
||||
"Lost": "Verloren",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
|
||||
"Manage": "Beheren",
|
||||
"Manage Arena Models": "Beheer srenamodellen",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Beheer Ollama",
|
||||
"Manage Ollama API Connections": "Beheer Ollama API-verbindingen",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Platte tekst (.txt)",
|
||||
"Playground": "Speeltuin",
|
||||
"Please carefully review the following warnings:": "Beoordeel de volgende waarschuwingen nauwkeurig:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Voer een prompt in",
|
||||
"Please fill in all fields.": "Voer alle velden in",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selecteer een pijplijn",
|
||||
"Select a pipeline url": "Selecteer een pijplijn-URL",
|
||||
"Select a tool": "Selecteer een tool",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Selecteer Engine",
|
||||
"Select Knowledge": "Selecteer kennis",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "ਸੰਗ੍ਰਹਿ",
|
||||
"Color": "",
|
||||
"ComfyUI": "ਕੰਫੀਯੂਆਈ",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "ਕਨੈਕਸ਼ਨ",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "ਵਰਣਨਾ",
|
||||
"Didn't fully follow instructions": "ਹਦਾਇਤਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਫਾਲੋ ਨਹੀਂ ਕੀਤਾ",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "ਇੱਕ ਮਾਡਲ ਲੱਭੋ",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
|
||||
"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
||||
"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Google PSE ਇੰਜਣ ID ਦਾਖਲ ਕਰੋ",
|
||||
"Enter Image Size (e.g. 512x512)": "ਚਿੱਤਰ ਆਕਾਰ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "ਭਾਸ਼ਾ ਕੋਡ ਦਰਜ ਕਰੋ",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON ਪੂਰਵ-ਦਰਸ਼ਨ",
|
||||
"July": "ਜੁਲਾਈ",
|
||||
"June": "ਜੂਨ",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT ਮਿਆਦ ਖਤਮ",
|
||||
"JWT Token": "JWT ਟੋਕਨ",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "ਸਧਾਰਨ ਪਾਠ (.txt)",
|
||||
"Playground": "ਖੇਡ ਦਾ ਮੈਦਾਨ",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "ਪਾਈਪਲਾਈਨ ਚੁਣੋ",
|
||||
"Select a pipeline url": "ਪਾਈਪਲਾਈਨ URL ਚੁਣੋ",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Klucz API wyszukiwania Brave",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Pomiń weryfikację SSL dla stron webowych",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Kolekcja",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Potwierdź hasło",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Połączenia",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Opis",
|
||||
"Didn't fully follow instructions": "Nie postępował zgodnie z instrukcjami",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Odkryj model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Włączanie wyszukiwania w Internecie",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera 4 kolumny w następującym porządku: Nazwa, Email, Hasło, Rola.",
|
||||
"Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Wprowadź szczegóły o sobie, aby LLMs mogli pamiętać",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Wprowadź klucz API Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Wprowadź identyfikator aparatu Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Wprowadź rozmiar obrazu (np. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Wprowadź kody języków",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON (wersja zapoznawcza)",
|
||||
"July": "Lipiec",
|
||||
"June": "Czerwiec",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Wygaśnięcie JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Zweryfikuj ważne informacje.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Zwykły tekst (.txt)",
|
||||
"Playground": "Plac zabaw",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Wybieranie potoku",
|
||||
"Select a pipeline url": "Wybieranie adresu URL potoku",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Chave API do Brave Search",
|
||||
"By {{name}}": "Por {{name}}",
|
||||
"Bypass SSL verification for Websites": "Ignorar verificação SSL para Sites",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Execução de código",
|
||||
"Code formatted successfully": "Código formatado com sucesso",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Coleção",
|
||||
"Color": "Cor",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmar Senha",
|
||||
"Confirm your action": "Confirme sua ação",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Conexões",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
|
||||
"Description": "Descrição",
|
||||
"Didn't fully follow instructions": "Não seguiu completamente as instruções",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Desativado",
|
||||
"Discover a function": "Descubra uma função",
|
||||
"Discover a model": "Descubra um modelo",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Ativar Pesquisa na Web",
|
||||
"Enabled": "Ativado",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
|
||||
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Digite a Senha do DN da Aplicação",
|
||||
"Enter Bing Search V7 Endpoint": "Digite o Endpoint do Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Digite a Chave de Assinatura do Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Digite a Chave API do Brave Search",
|
||||
"Enter certificate path": "Digite o caminho do certificado",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Digite a escala de CFG (por exemplo, 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
|
||||
"Enter Jina API Key": "Digite a Chave API Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Digite os códigos de idioma",
|
||||
"Enter Model ID": "Digite o ID do modelo",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Pré-visualização JSON",
|
||||
"July": "Julho",
|
||||
"June": "Junho",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expiração do JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Escutando...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Modelos Locais",
|
||||
"Lost": "Perdeu",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
|
||||
"Manage": "Gerenciar",
|
||||
"Manage Arena Models": "Gerenciar Arena de Modelos",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Gerenciar Ollama",
|
||||
"Manage Ollama API Connections": "Gerenciar Conexões Ollama API",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Texto simples (.txt)",
|
||||
"Playground": "Playground",
|
||||
"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Por favor, digite um prompt",
|
||||
"Please fill in all fields.": "Por favor, preencha todos os campos.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selecione um pipeline",
|
||||
"Select a pipeline url": "Selecione uma URL de pipeline",
|
||||
"Select a tool": "Selecione uma ferramenta",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Selecionar Motor",
|
||||
"Select Knowledge": "Selecionar Conhecimento",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Chave da API de Pesquisa Brave",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Coleção",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmar Senha",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Conexões",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Descrição",
|
||||
"Didn't fully follow instructions": "Não seguiu instruções com precisão",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Descubra um modelo",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Active a Partilha da Comunidade",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Ativar pesquisa na Web",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
|
||||
"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Escreva a chave da API do Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Escreva o ID do mecanismo PSE do Google",
|
||||
"Enter Image Size (e.g. 512x512)": "Escreva o Tamanho da Imagem (por exemplo, 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Escreva os códigos de idioma",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Pré-visualização JSON",
|
||||
"July": "Julho",
|
||||
"June": "Junho",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expiração JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "A escutar...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Modelos Locais",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gerir",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Texto sem formatação (.txt)",
|
||||
"Playground": "Recreio",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selecione um pipeline",
|
||||
"Select a pipeline url": "Selecione um URL de pipeline",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Cheie API Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Ocolește verificarea SSL pentru site-uri web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Executarea codului",
|
||||
"Code formatted successfully": "Cod formatat cu succes",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Colecție",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Confirmă Parola",
|
||||
"Confirm your action": "Confirmă acțiunea ta",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Conexiuni",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Descriere",
|
||||
"Didn't fully follow instructions": "Nu a urmat complet instrucțiunile",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Dezactivat",
|
||||
"Discover a function": "Descoperă o funcție",
|
||||
"Discover a model": "Descoperă un model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Activează Partajarea Comunitară",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Activează Căutarea pe Web",
|
||||
"Enabled": "Activat",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
|
||||
"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Introduceți Cheia API Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Introduceți Scara CFG (de ex. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Introduceți ID-ul Motorului Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Introduceți Dimensiunea Imaginii (de ex. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Introduceți codurile limbilor",
|
||||
"Enter Model ID": "Introdu codul modelului",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Previzualizare JSON",
|
||||
"July": "Iulie",
|
||||
"June": "Iunie",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Expirarea JWT",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Ascult...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Modele Locale",
|
||||
"Lost": "Pierdut",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
|
||||
"Manage": "Gestionează",
|
||||
"Manage Arena Models": "Gestionați Modelele Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Text simplu (.txt)",
|
||||
"Playground": "Teren de Joacă",
|
||||
"Please carefully review the following warnings:": "Vă rugăm să revizuiți cu atenție următoarele avertismente:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Te rog să introduci un mesaj",
|
||||
"Please fill in all fields.": "Vă rugăm să completați toate câmpurile.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Selectează o conductă",
|
||||
"Select a pipeline url": "Selectează un URL de conductă",
|
||||
"Select a tool": "Selectează un instrument",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Selectează motorul",
|
||||
"Select Knowledge": "Selectarea cunoștințelor (Knowledge Selection) este un proces esențial în multiple domenii, incluzând inteligența artificială și învățarea automată. Aceasta presupune alegerea corectă a informațiilor sau datelor relevante dintr-un set mai mare pentru a le utiliza în analize, modele sau sisteme specifice. De exemplu, în învățarea automată, selectarea caracteristicilor este un aspect al selectării cunoștințelor și implică alegerea celor mai relevante date de intrare care contribuie la îmbunătățirea preciziei modelului.",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Конечная точка поиска Bing V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Ключ API поиска Brave",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Обход проверки SSL для веб-сайтов",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Выполнение кода",
|
||||
"Code formatted successfully": "Код успешно отформатирован",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Коллекция",
|
||||
"Color": "Цвет",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Подтвердите пароль",
|
||||
"Confirm your action": "Подтвердите свое действие",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Соединение",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Опишите свою базу знаний и цели",
|
||||
"Description": "Описание",
|
||||
"Didn't fully follow instructions": "Не полностью следует инструкциям",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Отключено",
|
||||
"Discover a function": "Найти функцию",
|
||||
"Discover a model": "Найти модель",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Включить совместное использование",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Включите блокировку памяти (mlock), чтобы предотвратить выгрузку данных модели из ОЗУ. Эта опция блокирует рабочий набор страниц модели в оперативной памяти, гарантируя, что они не будут выгружены на диск. Это может помочь поддерживать производительность, избегая ошибок страниц и обеспечивая быстрый доступ к данным.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Включить поиск в Интернете",
|
||||
"Enabled": "Включено",
|
||||
"Engine": "Движок",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
|
||||
"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Введите ключ API поиска Brave",
|
||||
"Enter certificate path": "Введите путь к сертификату",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Введите CFG Scale (например, 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Введите Id движка Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Введите коды языков",
|
||||
"Enter Model ID": "Введите ID модели",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Предварительный просмотр JSON",
|
||||
"July": "Июль",
|
||||
"June": "Июнь",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Истечение срока JWT",
|
||||
"JWT Token": "Токен JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Слушаю...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Локальные модели",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
|
||||
"Manage": "Управлять",
|
||||
"Manage Arena Models": "Управление Ареной Моделей",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Управление Ollama",
|
||||
"Manage Ollama API Connections": "Управление соединениями API Ollama",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Текст в формате .txt",
|
||||
"Playground": "Песочница",
|
||||
"Please carefully review the following warnings:": "Пожалуйста, внимательно ознакомьтесь со следующими предупреждениями:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Пожалуйста, введите подсказку",
|
||||
"Please fill in all fields.": "Пожалуйста, заполните все поля.",
|
||||
"Please select a model first.": "Пожалуйста, сначала выберите модель.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Выберите конвейер",
|
||||
"Select a pipeline url": "Выберите URL-адрес конвейера",
|
||||
"Select a tool": "Выберите инструмент",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Выберите движок",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "API kľúč pre Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Obísť overenie SSL pre webové stránky",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Vykonávanie kódu",
|
||||
"Code formatted successfully": "Kód bol úspešne naformátovaný.",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "",
|
||||
"Color": "Farba",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Potvrdenie hesla",
|
||||
"Confirm your action": "Potvrďte svoju akciu",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Pripojenia",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Popis",
|
||||
"Didn't fully follow instructions": "Nenasledovali ste presne všetky inštrukcie.",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Zakázané",
|
||||
"Discover a function": "Objaviť funkciu",
|
||||
"Discover a model": "Objaviť model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Povoliť zdieľanie komunity",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Povoliť webové vyhľadávanie",
|
||||
"Enabled": "Povolené",
|
||||
"Engine": "Engine",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Zadajte správu {{role}} sem",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Zadajte API kľúč pre Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Zadajte mierku CFG (napr. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Zadajte ID vyhľadávacieho mechanizmu Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Zadajte kódy jazykov",
|
||||
"Enter Model ID": "Zadajte ID modelu",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Náhľad JSON",
|
||||
"July": "Júl",
|
||||
"June": "Jún",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Vypršanie platnosti JWT (JSON Web Token)",
|
||||
"JWT Token": "JWT Token (JSON Web Token)",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Počúvanie...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokálne modely",
|
||||
"Lost": "Stratený",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
|
||||
"Manage": "Spravovať",
|
||||
"Manage Arena Models": "Správa modelov v Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Čistý text (.txt)",
|
||||
"Playground": "",
|
||||
"Please carefully review the following warnings:": "Prosím, pozorne si prečítajte nasledujúce upozornenia:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Prosím, zadajte zadanie.",
|
||||
"Please fill in all fields.": "Prosím, vyplňte všetky polia.",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Vyberte pipeline",
|
||||
"Select a pipeline url": "Vyberte URL adresu kanála",
|
||||
"Select a tool": "Vyberte nástroj",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Vyberte engine",
|
||||
"Select Knowledge": "Vybrať znalosti",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Бета",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Апи кључ за храбру претрагу",
|
||||
"By {{name}}": "Од {{name}}",
|
||||
"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Извршавање кода",
|
||||
"Code formatted successfully": "Код форматиран успешно",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Колекција",
|
||||
"Color": "Боја",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Потврди лозинку",
|
||||
"Confirm your action": "Потврди радњу",
|
||||
"Confirm your new password": "Потврди нову лозинку",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Везе",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Опишите вашу базу знања и циљеве",
|
||||
"Description": "Опис",
|
||||
"Didn't fully follow instructions": "Упутства нису праћена у потпуности",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Онемогућено",
|
||||
"Discover a function": "Откријте функцију",
|
||||
"Discover a model": "Откријте модел",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Омогући дељење заједнице",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Омогући Wеб претрагу",
|
||||
"Enabled": "Омогућено",
|
||||
"Engine": "Мотор",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
|
||||
"Enter {{role}} message here": "Унесите {{role}} поруку овде",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Унесите БРАВЕ Сеарцх АПИ кључ",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Унесите Гоогле ПСЕ ИД машине",
|
||||
"Enter Image Size (e.g. 512x512)": "Унесите величину слике (нпр. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Унесите кодове језика",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "ЈСОН Преглед",
|
||||
"July": "Јул",
|
||||
"June": "Јун",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Истек JWT-а",
|
||||
"JWT Token": "JWT жетон",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Слушам...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Локално",
|
||||
"Local Models": "Локални модели",
|
||||
"Lost": "Пораза",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Управљај",
|
||||
"Manage Arena Models": "Управљај моделима арене",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Управљај моделима",
|
||||
"Manage Ollama": "Управљај Ollama-ом",
|
||||
"Manage Ollama API Connections": "Управљај Ollama АПИ везама",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Обичан текст (.txt)",
|
||||
"Playground": "Игралиште",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Избор цевовода",
|
||||
"Select a pipeline url": "Избор урл адресе цевовода",
|
||||
"Select a tool": "Изабери алат",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Изабери мотор",
|
||||
"Select Knowledge": "Изабери знање",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "API-nyckel för Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Samling",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Bekräfta lösenord",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Anslutningar",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Beskrivning",
|
||||
"Didn't fully follow instructions": "Följde inte instruktionerna",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "Upptäck en modell",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Aktivera community-delning",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Aktivera webbsökning",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Skriv {{role}} meddelande här",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Ange API-nyckel för Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Ange Google PSE Engine Id",
|
||||
"Enter Image Size (e.g. 512x512)": "Ange bildstorlek (t.ex. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Skriv språkkoder",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Förhandsversion av JSON",
|
||||
"July": "juli",
|
||||
"June": "juni",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT-utgångsdatum",
|
||||
"JWT Token": "JWT-token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Lyssnar...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "Lokala modeller",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Hantera",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Text (.txt)",
|
||||
"Playground": "Lekplats",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Välj en rörledning",
|
||||
"Select a pipeline url": "Välj en URL för rörledningen",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "คีย์ API ของ Brave Search",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "ข้ามการตรวจสอบ SSL สำหรับเว็บไซต์",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "คอลเลคชัน",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "ยืนยันรหัสผ่าน",
|
||||
"Confirm your action": "ยืนยันการดำเนินการของคุณ",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "การเชื่อมต่อ",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "คำอธิบาย",
|
||||
"Didn't fully follow instructions": "ไม่ได้ปฏิบัติตามคำแนะนำทั้งหมด",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "ปิดใช้งาน",
|
||||
"Discover a function": "ค้นหาฟังก์ชัน",
|
||||
"Discover a model": "ค้นหาโมเดล",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
|
||||
"Enabled": "เปิดใช้งาน",
|
||||
"Engine": "เครื่องยนต์",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
|
||||
"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
|
||||
"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "ใส่คีย์ API ของ Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "ใส่รหัสเครื่องยนต์ของ Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "ใส่รหัสภาษา",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "ดูตัวอย่าง JSON",
|
||||
"July": "กรกฎาคม",
|
||||
"June": "มิถุนายน",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "การหมดอายุของ JWT",
|
||||
"JWT Token": "โทเค็น JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "กำลังฟัง...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs สามารถทำผิดพลาดได้ ตรวจสอบข้อมูลสำคัญ",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "โมเดลท้องถิ่น",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "จัดการ",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "ไฟล์ข้อความ (.txt)",
|
||||
"Playground": "สนามทดสอบ",
|
||||
"Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "เลือกไปป์ไลน์",
|
||||
"Select a pipeline url": "เลือก URL ไปป์ไลน์",
|
||||
"Select a tool": "เลือกเครื่องมือ",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "",
|
||||
"Color": "",
|
||||
"ComfyUI": "",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "",
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "",
|
||||
"Didn't fully follow instructions": "",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "",
|
||||
"Discover a function": "",
|
||||
"Discover a model": "",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "",
|
||||
"Enabled": "",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||
"Enter {{role}} message here": "",
|
||||
"Enter a detail about yourself for your LLMs to recall": "",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "",
|
||||
"July": "",
|
||||
"June": "",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "",
|
||||
"JWT Token": "",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "",
|
||||
"Playground": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "",
|
||||
"Select a pipeline url": "",
|
||||
"Select a tool": "",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Arama V7 Uç Noktası",
|
||||
"Bing Search V7 Subscription Key": "Bing Arama V7 Abonelik Anahtarı",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave Search API Anahtarı",
|
||||
"By {{name}}": "{{name}} Tarafından",
|
||||
"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Kod yürütme",
|
||||
"Code formatted successfully": "Kod başarıyla biçimlendirildi",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Koleksiyon",
|
||||
"Color": "Renk",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Parolayı Onayla",
|
||||
"Confirm your action": "İşleminizi onaylayın",
|
||||
"Confirm your new password": "Yeni parolanızı onaylayın",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "Bağlantılar",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Bilgi tabanınızı ve hedeflerinizi açıklayın",
|
||||
"Description": "Açıklama",
|
||||
"Didn't fully follow instructions": "Talimatları tam olarak takip etmedi",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Devre Dışı",
|
||||
"Discover a function": "Bir fonksiyon keşfedin",
|
||||
"Discover a model": "Bir model keşfedin",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
|
||||
"Enable API Key": "API Anahtarını Etkinleştir",
|
||||
"Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
|
||||
"Enable Google Drive": "Google Drive'ı Etkinleştir",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Web Aramasını Etkinleştir",
|
||||
"Enabled": "Etkin",
|
||||
"Engine": "Motor",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
|
||||
"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
|
||||
"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Uygulama DN Parolasını Girin",
|
||||
"Enter Bing Search V7 Endpoint": "Bing Arama V7 Uç Noktasını Girin",
|
||||
"Enter Bing Search V7 Subscription Key": "Bing Arama V7 Abonelik Anahtarını Girin",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Brave Search API Anahtarını Girin",
|
||||
"Enter certificate path": "Sertifika yolunu girin",
|
||||
"Enter CFG Scale (e.g. 7.0)": "CFG Ölçeğini Girin (örn. 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Google PSE Engine Id'sini Girin",
|
||||
"Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)",
|
||||
"Enter Jina API Key": "Jina API Anahtarını Girin",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Kagi Search API Anahtarını Girin",
|
||||
"Enter language codes": "Dil kodlarını girin",
|
||||
"Enter Model ID": "Model ID'sini Girin",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON Önizlemesi",
|
||||
"July": "Temmuz",
|
||||
"June": "Haziran",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Bitişi",
|
||||
"JWT Token": "JWT Token",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Dinleniyor...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Yerel",
|
||||
"Local Models": "Yerel Modeller",
|
||||
"Lost": "Kayıp",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
|
||||
"Manage": "Yönet",
|
||||
"Manage Arena Models": "Arena Modellerini Yönet",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "Ollama'yı Yönet",
|
||||
"Manage Ollama API Connections": "Ollama API Bağlantılarını Yönet",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Düz metin (.txt)",
|
||||
"Playground": "Oyun Alanı",
|
||||
"Please carefully review the following warnings:": "Lütfen aşağıdaki uyarıları dikkatlice inceleyin:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Lütfen bir prompt girin",
|
||||
"Please fill in all fields.": "Lütfen tüm alanları doldurun.",
|
||||
"Please select a model first.": "Lütfen önce bir model seçin.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Bir pipeline seç",
|
||||
"Select a pipeline url": "Bir pipeline URL'si seç",
|
||||
"Select a tool": "Bir araç seç",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Motor Seç",
|
||||
"Select Knowledge": "Bilgi Seç",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Ключ API пошуку Brave",
|
||||
"By {{name}}": "Від {{name}}",
|
||||
"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "Виконання коду",
|
||||
"Code formatted successfully": "Код успішно відформатовано",
|
||||
"Code Interpreter": "Інтерпретатор коду",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Колекція",
|
||||
"Color": "Колір",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Підтвердіть пароль",
|
||||
"Confirm your action": "Підтвердіть свою дію",
|
||||
"Confirm your new password": "Підтвердіть свій новий пароль",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "З'єднання",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Обмежує зусилля на міркування для моделей міркування. Застосовується лише до моделей від певних постачальників, які підтримують зусилля на міркування. (За замовчуванням: середній)",
|
||||
"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "Опишіть вашу базу знань та цілі",
|
||||
"Description": "Опис",
|
||||
"Didn't fully follow instructions": "Не повністю дотримувалися інструкцій",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Вимкнено",
|
||||
"Discover a function": "Знайдіть функцію",
|
||||
"Discover a model": "Знайдіть модель",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
|
||||
"Enable API Key": "Увімкнути ключ API",
|
||||
"Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Увімкнути спільний доступ",
|
||||
"Enable Google Drive": "Увімкнути Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Увімкнути веб-пошук",
|
||||
"Enabled": "Увімкнено",
|
||||
"Engine": "Рушій",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
|
||||
"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "Введіть пароль DN застосунку",
|
||||
"Enter Bing Search V7 Endpoint": "Введіть точку доступу Bing Search V7",
|
||||
"Enter Bing Search V7 Subscription Key": "Введіть ключ підписки Bing Search V7",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Введіть ключ API для пошуку Brave",
|
||||
"Enter certificate path": "Введіть шлях до сертифіката",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Введіть масштаб CFG (напр., 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Введіть Google PSE Engine Id",
|
||||
"Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр., 512x512)",
|
||||
"Enter Jina API Key": "Введіть ключ API Jina",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "Введіть ключ API Kagi Search",
|
||||
"Enter language codes": "Введіть мовні коди",
|
||||
"Enter Model ID": "Введіть ID моделі",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Перегляд JSON",
|
||||
"July": "Липень",
|
||||
"June": "Червень",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "Термін дії JWT",
|
||||
"JWT Token": "Токен JWT",
|
||||
"Kagi Search API Key": "Kagi Search API ключ",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Слухаю...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "Локальний",
|
||||
"Local Models": "Локальні моделі",
|
||||
"Lost": "Втрачене",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
|
||||
"Manage": "Керувати",
|
||||
"Manage Arena Models": "Керувати моделями Arena",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Керувати моделями",
|
||||
"Manage Ollama": "Керувати Ollama",
|
||||
"Manage Ollama API Connections": "Керувати з'єднаннями Ollama API",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Простий текст (.txt)",
|
||||
"Playground": "Майданчик",
|
||||
"Please carefully review the following warnings:": "Будь ласка, уважно ознайомтеся з наступними попередженнями:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "Будь ласка, введіть підказку",
|
||||
"Please fill in all fields.": "Будь ласка, заповніть всі поля.",
|
||||
"Please select a model first.": "Будь ласка, спочатку виберіть модель.",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Оберіть конвеєр",
|
||||
"Select a pipeline url": "Оберіть адресу конвеєра",
|
||||
"Select a tool": "Оберіть інструмент",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "Виберіть екземпляр Ollama",
|
||||
"Select Engine": "Виберіть двигун",
|
||||
"Select Knowledge": "Вибрати знання",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "بریو سرچ API کلید",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "ویب سائٹس کے لیے SSL تصدیق کو نظر انداز کریں",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "کوڈ کا نفاذ",
|
||||
"Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "کلیکشن",
|
||||
"Color": "",
|
||||
"ComfyUI": "کومفی یو آئی",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "پاس ورڈ کی توثیق کریں",
|
||||
"Confirm your action": "اپنی کارروائی کی تصدیق کریں",
|
||||
"Confirm your new password": "",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "کنکشنز",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "تفصیل",
|
||||
"Didn't fully follow instructions": "ہدایات کو مکمل طور پر نہیں سمجھا",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "غیر فعال",
|
||||
"Discover a function": "ایک فنکشن دریافت کریں",
|
||||
"Discover a model": "ایک ماڈل دریافت کریں",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "ویب تلاش فعال کریں",
|
||||
"Enabled": "فعال کردیا گیا ہے",
|
||||
"Engine": "انجن",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
|
||||
"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
|
||||
"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "بریو سرچ API کلید درج کریں",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "CFG اسکیل درج کریں (مثلاً 7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی درج کریں",
|
||||
"Enter Image Size (e.g. 512x512)": "تصویر کا سائز درج کریں (مثال: 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "زبان کے کوڈ درج کریں",
|
||||
"Enter Model ID": "ماڈل آئی ڈی درج کریں",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON پیش منظر",
|
||||
"July": "جولائی",
|
||||
"June": "جون",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT کی میعاد ختم ہونا",
|
||||
"JWT Token": "JWT ٹوکن",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "سن رہے ہیں...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "مقامی ماڈلز",
|
||||
"Lost": "گم شدہ",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
|
||||
"Manage": "مینیج کریں",
|
||||
"Manage Arena Models": "ایرینا ماڈلز کا نظم کریں",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "سادہ متن (.txt)",
|
||||
"Playground": "کھیل کا میدان",
|
||||
"Please carefully review the following warnings:": "براہ کرم درج ذیل انتباہات کو احتیاط سے پڑھیں:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
|
||||
"Please fill in all fields.": "براہ کرم تمام فیلڈز مکمل کریں",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "ایک پائپ لائن منتخب کریں",
|
||||
"Select a pipeline url": "پائپ لائن یو آر ایل منتخب کریں",
|
||||
"Select a tool": "ایک ٹول منتخب کریں",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "انجن منتخب کریں",
|
||||
"Select Knowledge": "علم منتخب کریں",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
|
||||
"By {{name}}": "",
|
||||
"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "",
|
||||
"Code formatted successfully": "Mã được định dạng thành công",
|
||||
"Code Interpreter": "",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "Tổng hợp mọi tài liệu",
|
||||
"Color": "",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "Xác nhận Mật khẩu",
|
||||
"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.": "",
|
||||
"Connections": "Kết nối",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Description": "Mô tả",
|
||||
"Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "Đã tắt",
|
||||
"Discover a function": "Khám phá function",
|
||||
"Discover a model": "Khám phá model",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable autocomplete generation for chat messages": "",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
|
||||
"Enable Google Drive": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "Cho phép tìm kiếm Web",
|
||||
"Enabled": "Đã bật",
|
||||
"Engine": "",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
|
||||
"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "Nhập API key cho Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter CFG Scale (e.g. 7.0)": "",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "Nhập Google PSE Engine Id",
|
||||
"Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "",
|
||||
"Enter language codes": "Nhập mã ngôn ngữ",
|
||||
"Enter Model ID": "",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "Xem trước JSON",
|
||||
"July": "Tháng 7",
|
||||
"June": "Tháng 6",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT Hết hạn",
|
||||
"JWT Token": "Token JWT",
|
||||
"Kagi Search API Key": "",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "Đang nghe...",
|
||||
"Llama.cpp": "",
|
||||
"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "",
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
|
||||
"Manage": "Quản lý",
|
||||
"Manage Arena Models": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "Văn bản thô (.txt)",
|
||||
"Playground": "Thử nghiệm (Playground)",
|
||||
"Please carefully review the following warnings:": "Vui lòng xem xét cẩn thận các cảnh báo sau:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please fill in all fields.": "",
|
||||
"Please select a model first.": "",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "Chọn một quy trình",
|
||||
"Select a pipeline url": "Chọn url quy trình",
|
||||
"Select a tool": "Chọn tool",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "",
|
||||
"Select Engine": "Chọn Engine",
|
||||
"Select Knowledge": "",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing 搜索 V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
|
||||
"Bocha Search API Key": "Bocha Search API 密钥",
|
||||
"Brave Search API Key": "Brave Search API 密钥",
|
||||
"By {{name}}": "由 {{name}} 提供",
|
||||
"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "代码执行",
|
||||
"Code formatted successfully": "代码格式化成功",
|
||||
"Code Interpreter": "代码解释器",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "文件集",
|
||||
"Color": "颜色",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "确认密码",
|
||||
"Confirm your action": "确定吗?",
|
||||
"Confirm your new password": "确认新密码",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "外部连接",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制推理模型的推理努力。仅适用于支持推理努力的特定提供商的推理模型。(默认值:中等)",
|
||||
"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "描述您的知识库和目标",
|
||||
"Description": "描述",
|
||||
"Didn't fully follow instructions": "没有完全遵照指示",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "禁用",
|
||||
"Discover a function": "发现更多函数",
|
||||
"Discover a model": "发现更多模型",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "语义向量模型设置为 \"{{embedding_model}}\"",
|
||||
"Enable API Key": "启用 API 密钥",
|
||||
"Enable autocomplete generation for chat messages": "启用聊天消息的输入框内容猜测补全",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "启用分享至社区",
|
||||
"Enable Google Drive": "启用 Google 云端硬盘",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "启用内存锁定(mlock)以防止模型数据被交换出RAM。此选项将模型的工作集页面锁定在RAM中,确保它们不会被交换到磁盘。这可以通过避免页面错误和确保快速数据访问来帮助维持性能。",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "启用联网搜索",
|
||||
"Enabled": "启用",
|
||||
"Engine": "引擎",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
|
||||
"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
|
||||
"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "输入 Application DN 密码",
|
||||
"Enter Bing Search V7 Endpoint": "输入 Bing Search V7 端点",
|
||||
"Enter Bing Search V7 Subscription Key": "输入 Bing Search V7 订阅密钥",
|
||||
"Enter Bocha Search API Key": "输入 Bocha Search API 密钥",
|
||||
"Enter Brave Search API Key": "输入 Brave Search API 密钥",
|
||||
"Enter certificate path": "输入证书路径",
|
||||
"Enter CFG Scale (e.g. 7.0)": "输入 CFG Scale (例如:7.0)",
|
||||
@ -358,12 +368,14 @@
|
||||
"Enter Google PSE Engine Id": "输入 Google PSE 引擎 ID",
|
||||
"Enter Image Size (e.g. 512x512)": "输入图像分辨率 (例如:512x512)",
|
||||
"Enter Jina API Key": "输入 Jina API 密钥",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "输入 Kagi Search API 密钥",
|
||||
"Enter language codes": "输入语言代码",
|
||||
"Enter Model ID": "输入模型 ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "输入模型标签 (例如:{{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "输入 Mojeek Search API 密钥",
|
||||
"Enter Bocha Search API Key": "输入 Bocha Search API 密钥",
|
||||
"Enter Number of Steps (e.g. 50)": "输入步骤数 (Steps) (例如:50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "输入代理 URL (例如:https://用户名:密码@主机名:端口)",
|
||||
"Enter reasoning effort": "设置推理努力",
|
||||
@ -544,6 +556,8 @@
|
||||
"JSON Preview": "JSON 预览",
|
||||
"July": "七月",
|
||||
"June": "六月",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT 过期",
|
||||
"JWT Token": "JWT 令牌",
|
||||
"Kagi Search API Key": "Kagi 搜索 API 密钥",
|
||||
@ -577,6 +591,7 @@
|
||||
"Listening...": "正在倾听...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "本地",
|
||||
"Local Models": "本地模型",
|
||||
"Lost": "落败",
|
||||
@ -586,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
|
||||
"Manage": "管理",
|
||||
"Manage Arena Models": "管理竞技场模型",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "管理模型",
|
||||
"Manage Ollama": "管理 Ollama",
|
||||
"Manage Ollama API Connections": "管理Ollama API连接",
|
||||
@ -633,7 +649,6 @@
|
||||
"Models Access": "访问模型列表",
|
||||
"Models configuration saved successfully": "模型配置保存成功",
|
||||
"Mojeek Search API Key": "Mojeek Search API 密钥",
|
||||
"Bocha Search API Key": "Bocha Search API 密钥",
|
||||
"more": "更多",
|
||||
"More": "更多",
|
||||
"Name": "名称",
|
||||
@ -730,6 +745,7 @@
|
||||
"Plain text (.txt)": "TXT 文档 (.txt)",
|
||||
"Playground": "AI 对话游乐场",
|
||||
"Please carefully review the following warnings:": "请仔细阅读以下警告信息:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "请输出一个 prompt",
|
||||
"Please fill in all fields.": "请填写所有字段。",
|
||||
"Please select a model first.": "请先选择一个模型。",
|
||||
@ -837,6 +853,7 @@
|
||||
"Select a pipeline": "选择一个管道",
|
||||
"Select a pipeline url": "选择一个管道 URL",
|
||||
"Select a tool": "选择一个工具",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "选择一个 Ollama 实例。",
|
||||
"Select Engine": "选择引擎",
|
||||
"Select Knowledge": "选择知识",
|
||||
|
@ -122,6 +122,7 @@
|
||||
"Beta": "測試",
|
||||
"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
|
||||
"Bocha Search API Key": "",
|
||||
"Brave Search API Key": "Brave 搜尋 API 金鑰",
|
||||
"By {{name}}": "由 {{name}} 製作",
|
||||
"Bypass SSL verification for Websites": "略過網站的 SSL 驗證",
|
||||
@ -178,6 +179,8 @@
|
||||
"Code execution": "程式碼執行",
|
||||
"Code formatted successfully": "程式碼格式化成功",
|
||||
"Code Interpreter": "程式碼解釋器",
|
||||
"Code Interpreter Engine": "",
|
||||
"Code Interpreter Prompt Template": "",
|
||||
"Collection": "收藏",
|
||||
"Color": "顏色",
|
||||
"ComfyUI": "ComfyUI",
|
||||
@ -194,6 +197,7 @@
|
||||
"Confirm Password": "確認密碼",
|
||||
"Confirm your action": "確認您的操作",
|
||||
"Confirm your new password": "確認您的新密碼",
|
||||
"Connect to your own OpenAI compatible API endpoints.": "",
|
||||
"Connections": "連線",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制用於推理模型的推理程度 。僅適用於特定供應商提供的、支援推理程度設定的推理模型。(預設:中等)",
|
||||
"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
|
||||
@ -269,6 +273,9 @@
|
||||
"Describe your knowledge base and objectives": "描述您的知識庫和目標",
|
||||
"Description": "描述",
|
||||
"Didn't fully follow instructions": "未完全遵循指示",
|
||||
"Direct Connections": "",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
|
||||
"Direct Connections settings updated": "",
|
||||
"Disabled": "已停用",
|
||||
"Discover a function": "發掘函式",
|
||||
"Discover a model": "發掘模型",
|
||||
@ -327,6 +334,7 @@
|
||||
"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為 \"{{embedding_model}}\"",
|
||||
"Enable API Key": "啟用 API 金鑰",
|
||||
"Enable autocomplete generation for chat messages": "啟用聊天訊息的自動完成生成",
|
||||
"Enable Code Interpreter": "",
|
||||
"Enable Community Sharing": "啟用社群分享",
|
||||
"Enable Google Drive": "啟用 Google Drive",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "啟用記憶體鎖定(mlock)以防止模型資料被換出 RAM。此選項會將模型的工作頁面集鎖定在 RAM 中,確保它們不會被換出到磁碟。這可以透過避免頁面錯誤和確保快速資料存取來維持效能。",
|
||||
@ -337,6 +345,7 @@
|
||||
"Enable Web Search": "啟用網頁搜尋",
|
||||
"Enabled": "已啟用",
|
||||
"Engine": "引擎",
|
||||
"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
||||
"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
|
||||
"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
|
||||
@ -345,6 +354,7 @@
|
||||
"Enter Application DN Password": "輸入應用程式 DN 密碼",
|
||||
"Enter Bing Search V7 Endpoint": "輸入 Bing 搜尋 V7 端點",
|
||||
"Enter Bing Search V7 Subscription Key": "輸入 Bing 搜尋 V7 訂閱金鑰",
|
||||
"Enter Bocha Search API Key": "",
|
||||
"Enter Brave Search API Key": "輸入 Brave 搜尋 API 金鑰",
|
||||
"Enter certificate path": "輸入憑證路徑",
|
||||
"Enter CFG Scale (e.g. 7.0)": "輸入 CFG 比例(例如:7.0)",
|
||||
@ -358,6 +368,9 @@
|
||||
"Enter Google PSE Engine Id": "輸入 Google PSE 引擎 ID",
|
||||
"Enter Image Size (e.g. 512x512)": "輸入圖片大小(例如:512x512)",
|
||||
"Enter Jina API Key": "輸入 Jina API 金鑰",
|
||||
"Enter Jupyter Password": "",
|
||||
"Enter Jupyter Token": "",
|
||||
"Enter Jupyter URL": "",
|
||||
"Enter Kagi Search API Key": "輸入 Kagi 搜尋 API 金鑰",
|
||||
"Enter language codes": "輸入語言代碼",
|
||||
"Enter Model ID": "輸入模型 ID",
|
||||
@ -543,6 +556,8 @@
|
||||
"JSON Preview": "JSON 預覽",
|
||||
"July": "7 月",
|
||||
"June": "6 月",
|
||||
"Jupyter Auth": "",
|
||||
"Jupyter URL": "",
|
||||
"JWT Expiration": "JWT 過期時間",
|
||||
"JWT Token": "JWT Token",
|
||||
"Kagi Search API Key": "Kagi 搜尋 API 金鑰",
|
||||
@ -576,6 +591,7 @@
|
||||
"Listening...": "正在聆聽...",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "大型語言模型可能會出錯。請驗證重要資訊。",
|
||||
"Loading Kokoro.js...": "",
|
||||
"Local": "本機",
|
||||
"Local Models": "本機模型",
|
||||
"Lost": "已遺失",
|
||||
@ -585,6 +601,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
|
||||
"Manage": "管理",
|
||||
"Manage Arena Models": "管理競技模型",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "管理模型",
|
||||
"Manage Ollama": "管理 Ollama",
|
||||
"Manage Ollama API Connections": "管理 Ollama API 連線",
|
||||
@ -728,6 +745,7 @@
|
||||
"Plain text (.txt)": "純文字 (.txt)",
|
||||
"Playground": "遊樂場",
|
||||
"Please carefully review the following warnings:": "請仔細閱讀以下警告:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a prompt": "請輸入提示詞",
|
||||
"Please fill in all fields.": "請填寫所有欄位。",
|
||||
"Please select a model first.": "請先選擇型號。",
|
||||
@ -835,6 +853,7 @@
|
||||
"Select a pipeline": "選擇管線",
|
||||
"Select a pipeline url": "選擇管線 URL",
|
||||
"Select a tool": "選擇工具",
|
||||
"Select an auth method": "",
|
||||
"Select an Ollama instance": "選擇一個 Ollama 實例",
|
||||
"Select Engine": "選擇引擎",
|
||||
"Select Knowledge": "選擇知識庫",
|
||||
|
Loading…
x
Reference in New Issue
Block a user