chore: format

This commit is contained in:
Timothy Jaeryang Baek 2025-02-20 01:01:29 -08:00
parent 2b913a99a3
commit eeb00a5ca2
60 changed files with 1548 additions and 1210 deletions

View File

@ -15,15 +15,12 @@ from typing import (
Optional,
Sequence,
Union,
Literal
Literal,
)
import aiohttp
import certifi
import validators
from langchain_community.document_loaders import (
PlaywrightURLLoader,
WebBaseLoader
)
from langchain_community.document_loaders import PlaywrightURLLoader, WebBaseLoader
from langchain_community.document_loaders.firecrawl import FireCrawlLoader
from langchain_community.document_loaders.base import BaseLoader
from langchain_core.documents import Document
@ -33,7 +30,7 @@ from open_webui.config import (
PLAYWRIGHT_WS_URI,
RAG_WEB_LOADER_ENGINE,
FIRECRAWL_API_BASE_URL,
FIRECRAWL_API_KEY
FIRECRAWL_API_KEY,
)
from open_webui.env import SRC_LOG_LEVELS
@ -75,6 +72,7 @@ def safe_validate_urls(url: Sequence[str]) -> Sequence[str]:
continue
return valid_urls
def resolve_hostname(hostname):
# Get address information
addr_info = socket.getaddrinfo(hostname, None)
@ -85,16 +83,13 @@ def resolve_hostname(hostname):
return ipv4_addresses, ipv6_addresses
def extract_metadata(soup, url):
metadata = {
"source": url
}
metadata = {"source": url}
if title := soup.find("title"):
metadata["title"] = title.get_text()
if description := soup.find("meta", attrs={"name": "description"}):
metadata["description"] = description.get(
"content", "No description found."
)
metadata["description"] = description.get("content", "No description found.")
if html := soup.find("html"):
metadata["language"] = html.get("lang", "No language found.")
return metadata
@ -154,15 +149,15 @@ class SafeFireCrawlLoader(BaseLoader):
Examples include crawlerOptions.
For more details, visit: https://github.com/mendableai/firecrawl-py
"""
proxy_server = proxy.get('server') if proxy else None
proxy_server = proxy.get("server") if proxy else None
if trust_env and not proxy_server:
env_proxies = urllib.request.getproxies()
env_proxy_server = env_proxies.get('https') or env_proxies.get('http')
env_proxy_server = env_proxies.get("https") or env_proxies.get("http")
if env_proxy_server:
if proxy:
proxy['server'] = env_proxy_server
proxy["server"] = env_proxy_server
else:
proxy = { 'server': env_proxy_server }
proxy = {"server": env_proxy_server}
self.web_paths = web_paths
self.verify_ssl = verify_ssl
self.requests_per_second = requests_per_second
@ -184,7 +179,7 @@ class SafeFireCrawlLoader(BaseLoader):
api_key=self.api_key,
api_url=self.api_url,
mode=self.mode,
params=self.params
params=self.params,
)
yield from loader.lazy_load()
except Exception as e:
@ -203,7 +198,7 @@ class SafeFireCrawlLoader(BaseLoader):
api_key=self.api_key,
api_url=self.api_url,
mode=self.mode,
params=self.params
params=self.params,
)
async for document in loader.alazy_load():
yield document
@ -273,19 +268,19 @@ class SafePlaywrightURLLoader(PlaywrightURLLoader):
headless: bool = True,
remove_selectors: Optional[List[str]] = None,
proxy: Optional[Dict[str, str]] = None,
playwright_ws_url: Optional[str] = None
playwright_ws_url: Optional[str] = None,
):
"""Initialize with additional safety parameters and remote browser support."""
proxy_server = proxy.get('server') if proxy else None
proxy_server = proxy.get("server") if proxy else None
if trust_env and not proxy_server:
env_proxies = urllib.request.getproxies()
env_proxy_server = env_proxies.get('https') or env_proxies.get('http')
env_proxy_server = env_proxies.get("https") or env_proxies.get("http")
if env_proxy_server:
if proxy:
proxy['server'] = env_proxy_server
proxy["server"] = env_proxy_server
else:
proxy = { 'server': env_proxy_server }
proxy = {"server": env_proxy_server}
# We'll set headless to False if using playwright_ws_url since it's handled by the remote browser
super().__init__(
@ -293,7 +288,7 @@ class SafePlaywrightURLLoader(PlaywrightURLLoader):
continue_on_failure=continue_on_failure,
headless=headless if playwright_ws_url is None else False,
remove_selectors=remove_selectors,
proxy=proxy
proxy=proxy,
)
self.verify_ssl = verify_ssl
self.requests_per_second = requests_per_second
@ -339,7 +334,9 @@ class SafePlaywrightURLLoader(PlaywrightURLLoader):
if self.playwright_ws_url:
browser = await p.chromium.connect(self.playwright_ws_url)
else:
browser = await p.chromium.launch(headless=self.headless, proxy=self.proxy)
browser = await p.chromium.launch(
headless=self.headless, proxy=self.proxy
)
for url in self.urls:
try:
@ -394,6 +391,7 @@ class SafePlaywrightURLLoader(PlaywrightURLLoader):
self._sync_wait_for_rate_limit()
return True
class SafeWebBaseLoader(WebBaseLoader):
"""WebBaseLoader with enhanced error handling for URLs."""
@ -496,11 +494,13 @@ class SafeWebBaseLoader(WebBaseLoader):
"""Load data into Document objects."""
return [document async for document in self.alazy_load()]
RAG_WEB_LOADER_ENGINES = defaultdict(lambda: SafeWebBaseLoader)
RAG_WEB_LOADER_ENGINES["playwright"] = SafePlaywrightURLLoader
RAG_WEB_LOADER_ENGINES["safe_web"] = SafeWebBaseLoader
RAG_WEB_LOADER_ENGINES["firecrawl"] = SafeFireCrawlLoader
def get_web_loader(
urls: Union[str, Sequence[str]],
verify_ssl: bool = True,
@ -515,7 +515,7 @@ def get_web_loader(
"verify_ssl": verify_ssl,
"requests_per_second": requests_per_second,
"continue_on_failure": True,
"trust_env": trust_env
"trust_env": trust_env,
}
if PLAYWRIGHT_WS_URI.value:
@ -529,6 +529,10 @@ def get_web_loader(
WebLoaderClass = RAG_WEB_LOADER_ENGINES[RAG_WEB_LOADER_ENGINE.value]
web_loader = WebLoaderClass(**web_loader_args)
log.debug("Using RAG_WEB_LOADER_ENGINE %s for %s URLs", web_loader.__class__.__name__, len(safe_urls))
log.debug(
"Using RAG_WEB_LOADER_ENGINE %s for %s URLs",
web_loader.__class__.__name__,
len(safe_urls),
)
return web_loader

View File

@ -268,7 +268,9 @@ async def speech(request: Request, user=Depends(get_verified_user)):
try:
# print(payload)
timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
async with aiohttp.ClientSession(
timeout=timeout, trust_env=True
) as session:
async with session.post(
url=f"{request.app.state.config.TTS_OPENAI_API_BASE_URL}/audio/speech",
json=payload,
@ -326,7 +328,9 @@ async def speech(request: Request, user=Depends(get_verified_user)):
try:
timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
async with aiohttp.ClientSession(
timeout=timeout, trust_env=True
) as session:
async with session.post(
f"https://api.elevenlabs.io/v1/text-to-speech/{voice_id}",
json={
@ -384,7 +388,9 @@ async def speech(request: Request, user=Depends(get_verified_user)):
<voice name="{language}">{payload["input"]}</voice>
</speak>"""
timeout = aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
async with aiohttp.ClientSession(timeout=timeout, trust_env=True) as session:
async with aiohttp.ClientSession(
timeout=timeout, trust_env=True
) as session:
async with session.post(
f"https://{region}.tts.speech.microsoft.com/cognitiveservices/v1",
headers={

View File

@ -547,7 +547,7 @@ async def signout(request: Request, response: Response):
response.delete_cookie("oauth_id_token")
return RedirectResponse(
headers=response.headers,
url=f"{logout_url}?id_token_hint={oauth_id_token}"
url=f"{logout_url}?id_token_hint={oauth_id_token}",
)
else:
raise HTTPException(

View File

@ -944,8 +944,12 @@ class ChatMessage(BaseModel):
@classmethod
def check_at_least_one_field(cls, field_value, values, **kwargs):
# Raise an error if both 'content' and 'tool_calls' are None
if field_value is None and ("tool_calls" not in values or values["tool_calls"] is None):
raise ValueError("At least one of 'content' or 'tool_calls' must be provided")
if field_value is None and (
"tool_calls" not in values or values["tool_calls"] is None
):
raise ValueError(
"At least one of 'content' or 'tool_calls' must be provided"
)
return field_value

View File

@ -253,23 +253,32 @@ class OAuthManager:
if provider == "github":
try:
access_token = token.get("access_token")
headers = {
"Authorization": f"Bearer {access_token}"
}
headers = {"Authorization": f"Bearer {access_token}"}
async with aiohttp.ClientSession() as session:
async with session.get("https://api.github.com/user/emails", headers=headers) as resp:
async with session.get(
"https://api.github.com/user/emails", headers=headers
) as resp:
if resp.ok:
emails = await resp.json()
# use the primary email as the user's email
primary_email = next((e["email"] for e in emails if e.get("primary")), None)
primary_email = next(
(e["email"] for e in emails if e.get("primary")),
None,
)
if primary_email:
email = primary_email
else:
log.warning("No primary email found in GitHub response")
raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)
log.warning(
"No primary email found in GitHub response"
)
raise HTTPException(
400, detail=ERROR_MESSAGES.INVALID_CRED
)
else:
log.warning("Failed to fetch GitHub email")
raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)
raise HTTPException(
400, detail=ERROR_MESSAGES.INVALID_CRED
)
except Exception as e:
log.warning(f"Error fetching GitHub email: {e}")
raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)

View File

@ -219,12 +219,16 @@ def convert_payload_openai_to_ollama(openai_payload: dict) -> dict:
# Re-Mapping OpenAI's `max_tokens` -> Ollama's `num_predict`
if "max_tokens" in ollama_options:
ollama_options["num_predict"] = ollama_options["max_tokens"]
del ollama_options["max_tokens"] # To prevent Ollama warning of invalid option provided
del ollama_options[
"max_tokens"
] # To prevent Ollama warning of invalid option provided
# Ollama lacks a "system" prompt option. It has to be provided as a direct parameter, so we copy it down.
if "system" in ollama_options:
ollama_payload["system"] = ollama_options["system"]
del ollama_options["system"] # To prevent Ollama warning of invalid option provided
del ollama_options[
"system"
] # To prevent Ollama warning of invalid option provided
if "metadata" in openai_payload:
ollama_payload["metadata"] = openai_payload["metadata"]

View File

@ -23,6 +23,7 @@ def convert_ollama_tool_call_to_openai(tool_calls: dict) -> dict:
openai_tool_calls.append(openai_tool_call)
return openai_tool_calls
def convert_ollama_usage_to_openai(data: dict) -> dict:
return {
"response_token/s": (
@ -56,10 +57,14 @@ def convert_ollama_usage_to_openai(data: dict) -> dict:
"total_duration": data.get("total_duration", 0),
"load_duration": data.get("load_duration", 0),
"prompt_eval_count": data.get("prompt_eval_count", 0),
"prompt_tokens": int(data.get("prompt_eval_count", 0)), # This is the OpenAI compatible key
"prompt_tokens": int(
data.get("prompt_eval_count", 0)
), # This is the OpenAI compatible key
"prompt_eval_duration": data.get("prompt_eval_duration", 0),
"eval_count": data.get("eval_count", 0),
"completion_tokens": int(data.get("eval_count", 0)), # This is the OpenAI compatible key
"completion_tokens": int(
data.get("eval_count", 0)
), # This is the OpenAI compatible key
"eval_duration": data.get("eval_duration", 0),
"approximate_total": (lambda s: f"{s // 3600}h{(s % 3600) // 60}m{s % 60}s")(
(data.get("total_duration", 0) or 0) // 1_000_000_000
@ -70,10 +75,11 @@ def convert_ollama_usage_to_openai(data: dict) -> dict:
"completion_tokens_details": { # This is the OpenAI compatible key
"reasoning_tokens": 0,
"accepted_prediction_tokens": 0,
"rejected_prediction_tokens": 0
}
"rejected_prediction_tokens": 0,
},
}
def convert_response_ollama_to_openai(ollama_response: dict) -> dict:
model = ollama_response.get("model", "ollama")
message_content = ollama_response.get("message", {}).get("content", "")

View File

@ -37,7 +37,7 @@ function initNetworkProxyFromEnv() {
* @see https://github.com/nodejs/undici/issues/2224
*/
if (!preferedProxy || !preferedProxy.startsWith('http')) return;
let preferedProxyURL
let preferedProxyURL;
try {
preferedProxyURL = new URL(preferedProxy).toString();
} catch {

View File

@ -239,7 +239,12 @@
</ul>
{/if}
{:else if token.type === 'details'}
<Collapsible title={token.summary} attributes={token?.attributes} className="w-full space-y-1" dir="auto">
<Collapsible
title={token.summary}
attributes={token?.attributes}
className="w-full space-y-1"
dir="auto"
>
<div class=" mb-1.5" slot="content">
<svelte:self
id={`${id}-${tokenIdx}-d`}

View File

@ -16,7 +16,8 @@
export let edit = false;
let enableFullContent = false;
$: isPDF = item?.meta?.content_type === 'application/pdf' ||
$: isPDF =
item?.meta?.content_type === 'application/pdf' ||
(item?.name && item?.name.toLowerCase().endsWith('.pdf'));
onMount(() => {
@ -38,7 +39,10 @@
class="hover:underline line-clamp-1"
on:click|preventDefault={() => {
if (!isPDF && item.url) {
window.open(item.type === 'file' ? `${item.url}/content` : `${item.url}`, '_blank');
window.open(
item.type === 'file' ? `${item.url}/content` : `${item.url}`,
'_blank'
);
}
}}
>

View File

@ -73,7 +73,9 @@
}}
>
<div
class="m-auto max-w-full {sizeToWidth(size)} {size !== 'full' ? 'mx-2' : ''} shadow-3xl min-h-fit scrollbar-hidden {className}"
class="m-auto max-w-full {sizeToWidth(size)} {size !== 'full'
? 'mx-2'
: ''} shadow-3xl min-h-fit scrollbar-hidden {className}"
in:flyAndScale
on:mousedown={(e) => {
e.stopPropagation();

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "أسقط أية ملفات هنا لإضافتها إلى المحادثة",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "أدخل Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "عام",
"General Settings": "الاعدادات العامة",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Изпълнение на код",
"Code Execution": "Изпълнение на код",
"Code Execution Engine": "Двигател за изпълнение на код",
"Code Execution Timeout": "",
"Code formatted successfully": "Кодът е форматиран успешно",
"Code Interpreter": "Интерпретатор на код",
"Code Interpreter Engine": "Двигател на интерпретатора на код",
@ -321,6 +322,7 @@
"Draw": "Рисуване",
"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста",
"e.g. My Filter": "напр. Моят филтър",
"e.g. My Tools": "напр. Моите инструменти",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Въведете API ключ за Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Въведете публичния URL адрес на вашия WebUI. Този URL адрес ще бъде използван за генериране на връзки в известията.",
"Enter Tika Server URL": "Въведете URL адрес на Tika сървър",
"Enter timeout in seconds": "",
"Enter Top K": "Въведете Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Функциите позволяват произволно изпълнение на код",
"Functions allow arbitrary code execution.": "Функциите позволяват произволно изпълнение на код.",
"Functions imported successfully": "Функциите са импортирани успешно",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Основни",
"General Settings": "Основни Настройки",
"Generate an image": "Генериране на изображение",
@ -552,8 +558,8 @@
"Import Prompts": "Импортване на промптове",
"Import Tools": "Импортиране на инструменти",
"Include": "Включи",
"Include --api-auth flag when running stable-diffusion-webui": "Включете флага --api-auth при стартиране на stable-diffusion-webui",
"Include --api flag when running stable-diffusion-webui": "Включете флага --api, когато стартирате stable-diffusion-webui",
"Include `--api-auth` flag when running stable-diffusion-webui": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "Влияе върху това колко бързо алгоритъмът реагира на обратната връзка от генерирания текст. По-ниска скорост на обучение ще доведе до по-бавни корекции, докато по-висока скорост на обучение ще направи алгоритъма по-отзивчив. (По подразбиране: 0.1)",
"Info": "Информация",
"Input commands": "Въведете команди",
@ -881,7 +887,7 @@
"Send": "Изпрати",
"Send a Message": "Изпращане на Съобщение",
"Send message": "Изпращане на съобщение",
"Sends stream_options: { include_usage: true } in the request.\nSupported providers will return token usage information in the response when set.": "Изпраща stream_options: { include_usage: true } в заявката.\nПоддържаните доставчици ще върнат информация за използването на токени в отговора, когато е зададено.",
"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
"September": "Септември",
"SerpApi API Key": "API ключ за SerpApi",
"SerpApi Engine": "Двигател на SerpApi",
@ -964,7 +970,7 @@
"Thanks for your feedback!": "Благодарим ви за вашия отзив!",
"The Application Account DN you bind with for search": "DN на акаунта на приложението, с който се свързвате за търсене",
"The base to search for users": "Базата за търсене на потребители",
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Размерът на партидата определя колко текстови заявки се обработват заедно наведнъж. По-голям размер на партидата може да увеличи производителността и скоростта на модела, но изисква и повече памет. (По подразбиране: 512)",
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Разработчиците зад този плъгин са страстни доброволци от общността. Ако намирате този плъгин полезен, моля, обмислете да допринесете за неговото развитие.",
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Класацията за оценка се базира на рейтинговата система Elo и се обновява в реално време.",
"The LDAP attribute that maps to the mail that users use to sign in.": "LDAP атрибутът, който съответства на имейла, който потребителите използват за вписване.",
@ -980,7 +986,7 @@
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Това гарантира, че ценните ви разговори се запазват сигурно във вашата бекенд база данни. Благодарим ви!",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Това е експериментална функция, може да не работи според очакванията и подлежи на промяна по всяко време.",
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "Тази опция контролира колко токена се запазват при обновяване на контекста. Например, ако е зададено на 2, последните 2 токена от контекста на разговора ще бъдат запазени. Запазването на контекста може да помогне за поддържане на непрекъснатостта на разговора, но може да намали способността за отговор на нови теми. (По подразбиране: 24)",
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "Тази опция задава максималния брой токени, които моделът може да генерира в своя отговор. Увеличаването на този лимит позволява на модела да предоставя по-дълги отговори, но може също да увеличи вероятността от генериране на безполезно или неуместно съдържание. (По подразбиране: 128)",
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "",
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Тази опция ще изтрие всички съществуващи файлове в колекцията и ще ги замени с новокачени файлове.",
"This response was generated by \"{{model}}\"": "Този отговор беше генериран от \"{{model}}\"",
"This will delete": "Това ще изтрие",
@ -1110,7 +1116,7 @@
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"",
"What are you trying to achieve?": "Какво се опитвате да постигнете?",
"What are you working on?": "Върху какво работите?",
"What's New in": "Какво е новото в",
"Whats New in": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Когато е активирано, моделът ще отговаря на всяко съобщение в чата в реално време, генерирайки отговор веднага щом потребителят изпрати съобщение. Този режим е полезен за приложения за чат на живо, но може да повлияе на производителността на по-бавен хардуер.",
"wherever you are": "където и да сте",
"Whisper (Local)": "Whisper (Локално)",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Top K লিখুন",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Execució de codi",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Codi formatat correctament",
"Code Interpreter": "Intèrpret de codi",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Dibuixar",
"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
"e.g. My Filter": "p. ex. El meu filtre",
"e.g. My Tools": "p. ex. Les meves eines",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Introdueix la clau API de Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Entra la URL pública de WebUI. Aquesta URL s'utilitzarà per generar els enllaços en les notificacions.",
"Enter Tika Server URL": "Introdueix l'URL del servidor Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Introdueix Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Les funcions permeten l'execució de codi arbitrari",
"Functions allow arbitrary code execution.": "Les funcions permeten l'execució de codi arbitrari.",
"Functions imported successfully": "Les funcions s'han importat correctament",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "General",
"General Settings": "Preferències generals",
"Generate an image": "Generar una imatge",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Ihulog ang bisan unsang file dinhi aron idugang kini sa panag-istoryahanay",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Pagsulod sa Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Pagsulod sa URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Heneral",
"General Settings": "kinatibuk-ang mga setting",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Provádění kódu",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kód byl úspěšně naformátován.",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Namalovat",
"Drop any files here to add to the conversation": "Sem přetáhněte libovolné soubory, které chcete přidat do konverzace",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Zadejte API klíč Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Zadejte URL serveru Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Zadejte horní K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadejte URL (např. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadejte URL (např. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funkce umožňují vykonávat libovolný kód.",
"Functions allow arbitrary code execution.": "Funkce umožňují provádění libovolného kódu.",
"Functions imported successfully": "Funkce byly úspěšně importovány",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Obecný",
"General Settings": "Obecná nastavení",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kode formateret korrekt",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Upload filer her for at tilføje til samtalen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Indtast Tavily API-nøgle",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Indtast Tika Server URL",
"Enter timeout in seconds": "",
"Enter Top K": "Indtast Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Indtast URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funktioner tillader kørsel af vilkårlig kode",
"Functions allow arbitrary code execution.": "Funktioner tillader kørsel af vilkårlig kode.",
"Functions imported successfully": "Funktioner importeret.",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Generelt",
"General Settings": "Generelle indstillinger",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Codeausführung",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Code erfolgreich formatiert",
"Code Interpreter": "Code-Interpreter",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Zeichnen",
"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie der Unterhaltung hinzuzufügen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen",
"e.g. My Filter": "z. B. Mein Filter",
"e.g. My Tools": "z. B. Meine Werkzeuge",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Geben Sie den Tavily-API-Schlüssel ein",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Geben sie die öffentliche URL Ihrer WebUI ein. Diese URL wird verwendet, um Links in den Benachrichtigungen zu generieren.",
"Enter Tika Server URL": "Geben Sie die Tika-Server-URL ein",
"Enter timeout in seconds": "",
"Enter Top K": "Geben Sie Top K ein",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Geben Sie die URL ein (z. B. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Geben Sie die URL ein (z. B. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funktionen ermöglichen die Ausführung beliebigen Codes",
"Functions allow arbitrary code execution.": "Funktionen ermöglichen die Ausführung beliebigen Codes.",
"Functions imported successfully": "Funktionen erfolgreich importiert",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Allgemein",
"General Settings": "Allgemeine Einstellungen",
"Generate an image": "Bild erzeugen",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Drop files here to add to conversation",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Enter Top Wow",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Woweral",
"General Settings": "General Doge Settings",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Εκτέλεση κώδικα",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Σχεδίαση",
"Drop any files here to add to the conversation": "Αφήστε οποιαδήποτε αρχεία εδώ για να προστεθούν στη συνομιλία",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο",
"e.g. My Filter": "π.χ. Το Φίλτρου Μου",
"e.g. My Tools": "π.χ. Τα Εργαλεία Μου",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Εισάγετε το Κλειδί API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Εισάγετε το URL διακομιστή Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Εισάγετε το Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Εισάγετε το URL (π.χ. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Οι λειτουργίες επιτρέπουν την εκτέλεση αυθαίρετου κώδικα",
"Functions allow arbitrary code execution.": "Οι λειτουργίες επιτρέπουν την εκτέλεση αυθαίρετου κώδικα.",
"Functions imported successfully": "Οι λειτουργίες εισήχθησαν με επιτυχία",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Γενικά",
"General Settings": "Γενικές Ρυθμίσεις",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "",
"General Settings": "",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "",
"General Settings": "",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Ejecución de código",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Se ha formateado correctamente el código.",
"Code Interpreter": "Interprete de Código",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Dibujar",
"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar la profanidad del texto",
"e.g. My Filter": "p.ej. Mi Filtro",
"e.g. My Tools": "p.ej. Mis Herramientas",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Ingrese la clave API de Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Ingrese la URL pública de su WebUI. Esta URL se utilizará para generar enlaces en las notificaciones.",
"Enter Tika Server URL": "Ingrese la URL del servidor Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Ingrese el Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ingrese la URL (p.ej., http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funciones habilitan la ejecución de código arbitrario",
"Functions allow arbitrary code execution.": "Funciones habilitan la ejecución de código arbitrario.",
"Functions imported successfully": "Funciones importadas exitosamente",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "General",
"General Settings": "Opciones Generales",
"Generate an image": "Generar una imagen",

View File

@ -182,6 +182,7 @@
"Code execution": "Kodearen exekuzioa",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kodea ongi formateatu da",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Marraztu",
"Drop any files here to add to the conversation": "Jaregin edozein fitxategi hemen elkarrizketara gehitzeko",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat",
"e.g. My Filter": "adib. Nire Iragazkia",
"e.g. My Tools": "adib. Nire Tresnak",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Sartu Tavily API Gakoa",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Sartu Tika Zerbitzari URLa",
"Enter timeout in seconds": "",
"Enter Top K": "Sartu Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sartu URLa (adib. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funtzioek kode arbitrarioa exekutatzea ahalbidetzen dute",
"Functions allow arbitrary code execution.": "Funtzioek kode arbitrarioa exekutatzea ahalbidetzen dute.",
"Functions imported successfully": "Funtzioak ongi inportatu dira",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Orokorra",
"General Settings": "Ezarpen Orokorrak",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "مقدار Top K را وارد کنید",
"Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "درون\u200cریزی توابع با موفقیت انجام شد",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "عمومی",
"General Settings": "تنظیمات عمومی",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Koodin suorittaminen",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Koodin muotoilu onnistui",
"Code Interpreter": "Ohjelmatulkki",
"Code Interpreter Engine": "Ohjelmatulkin moottori",
@ -321,6 +322,7 @@
"Draw": "Piirros",
"Drop any files here to add to the conversation": "Pudota tiedostoja tähän lisätäksesi ne keskusteluun",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä",
"e.g. My Filter": "esim. Oma suodatin",
"e.g. My Tools": "esim. Omat työkalut",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Kirjoita Tavily API -avain",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Kirjoita julkinen WebUI verkko-osoitteesi. Verkko-osoitetta käytetään osoitteiden luontiin ilmoituksissa.",
"Enter Tika Server URL": "Kirjoita Tika Server URL",
"Enter timeout in seconds": "",
"Enter Top K": "Kirjoita Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Kirjoita URL-osoite (esim. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Kirjoita URL-osoite (esim. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Toiminnot sallivat mielivaltaisen koodin suorittamisen",
"Functions allow arbitrary code execution.": "Toiminnot sallivat mielivaltaisen koodin suorittamisen.",
"Functions imported successfully": "Toiminnot tuotu onnistuneesti",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Yleinen",
"General Settings": "Yleiset asetukset",
"Generate an image": "Luo kuva",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Le code a été formaté avec succès",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Entrez les Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fonctions importées avec succès",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Général",
"General Settings": "Paramètres Généraux",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Exécution de code",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Le code a été formaté avec succès",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Match nul",
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
"e.g. My Filter": "par ex. Mon Filtre",
"e.g. My Tools": "par ex. Mes Outils",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Entrez l'URL publique de votre WebUI. Cette URL sera utilisée pour générer des liens dans les notifications.",
"Enter Tika Server URL": "Entrez l'URL du serveur Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Entrez les Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Les fonctions permettent l'exécution de code arbitraire",
"Functions allow arbitrary code execution.": "Les fonctions permettent l'exécution de code arbitraire.",
"Functions imported successfully": "Fonctions importées avec succès",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Général",
"General Settings": "Paramètres généraux",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "הזן Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "הזן כתובת URL (למשל http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "כללי",
"General Settings": "הגדרות כלליות",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "बातचीत में जोड़ने के लिए कोई भी फ़ाइल यहां छोड़ें",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "शीर्ष K दर्ज करें",
"Enter URL (e.g. http://127.0.0.1:7860/)": "यूआरएल दर्ज करें (उदा. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "सामान्य",
"General Settings": "सामान्य सेटिंग्स",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Unesite Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Unesite URL (npr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Općenito",
"General Settings": "Opće postavke",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Kód végrehajtás",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kód sikeresen formázva",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Rajzolás",
"Drop any files here to add to the conversation": "Húzz ide fájlokat a beszélgetéshez való hozzáadáshoz",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Add meg a Tavily API kulcsot",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Add meg a Tika szerver URL-t",
"Enter timeout in seconds": "",
"Enter Top K": "Add meg a Top K értéket",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Add meg az URL-t (pl. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "A funkciók tetszőleges kód végrehajtását teszik lehetővé",
"Functions allow arbitrary code execution.": "A funkciók tetszőleges kód végrehajtását teszik lehetővé.",
"Functions imported successfully": "Funkciók sikeresen importálva",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Általános",
"General Settings": "Általános beállítások",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kode berhasil diformat",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Letakkan file apa pun di sini untuk ditambahkan ke percakapan",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Masukkan Kunci API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Masukkan Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (mis. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fungsi berhasil diimpor",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Umum",
"General Settings": "Pengaturan Umum",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Cód a fhorghníomhú",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Cód formáidithe go rathúil",
"Code Interpreter": "Ateangaire Cód",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Tarraing",
"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "m.h. Scagaire chun profanity a bhaint as téacs",
"e.g. My Filter": "m.sh. Mo Scagaire",
"e.g. My Tools": "e.g. Mo Uirlisí",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Cuir isteach eochair API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Cuir isteach URL poiblí do WebUI. Bainfear úsáid as an URL seo chun naisc a ghiniúint sna fógraí.",
"Enter Tika Server URL": "Cuir isteach URL freastalaí Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Cuir isteach Barr K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Ligeann feidhmeanna forghníomhú cód",
"Functions allow arbitrary code execution.": "Ceadaíonn feidhmeanna forghníomhú cód treallach.",
"Functions imported successfully": "Feidhmeanna allmhairi",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Ginearálta",
"General Settings": "Socruithe Ginearálta",
"Generate an image": "Gin íomhá",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Inserisci Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Generale",
"General Settings": "Impostazioni generali",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "コードフォーマットに成功しました",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Tavily API Keyを入力してください。",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Tika Server URLを入力してください。",
"Enter timeout in seconds": "",
"Enter Top K": "トップ K を入力してください",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL を入力してください (例: http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Functionsのインポートが成功しました",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "一般",
"General Settings": "一般設定",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "გადაიტანეთ ფაილები აქ, რათა დაამატოთ ისინი მიმოწერაში",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგალითად, '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "შეიყვანეთ Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ მისამართი (მაგალითად http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "შეიყვანეთ მისამართი (მაგალითად http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "ზოგადი",
"General Settings": "ზოგადი პარამეტრები",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "코드 실행",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "성공적으로 코드가 생성되었습니다",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "그리기",
"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 유효한 시간 단위는 '초', '분', '시'입니다.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Tavily API 키 입력",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI의 공개 URL을 입력해 주세요. 이 URL은 알림에서 링크를 생성하는 데 사용합니다.",
"Enter Tika Server URL": "Tika 서버 URL 입력",
"Enter timeout in seconds": "",
"Enter Top K": "Top K 입력",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL 입력(예: http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "함수로 임이의 코드 실행 허용하기",
"Functions allow arbitrary code execution.": "함수가 임이의 코드를 실행하도록 허용하였습니다",
"Functions imported successfully": "성공적으로 함수가 가져왔습니다",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "일반",
"General Settings": "일반 설정",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kodas suformatuotas sėkmingai",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Įkelkite dokumentus čia, kad juos pridėti į pokalbį",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Įveskite Tavily API raktą",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Įveskite Tika serverio nuorodą",
"Enter timeout in seconds": "",
"Enter Top K": "Įveskite Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Įveskite nuorodą (pvz. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funkcijos leidžia nekontroliuojamo kodo vykdymą",
"Functions allow arbitrary code execution.": "Funkcijos leidžia nekontroliuojamo kodo vykdymą",
"Functions imported successfully": "Funkcijos importuotos sėkmingai",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Bendri",
"General Settings": "Bendri nustatymai",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kod berjaya diformatkan",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Letakkan mana-mana fail di sini untuk ditambahkan pada perbualan",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Masukkan Kunci API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Masukkan URL Pelayan Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Masukkan 'Top K'",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (cth http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (cth http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Fungsi membenarkan pelaksanaan kod sewenang-wenangnya",
"Functions allow arbitrary code execution.": "Fungsi membenarkan pelaksanaan kod sewenang-wenangnya.",
"Functions imported successfully": "Fungsi berjaya diimport",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Umum",
"General Settings": "Tetapan Umum",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Kodekjøring",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Koden er formatert",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Tegne",
"Drop any files here to add to the conversation": "Slipp filer her for å legge dem til i samtalen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst",
"e.g. My Filter": "f.eks. Mitt filter",
"e.g. My Tools": "f.eks. Mine verktøy",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Angi API-nøkkel for Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Angi server-URL for Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Angi Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Angi URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funksjoner tillater vilkårlig kodekjøring",
"Functions allow arbitrary code execution.": "Funksjoner tillater vilkårlig kodekjøring.",
"Functions imported successfully": "Funksjoner er importert",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Generelt",
"General Settings": "Generelle innstillinger",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Code uitvoeren",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Code succesvol geformateerd",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Teken",
"Drop any files here to add to the conversation": "Sleep hier bestanden om toe te voegen aan het gesprek",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
"e.g. My Filter": "bijv. Mijn filter",
"e.g. My Tools": "bijv. Mijn gereedschappen",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Voer Tavily API-sleutel in",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Voer Tika Server URL in",
"Enter timeout in seconds": "",
"Enter Top K": "Voeg Top K toe",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Voer URL in (Bijv. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Functies staan willekeurige code-uitvoering toe",
"Functions allow arbitrary code execution.": "Functies staan willekeurige code-uitvoering toe",
"Functions imported successfully": "Functies succesvol geïmporteerd",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Algemeen",
"General Settings": "Algemene instellingen",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "ਗੱਲਬਾਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਕੋਈ ਵੀ ਫਾਈਲ ਇੱਥੇ ਛੱਡੋ",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "ਸਿਖਰ K ਦਰਜ ਕਰੋ",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "ਆਮ",
"General Settings": "ਆਮ ਸੈਟਿੰਗਾਂ",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Wykonanie kodu",
"Code Execution": "Wykonanie kodu",
"Code Execution Engine": "Silnik wykonawczy kodu",
"Code Execution Timeout": "",
"Code formatted successfully": "Kod został sformatowany pomyślnie.",
"Code Interpreter": "Interpreter kodu",
"Code Interpreter Engine": "Silnik Interpretatora Kodu",
@ -321,6 +322,7 @@
"Draw": "Rysuj",
"Drop any files here to add to the conversation": "Przeciągnij i upuść pliki tutaj, aby dodać je do rozmowy.",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to: 's' (sekunda), 'm' (minuta), 'h' (godzina).",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "np. Filtr do usuwania wulgaryzmów z tekstu",
"e.g. My Filter": "np. Mój Filtr",
"e.g. My Tools": "np. Moje Narzędzia",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Wprowadź klucz API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Wprowadź publiczny adres URL Twojego WebUI. Ten adres URL zostanie użyty do generowania linków w powiadomieniach.",
"Enter Tika Server URL": "Wprowadź adres URL serwera Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Wprowadź {Top K}",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Podaj adres URL (np. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funkcje umożliwiają wykonanie dowolnego kodu",
"Functions allow arbitrary code execution.": "Funkcje umożliwiają wykonanie dowolnego kodu.",
"Functions imported successfully": "Funkcje zostały pomyślnie zaimportowane",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Ogólne",
"General Settings": "Ustawienia ogólne",
"Generate an image": "Wygeneruj obraz",

View File

@ -182,6 +182,7 @@
"Code execution": "Execução de código",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Código formatado com sucesso",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Empate",
"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
"e.g. My Filter": "Exemplo: Meu Filtro",
"e.g. My Tools": "Exemplo: Minhas Ferramentas",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Digite a Chave API do Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Digite a URL do Servidor Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Digite o Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funções permitem a execução arbitrária de código",
"Functions allow arbitrary code execution.": "Funções permitem a execução arbitrária de código.",
"Functions imported successfully": "Funções importadas com sucesso",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Geral",
"General Settings": "Configurações Gerais",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Largue os ficheiros aqui para adicionar à conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Escreva o Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Escreva o URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Geral",
"General Settings": "Configurações Gerais",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Executarea codului",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Cod formatat cu succes",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Desenează",
"Drop any files here to add to the conversation": "Plasează orice fișiere aici pentru a le adăuga la conversație",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Introduceți Cheia API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Introduceți URL-ul Serverului Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Introduceți Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introduceți URL-ul (de ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funcțiile permit executarea arbitrară a codului",
"Functions allow arbitrary code execution.": "Funcțiile permit executarea arbitrară a codului.",
"Functions imported successfully": "Funcțiile au fost importate cu succes",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "General",
"General Settings": "Setări Generale",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Выполнение кода",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Код успешно отформатирован",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Рисовать",
"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Введите ключ API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Введите URL-адрес сервера Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Введите Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Функции позволяют выполнять произвольный код",
"Functions allow arbitrary code execution.": "Функции позволяют выполнять произвольный код.",
"Functions imported successfully": "Функции успешно импортированы",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Общее",
"General Settings": "Общие настройки",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Vykonávanie kódu",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kód bol úspešne naformátovaný.",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Nakresliť",
"Drop any files here to add to the conversation": "Sem presuňte akékoľvek súbory, ktoré chcete pridať do konverzácie",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Zadajte API kľúč Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Zadajte URL servera Tika",
"Enter timeout in seconds": "",
"Enter Top K": "Zadajte horné K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadajte URL (napr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Funkcie umožňujú vykonávať ľubovoľný kód.",
"Functions allow arbitrary code execution.": "Funkcie umožňujú vykonávanie ľubovoľného kódu.",
"Functions imported successfully": "Funkcie boli úspešne importované",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Všeobecné",
"General Settings": "Všeobecné nastavenia",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Извршавање кода",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Код форматиран успешно",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Нацртај",
"Drop any files here to add to the conversation": "Убаците било које датотеке овде да их додате у разговор",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Унесите Топ К",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Унесите адресу (нпр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Опште",
"General Settings": "Општа подешавања",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Släpp filer här för att lägga till i samtalet",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "Ange Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Allmän",
"General Settings": "Allmänna inställningar",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "วางไฟล์ใดๆ ที่นี่เพื่อเพิ่มในการสนทนา",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ถูกต้องคือ 's', 'm', 'h'",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "ใส่คีย์ API ของ Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "ใส่ URL เซิร์ฟเวอร์ของ Tika",
"Enter timeout in seconds": "",
"Enter Top K": "ใส่ Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "ฟังก์ชันอนุญาตการเรียกใช้โค้ดโดยพลการ",
"Functions allow arbitrary code execution.": "ฟังก์ชันอนุญาตการเรียกใช้โค้ดโดยพลการ",
"Functions imported successfully": "นำเข้าฟังก์ชันสำเร็จ",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "ทั่วไป",
"General Settings": "การตั้งค่าทั่วไป",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "",
"Enter timeout in seconds": "",
"Enter Top K": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "",
"General Settings": "",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Kod yürütme",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Kod başarıyla biçimlendirildi",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "Çiz",
"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "örn. Metinden küfürleri kaldırmak için bir filtre",
"e.g. My Filter": "örn. Benim Filtrem",
"e.g. My Tools": "örn. Benim Araçlarım",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Tavily API Anahtarını Girin",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Tika Sunucu URL'sini Girin",
"Enter timeout in seconds": "",
"Enter Top K": "Top K'yı girin",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Fonksiyonlar keyfi kod yürütülmesine izin verir",
"Functions allow arbitrary code execution.": "Fonksiyonlar keyfi kod yürütülmesine izin verir.",
"Functions imported successfully": "Fonksiyonlar başarıyla içe aktarıldı",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Genel",
"General Settings": "Genel Ayarlar",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "Виконання коду",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Код успішно відформатовано",
"Code Interpreter": "Інтерпретатор коду",
"Code Interpreter Engine": "Двигун інтерпретатора коду",
@ -321,6 +322,7 @@
"Draw": "Малювати",
"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "напр., фільтр для видалення нецензурної лексики з тексту",
"e.g. My Filter": "напр., Мій фільтр",
"e.g. My Tools": "напр., Мої інструменти",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Введіть ключ API Tavily",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Введіть публічний URL вашого WebUI. Цей URL буде використовуватися для генерування посилань у сповіщеннях.",
"Enter Tika Server URL": "Введіть URL-адресу сервера Tika ",
"Enter timeout in seconds": "",
"Enter Top K": "Введіть Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Функції дозволяють виконання довільного коду",
"Functions allow arbitrary code execution.": "Функції дозволяють виконання довільного коду.",
"Functions imported successfully": "Функції успішно імпортовано",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Загальні",
"General Settings": "Загальні налаштування",
"Generate an image": "Згенерувати зображення",

View File

@ -182,6 +182,7 @@
"Code execution": "کوڈ کا نفاذ",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "ڈرائنگ کریں",
"Drop any files here to add to the conversation": "گفتگو میں شامل کرنے کے لیے کوئی بھی فائل یہاں چھوڑیں",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Tavily API کلید درج کریں",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "ٹیکا سرور یو آر ایل درج کریں",
"Enter timeout in seconds": "",
"Enter Top K": "اوپر کے K درج کریں",
"Enter URL (e.g. http://127.0.0.1:7860/)": "یو آر ایل درج کریں (جیسے کہ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "فنکشنز کوڈ کے بلاواسطہ نفاذ کی اجازت دیتے ہیں",
"Functions allow arbitrary code execution.": "افعال صوابدیدی کوڈ کے اجرا کی اجازت دیتے ہیں",
"Functions imported successfully": "فنکشنز کامیابی سے درآمد ہو گئے ہیں",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "عمومی",
"General Settings": "عمومی ترتیبات",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "",
"Code Execution": "",
"Code Execution Engine": "",
"Code Execution Timeout": "",
"Code formatted successfully": "Mã được định dạng thành công",
"Code Interpreter": "",
"Code Interpreter Engine": "",
@ -321,6 +322,7 @@
"Draw": "",
"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "Nhập Tavily API Key",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter Tika Server URL": "Nhập URL cho Tika Server",
"Enter timeout in seconds": "",
"Enter Top K": "Nhập Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Nhập URL (vd: http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "Các Function cho phép thực thi mã tùy ý",
"Functions allow arbitrary code execution.": "Các Function cho phép thực thi mã tùy ý.",
"Functions imported successfully": "Các function đã được nạp thành công",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "Cài đặt chung",
"General Settings": "Cấu hình chung",
"Generate an image": "",

View File

@ -182,6 +182,7 @@
"Code execution": "代码执行",
"Code Execution": "代码执行",
"Code Execution Engine": "代码执行引擎",
"Code Execution Timeout": "",
"Code formatted successfully": "代码格式化成功",
"Code Interpreter": "代码解释器",
"Code Interpreter Engine": "代码解释引擎",
@ -321,6 +322,7 @@
"Draw": "平局",
"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s''10m'。有效的时间单位是秒:'s',分:'m',时:'h'。",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "例如:一个用于过滤文本中不当内容的过滤器",
"e.g. My Filter": "例如:我的过滤器",
"e.g. My Tools": "例如:我的工具",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "输入 Tavily API 密钥",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "输入 WebUI 的公共 URL。此 URL 将用于在通知中生成链接。",
"Enter Tika Server URL": "输入 Tika 服务器地址",
"Enter timeout in seconds": "",
"Enter Top K": "输入 Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "输入地址 (例如http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "输入地址 (例如http://localhost:11434)",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "注意:函数有权执行任意代码",
"Functions allow arbitrary code execution.": "注意:函数有权执行任意代码。",
"Functions imported successfully": "函数导入成功",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "通用",
"General Settings": "通用设置",
"Generate an image": "生成图像",

View File

@ -182,6 +182,7 @@
"Code execution": "程式碼執行",
"Code Execution": "程式碼執行",
"Code Execution Engine": "程式碼執行引擎",
"Code Execution Timeout": "",
"Code formatted successfully": "程式碼格式化成功",
"Code Interpreter": "程式碼解釋器",
"Code Interpreter Engine": "程式碼解釋器引擎",
@ -321,6 +322,7 @@
"Draw": "繪製",
"Drop any files here to add to the conversation": "拖拽任意檔案到此處以新增至對話",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "例如:從文字中移除髒話的篩選器",
"e.g. My Filter": "例如:我的篩選器",
"e.g. My Tools": "例如:我的工具",
@ -408,6 +410,7 @@
"Enter Tavily API Key": "輸入 Tavily API 金鑰",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "請輸入您 WebUI 的公開 URL。此 URL 將用於在通知中產生連結。",
"Enter Tika Server URL": "輸入 Tika 伺服器 URL",
"Enter timeout in seconds": "",
"Enter Top K": "輸入 Top K 值",
"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如http://127.0.0.1:7860/",
"Enter URL (e.g. http://localhost:11434)": "輸入 URL例如http://localhost:11434",
@ -500,6 +503,9 @@
"Functions allow arbitrary code execution": "函式允許執行任意程式碼",
"Functions allow arbitrary code execution.": "函式允許執行任意程式碼。",
"Functions imported successfully": "成功匯入函式",
"Gemini": "",
"Gemini API Config": "",
"Gemini API Key is required.": "",
"General": "一般",
"General Settings": "一般設定",
"Generate an image": "產生圖片",