Merge branch 'dev' of github.com:taylorwilsdon/open-webui into dev

This commit is contained in:
Taylor Wilsdon 2025-04-16 13:01:04 -07:00
commit 54c6e64eec
10 changed files with 234 additions and 228 deletions

View File

@ -1693,6 +1693,7 @@ MILVUS_TOKEN = os.environ.get("MILVUS_TOKEN", None)
# Qdrant
QDRANT_URI = os.environ.get("QDRANT_URI", None)
QDRANT_API_KEY = os.environ.get("QDRANT_API_KEY", None)
QDRANT_ON_DISK = os.environ.get("QDRANT_ON_DISK", "false").lower() == "true"
# OpenSearch
OPENSEARCH_URI = os.environ.get("OPENSEARCH_URI", "https://localhost:9200")

View File

@ -6,7 +6,7 @@ from qdrant_client.http.models import PointStruct
from qdrant_client.models import models
from open_webui.retrieval.vector.main import VectorItem, SearchResult, GetResult
from open_webui.config import QDRANT_URI, QDRANT_API_KEY
from open_webui.config import QDRANT_URI, QDRANT_API_KEY, QDRANT_ON_DISK
from open_webui.env import SRC_LOG_LEVELS
NO_LIMIT = 999999999
@ -20,6 +20,7 @@ class QdrantClient:
self.collection_prefix = "open-webui"
self.QDRANT_URI = QDRANT_URI
self.QDRANT_API_KEY = QDRANT_API_KEY
self.QDRANT_ON_DISK = QDRANT_ON_DISK
self.client = (
Qclient(url=self.QDRANT_URI, api_key=self.QDRANT_API_KEY)
if self.QDRANT_URI
@ -50,7 +51,9 @@ class QdrantClient:
self.client.create_collection(
collection_name=collection_name_with_prefix,
vectors_config=models.VectorParams(
size=dimension, distance=models.Distance.COSINE
size=dimension,
distance=models.Distance.COSINE,
on_disk=self.QDRANT_ON_DISK,
),
)

View File

@ -173,7 +173,8 @@ async def list_files(user=Depends(get_verified_user), content: bool = Query(True
if not content:
for file in files:
del file.data["content"]
if "content" in file.data:
del file.data["content"]
return files
@ -214,7 +215,8 @@ async def search_files(
if not content:
for file in matching_files:
del file.data["content"]
if "content" in file.data:
del file.data["content"]
return matching_files

View File

@ -778,7 +778,7 @@
</div>
</button>
</div>
{:else if filteredItems.length === 0}
{:else}
<div class="mb-3"></div>
{/if}

View File

@ -57,17 +57,17 @@
"All": "Tots",
"All Documents": "Tots els documents",
"All models deleted successfully": "Tots els models s'han eliminat correctament",
"Allow Call": "",
"Allow Call": "Permetre la trucada",
"Allow Chat Controls": "Permetre els controls de xat",
"Allow Chat Delete": "Permetre eliminar el xat",
"Allow Chat Deletion": "Permetre la supressió del xat",
"Allow Chat Edit": "Permetre editar el xat",
"Allow File Upload": "Permetre la pujada d'arxius",
"Allow Multiple Models in Chat": "",
"Allow Multiple Models in Chat": "Permetre múltiple models al xat",
"Allow non-local voices": "Permetre veus no locals",
"Allow Speech to Text": "",
"Allow Speech to Text": "Permetre Parla a Text",
"Allow Temporary Chat": "Permetre el xat temporal",
"Allow Text to Speech": "",
"Allow Text to Speech": "Permetre Text a Parla",
"Allow User Location": "Permetre la ubicació de l'usuari",
"Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
"Allowed Endpoints": "Punts d'accés permesos",
@ -83,7 +83,7 @@
"and": "i",
"and {{COUNT}} more": "i {{COUNT}} més",
"and create a new shared link.": "i crear un nou enllaç compartit.",
"Android": "",
"Android": "Android",
"API Base URL": "URL Base de l'API",
"API Key": "clau API",
"API Key created.": "clau API creada.",
@ -245,7 +245,7 @@
"Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!",
"Copied to clipboard": "Copiat al porta-retalls",
"Copy": "Copiar",
"Copy Formatted Text": "",
"Copy Formatted Text": "Copiar el text formatat",
"Copy last code block": "Copiar l'últim bloc de codi",
"Copy last response": "Copiar l'última resposta",
"Copy Link": "Copiar l'enllaç",
@ -308,7 +308,7 @@
"Deleted User": "Usuari eliminat",
"Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius",
"Description": "Descripció",
"Detect Artifacts Automatically": "",
"Detect Artifacts Automatically": "Detectar automàticament els artefactes",
"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
"Direct": "Directe",
"Direct Connections": "Connexions directes",
@ -364,7 +364,7 @@
"e.g. my_filter": "p. ex. els_meus_filtres",
"e.g. my_tools": "p. ex. les_meves_eines",
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)",
"Edit": "Editar",
"Edit Arena Model": "Editar model de l'Arena",
"Edit Channel": "Editar el canal",
@ -414,8 +414,8 @@
"Enter Document Intelligence Key": "Introdueix la clau de Document Intelligence",
"Enter domains separated by commas (e.g., example.com,site.org)": "Introdueix els dominis separats per comes (p. ex. example.com,site.org)",
"Enter Exa API Key": "Introdueix la clau API de d'EXA",
"Enter Firecrawl API Base URL": "",
"Enter Firecrawl API Key": "",
"Enter Firecrawl API Base URL": "Introdueix la URL base de Firecrawl API",
"Enter Firecrawl API Key": "Introdueix la clau API de Firecrawl",
"Enter Github Raw URL": "Introdueix l'URL en brut de Github",
"Enter Google PSE API Key": "Introdueix la clau API de Google PSE",
"Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google",
@ -433,8 +433,8 @@
"Enter Mojeek Search API Key": "Introdueix la clau API de Mojeek Search",
"Enter Number of Steps (e.g. 50)": "Introdueix el nombre de passos (p. ex. 50)",
"Enter Perplexity API Key": "Introdueix la clau API de Perplexity",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter Playwright Timeout": "Introdueix el timeout de Playwright",
"Enter Playwright WebSocket URL": "Introdueix la URL de Playwright WebSocket",
"Enter proxy URL (e.g. https://user:password@host:port)": "Entra l'URL (p. ex. https://user:password@host:port)",
"Enter reasoning effort": "Introdueix l'esforç de raonament",
"Enter Sampler (e.g. Euler a)": "Introdueix el mostrejador (p.ex. Euler a)",
@ -452,13 +452,13 @@
"Enter server host": "Introdueix el servidor",
"Enter server label": "Introdueix l'etiqueta del servidor",
"Enter server port": "Introdueix el port del servidor",
"Enter Sougou Search API sID": "",
"Enter Sougou Search API SK": "",
"Enter Sougou Search API sID": "Introdueix el sID de l'API de Sougou Search",
"Enter Sougou Search API SK": "Introdueix l'SK de l'API de Sougou Search",
"Enter stop sequence": "Introdueix la seqüència de parada",
"Enter system prompt": "Introdueix la indicació de sistema",
"Enter system prompt here": "Entra la indicació de sistema aquí",
"Enter Tavily API Key": "Introdueix la clau API de Tavily",
"Enter Tavily Extract Depth": "",
"Enter Tavily Extract Depth": "Introdueix la profunditat d'extracció 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": "Entra el temps màxim en segons",
@ -539,8 +539,8 @@
"Filter is now globally enabled": "El filtre ha estat activat globalment",
"Filters": "Filtres",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "S'ha detectat la suplantació d'identitat de l'empremta digital: no es poden utilitzar les inicials com a avatar. S'estableix la imatge de perfil predeterminada.",
"Firecrawl API Base URL": "",
"Firecrawl API Key": "",
"Firecrawl API Base URL": "URL de l'API de base de Firecrawl",
"Firecrawl API Key": "Clau API de Firecrawl",
"Fluidly stream large external response chunks": "Transmetre amb fluïdesa grans trossos de resposta externa",
"Focus chat input": "Estableix el focus a l'entrada del xat",
"Folder deleted successfully": "Carpeta eliminada correctament",
@ -605,8 +605,8 @@
"Hybrid Search": "Cerca híbrida",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
"ID": "ID",
"iframe Sandbox Allow Forms": "",
"iframe Sandbox Allow Same Origin": "",
"iframe Sandbox Allow Forms": "Permetre formularis sandbox iframe",
"iframe Sandbox Allow Same Origin": "Permetre same-origin sandbox iframe",
"Ignite curiosity": "Despertar la curiositat",
"Image": "Imatge",
"Image Compression": "Compressió d'imatges",
@ -667,7 +667,7 @@
"Label": "Etiqueta",
"Landing Page Mode": "Mode de la pàgina d'entrada",
"Language": "Idioma",
"Language Locales": "",
"Language Locales": "Localització d'idiomes",
"Last Active": "Activitat recent",
"Last Modified": "Modificació",
"Last reply": "Darrera resposta",
@ -851,8 +851,8 @@
"Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs",
"Playwright Timeout (ms)": "",
"Playwright WebSocket URL": "",
"Playwright Timeout (ms)": "Temps d'espera (ms) de Playwright",
"Playwright WebSocket URL": "URL del WebSocket de Playwright",
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
"Please do not close the settings page while loading the model.": "No tanquis la pàgina de configuració mentre carregues el model.",
"Please enter a prompt": "Si us plau, entra una indicació",
@ -898,11 +898,11 @@
"References from": "Referències de",
"Refused when it shouldn't have": "Refusat quan no hauria d'haver estat",
"Regenerate": "Regenerar",
"Reindex": "",
"Reindex Knowledge Base Vectors": "",
"Reindex": "Reindexar",
"Reindex Knowledge Base Vectors": "Reindexar els vector base del Coneixement",
"Release Notes": "Notes de la versió",
"Relevance": "Rellevància",
"Relevance Threshold": "",
"Relevance Threshold": "Límit de rellevància",
"Remove": "Eliminar",
"Remove Model": "Eliminar el model",
"Rename": "Canviar el nom",
@ -1032,8 +1032,8 @@
"Sign up to {{WEBUI_NAME}}": "Registrar-se a {{WEBUI_NAME}}",
"Signing in to {{WEBUI_NAME}}": "Iniciant sessió a {{WEBUI_NAME}}",
"sk-1234": "sk-1234",
"Sougou Search API sID": "",
"Sougou Search API SK": "",
"Sougou Search API sID": "sID de l'API de Sougou Search",
"Sougou Search API SK": "SK de l'API de Sougou Search",
"Source": "Font",
"Speech Playback Speed": "Velocitat de la parla",
"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
@ -1061,7 +1061,7 @@
"Tap to interrupt": "Prem per interrompre",
"Tasks": "Tasques",
"Tavily API Key": "Clau API de Tavily",
"Tavily Extract Depth": "",
"Tavily Extract Depth": "Profunditat d'extracció de Tavily",
"Tell us more:": "Dona'ns més informació:",
"Temperature": "Temperatura",
"Template": "Plantilla",
@ -1184,8 +1184,8 @@
"Use Gravatar": "Utilitzar Gravatar",
"Use groups to group your users and assign permissions.": "Utilitza grups per agrupar els usuaris i assignar permisos.",
"Use Initials": "Utilitzar inicials",
"Use no proxy to fetch page contents.": "",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
"Use no proxy to fetch page contents.": "No utilitzis un proxy per obtenir contingut de la pàgina.",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Utilitza el proxy designat per les variables d'entorn http_proxy i https_proxy per obtenir el contingut de la pàgina.",
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "usuari",
@ -1203,7 +1203,7 @@
"variable": "variable",
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
"Verify Connection": "Verificar la connexió",
"Verify SSL Certificate": "",
"Verify SSL Certificate": "Verificar el certificat SSL",
"Version": "Versió",
"Version {{selectedVersion}} of {{totalVersions}}": "Versió {{selectedVersion}} de {{totalVersions}}",
"View Replies": "Veure les respostes",
@ -1218,7 +1218,7 @@
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avís: l'execució de Jupyter permet l'execució de codi arbitrari, la qual cosa comporta greus riscos de seguretat; procediu amb extrema precaució.",
"Web": "Web",
"Web API": "Web API",
"Web Loader Engine": "",
"Web Loader Engine": "Motor de càrrega Web",
"Web Search": "Cerca la web",
"Web Search Engine": "Motor de cerca de la web",
"Web Search in Chat": "Cerca a internet al xat",

View File

@ -346,7 +346,7 @@
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?",
"don't install random functions from sources you don't trust.": "installieren Sie keine Funktionen aus Quellen, denen Sie nicht vertrauen.",
"don't install random tools from sources you don't trust.": "installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vertrauen.",
"Don't like the style": "schlechter Schreibstil",
"Don't like the style": "Schlechter Schreibstil",
"Done": "Erledigt",
"Download": "Exportieren",
"Download as SVG": "Exportieren als SVG",
@ -781,7 +781,7 @@
"No valves to update": "Keine Valves zum Aktualisieren",
"None": "Nichts",
"Not factually correct": "Nicht sachlich korrekt",
"Not helpful": "Nich hilfreich",
"Not helpful": "Nicht hilfreich",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn Sie eine Mindestpunktzahl festlegen, werden in der Suche nur Dokumente mit einer Punktzahl größer oder gleich der Mindestpunktzahl zurückgegeben.",
"Notes": "Notizen",
"Notification Sound": "Benachrichtigungston",

View File

@ -57,17 +57,17 @@
"All": "Kaikki",
"All Documents": "Kaikki asiakirjat",
"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
"Allow Call": "",
"Allow Call": "Salli puhelut",
"Allow Chat Controls": "Salli keskustelujen hallinta",
"Allow Chat Delete": "Salli keskustelujen poisto",
"Allow Chat Deletion": "Salli keskustelujen poisto",
"Allow Chat Edit": "Salli keskustelujen muokkaus",
"Allow File Upload": "Salli tiedostojen lataus",
"Allow Multiple Models in Chat": "",
"Allow Multiple Models in Chat": "Salli useampi malli keskustelussa",
"Allow non-local voices": "Salli ei-paikalliset äänet",
"Allow Speech to Text": "",
"Allow Speech to Text": "Salli puhe tekstiksi",
"Allow Temporary Chat": "Salli väliaikaiset keskustelut",
"Allow Text to Speech": "",
"Allow Text to Speech": "Salli teksti puheeksi",
"Allow User Location": "Salli käyttäjän sijainti",
"Allow Voice Interruption in Call": "Salli äänen keskeytys puhelussa",
"Allowed Endpoints": "Hyväksytyt päätepisteet",
@ -83,7 +83,7 @@
"and": "ja",
"and {{COUNT}} more": "ja {{COUNT}} muuta",
"and create a new shared link.": "ja luo uusi jaettu linkki.",
"Android": "",
"Android": "Android",
"API Base URL": "API:n verkko-osoite",
"API Key": "API-avain",
"API Key created.": "API-avain luotu.",
@ -116,7 +116,7 @@
"Auth": "Todennus",
"Authenticate": "Todentaa",
"Authentication": "Todennus",
"Auto": "",
"Auto": "Automaattinen",
"Auto-Copy Response to Clipboard": "Kopioi vastaus automaattisesti leikepöydälle",
"Auto-playback response": "Soita vastaus automaattisesti",
"Autocomplete Generation": "Automaattisen täydennyksen luonti",
@ -157,7 +157,7 @@
"Change Password": "Vaihda salasana",
"Channel Name": "Kanavan nimi",
"Channels": "Kanavat",
"Character": "Hahmo",
"Character": "Kirjain",
"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
"Chart new frontiers": "Kartoita uusia rajapintoja",
"Chat": "Keskustelu",
@ -224,10 +224,10 @@
"Confirm your new password": "Vahvista uusi salasanasi",
"Connect to your own OpenAI compatible API endpoints.": "Yhdistä omat OpenAI yhteensopivat API päätepisteet.",
"Connect to your own OpenAPI compatible external tool servers.": "Yhdistä omat ulkopuoliset OpenAPI yhteensopivat työkalu palvelimet.",
"Connection failed": "",
"Connection successful": "",
"Connection failed": "Yhteys epäonnistui",
"Connection successful": "Yhteys onnistui",
"Connections": "Yhteydet",
"Connections saved successfully": "",
"Connections saved successfully": "Yhteyksien tallentaminen onnistui",
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
"Content": "Sisältö",
@ -245,7 +245,7 @@
"Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!",
"Copied to clipboard": "Kopioitu leikepöydälle",
"Copy": "Kopioi",
"Copy Formatted Text": "",
"Copy Formatted Text": "Kopioi muotoiltu teksti",
"Copy last code block": "Kopioi viimeisin koodilohko",
"Copy last response": "Kopioi viimeisin vastaus",
"Copy Link": "Kopioi linkki",
@ -308,7 +308,7 @@
"Deleted User": "Käyttäjä poistettu",
"Describe your knowledge base and objectives": "Kuvaa tietokantasi ja tavoitteesi",
"Description": "Kuvaus",
"Detect Artifacts Automatically": "",
"Detect Artifacts Automatically": "Tunnista artefaktit automaattisesti",
"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
"Direct": "Suora",
"Direct Connections": "Suorat yhteydet",
@ -364,7 +364,7 @@
"e.g. my_filter": "esim. oma_suodatin",
"e.g. my_tools": "esim. omat_työkalut",
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)",
"Edit": "Muokkaa",
"Edit Arena Model": "Muokkaa Arena-mallia",
"Edit Channel": "Muokkaa kanavaa",
@ -407,15 +407,15 @@
"Enter CFG Scale (e.g. 7.0)": "Kirjoita CFG-mitta (esim. 7.0)",
"Enter Chunk Overlap": "Syötä osien päällekkäisyys",
"Enter Chunk Size": "Syötä osien koko",
"Enter comma-seperated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter comma-seperated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Syötä pilkulla erottaen \"token:bias_value\" parit (esim. 5432:100, 413:-100)",
"Enter description": "Kirjoita kuvaus",
"Enter Docling Server URL": "Kirjoita Docling palvelimen verkko-osoite",
"Enter Document Intelligence Endpoint": "Kirjoita asiakirja tiedustelun päätepiste",
"Enter Document Intelligence Key": "Kirjoiuta asiakirja tiedustelun avain",
"Enter domains separated by commas (e.g., example.com,site.org)": "Verkko-osoitteet erotetaan pilkulla (esim. esimerkki.com,sivu.org)",
"Enter Exa API Key": "Kirjoita Exa API -avain",
"Enter Firecrawl API Base URL": "",
"Enter Firecrawl API Key": "",
"Enter Firecrawl API Base URL": "Kirjoita Firecrawl API -verkko-osoite",
"Enter Firecrawl API Key": "Kirjoita Firecrawl API-avain",
"Enter Github Raw URL": "Kirjoita Github Raw -verkko-osoite",
"Enter Google PSE API Key": "Kirjoita Google PSE API -avain",
"Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus",
@ -433,8 +433,8 @@
"Enter Mojeek Search API Key": "Kirjoita Mojeek Search API -avain",
"Enter Number of Steps (e.g. 50)": "Kirjoita askelten määrä (esim. 50)",
"Enter Perplexity API Key": "Aseta Perplexity API-avain",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter Playwright Timeout": "Aseta Playwright aikakatkaisu",
"Enter Playwright WebSocket URL": "Aseta Playwright WebSocket-aikakatkaisu",
"Enter proxy URL (e.g. https://user:password@host:port)": "Kirjoita välityspalvelimen verkko-osoite (esim. https://käyttäjä:salasana@host:portti)",
"Enter reasoning effort": "",
"Enter Sampler (e.g. Euler a)": "Kirjoita näytteistäjä (esim. Euler a)",
@ -516,7 +516,7 @@
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
"Failed to fetch models": "Mallien hakeminen epäonnistui",
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
"Failed to save connections": "",
"Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
"Failed to update settings": "Asetusten päivittäminen epäonnistui",
"Failed to upload file.": "Tiedoston lataaminen epäonnistui.",
@ -539,8 +539,8 @@
"Filter is now globally enabled": "Suodatin on nyt otettu käyttöön globaalisti",
"Filters": "Suodattimet",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Sormenjäljen väärentäminen havaittu: Alkukirjaimia ei voi käyttää avatarina. Käytetään oletusprofiilikuvaa.",
"Firecrawl API Base URL": "",
"Firecrawl API Key": "",
"Firecrawl API Base URL": "Firecrawl API -verkko-osoite",
"Firecrawl API Key": "Firecrawl API-avain",
"Fluidly stream large external response chunks": "Virtaa suuria ulkoisia vastausosia joustavasti",
"Focus chat input": "Fokusoi syöttökenttään",
"Folder deleted successfully": "Kansio poistettu onnistuneesti",
@ -605,8 +605,8 @@
"Hybrid Search": "Hybridihaku",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Vahvistan, että olen lukenut ja ymmärrän toimintani seuraukset. Olen tietoinen mielivaltaisen koodin suorittamiseen liittyvistä riskeistä ja olen varmistanut lähteen luotettavuuden.",
"ID": "Tunnus",
"iframe Sandbox Allow Forms": "",
"iframe Sandbox Allow Same Origin": "",
"iframe Sandbox Allow Forms": "Salli lomakkeet iframe hiekkalaatikossa",
"iframe Sandbox Allow Same Origin": "Salli iframe hiekkalaatikko samasta alkuperästä",
"Ignite curiosity": "Sytytä uteliaisuus",
"Image": "Kuva",
"Image Compression": "Kuvan pakkaus",
@ -667,14 +667,14 @@
"Label": "Tunniste",
"Landing Page Mode": "Etusivun tila",
"Language": "Kieli",
"Language Locales": "",
"Language Locales": "Kielialueet",
"Last Active": "Viimeksi aktiivinen",
"Last Modified": "Viimeksi muokattu",
"Last reply": "Viimeksi vastattu",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-palvelin päivitetty",
"Leaderboard": "Tulosluettelo",
"Learn more about OpenAPI tool servers.": "",
"Learn more about OpenAPI tool servers.": "Lue lisää OpenAPI työkalu palvelimista.",
"Leave empty for unlimited": "Rajaton tyhjäksi jättämällä",
"Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Jätä tyhjäksi sisällyttääksesi \"{{url}}/api/tags\" päätepisteen mallit",
"Leave empty to include all models from \"{{url}}/models\" endpoint": "Jätä tyhjäksi sisällyttääksesi \"{{url}}/models\" päätepisteen mallit",
@ -812,7 +812,7 @@
"Open file": "Avaa tiedosto",
"Open in full screen": "Avaa koko näytön tilaan",
"Open new chat": "Avaa uusi keskustelu",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
"Open WebUI uses faster-whisper internally.": "Open WebUI käyttää faster-whisperia sisäisesti.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI -versio (v{{OPEN_WEBUI_VERSION}}) on alempi kuin vaadittu versio (v{{REQUIRED_VERSION}})",
@ -851,13 +851,13 @@
"Pipelines Valves": "Putkistojen venttiilit",
"Plain text (.txt)": "Pelkkä teksti (.txt)",
"Playground": "Leikkipaikka",
"Playwright Timeout (ms)": "",
"Playwright WebSocket URL": "",
"Playwright Timeout (ms)": "Playwright aikakatkaisu (ms)",
"Playwright WebSocket URL": "Playwright WebSocket verkko-osoite",
"Please carefully review the following warnings:": "Tarkista huolellisesti seuraavat varoitukset:",
"Please do not close the settings page while loading the model.": "Älä sulje asetussivua mallin latautuessa.",
"Please enter a prompt": "Kirjoita kehote",
"Please enter a valid path": "",
"Please enter a valid URL": "",
"Please enter a valid path": "Kirjoita kelvollinen polku",
"Please enter a valid URL": "Kirjoita kelvollinen verkko-osoite",
"Please fill in all fields.": "Täytä kaikki kentät.",
"Please select a model first.": "Valitse ensin malli.",
"Please select a model.": "Valitse malli.",
@ -885,7 +885,7 @@
"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
"Query Generation Prompt": "Kyselytulosten luontikehote",
"RAG Template": "RAG-malline",
"RAG Template": "RAG-kehote",
"Rating": "Arviointi",
"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
"Read": "Lue",
@ -898,11 +898,11 @@
"References from": "Viitteet lähteistä",
"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
"Regenerate": "Uudelleentuota",
"Reindex": "",
"Reindex Knowledge Base Vectors": "",
"Reindex": "Indeksoi uudelleen",
"Reindex Knowledge Base Vectors": "Indeksoi tietämyksen vektorit uudelleen",
"Release Notes": "Julkaisutiedot",
"Relevance": "Relevanssi",
"Relevance Threshold": "",
"Relevance Threshold": "Relevanssikynnys",
"Remove": "Poista",
"Remove Model": "Poista malli",
"Rename": "Nimeä uudelleen",
@ -1085,7 +1085,7 @@
"Theme": "Teema",
"Thinking...": "Ajattelee...",
"This action cannot be undone. Do you wish to continue?": "Tätä toimintoa ei voi peruuttaa. Haluatko jatkaa?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Tämä kanava on luotiin {{createdAt}}. Tämä on {{channelName}} kanavan alku.",
"This chat wont appear in history and your messages will not be saved.": "Tämä keskustelu ei näy historiassa, eikä viestejäsi tallenneta.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tämä varmistaa, että arvokkaat keskustelusi tallennetaan turvallisesti backend-tietokantaasi. Kiitos!",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tämä on kokeellinen ominaisuus, se ei välttämättä toimi odotetulla tavalla ja se voi muuttua milloin tahansa.",
@ -1144,7 +1144,7 @@
"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
"Tools Public Sharing": "Työkalujen julkinen jakaminen",
"Top K": "Top K",
"Top K Reranker": "",
"Top K Reranker": "Top K uudelleen sijoittaja",
"Top P": "Top P",
"Transformers": "Muunnokset",
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
@ -1170,7 +1170,7 @@
"Updated": "Päivitetty",
"Updated at": "Päivitetty",
"Updated At": "Päivitetty",
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.": "",
"Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.": "Päivitä lisenssi saadaksesi parempia ominaisuuksia, mukaan lukien mukautetun teeman ja brändäyksen sekä yksilöllistä tukea.",
"Upload": "Lataa",
"Upload a GGUF model": "Lataa GGUF-malli",
"Upload directory": "Latauksen hakemisto",
@ -1184,8 +1184,8 @@
"Use Gravatar": "Käytä Gravataria",
"Use groups to group your users and assign permissions.": "Käytä ryhmiä jäsentääksesi käyttäjiä ja antaaksesi käyttöoikeuksia.",
"Use Initials": "Käytä alkukirjaimia",
"Use no proxy to fetch page contents.": "",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
"Use no proxy to fetch page contents.": "Älä käytä välityspalvelinta sivun tietoja haettaessa.",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Käytä http_proxy- ja https_proxy-ympäristömuuttujien määrittämää välityspalvelinta sivun sisällön hakemiseen.",
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "käyttäjä",
@ -1203,7 +1203,7 @@
"variable": "muuttuja",
"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
"Verify Connection": "Tarkista yhteys",
"Verify SSL Certificate": "",
"Verify SSL Certificate": "Tarkista SSL-varmenne",
"Version": "Versio",
"Version {{selectedVersion}} of {{totalVersions}}": "Versio {{selectedVersion}} / {{totalVersions}}",
"View Replies": "Näytä vastaukset",
@ -1218,7 +1218,7 @@
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varoitus: Jupyter käyttö voi mahdollistaa mielivaltaiseen koodin suorittamiseen, mikä voi aiheuttaa tietoturvariskejä - käytä äärimmäisen varoen.",
"Web": "Web",
"Web API": "Web-API",
"Web Loader Engine": "",
"Web Loader Engine": "Verkko lataaja moottori",
"Web Search": "Verkkohaku",
"Web Search Engine": "Hakukoneet",
"Web Search in Chat": "Verkkohaku keskustelussa",
@ -1248,7 +1248,7 @@
"Write your model template content here": "Kirjoita mallisi mallinnesisältö tähän",
"Yesterday": "Eilen",
"You": "Sinä",
"You are currently using a trial license. Please contact support to upgrade your license.": "",
"You are currently using a trial license. Please contact support to upgrade your license.": "Käytät tällä hetkellä kokeiluversiota. Ota yhteyttä tukeen lisenssin päivittämiseksi.",
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.",
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",

View File

@ -4,10 +4,10 @@
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(m.sh. `sh webui.sh --api --api-auth username_password `)",
"(e.g. `sh webui.sh --api`)": "(m.sh. `sh webui.sh --api`)",
"(latest)": "(is déanaí)",
"(Ollama)": "",
"(Ollama)": "(Ollama)",
"{{ models }}": "{{ models }}",
"{{COUNT}} Available Tools": "",
"{{COUNT}} hidden lines": "",
"{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil",
"{{COUNT}} hidden lines": "{{COUNT}} línte folaithe",
"{{COUNT}} Replies": "{{COUNT}} Freagra",
"{{user}}'s Chats": "Comhráite {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach",
@ -54,28 +54,28 @@
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Tá rochtain ag riarthóirí ar gach uirlis i gcónaí; teastaíonn ó úsáideoirí uirlisí a shanntar in aghaidh an mhúnla sa spás oibre.",
"Advanced Parameters": "Paraiméadair Casta",
"Advanced Params": "Paraiméid Casta",
"All": "",
"All": "Gach",
"All Documents": "Gach Doiciméad",
"All models deleted successfully": "Scriosadh na múnlaí go léir go rathúil",
"Allow Call": "",
"Allow Call": "Ceadaigh Glao",
"Allow Chat Controls": "Ceadaigh Rialuithe Comhrá",
"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
"Allow Chat Deletion": "Cead Scriosadh Comhrá",
"Allow Chat Edit": "Ceadaigh Eagarthóireacht Comhrá",
"Allow File Upload": "Ceadaigh Uaslódáil Comhad",
"Allow Multiple Models in Chat": "",
"Allow Multiple Models in Chat": "Ceadaigh Múnlaí Il sa Chomhrá",
"Allow non-local voices": "Lig guthanna neamh-áitiúla",
"Allow Speech to Text": "",
"Allow Speech to Text": "Ceadaigh Óráid go Téacs",
"Allow Temporary Chat": "Cead Comhrá Sealadach",
"Allow Text to Speech": "",
"Allow Text to Speech": "Ceadaigh Téacs a Chaint",
"Allow User Location": "Ceadaigh Suíomh Úsáideora",
"Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao",
"Allowed Endpoints": "Críochphointí Ceadaithe",
"Already have an account?": "Tá cuntas agat cheana féin?",
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "",
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach.",
"Always": "I gcónaí",
"Always Collapse Code Blocks": "",
"Always Expand Details": "",
"Always Collapse Code Blocks": "Laghdaigh Bloic Chóid i gcónaí",
"Always Expand Details": "Leathnaigh Sonraí i gcónaí",
"Amazing": "Iontach",
"an assistant": "cúntóir",
"Analyzed": "Anailísithe",
@ -83,7 +83,7 @@
"and": "agus",
"and {{COUNT}} more": "agus {{COUNT}} eile",
"and create a new shared link.": "agus cruthaigh nasc nua roinnte.",
"Android": "",
"Android": "Android",
"API Base URL": "URL Bonn API",
"API Key": "Eochair API",
"API Key created.": "Cruthaíodh Eochair API.",
@ -104,7 +104,7 @@
"Are you sure?": "An bhfuil tú cinnte?",
"Arena Models": "Múnlaí Airéine",
"Artifacts": "Déantáin",
"Ask": "",
"Ask": "Fiafraigh",
"Ask a question": "Cuir ceist",
"Assistant": "Cúntóir",
"Attach file from knowledge": "Ceangail comhad ó eolas",
@ -113,10 +113,10 @@
"Attribute for Username": "Tréith don Ainm Úsáideora",
"Audio": "Fuaim",
"August": "Lúnasa",
"Auth": "",
"Auth": "Údarú",
"Authenticate": "Fíordheimhnigh",
"Authentication": "Fíordheimhniú",
"Auto": "",
"Auto": "Uath",
"Auto-Copy Response to Clipboard": "Freagra AutoCopy go Gearrthaisce",
"Auto-playback response": "Freagra uathsheinm",
"Autocomplete Generation": "Giniúint Uathchríochnaithe",
@ -126,7 +126,7 @@
"AUTOMATIC1111 Base URL": "UATHOIBRÍOCH1111 Bun URL",
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.",
"Available list": "Liosta atá ar fáil",
"Available Tools": "",
"Available Tools": "Uirlisí ar Fáil",
"available!": "ar fáil!",
"Awful": "Uafásach",
"Azure AI Speech": "Óráid Azure AI",
@ -142,7 +142,7 @@
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
"Bocha Search API Key": "Eochair API Cuardach Bocha",
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Treisiú nó pionós a ghearradh ar chomharthaí sonracha as freagraí srianta. Déanfar luachanna laofachta a chlampáil idir -100 agus 100 (san áireamh). (Réamhshocrú: ceann ar bith)",
"Brave Search API Key": "Eochair API Cuardaigh Brave",
"By {{name}}": "Le {{name}}",
"Bypass Embedding and Retrieval": "Seachbhóthar Leabú agus Aisghabháil",
@ -205,7 +205,7 @@
"Code Interpreter": "Ateangaire Cód",
"Code Interpreter Engine": "Inneall Ateangaire Cóid",
"Code Interpreter Prompt Template": "Teimpléad Pras Ateangaire Cód",
"Collapse": "",
"Collapse": "Laghdaigh",
"Collection": "Bailiúchán",
"Color": "Dath",
"ComfyUI": "ComfyUI",
@ -223,12 +223,12 @@
"Confirm your action": "Deimhnigh do ghníomh",
"Confirm your new password": "Deimhnigh do phasfhocal nua",
"Connect to your own OpenAI compatible API endpoints.": "Ceangail le do chríochphointí API atá comhoiriúnach le OpenAI.",
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connection failed": "",
"Connection successful": "",
"Connect to your own OpenAPI compatible external tool servers.": "Ceangail le do fhreastalaithe uirlisí seachtracha atá comhoiriúnach le OpenAPI.",
"Connection failed": "Theip ar an gceangal",
"Connection successful": "Ceangal rathúil",
"Connections": "Naisc",
"Connections saved successfully": "",
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "",
"Connections saved successfully": "D'éirigh le naisc a shábháil",
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta.",
"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
"Content": "Ábhar",
"Content Extraction Engine": "Inneall Eastóscadh Ábhar",
@ -240,12 +240,12 @@
"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Rialú conas a roinntear téacs teachtaireachta d'iarratais TTS. Roinneann 'poncaíocht' ina abairtí, scoilteann 'míreanna' i míreanna, agus coinníonn 'aon' an teachtaireacht mar shreang amháin.",
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Rialú a dhéanamh ar athrá seichimh chomharthaí sa téacs ginte. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 1.1) níos boige. Ag 1, tá sé díchumasaithe. (Réamhshocrú: 1.1)",
"Controls": "Rialuithe",
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Rialaíonn sé an chothromaíocht idir comhleanúnachas agus éagsúlacht an aschuir. Beidh téacs níos dírithe agus níos soiléire mar thoradh ar luach níos ísle.",
"Copied": "Cóipeáladh",
"Copied shared chat URL to clipboard!": "Cóipeáladh URL an chomhrá roinnte chuig an ngearrthaisce!",
"Copied to clipboard": "Cóipeáilte go gear",
"Copy": "Cóipeáil",
"Copy Formatted Text": "",
"Copy Formatted Text": "Cóipeáil Téacs Formáidithe",
"Copy last code block": "Cóipeáil bloc cód deireanach",
"Copy last response": "Cóipeáil an fhreagairt",
"Copy Link": "Cóipeáil Nasc",
@ -266,7 +266,7 @@
"Created At": "Cruthaithe Ag",
"Created by": "Cruthaithe ag",
"CSV Import": "Iompórtáil CSV",
"Ctrl+Enter to Send": "",
"Ctrl+Enter to Send": "Ctrl+Iontráil chun Seol",
"Current Model": "Múnla Reatha",
"Current Password": "Pasfhocal Reatha",
"Custom": "Saincheaptha",
@ -286,7 +286,7 @@
"Default Prompt Suggestions": "Moltaí Leid Réamhshocraithe",
"Default to 389 or 636 if TLS is enabled": "Réamhshocrú go 389 nó 636 má tá TLS cumasaithe",
"Default to ALL": "Réamhshocrú do GACH",
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Réamhshocrú maidir le haisghabháil deighilte deastóscadh ábhar dírithe agus ábhartha, moltar é seo i bhformhór na gcásanna.",
"Default User Role": "Ról Úsáideora Réamhshocraithe",
"Delete": "Scrios",
"Delete a model": "Scrios múnla",
@ -308,13 +308,13 @@
"Deleted User": "Úsáideoir Scriosta",
"Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí",
"Description": "Cur síos",
"Detect Artifacts Automatically": "",
"Detect Artifacts Automatically": "Déan Déantáin a bhrath go huathoibríoch",
"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
"Direct": "",
"Direct": "Díreach",
"Direct Connections": "Naisc Dhíreacha",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Ligeann Connections Direct dúsáideoirí ceangal lena gcríochphointí API féin atá comhoiriúnach le OpenAI.",
"Direct Connections settings updated": "Nuashonraíodh socruithe Connections Direct",
"Direct Tool Servers": "",
"Direct Tool Servers": "Freastalaithe Uirlisí Díreacha",
"Disabled": "Díchumasaithe",
"Discover a function": "Faigh amach feidhm",
"Discover a model": "Faigh amach múnla",
@ -334,8 +334,8 @@
"Dive into knowledge": "Léim isteach eolas",
"Do not install functions from sources you do not fully trust.": "Ná suiteáil feidhmeanna ó fhoinsí nach bhfuil muinín iomlán agat.",
"Do not install tools from sources you do not fully trust.": "Ná suiteáil uirlisí ó fhoinsí nach bhfuil muinín iomlán agat.",
"Docling": "",
"Docling Server URL required.": "",
"Docling": "Docling",
"Docling Server URL required.": "URL Freastalaí Doling ag teastáil.",
"Document": "Doiciméad",
"Document Intelligence": "Faisnéise Doiciméad",
"Document Intelligence endpoint and key required.": "Críochphointe Faisnéise Doiciméad agus eochair ag teastáil.",
@ -356,15 +356,15 @@
"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. \"json\" or a JSON schema": "",
"e.g. \"json\" or a JSON schema": "m.sh. \"json\" nó scéimre JSON",
"e.g. 60": "m.sh. 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í",
"e.g. My Tools": "m.sh. Mo Uirlisí",
"e.g. my_filter": "m.sh. mo_scagaire",
"e.g. my_tools": "m.sh. mo_uirlisí",
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)",
"Edit": "Cuir in eagar",
"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
"Edit Channel": "Cuir Cainéal in Eagar",
@ -383,16 +383,16 @@
"Embedding model set to \"{{embedding_model}}\"": "Múnla leabaithe socraithe go \"{{embedding_model}}\"",
"Enable API Key": "Cumasaigh Eochair API",
"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
"Enable Code Execution": "",
"Enable Code Execution": "Cumasaigh Forghníomhú Cód",
"Enable Code Interpreter": "Cumasaigh Ateangaire Cóid",
"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Cumasaigh Glasáil Cuimhne (mlock) chun sonraí samhaltaithe a chosc ó RAM. Glasálann an rogha seo sraith oibre leathanaigh an mhúnla isteach i RAM, ag cinntiú nach ndéanfar iad a mhalartú go diosca. Is féidir leis seo cabhrú le feidhmíocht a choinneáil trí lochtanna leathanaigh a sheachaint agus rochtain tapa ar shonraí a chinntiú.",
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Cumasaigh Mapáil Cuimhne (mmap) chun sonraí samhla a lódáil. Ligeann an rogha seo don chóras stóráil diosca a úsáid mar leathnú ar RAM trí chomhaid diosca a chóireáil amhail is dá mba i RAM iad. Is féidir leis seo feidhmíocht na samhla a fheabhsú trí rochtain níos tapúla ar shonraí a cheadú. Mar sin féin, d'fhéadfadh sé nach n-oibreoidh sé i gceart le gach córas agus féadfaidh sé méid suntasach spáis diosca a ithe.",
"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
"Enable Mirostat sampling for controlling perplexity.": "",
"Enable Mirostat sampling for controlling perplexity.": "Cumasaigh sampláil Mirostat chun seachrán a rialú.",
"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
"Enabled": "Cumasaithe",
"Enforce Temporary Chat": "",
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
@ -407,15 +407,15 @@
"Enter CFG Scale (e.g. 7.0)": "Cuir isteach Scála CFG (m.sh. 7.0)",
"Enter Chunk Overlap": "Cuir isteach Chunk Forluí",
"Enter Chunk Size": "Cuir isteach Méid an Smután",
"Enter comma-seperated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter comma-seperated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Cuir isteach péirí camóg-scartha \"comhartha:luach laofachta\" (mar shampla: 5432:100, 413:-100)",
"Enter description": "Iontráil cur síos",
"Enter Docling Server URL": "",
"Enter Docling Server URL": "Cuir isteach URL Freastalaí Doling",
"Enter Document Intelligence Endpoint": "Iontráil Críochphointe Faisnéise Doiciméid",
"Enter Document Intelligence Key": "Iontráil Eochair Faisnéise Doiciméad",
"Enter domains separated by commas (e.g., example.com,site.org)": "Cuir isteach fearainn atá scartha le camóga (m.sh., example.com,site.org)",
"Enter Exa API Key": "Cuir isteach Eochair Exa API",
"Enter Firecrawl API Base URL": "",
"Enter Firecrawl API Key": "",
"Enter Firecrawl API Base URL": "Cuir isteach URL Bonn API Firecrawl",
"Enter Firecrawl API Key": "Cuir isteach Eochair API Firecrawl",
"Enter Github Raw URL": "Cuir isteach URL Github Raw",
"Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE",
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
@ -425,16 +425,16 @@
"Enter Jupyter Token": "Cuir isteach Jupyter Chomhartha",
"Enter Jupyter URL": "Cuir isteach URL Jupyter",
"Enter Kagi Search API Key": "Cuir isteach Eochair Kagi Cuardach API",
"Enter Key Behavior": "",
"Enter Key Behavior": "Iontráil Iompar Eochair",
"Enter language codes": "Cuir isteach cóid teanga",
"Enter Mistral API Key": "",
"Enter Mistral API Key": "Cuir isteach Eochair API Mistral",
"Enter Model ID": "Iontráil ID Mhúnla",
"Enter model tag (e.g. {{modelTag}})": "Cuir isteach chlib samhail (m.sh. {{modelTag}})",
"Enter Mojeek Search API Key": "Cuir isteach Eochair API Cuardach Mojeek",
"Enter Number of Steps (e.g. 50)": "Iontráil Líon na gCéimeanna (m.sh. 50)",
"Enter Perplexity API Key": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter Perplexity API Key": "Cuir isteach Eochair API Perplexity",
"Enter Playwright Timeout": "Iontráil Teorainn Ama na nDrámadóir",
"Enter Playwright WebSocket URL": "Cuir isteach URL WebSocket Seinmeora",
"Enter proxy URL (e.g. https://user:password@host:port)": "Cuir isteach URL seachfhreastalaí (m.sh. https://user:password@host:port)",
"Enter reasoning effort": "Cuir isteach iarracht réasúnaíochta",
"Enter Sampler (e.g. Euler a)": "Cuir isteach Sampler (m.sh. Euler a)",
@ -452,26 +452,26 @@
"Enter server host": "Cuir isteach óstach freastalaí",
"Enter server label": "Cuir isteach lipéad freastalaí",
"Enter server port": "Cuir isteach port freastalaí",
"Enter Sougou Search API sID": "",
"Enter Sougou Search API SK": "",
"Enter Sougou Search API sID": "Cuir isteach sID Sougou Search API",
"Enter Sougou Search API SK": "Cuir isteach Sougou Search API SK",
"Enter stop sequence": "Cuir isteach seicheamh stad",
"Enter system prompt": "Cuir isteach an chóras leid",
"Enter system prompt here": "",
"Enter system prompt here": "Cuir leid córais isteach anseo",
"Enter Tavily API Key": "Cuir isteach eochair API Tavily",
"Enter Tavily Extract Depth": "",
"Enter Tavily Extract Depth": "Cuir isteach Doimhneacht Sliocht 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": "Cuir isteach an t-am istigh i soicindí",
"Enter to Send": "",
"Enter to Send": "Iontráil chun Seol",
"Enter Top K": "Cuir isteach Barr K",
"Enter Top K Reranker": "",
"Enter Top K Reranker": "Cuir isteach Barr K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)",
"Enter your current password": "Cuir isteach do phasfhocal reatha",
"Enter Your Email": "Cuir isteach do Ríomhphost",
"Enter Your Full Name": "Cuir isteach d'Ainm Iomlán",
"Enter your message": "Cuir isteach do theachtaireacht",
"Enter your name": "",
"Enter your name": "Cuir isteach d'ainm",
"Enter your new password": "Cuir isteach do phasfhocal nua",
"Enter Your Password": "Cuir isteach do phasfhocal",
"Enter Your Role": "Cuir isteach do Ról",
@ -488,14 +488,14 @@
"Example: mail": "Sampla: ríomhphost",
"Example: ou=users,dc=foo,dc=example": "Sampla: ou=úsáideoirí,dc=foo,dc=sampla",
"Example: sAMAccountName or uid or userPrincipalName": "Sampla: sAMAaccountName nó uid nó userPrincipalName",
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "Níos mó ná líon na suíochán i do cheadúnas. Déan teagmháil le do thoil le tacaíocht chun líon na suíochán a mhéadú.",
"Exclude": "Eisigh",
"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
"Executing **{{NAME}}**...": "",
"Expand": "",
"Executing **{{NAME}}**...": "**{{NAME}}** á rith...",
"Expand": "Leathnaigh",
"Experimental": "Turgnamhach",
"Explain": "",
"Explain this section to me in more detail": "",
"Explain": "Mínigh",
"Explain this section to me in more detail": "Mínigh an chuid seo dom níos mine",
"Explore the cosmos": "Déan iniúchadh ar an cosmos",
"Export": "Easpórtáil",
"Export All Archived Chats": "Easpórtáil Gach Comhrá Cartlainne",
@ -509,14 +509,14 @@
"Export Prompts": "Leideanna Easpórtála",
"Export to CSV": "Easpórtáil go CSV",
"Export Tools": "Uirlisí Easpór",
"External": "",
"External": "Seachtrach",
"External Models": "Múnlaí Seachtracha",
"Failed to add file.": "Theip ar an gcomhad a chur leis.",
"Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Theip ar nascadh le {{URL}} freastalaí uirlisí OpenAPI",
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
"Failed to fetch models": "Theip ar shamhlacha a fháil",
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
"Failed to save connections": "",
"Failed to save connections": "Theip ar na naisc a shábháil",
"Failed to save models configuration": "Theip ar chumraíocht na múnlaí a shábháil",
"Failed to update settings": "Theip ar shocruithe a nuashonrú",
"Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
@ -539,8 +539,8 @@
"Filter is now globally enabled": "Tá an scagaire cumasaithe go domhanda anois",
"Filters": "Scagairí",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Braithíodh spoofing méarloirg: Ní féidir teachlitreacha a úsáid mar avatar. Réamhshocrú ar íomhá próifíle réamhshocraithe.",
"Firecrawl API Base URL": "",
"Firecrawl API Key": "",
"Firecrawl API Base URL": "URL Bunús API Firecrawl",
"Firecrawl API Key": "Eochair API Firecrawl",
"Fluidly stream large external response chunks": "Sruthaigh codanna móra freagartha seachtracha go sreabhach",
"Focus chat input": "Ionchur comhrá fócas",
"Folder deleted successfully": "Scriosadh an fillteán go rathúil",
@ -551,7 +551,7 @@
"Forge new paths": "Déan cosáin nua a chruthú",
"Form": "Foirm",
"Format your variables using brackets like this:": "Formáidigh na hathróga ag baint úsáide as lúibíní mar seo:",
"Forwards system user session credentials to authenticate": "",
"Forwards system user session credentials to authenticate": "Cuir dintiúir seisiúin úsáideora córais ar aghaidh lena bhfíordheimhniú",
"Frequency Penalty": "Pionós Minicíochta",
"Full Context Mode": "Mód Comhthéacs Iomlán",
"Function": "Feidhm",
@ -573,7 +573,7 @@
"Gemini API Key is required.": "Tá Eochair Gemini API ag teastáil.",
"General": "Ginearálta",
"Generate an image": "Gin íomhá",
"Generate Image": "Ginigh Íomhá",
"Generate Image": "Gin Íomhá",
"Generate prompt pair": "Gin péire pras",
"Generating search query": "Giniúint ceist cuardaigh",
"Get started": "Cuir tús leis",
@ -597,7 +597,7 @@
"Hex Color": "Dath Heics",
"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
"Hide": "Folaigh",
"Hide Model": "",
"Hide Model": "Folaigh Múnla",
"Home": "Baile",
"Host": "Óstach",
"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
@ -605,8 +605,8 @@
"Hybrid Search": "Cuardach Hibrideach",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
"ID": "ID",
"iframe Sandbox Allow Forms": "",
"iframe Sandbox Allow Same Origin": "",
"iframe Sandbox Allow Forms": "iframe Bosca Gainimh Foirmeacha Ceadaithe",
"iframe Sandbox Allow Same Origin": "Bosca Gainimh iframe Ceadaigh an Bunús Céanna",
"Ignite curiosity": "Las fiosracht",
"Image": "Íomhá",
"Image Compression": "Comhbhrú Íomhá",
@ -628,16 +628,16 @@
"Include": "Cuir san áireamh",
"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
"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.": "",
"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.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam daiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.",
"Info": "Eolas",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.",
"Input commands": "Orduithe ionchuir",
"Install from Github URL": "Suiteáil ó Github URL",
"Instant Auto-Send After Voice Transcription": "Seoladh Uathoibríoch Láithreach Tar éis",
"Integration": "Comhtháthú",
"Interface": "Comhéadan",
"Invalid file format.": "Formáid comhaid neamhbhailí.",
"Invalid JSON schema": "",
"Invalid JSON schema": "Scéimre JSON neamhbhailí",
"Invalid Tag": "Clib neamhbhailí",
"is typing...": "ag clóscríobh...",
"January": "Eanáir",
@ -645,7 +645,7 @@
"join our Discord for help.": "bí inár Discord chun cabhair a fháil.",
"JSON": "JSON",
"JSON Preview": "Réamhamharc JSON",
"July": "Lúil",
"July": "Iúil",
"June": "Meitheamh",
"Jupyter Auth": "Fíordheimhniú Jupyter",
"Jupyter URL": "URL Jupyter",
@ -659,7 +659,7 @@
"Knowledge Access": "Rochtain Eolais",
"Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
"Knowledge Public Sharing": "",
"Knowledge Public Sharing": "Roinnt Faisnéise Poiblí",
"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
"Kokoro.js (Browser)": "Kokoro.js (Brabhsálaí)",
@ -667,17 +667,17 @@
"Label": "Lipéad",
"Landing Page Mode": "Mód Leathanach Tuirlingthe",
"Language": "Teanga",
"Language Locales": "",
"Language Locales": "Logánta Teanga",
"Last Active": "Gníomhach Deiridh",
"Last Modified": "Athraithe Deiridh",
"Last reply": "Freagra deiridh",
"LDAP": "LDAP",
"LDAP server updated": "Nuashonraíodh freastalaí LDAP",
"Leaderboard": "An Clár Ceannairí",
"Learn more about OpenAPI tool servers.": "",
"Learn more about OpenAPI tool servers.": "Foghlaim tuilleadh faoi fhreastalaithe uirlisí OpenAPI.",
"Leave empty for unlimited": "Fág folamh le haghaidh neamhtheoranta",
"Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "",
"Leave empty to include all models from \"{{url}}/models\" endpoint": "",
"Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Fág folamh chun gach múnla ó chríochphointe \"{{url}}/api/tags\" a chur san áireamh",
"Leave empty to include all models from \"{{url}}/models\" endpoint": "Fág folamh chun gach múnla ón gcríochphointe \"{{url}}/models\" a chur san áireamh",
"Leave empty to include all models or select specific models": "Fág folamh chun gach múnla a chur san áireamh nó roghnaigh múnlaí sonracha",
"Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an leid réamhshocraithe a úsáid, nó cuir isteach leid saincheaptha",
"Leave model field empty to use the default model.": "Fág réimse an mhúnla folamh chun an tsamhail réamhshocraithe a úsáid.",
@ -691,7 +691,7 @@
"Local": "Áitiúil",
"Local Models": "Múnlaí Áitiúla",
"Location access not allowed": "Ní cheadaítear rochtain suímh",
"Logit Bias": "",
"Logit Bias": "Bias Logit",
"Lost": "Cailleadh",
"LTR": "LTR",
"Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
@ -704,7 +704,7 @@
"Manage Ollama API Connections": "Bainistigh Naisc API Ollama",
"Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI",
"Manage Pipelines": "Bainistigh píblín",
"Manage Tool Servers": "",
"Manage Tool Servers": "Bainistigh Freastalaithe Uirlisí",
"March": "Márta",
"Max Tokens (num_predict)": "Comharthaí Uasta (num_predicate)",
"Max Upload Count": "Líon Uaslódála Max",
@ -724,16 +724,16 @@
"Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau",
"Mistral OCR": "",
"Mistral OCR API Key required.": "",
"Mistral OCR": "OCR Mistral",
"Mistral OCR API Key required.": "Mistral OCR API Eochair ag teastáil.",
"Model": "Múnla",
"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
"Model '{{modelTag}}' is already in queue for downloading.": "Tá múnla {{modelTag}} sa scuaine cheana féin le híoslódáil.",
"Model {{modelId}} not found": "Múnla {{modelId}} gan aimsiú",
"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
"Model {{name}} is now hidden": "",
"Model {{name}} is now visible": "",
"Model {{name}} is now hidden": "Tá múnla {{name}} i bhfolach anois",
"Model {{name}} is now visible": "Tá múnla {{name}} le feiceáil anois",
"Model accepts image inputs": "Glacann múnla le hionchuir",
"Model created successfully!": "Cruthaíodh múnla go rathúil!",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Fuarthas cosán an múnla. Teastaíonn ainm gearr an mhúnla le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.",
@ -749,7 +749,7 @@
"Models": "Múnlaí",
"Models Access": "Rochtain Múnlaí",
"Models configuration saved successfully": "Sábháladh cumraíocht na múnlaí go rathúil",
"Models Public Sharing": "",
"Models Public Sharing": "Múnlaí Comhroinnte Poiblí",
"Mojeek Search API Key": "Eochair API Cuardach Mojeek",
"more": "níos mó",
"More": "Tuilleadh",
@ -812,7 +812,7 @@
"Open file": "Oscail comhad",
"Open in full screen": "Oscail i scáileán iomlán",
"Open new chat": "Oscail comhrá nua",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Úsáideann Open WebUI cogar níos tapúla go hinmheánach.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Open WebUI úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tá leagan WebUI oscailte (v{{OPEN_WEBUI_VERSION}}) níos ísle ná an leagan riachtanach (v{{REQUIRED_VERSION}})",
@ -822,7 +822,7 @@
"OpenAI API Key is required.": "Tá Eochair API OpenAI ag teastáil.",
"OpenAI API settings updated": "Nuashonraíodh socruithe OpenAI API",
"OpenAI URL/Key required.": "Teastaíonn URL/eochair OpenAI.",
"openapi.json Path": "",
"openapi.json Path": "Conair openapi.json",
"or": "nó",
"Organize your users": "Eagraigh do chuid úsáideoirí",
"Other": "Eile",
@ -839,7 +839,7 @@
"Permission denied when accessing microphone": "Cead diúltaithe agus tú ag rochtain ar",
"Permission denied when accessing microphone: {{error}}": "Cead diúltaithe agus tú ag teacht ar mhicreafón: {{error}}",
"Permissions": "Ceadanna",
"Perplexity API Key": "",
"Perplexity API Key": "Eochair API Perplexity",
"Personalization": "Pearsantú",
"Pin": "Bioráin",
"Pinned": "Pinneáilte",
@ -851,13 +851,13 @@
"Pipelines Valves": "Comhlaí Píblíne",
"Plain text (.txt)": "Téacs simplí (.txt)",
"Playground": "Clós súgartha",
"Playwright Timeout (ms)": "",
"Playwright WebSocket URL": "",
"Playwright Timeout (ms)": "Teorainn Ama drámadóra (ms)",
"Playwright WebSocket URL": "URL drámadóir WebSocket",
"Please carefully review the following warnings:": "Déan athbhreithniú cúramach ar na rabhaidh seo a leanas le do thoil:",
"Please do not close the settings page while loading the model.": "Ná dún leathanach na socruithe agus an tsamhail á luchtú.",
"Please enter a prompt": "Cuir isteach leid",
"Please enter a valid path": "",
"Please enter a valid URL": "",
"Please enter a valid path": "Cuir isteach cosán bailí",
"Please enter a valid URL": "Cuir isteach URL bailí",
"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
"Please select a model first.": "Roghnaigh munla ar dtús le do thoil.",
"Please select a model.": "Roghnaigh múnla le do thoil.",
@ -869,19 +869,19 @@
"Presence Penalty": "Pionós Láithreacht",
"Previous 30 days": "30 lá roimhe seo",
"Previous 7 days": "7 lá roimhe seo",
"Private": "",
"Private": "Príobháideach",
"Profile Image": "Íomhá Próifíl",
"Prompt": "Leid",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Leid (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
"Prompt Autocompletion": "",
"Prompt Autocompletion": "Uathchríochnú Pras",
"Prompt Content": "Ábhar Leid",
"Prompt created successfully": "Leid cruthaithe go rathúil",
"Prompt suggestions": "Moltaí leid",
"Prompt updated successfully": "D'éirigh leis an leid a nuashonrú",
"Prompts": "Leabhair",
"Prompts Access": "Rochtain ar Chuirí",
"Prompts Public Sharing": "",
"Public": "",
"Prompts Public Sharing": "Spreagann Roinnt Phoiblí",
"Public": "Poiblí",
"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
"Query Generation Prompt": "Cuirí Ginearáil Ceisteanna",
@ -893,16 +893,16 @@
"Reasoning Effort": "Iarracht Réasúnúcháin",
"Record voice": "Taifead guth",
"Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Laghdaíonn sé an dóchúlacht go giniúint nonsense. Tabharfaidh luach níos airde (m.sh. 100) freagraí níos éagsúla, agus beidh luach níos ísle (m.sh. 10) níos coimeádaí.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Tagairt duit féin mar \"Úsáideoir\" (m.sh., \"Tá an úsáideoir ag foghlaim Spáinnis\")",
"References from": "Tagairtí ó",
"Refused when it shouldn't have": "Diúltaíodh nuair nár chóir dó",
"Regenerate": "Athghiniúint",
"Reindex": "",
"Reindex Knowledge Base Vectors": "",
"Reindex": "Reindex",
"Reindex Knowledge Base Vectors": "Veicteoirí Bonn Eolais a ath-innéacsú",
"Release Notes": "Nótaí Scaoilte",
"Relevance": "Ábharthacht",
"Relevance Threshold": "",
"Relevance Threshold": "Tairseach Ábharthaíochta",
"Remove": "Bain",
"Remove Model": "Bain Múnla",
"Rename": "Athainmnigh",
@ -1005,22 +1005,22 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.",
"Set Voice": "Socraigh Guth",
"Set whisper model": "Socraigh múnla cogar",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "",
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "",
"Sets the size of the context window used to generate the next token.": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé claonadh cothrom i gcoinne comharthaí a tháinig chun solais uair amháin ar a laghad. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé laofacht scálaithe i gcoinne comharthaí chun pionós a ghearradh ar athrá, bunaithe ar cé mhéad uair a tháinig siad chun solais. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.",
"Sets how far back for the model to look back to prevent repetition.": "Socraíonn sé cé chomh fada siar is atá an tsamhail le breathnú siar chun athrá a chosc.",
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Socraíonn sé an síol uimhir randamach a úsáid le haghaidh giniúna. Má shocraítear é seo ar uimhir shainiúil, ginfidh an tsamhail an téacs céanna don leid céanna.",
"Sets the size of the context window used to generate the next token.": "Socraíonn sé méid na fuinneoige comhthéacs a úsáidtear chun an chéad chomhartha eile a ghiniúint.",
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Socraíonn sé na stadanna le húsáid. Nuair a thagtar ar an bpatrún seo, stopfaidh an LLM ag giniúint téacs agus ag filleadh. Is féidir patrúin stad iolracha a shocrú trí pharaiméadair stadanna iolracha a shonrú i gcomhad samhail.",
"Settings": "Socruithe",
"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
"Share": "Comhroinn",
"Share Chat": "Comhroinn Comhrá",
"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
"Sharing Permissions": "",
"Sharing Permissions": "Ceadanna a Roinnt",
"Show": "Taispeáin",
"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
"Show Model": "",
"Show Model": "Taispeáin Múnla",
"Show shortcuts": "Taispeáin aicearraí",
"Show your support!": "Taispeáin do thacaíocht!",
"Showcased creativity": "Cruthaitheacht léirithe",
@ -1032,8 +1032,8 @@
"Sign up to {{WEBUI_NAME}}": "Cláraigh le {{WEBUI_NAME}}",
"Signing in to {{WEBUI_NAME}}": "Ag síniú isteach ar {{WEBUI_NAME}}",
"sk-1234": "sk-1234",
"Sougou Search API sID": "",
"Sougou Search API SK": "",
"Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK",
"Source": "Foinse",
"Speech Playback Speed": "Luas Athsheinm Urlabhra",
"Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}",
@ -1053,7 +1053,7 @@
"System": "Córas",
"System Instructions": "Treoracha Córas",
"System Prompt": "Córas Leid",
"Tags": "",
"Tags": "Clibeanna",
"Tags Generation": "Giniúint Clibeanna",
"Tags Generation Prompt": "Clibeanna Giniúint Leid",
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
@ -1061,7 +1061,7 @@
"Tap to interrupt": "Tapáil chun cur isteach",
"Tasks": "Tascanna",
"Tavily API Key": "Eochair API Tavily",
"Tavily Extract Depth": "",
"Tavily Extract Depth": "Doimhneacht Sliocht Tavily",
"Tell us more:": "Inis dúinn níos mó:",
"Temperature": "Teocht",
"Template": "Teimpléad",
@ -1072,7 +1072,7 @@
"Thanks for your feedback!": "Go raibh maith agat as do chuid aiseolas!",
"The Application Account DN you bind with for search": "An Cuntas Feidhmchláir DN a nascann tú leis le haghaidh cuardaigh",
"The base to search for users": "An bonn chun cuardach a dhéanamh ar úsáideoirí",
"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.": "",
"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.": "Cinneann méid an bhaisc cé mhéad iarratas téacs a phróiseáiltear le chéile ag an am céanna. Is féidir le méid baisc níos airde feidhmíocht agus luas an mhúnla a mhéadú, ach éilíonn sé níos mó cuimhne freisin.",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Is deonacha paiseanta ón bpobal iad na forbróirí taobh thiar den bhreiseán seo. Má aimsíonn an breiseán seo cabhrach leat, smaoinigh ar rannchuidiú lena fhorbairt.",
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Tá an clár ceannairí meastóireachta bunaithe ar chóras rátála Elo agus déantar é a nuashonrú i bhfíor-am.",
"The LDAP attribute that maps to the mail that users use to sign in.": "An tréith LDAP a mhapálann don ríomhphost a úsáideann úsáideoirí chun síniú isteach.",
@ -1081,16 +1081,16 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "An líon uasta na gcomhaid is féidir a úsáid ag an am céanna i gcomhrá. Má sháraíonn líon na gcomhaid an teorainn seo, ní uaslódófar na comhaid.",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ba chóir go mbeadh an scór ina luach idir 0.0 (0%) agus 1.0 (100%).",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Teocht an mhúnla. Déanfaidh méadú ar an teocht an freagra múnla níos cruthaithí.",
"Theme": "Téama",
"Thinking...": "Ag smaoineamh...",
"This action cannot be undone. Do you wish to continue?": "Ní féidir an gníomh seo a chur ar ais. Ar mhaith leat leanúint ar aghaidh?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat wont appear in history and your messages will not be saved.": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Cruthaíodh an cainéal seo ar {{createdAt}}. Seo tús an chainéil {{channelName}}.",
"This chat wont appear in history and your messages will not be saved.": "Ní bheidh an comhrá seo le feiceáil sa stair agus ní shábhálfar do theachtaireachtaí.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cinntíonn sé seo go sábhálfar do chomhráite luachmhara go daingean i do bhunachar sonraí cúltaca Go raibh maith agat!",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics.": "",
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.": "",
"This option 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.": "Rialaíonn an rogha seo cé mhéad comhartha a chaomhnaítear agus an comhthéacs á athnuachan. Mar shampla, má shocraítear go 2 é, coinneofar an 2 chomhartha dheireanacha de chomhthéacs an chomhrá. Is féidir le comhthéacs a chaomhnú cabhrú le leanúnachas comhrá a choinneáil, ach dfhéadfadh sé laghdú a dhéanamh ar an gcumas freagairt do thopaicí nua.",
"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.": "Socraíonn an rogha seo an t-uaslíon comharthaí is féidir leis an tsamhail a ghiniúint ina fhreagra. Tríd an teorainn seo a mhéadú is féidir leis an tsamhail freagraí níos faide a sholáthar, ach dfhéadfadh go méadódh sé an dóchúlacht go nginfear ábhar neamhchabhrach nó nach mbaineann le hábhar.",
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Scriosfaidh an rogha seo gach comhad atá sa bhailiúchán agus cuirfear comhaid nua-uaslódála ina n-ionad.",
"This response was generated by \"{{model}}\"": "Gin an freagra seo ag \"{{model}}\"",
"This will delete": "Scriosfaidh sé seo",
@ -1103,7 +1103,7 @@
"Thought for {{DURATION}} seconds": "Smaoineamh ar feadh {{DURATION}} soicind",
"Tika": "Tika",
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
"Tiktoken": "Tictoken",
"Tiktoken": "Tiktoken",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Leid: Nuashonraigh sliotáin iolracha athróg as a chéile trí bhrú ar an eochair cluaisín san ionchur comhrá tar éis gach athsholáthair.",
"Title": "Teideal",
"Title (e.g. Tell me a fun fact)": "Teideal (m.sh. inis dom fíric spraíúil)",
@ -1134,7 +1134,7 @@
"Tool ID": "ID Uirlis",
"Tool imported successfully": "Uirlis iompórtáilte",
"Tool Name": "Ainm Uirlis",
"Tool Servers": "",
"Tool Servers": "Freastalaithe Uirlisí",
"Tool updated successfully": "An uirlis nuashonraithe",
"Tools": "Uirlisí",
"Tools Access": "Rochtain Uirlisí",
@ -1142,9 +1142,9 @@
"Tools Function Calling Prompt": "Leid Glaonna Feidhm Uirlisí",
"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
"Tools Public Sharing": "",
"Tools Public Sharing": "Uirlisí Roinnte Poiblí",
"Top K": "Barr K",
"Top K Reranker": "",
"Top K Reranker": "Barr K Reranker",
"Top P": "Barr P",
"Transformers": "Claochladáin",
"Trouble accessing Ollama?": "Deacracht teacht ar Ollama?",
@ -1184,14 +1184,14 @@
"Use Gravatar": "Úsáid Gravatar",
"Use groups to group your users and assign permissions.": "Úsáid grúpaí chun d'úsáideoirí a ghrúpáil agus ceadanna a shannadh",
"Use Initials": "Úsáid ceannlitreacha",
"Use no proxy to fetch page contents.": "",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
"Use no proxy to fetch page contents.": "Ná húsáid seachfhreastalaí chun inneachar an leathanaigh a fháil.",
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Úsáid seachfhreastalaí ainmnithe ag athróga timpeallachta http_proxy agus https_proxy chun inneachar an leathanaigh a fháil.",
"use_mlock (Ollama)": "use_mlock (Ollama)",
"use_mmap (Ollama)": "use_mmap (Ollama)",
"user": "úsáideoir",
"User": "Úsáideoir",
"User location successfully retrieved.": "Fuarthas suíomh an úsáideora go rathúil.",
"User Webhooks": "",
"User Webhooks": "Crúcaí Gréasáin Úsáideoir",
"Username": "Ainm Úsáideora",
"Users": "Úsáideoirí",
"Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an múnla réimse réamhshocraithe le gach múnlaí. Cliceáil ar an gcnaipe móide chun múnlaí saincheaptha a chur leis.",
@ -1202,12 +1202,12 @@
"Valves updated successfully": "Comhlaí nuashonraíodh",
"variable": "athraitheach",
"variable to have them replaced with clipboard content.": "athróg chun ábhar gearrthaisce a chur in ionad iad.",
"Verify Connection": "",
"Verify SSL Certificate": "",
"Verify Connection": "Fíoraigh Ceangal",
"Verify SSL Certificate": "Fíoraigh Deimhniú SSL",
"Version": "Leagan",
"Version {{selectedVersion}} of {{totalVersions}}": "Leagan {{selectedVersion}} de {{totalVersions}}",
"View Replies": "Féach ar Fhreagraí",
"View Result from **{{NAME}}**": "",
"View Result from **{{NAME}}**": "Féach ar Thoradh ó **{{NAME}}**",
"Visibility": "Infheictheacht",
"Voice": "Guth",
"Voice Input": "Ionchur Gutha",
@ -1218,7 +1218,7 @@
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Rabhadh: Trí fhorghníomhú Jupyter is féidir cód a fhorghníomhú go treallach, rud a chruthaíonn mór-rioscaí slándála - bí fíorchúramach.",
"Web": "Gréasán",
"Web API": "API Gréasáin",
"Web Loader Engine": "",
"Web Loader Engine": "Inneall Luchtaithe Gréasáin",
"Web Search": "Cuardach Gréasáin",
"Web Search Engine": "Inneall Cuardaigh Gréasáin",
"Web Search in Chat": "Cuardach Gréasáin i gComhrá",
@ -1226,7 +1226,7 @@
"Webhook URL": "URL Webhook",
"WebUI Settings": "Socruithe WebUI",
"WebUI URL": "URL WebUI",
"WebUI will make requests to \"{{url}}\"": "",
"WebUI will make requests to \"{{url}}\"": "Déanfaidh WebUI iarratais ar \"{{url}}\"",
"WebUI will make requests to \"{{url}}/api/chat\"": "Déanfaidh WebUI iarratais ar \"{{url}}/api/chat\"",
"WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"",
"What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?",
@ -1238,7 +1238,7 @@
"Why?": "Cén fáth?",
"Widescreen Mode": "Mód Leathanscáileán",
"Won": "Bhuaigh",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí.",
"Workspace": "Spás oibre",
"Workspace Permissions": "Ceadanna Spás Oibre",
"Write": "Scríobh",
@ -1248,7 +1248,7 @@
"Write your model template content here": "Scríobh do mhúnla ábhar teimpléad anseo",
"Yesterday": "Inné",
"You": "Tú",
"You are currently using a trial license. Please contact support to upgrade your license.": "",
"You are currently using a trial license. Please contact support to upgrade your license.": "Tá ceadúnas trialach á úsáid agat faoi láthair. Déan teagmháil leis an bhfoireann tacaíochta chun do cheadúnas a uasghrádú.",
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",

View File

@ -234,7 +234,7 @@
"Content Extraction Engine": "",
"Context Length": "Konteksto ilgis",
"Continue Response": "Tęsti atsakymą",
"Continue with {{provider}}": "Tęstti su {{tiekėju}}",
"Continue with {{provider}}": "Tęsti su {{tiekėju}}",
"Continue with Email": "",
"Continue with LDAP": "",
"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",

View File

@ -57,20 +57,20 @@
"All": "全部",
"All Documents": "所有文档",
"All models deleted successfully": "所有模型删除成功",
"Allow Call": "",
"Allow Chat Controls": "允许对话高级设置",
"Allow Call": "允许通话",
"Allow Chat Controls": "允许使用对话高级设置",
"Allow Chat Delete": "允许删除对话记录",
"Allow Chat Deletion": "允许删除对话记录",
"Allow Chat Edit": "允许编辑对话记录",
"Allow File Upload": "允许上传文件",
"Allow Multiple Models in Chat": "",
"Allow Multiple Models in Chat": "允许同时与多个模型聊天",
"Allow non-local voices": "允许调用非本地音色",
"Allow Speech to Text": "",
"Allow Speech to Text": "允许语音转文本",
"Allow Temporary Chat": "允许临时对话",
"Allow Text to Speech": "",
"Allow Text to Speech": "允许文本转语音",
"Allow User Location": "允许获取您的位置",
"Allow Voice Interruption in Call": "允许通话中的打断语音",
"Allowed Endpoints": "允许的端点",
"Allowed Endpoints": "允许的 API 端点",
"Already have an account?": "已经拥有账号了?",
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "top_p 的替代方法,旨在确保质量和多样性之间的平衡。参数 p 表示相对于最可能令牌的概率,一个令牌被考虑的最小概率。例如,当 p=0.05 且最可能的令牌概率为 0.9 时,概率值小于 0.045 的词元将被过滤掉。",
"Always": "保持",
@ -83,7 +83,7 @@
"and": "和",
"and {{COUNT}} more": "还有 {{COUNT}} 个",
"and create a new shared link.": "并创建一个新的分享链接。",
"Android": "",
"Android": "Android",
"API Base URL": "API 请求地址",
"API Key": "API 密钥",
"API Key created.": "API 密钥已创建。",
@ -245,7 +245,7 @@
"Copied shared chat URL to clipboard!": "已复制此对话分享链接至剪贴板!",
"Copied to clipboard": "已复制到剪贴板",
"Copy": "复制",
"Copy Formatted Text": "",
"Copy Formatted Text": "复制格式化文本",
"Copy last code block": "复制最后一个代码块中的代码",
"Copy last response": "复制最后一次回复内容",
"Copy Link": "复制链接",
@ -308,7 +308,7 @@
"Deleted User": "已删除用户",
"Describe your knowledge base and objectives": "描述您的知识库和目标",
"Description": "描述",
"Detect Artifacts Automatically": "",
"Detect Artifacts Automatically": "自动检测 Artifacts",
"Didn't fully follow instructions": "没有完全遵照指示",
"Direct": "直接",
"Direct Connections": "直接连接",
@ -364,7 +364,7 @@
"e.g. my_filter": "例如my_filter",
"e.g. my_tools": "例如my_tools",
"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如,'en-US,ja-JP'(留空以便自动检测)",
"Edit": "编辑",
"Edit Arena Model": "编辑竞技场模型",
"Edit Channel": "编辑频道",
@ -605,8 +605,8 @@
"Hybrid Search": "混合搜索",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "我已阅读并理解我的行为所带来的影响,明白执行任意代码所涉及的风险。且我已验证代码来源可信度。",
"ID": "ID",
"iframe Sandbox Allow Forms": "",
"iframe Sandbox Allow Same Origin": "",
"iframe Sandbox Allow Forms": "iframe 沙盒允许表单提交",
"iframe Sandbox Allow Same Origin": "iframe 沙盒允许同源访问",
"Ignite curiosity": "点燃好奇心",
"Image": "图像生成",
"Image Compression": "图像压缩",
@ -667,7 +667,7 @@
"Label": "标签",
"Landing Page Mode": "默认主页样式",
"Language": "语言",
"Language Locales": "",
"Language Locales": "语言环境",
"Last Active": "最后在线时间",
"Last Modified": "最后修改时间",
"Last reply": "最后回复",
@ -902,7 +902,7 @@
"Reindex Knowledge Base Vectors": "重建知识库向量",
"Release Notes": "更新日志",
"Relevance": "相关性",
"Relevance Threshold": "",
"Relevance Threshold": "相关性阈值",
"Remove": "移除",
"Remove Model": "移除模型",
"Rename": "重命名",
@ -1203,7 +1203,7 @@
"variable": "变量",
"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",
"Verify Connection": "验证连接",
"Verify SSL Certificate": "",
"Verify SSL Certificate": "验证 SSL 证书",
"Version": "版本",
"Version {{selectedVersion}} of {{totalVersions}}": "版本 {{selectedVersion}}/{{totalVersions}}",
"View Replies": "查看回复",