mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
chore: format
This commit is contained in:
parent
9df8d5b204
commit
757caeab55
62 changed files with 2117 additions and 1855 deletions
|
|
@ -1124,10 +1124,7 @@ ENABLE_LOGIN_FORM = PersistentConfig(
|
|||
os.environ.get("ENABLE_LOGIN_FORM", "True").lower() == "true",
|
||||
)
|
||||
|
||||
ENABLE_PASSWORD_AUTH = (
|
||||
os.environ.get("ENABLE_PASSWORD_AUTH", "True").lower()
|
||||
== "true"
|
||||
)
|
||||
ENABLE_PASSWORD_AUTH = os.environ.get("ENABLE_PASSWORD_AUTH", "True").lower() == "true"
|
||||
|
||||
DEFAULT_LOCALE = PersistentConfig(
|
||||
"DEFAULT_LOCALE",
|
||||
|
|
|
|||
|
|
@ -35,7 +35,12 @@ from open_webui.env import (
|
|||
)
|
||||
from fastapi import APIRouter, Depends, HTTPException, Request, status
|
||||
from fastapi.responses import RedirectResponse, Response, JSONResponse
|
||||
from open_webui.config import OPENID_PROVIDER_URL, ENABLE_OAUTH_SIGNUP, ENABLE_LDAP, ENABLE_PASSWORD_AUTH
|
||||
from open_webui.config import (
|
||||
OPENID_PROVIDER_URL,
|
||||
ENABLE_OAUTH_SIGNUP,
|
||||
ENABLE_LDAP,
|
||||
ENABLE_PASSWORD_AUTH,
|
||||
)
|
||||
from pydantic import BaseModel
|
||||
|
||||
from open_webui.utils.misc import parse_duration, validate_email_format
|
||||
|
|
@ -188,13 +193,13 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
|||
# Security checks FIRST - before loading any config
|
||||
if not request.app.state.config.ENABLE_LDAP:
|
||||
raise HTTPException(400, detail="LDAP authentication is not enabled")
|
||||
|
||||
if (not ENABLE_PASSWORD_AUTH):
|
||||
|
||||
if not ENABLE_PASSWORD_AUTH:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN,
|
||||
detail=ERROR_MESSAGES.ACTION_PROHIBITED,
|
||||
)
|
||||
|
||||
|
||||
# NOW load LDAP config variables
|
||||
LDAP_SERVER_LABEL = request.app.state.config.LDAP_SERVER_LABEL
|
||||
LDAP_SERVER_HOST = request.app.state.config.LDAP_SERVER_HOST
|
||||
|
|
@ -470,7 +475,7 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
|||
|
||||
@router.post("/signin", response_model=SessionUserResponse)
|
||||
async def signin(request: Request, response: Response, form_data: SigninForm):
|
||||
if (not ENABLE_PASSWORD_AUTH):
|
||||
if not ENABLE_PASSWORD_AUTH:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN,
|
||||
detail=ERROR_MESSAGES.ACTION_PROHIBITED,
|
||||
|
|
|
|||
|
|
@ -124,5 +124,3 @@ async def download_db(user=Depends(get_admin_user)):
|
|||
media_type="application/octet-stream",
|
||||
filename="webui.db",
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -179,4 +179,3 @@ export const downloadDatabase = async (token: string) => {
|
|||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "المستند",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "(e.g. 50) أدخل عدد الخطوات",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "تاق غير صالحة",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "التخصيص",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "لا تقم بتثبيت الوظائف من مصادر لا تثق بها تمامًا.",
|
||||
"Do not install tools from sources you do not fully trust.": "لا تقم بتثبيت الأدوات من مصادر لا تثق بها تمامًا.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "المستند",
|
||||
"Document Intelligence": "تحليل المستندات الذكي",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "أدخل سلسلة توثيق API (مثال: username:password)",
|
||||
"Enter Application DN": "أدخل DN التطبيق",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "(e.g. 50) أدخل عدد الخطوات",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "أدخل مفتاح API لـ Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "أدخل عنوان البروكسي (مثال: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "تاق غير صالحة",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "الأذونات",
|
||||
"Perplexity API Key": "مفتاح API لـ Perplexity",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "التخصيص",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Не инсталирайте функции от източници, на които не се доверявате напълно.",
|
||||
"Do not install tools from sources you do not fully trust.": "Не инсталирайте инструменти от източници, на които не се доверявате напълно.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Документ",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Въведете низ за удостоверяване на API (напр. потребителско_име:парола)",
|
||||
"Enter Application DN": "Въведете DN на приложението",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Въведете брой стъпки (напр. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Въведете URL адрес на прокси (напр. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Невалиден таг",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Разрешения",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Персонализация",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "ডকুমেন্ট",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "ধাপের সংখ্যা দিন (যেমন: 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "অবৈধ ট্যাগ",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "ডিজিটাল বাংলা",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་ཆ་ཚང་མེད་པའི་འབྱུང་ཁུངས་ནས་ལས་འགན་སྒྲིག་སྦྱོར་མ་བྱེད།",
|
||||
"Do not install tools from sources you do not fully trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་ཆ་ཚང་མེད་པའི་འབྱུང་ཁུངས་ནས་ལག་ཆ་སྒྲིག་སྦྱོར་མ་བྱེད།",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling སར་བར་གྱི་ URL དགོས་ངེས།",
|
||||
"Document": "ཡིག་ཆ།",
|
||||
"Document Intelligence": "ཡིག་ཆའི་རིག་ནུས།",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "api auth ཡིག་ཕྲེང་འཇུག་པ། (དཔེར་ན། username:password)",
|
||||
"Enter Application DN": "Application DN འཇུག་པ།",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "གོམ་གྲངས་འཇུག་པ། (དཔེར་ན། ༥༠)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Perplexity API ལྡེ་མིག་འཇུག་པ།",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Proxy URL འཇུག་པ། (དཔེར་ན། https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "རྟགས་ནུས་མེད།",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "དབང་ཚད།",
|
||||
"Perplexity API Key": "Perplexity API ལྡེ་མིག",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "སྒེར་སྤྱོད་ཅན།",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Unesite broj koraka (npr. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Nevažeća oznaka",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Prilagodba",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "No instal·lis funcions de fonts en què no confiïs plenament.",
|
||||
"Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "La URL del servidor Docling és necessària",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Introdueix un títol per a la finestra de dades d'usuari pendent. Deixa buit per a valor per defecte.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Introdueix una marca d'aigua per a la resposta. Deixa-ho buit per a cap.",
|
||||
"Enter additional headers in JSON format": "Introdueix capçaleres addicionals en format JSON",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Introdueix capçaleres addicionals en format JSON (per exemple, {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Introdueix paràmetres addicionals en format JSON",
|
||||
"Enter api auth string (e.g. username:password)": "Entra la cadena d'autenticació api (p. ex. nom d'usuari:contrasenya)",
|
||||
"Enter Application DN": "Introdueix el DN d'aplicació",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Introdueix el nombre de passos (p. ex. 50)",
|
||||
"Enter Ollama Cloud API Key": "Introdueix la clau API de Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Introdueix la clau API de Perplexity",
|
||||
"Enter Perplexity Search API 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 la URL (p. ex. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Format JSON no vàlid per al Workflow de ComfyUI d'edició",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Arxiu JSON de Workflow ComfyUI no vàlid.",
|
||||
"Invalid JSON format for Parameters": "JSON de paràmetres no vàlid",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Format JSON no vàlid a la configuració addicional",
|
||||
"Invalid JSON format in MinerU Parameters": "Format JSON no vàlid en els paràmetres de MinerU",
|
||||
"Invalid Tag": "Etiqueta no vàlida",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permisos",
|
||||
"Perplexity API Key": "Clau API de Perplexity",
|
||||
"Perplexity Model": "Model de Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Utilització del context de cerca de Perplexity",
|
||||
"Personalization": "Personalització",
|
||||
"Picture Description API Config": "Configuració de l'API de la descripció d'imatges",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokumento",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Pagsulod sa gidaghanon sa mga lakang (e.g. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Neinstalujte funkce ze zdrojů, kterým plně nedůvěřujete.",
|
||||
"Do not install tools from sources you do not fully trust.": "Neinstalujte nástroje ze zdrojů, kterým plně nedůvěřujete.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Je vyžadována URL adresa serveru Docling.",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Zadejte název pro překryvnou vrstvu s informacemi o čekajícím uživateli. Pro výchozí ponechte prázdné.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Zadejte vodoznak pro odpověď. Pro žádný vodoznak ponechte prázdné.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Zadejte ověřovací řetězec API (např. uzivatelske_jmeno:heslo)",
|
||||
"Enter Application DN": "Zadejte Application DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Zadejte počet kroků (např. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Zadejte API klíč pro Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Zadejte časový limit pro Playwright",
|
||||
"Enter Playwright WebSocket URL": "Zadejte WebSocket URL pro Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Zadejte URL proxy (např. https://uzivatel:heslo@hostitel:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Neplatný formát JSON pro pracovní postup ComfyUI.",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Neplatný formát JSON v dodatečné konfiguraci",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Neplatný štítek",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Oprávnění",
|
||||
"Perplexity API Key": "API klíč pro Perplexity",
|
||||
"Perplexity Model": "Model Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Využití kontextu vyhledávání Perplexity",
|
||||
"Personalization": "Personalizace",
|
||||
"Picture Description API Config": "Konfigurace API pro popis obrázků",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Lad være med at installere funktioner fra kilder, som du ikke stoler på.",
|
||||
"Do not install tools from sources you do not fully trust.": "Lad være med at installere værktøjer fra kilder, som du ikke stoler på.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling Server URL påkrævet.",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Indtast en titel til afventende bruger informations overlay. Lad være tom for standard.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Indtast et vandmærke til svaret. Lad være tom for ingen.",
|
||||
"Enter additional headers in JSON format": "Indtast yderligere headers i JSON format",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Indtast yderligere headers i JSON format (f.eks. {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Indtast yderligere parametre i JSON format",
|
||||
"Enter api auth string (e.g. username:password)": "Indtast api-godkendelsesstreng (f.eks. brugernavn:adgangskode)",
|
||||
"Enter Application DN": "Indtast Application DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Indtast antal trin (f.eks. 50)",
|
||||
"Enter Ollama Cloud API Key": "Indtast Ollama Cloud API nøgle",
|
||||
"Enter Perplexity API Key": "Indtast Perplexity API nøgle",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Indtast Playwright timeout",
|
||||
"Enter Playwright WebSocket URL": "Indtast Playwright WebSocket URL",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Indtast proxy URL (f.eks. https://bruger:adgangskode@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Ugyldigt JSON format for ComfyUI Edit Workflow.",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Ugyldigt JSON format for ComfyUI Workflow.",
|
||||
"Invalid JSON format for Parameters": "Ugyldigt JSON format for parametre",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Ugyldigt JSON format for yderligere konfiguration",
|
||||
"Invalid JSON format in MinerU Parameters": "Ugyldigt JSON format for MinerU parametre",
|
||||
"Invalid Tag": "Ugyldigt tag",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Tilladelser",
|
||||
"Perplexity API Key": "Perplexity API nøgle",
|
||||
"Perplexity Model": "Perplexity model",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity søgekontekst brug",
|
||||
"Personalization": "Personalisering",
|
||||
"Picture Description API Config": "Billedbeskrivelse API konfiguration",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Installieren Sie keine Funktionen aus Quellen, denen Sie nicht vollständig vertrauen.",
|
||||
"Do not install tools from sources you do not fully trust.": "Installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vollständig vertrauen.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling Server URL erforderlich",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Dokumentenintelligenz",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Geben Sie einen Titel für das Overlay 'Ausstehende Kontoaktivierung' ein. Leer lassen für Standard.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Geben Sie ein Wasserzeichen für die Antwort ein. Für keines leer lassen.",
|
||||
"Enter additional headers in JSON format": "Gib weitere Header im JSON Format ein",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Gib weitere Header im JSON Format ein (z.B. {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Gib weitere Parameter im JSON Format ein",
|
||||
"Enter api auth string (e.g. username:password)": "Geben Sie die API-Authentifizierungszeichenfolge ein (z. B. Benutzername:Passwort)",
|
||||
"Enter Application DN": "Geben Sie die Anwendungs-DN ein",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Geben Sie die Anzahl an Schritten ein (z. B. 50)",
|
||||
"Enter Ollama Cloud API Key": "Geben Sie den Ollama Cloud API-Schlüssel ein",
|
||||
"Enter Perplexity API Key": "Geben Sie den Perplexity API-Schlüssel ein",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Playwright Timeout eingeben",
|
||||
"Enter Playwright WebSocket URL": "Geben Sie die Playwright WebSocket-URL ein",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Geben Sie die Proxy-URL ein (z. B. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Ungültiges JSON-Format für ComfyUI-Workflow.",
|
||||
"Invalid JSON format for Parameters": "Ungültiges JSON Format für Parameter",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Ungültiges JSON-Format in der zusätzlichen Konfiguration",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Ungültiger Tag",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Berechtigungen",
|
||||
"Perplexity API Key": "Perplexity API-Schlüssel",
|
||||
"Perplexity Model": "Perplexity Modell",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity-Suchkontextnutzung",
|
||||
"Personalization": "Personalisierung",
|
||||
"Picture Description API Config": "Konfiguration der Bildbeschreibungs-API",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Enter Number of Steps (e.g. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalization",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Μην εγκαθιστάτε λειτουργίες από πηγές που δεν εμπιστεύεστε πλήρως.",
|
||||
"Do not install tools from sources you do not fully trust.": "Μην εγκαθιστάτε εργαλεία από πηγές που δεν εμπιστεύεστε πλήρως.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Απαιτείται το URL του διακομιστή Docling.",
|
||||
"Document": "Έγγραφο",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Εισάγετε πρόσθετες παραμέτρους σε μορφή JSON",
|
||||
"Enter api auth string (e.g. username:password)": "Εισάγετε τη σειρά επαλήθευσης api (π.χ. username:password)",
|
||||
"Enter Application DN": "Εισάγετε DN Εφαρμογής",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Εισάγετε τον Αριθμό Βημάτων (π.χ. 50)",
|
||||
"Enter Ollama Cloud API Key": "Εισάγετε το Κλειδί API Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Εισάγετε το Κλειδί API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Εισάγετε το χρονικό όριο του Playwright",
|
||||
"Enter Playwright WebSocket URL": "Εισάγετε το URL WebSocket του Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Εισάγετε URL διακομιστή μεσολάβησης (π.χ. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Μη έγκυρη μορφή JSON για ComfyUI Workflow.",
|
||||
"Invalid JSON format for Parameters": "Μη έγκυρη μορφή JSON για Παραμέτρους",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Μη έγκυρη μορφή JSON στις Πρόσθετες Ρυθμίσεις",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Μη έγκυρη Ετικέτα",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Δικαιώματα",
|
||||
"Perplexity API Key": "Perplexity API κλειδί",
|
||||
"Perplexity Model": "Perplexity Μοντέλο",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Προσωποποίηση",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalisation",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "¡No instalar funciones de fuentes en las que que no se confíe totalmente!",
|
||||
"Do not install tools from sources you do not fully trust.": "¡No instalar herramientas de fuentes en las que no se confíe totalmente!",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling URL del servidor necesaria.",
|
||||
"Document": "Documento",
|
||||
"Document Intelligence": "Azure Doc Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Ingresar un título para la sobrecapa informativa de usuario pendiente. Dejar vacío para usar el predeterminado.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Ingresar una marca de agua para la respuesta. Dejalo vacío para ninguna",
|
||||
"Enter additional headers in JSON format": "Ingresar encabezados adicionales en formato JSON",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Ingresar encabezados adicionales en formato JSON (ej. {{'{{\"X-Custom-Header\": \"valor\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Ingresar parámetros adicionales en formato JSON",
|
||||
"Enter api auth string (e.g. username:password)": "Ingresar campo de autorización de la api (p.ej. nombre:contraseña)",
|
||||
"Enter Application DN": "Ingresar el DN de la Aplicación",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Ingresar Número de Pasos (p.ej., 50)",
|
||||
"Enter Ollama Cloud API Key": "Ingresar Clave API de Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Ingresar Clave API de Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Ingresar límite de tiempo de espera de Playwright",
|
||||
"Enter Playwright WebSocket URL": "Ingresar URL de WebSocket de Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Ingresar URL del proxy (p.ej. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Formato JSON Inválido para Editar el Flujo de Trabajo de ComfyUI",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Formato JSON Inválido para el Flujo de Trabajo de ComfyUI",
|
||||
"Invalid JSON format for Parameters": "Formato JSON Inválido para los Parámetros",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Formato JSON Inválido en Configuración Adicional",
|
||||
"Invalid JSON format in MinerU Parameters": "Formato JSON Inválido en los Parámetros de MinerU",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permisos",
|
||||
"Perplexity API Key": "Clave API de Perplexity",
|
||||
"Perplexity Model": "Perplexity Modelo",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity Usar Busqueda en Contexto",
|
||||
"Personalization": "Personalización",
|
||||
"Picture Description API Config": "Config API Descripción de Imagen",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Ärge installige funktsioone allikatest, mida te täielikult ei usalda.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ärge installige tööriistu allikatest, mida te täielikult ei usalda.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling serveri URL on nõutav.",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Dokumendi intelligentsus",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Enter a title for the pending kasutaja info overlay. Leave empty for vaikimisi.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Enter a watermark for the vastus. Leave empty for puudub.",
|
||||
"Enter additional headers in JSON format": "Enter additional headers in JSON format",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Enter additional parameetrid in JSON format",
|
||||
"Enter api auth string (e.g. username:password)": "Sisestage api autentimisstring (nt kasutajanimi:parool)",
|
||||
"Enter Application DN": "Sisestage rakenduse DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Sisestage sammude arv (nt 50)",
|
||||
"Enter Ollama Cloud API Key": "Enter Ollama Cloud API Võti",
|
||||
"Enter Perplexity API Key": "Sisestage Perplexity API võti",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Enter Playwright Aegumine",
|
||||
"Enter Playwright WebSocket URL": "Enter Playwright WebSocket URL",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Sisestage puhverserveri URL (nt https://kasutaja:parool@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Vigane JSON-vorming ComfyUI töövoo jaoks.",
|
||||
"Invalid JSON format for Parameters": "Vigane JSON-vorming parameetrite jaoks",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Vigane JSON-vorming täiendavas seadistuses",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Vigane silt",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Õigused",
|
||||
"Perplexity API Key": "Perplexity API võti",
|
||||
"Perplexity Model": "Perplexity Mudel",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity Otsi Context Usage",
|
||||
"Personalization": "Isikupärastamine",
|
||||
"Picture Description API Config": "Picture Kirjeldus API Config",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Ez instalatu guztiz fidagarriak ez diren iturrietatik datozen funtzioak.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ez instalatu guztiz fidagarriak ez diren iturrietatik datozen tresnak.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokumentua",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Sartu api autentifikazio katea (adib. erabiltzailea:pasahitza)",
|
||||
"Enter Application DN": "Sartu Aplikazioaren DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Sartu Urrats Kopurua (adib. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Etiketa Baliogabea",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Baimenak",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Pertsonalizazioa",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Älä asenna toimintoja lähteistä, joihin et luota täysin.",
|
||||
"Do not install tools from sources you do not fully trust.": "Älä asenna työkaluja lähteistä, joihin et luota täysin.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling palvelimen verkko-osoite vaaditaan.",
|
||||
"Document": "Asiakirja",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Kirjoita infon otsikko odottaville käyttäjille. Käytä oletusta jättämällä tyhjäksi.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Kirjoita vastauksen vesileima. Jätä tyhjäksi, jos et halua mitään.",
|
||||
"Enter additional headers in JSON format": "Kirjoita lisä ylätunnisteita JSON muodossa",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Kirjoita lisä ylätunnisteita JSON muodossa (esim. {{'{{\"X-Custom-Header\": \"value\"}}'}}",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Kirjoita lisäparametrit JSON muodossa",
|
||||
"Enter api auth string (e.g. username:password)": "Kirjoita API-todennusmerkkijono (esim. käyttäjätunnus:salasana)",
|
||||
"Enter Application DN": "Kirjoita sovelluksen DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Kirjoita askelten määrä (esim. 50)",
|
||||
"Enter Ollama Cloud API Key": "Kirjoita Ollama Cloud API avain",
|
||||
"Enter Perplexity API Key": "Aseta Perplexity API-avain",
|
||||
"Enter Perplexity Search API 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)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Virheellinen JSON muotoilu ComfyUI Edit työnkululle",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Virhellinen JSON muotoilu ComfyUI työnkululle.",
|
||||
"Invalid JSON format for Parameters": "Virheellinen JSON muotoilu parametreille",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Virheellinen JSON muotoilu lisäasetuksissa",
|
||||
"Invalid JSON format in MinerU Parameters": "Virheellinen Json muotoilu MinerU parametreissä",
|
||||
"Invalid Tag": "Virheellinen tagi",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Käyttöoikeudet",
|
||||
"Perplexity API Key": "Perplexity API-avain",
|
||||
"Perplexity Model": "Perplexity malli",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity Search kontekstin käyttö",
|
||||
"Personalization": "Personointi",
|
||||
"Picture Description API Config": "Picture Description API konfiguraatio",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.",
|
||||
"Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "URL du serveur Docling requise.",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "Intelligence documentaire",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Entrez un titre pour l'interface utilisateur en attente. Laissez vide pour le défaut.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Entrez un filigrane pour la réponse. Laissez vide pour aucun.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",
|
||||
"Enter Application DN": "Entrez le DN de l'application",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (par ex. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Entrez la clé pour l'API de Perplixity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Entrez le délai d'expiration Playwright",
|
||||
"Enter Playwright WebSocket URL": "Entrez l'irl du websocket Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Entrez l'URL du proxy (par ex. https://use:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag non valide",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permissions",
|
||||
"Perplexity API Key": "Clé d'API de Perplexity",
|
||||
"Perplexity Model": "Modèle de Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Utilisation du contexte de recherche de Perplexity",
|
||||
"Personalization": "Personnalisation",
|
||||
"Picture Description API Config": "Configuration de l'API de description d'image",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.",
|
||||
"Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "URL du serveur Docling requise.",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "Intelligence documentaire",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Entrez un titre pour l'interface utilisateur en attente. Laissez vide pour le défaut.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Entrez un filigrane pour la réponse. Laissez vide pour aucun.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",
|
||||
"Enter Application DN": "Entrez le DN de l'application",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (par ex. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Entrez la clé pour l'API de Perplixity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Entrez le délai d'expiration Playwright",
|
||||
"Enter Playwright WebSocket URL": "Entrez l'irl du websocket Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Entrez l'URL du proxy (par ex. https://use:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Format JSON non valide pour le workflow ComfyUI.",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Format JSON non valide dans la configuration supplémentaire",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag non valide",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permissions",
|
||||
"Perplexity API Key": "Clé d'API de Perplexity",
|
||||
"Perplexity Model": "Modèle de Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Utilisation du contexte de recherche de Perplexity",
|
||||
"Personalization": "Personnalisation",
|
||||
"Picture Description API Config": "Configuration de l'API de description d'image",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Non instale funcións desde fontes nas que no confíe totalmente.",
|
||||
"Do not install tools from sources you do not fully trust.": "Non instale ferramentas desde fontes nas que no confíe totalmente.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Documento",
|
||||
"Document Intelligence": "Inteligencia documental",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Ingrese a cadena de autorización de api (p.ej., nombre:contrasinal )",
|
||||
"Enter Application DN": "Ingrese a DN da aplicación",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Ingrese o número de pasos (p.ej., 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Ingrese a chave API de Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Ingrese a URL do proxy (p.ej. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permisos",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalización",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "מסמך",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "הזן מספר שלבים (למשל 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "תג לא חוקי",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "תאור",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "दस्तावेज़",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "चरणों की संख्या दर्ज करें (उदा. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "अवैध टैग",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "पेरसनलाइज़मेंट",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Unesite broj koraka (npr. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Nevažeća oznaka",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Prilagodba",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Ne telepíts funkciókat olyan forrásokból, amelyekben nem bízol teljesen.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ne telepíts eszközöket olyan forrásokból, amelyekben nem bízol teljesen.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling szerver URL szükséges.",
|
||||
"Document": "Dokumentum",
|
||||
"Document Intelligence": "Dokumentum intelligencia",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Add meg az API hitelesítési karakterláncot (pl. felhasználónév:jelszó)",
|
||||
"Enter Application DN": "Add meg az alkalmazás DN-t",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Add meg a lépések számát (pl. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Add meg a Perplexity API kulcsot",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Add meg a proxy URL-t (pl. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Érvénytelen címke",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Engedélyek",
|
||||
"Perplexity API Key": "Perplexity API kulcs",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Személyre szabás",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokumen",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Masukkan string pengesahan API (misalnya nama pengguna: kata sandi)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Masukkan Jumlah Langkah (mis. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag tidak valid",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalisasi",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"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",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "URL Freastalaí Doling ag teastáil.",
|
||||
"Document": "Doiciméad",
|
||||
"Document Intelligence": "Faisnéise Doiciméad",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Cuir isteach teideal don fhorleagan faisnéise úsáideora atá ar feitheamh. Fág folamh don réamhshocrú.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Cuir isteach comhartha uisce don fhreagra. Fág folamh mura bhfuil aon cheann ann.",
|
||||
"Enter additional headers in JSON format": "Cuir ceanntásca breise isteach i bhformáid JSON",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Cuir isteach ceanntásca breise i bhformáid JSON (m.sh. {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Cuir isteach paraiméadair bhreise i bhformáid JSON",
|
||||
"Enter api auth string (e.g. username:password)": "Cuir isteach sreang auth api (m.sh. ainm úsáideora: pasfhocal)",
|
||||
"Enter Application DN": "Cuir isteach Feidhmchlár DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Iontráil Líon na gCéimeanna (m.sh. 50)",
|
||||
"Enter Ollama Cloud API Key": "Cuir isteach Eochair API Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Cuir isteach Eochair API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"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)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Formáid JSON neamhbhailí do Shreabhadh Oibre Eagarthóireachta ComfyUI.",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Formáid JSON neamhbhailí do Shreabhadh Oibre ComfyUI.",
|
||||
"Invalid JSON format for Parameters": "Formáid JSON neamhbhailí do Pharaiméadair",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Formáid JSON neamhbhailí i gCumraíocht Bhreise",
|
||||
"Invalid JSON format in MinerU Parameters": "Formáid JSON neamhbhailí i bParaiméadair MinerU",
|
||||
"Invalid Tag": "Clib neamhbhailí",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Ceadanna",
|
||||
"Perplexity API Key": "Eochair API Perplexity",
|
||||
"Perplexity Model": "Samhail Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Úsáid Chomhthéacs Cuardaigh Mearbhall",
|
||||
"Personalization": "Pearsantú",
|
||||
"Picture Description API Config": "Cumraíocht API Cur Síos ar an bPictiúr",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Non installare funzioni da fonti di cui non ti fidi completamente.",
|
||||
"Do not install tools from sources you do not fully trust.": "Non installare strumenti da fonti di cui non ti fidi completamente.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "L'URL del server Docling è obbligatoria.",
|
||||
"Document": "Documento",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Inserisci un titolo per gli utente in attesa nella schermata informazioni. LAscia vuoto per il predefinito.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Inserisci un watermark per le risposte. Lascia vuoto per nessuno.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Inserisci la stringa di autenticazione API (ad es. nome utente:password)",
|
||||
"Enter Application DN": "Inserisci DN dell'applicazione",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Inserisci Numero di Passaggi (ad esempio 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Inserisci Chiave API di Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Inserisci Timeout di Playwright",
|
||||
"Enter Playwright WebSocket URL": "Inserisci l'URL WebSocket di Playwright",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Inserisci l'URL del proxy (ad es. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag non valido",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permessi",
|
||||
"Perplexity API Key": "Chiave API Perplexity",
|
||||
"Perplexity Model": "Modello Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Utilizzo delcontesto della Ricerca Perplexity",
|
||||
"Personalization": "Personalizzazione",
|
||||
"Picture Description API Config": "Descrizione immagine per la configurazione API",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "信頼できないソースからFunctionをインストールしないでください。",
|
||||
"Do not install tools from sources you do not fully trust.": "信頼できないソースからツールをインストールしないでください。",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "DoclingサーバーURLが必要です。",
|
||||
"Document": "ドキュメント",
|
||||
"Document Intelligence": "ドキュメントインテリジェンス",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "保留中のユーザー情報オーバーレイのタイトルを入力。デフォルトのままにする場合は空のままにします。",
|
||||
"Enter a watermark for the response. Leave empty for none.": "応答のウォーターマークを入力。なしの場合は空のままにします。",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "API AuthStringを入力(例: Username:Password)",
|
||||
"Enter Application DN": "Application DNを入力",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "ステップ数を入力 (例: 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Perplexity APIキーを入力",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Playwrightタイムアウトを入力",
|
||||
"Enter Playwright WebSocket URL": "Playwright WebSocket URLを入力",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "プロキシURLを入力 (例: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "ComfyUIワークフローとして無効なJSON形式",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "追加設定として無効なJSON形式",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "無効なタグ",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "権限",
|
||||
"Perplexity API Key": "Perplexity API キー",
|
||||
"Perplexity Model": "Perplexity モデル",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity Search コンテキスト使用量",
|
||||
"Personalization": "パーソナライズ",
|
||||
"Picture Description API Config": "画像説明API設定",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "დოკუმენტი",
|
||||
"Document Intelligence": "დოკუმენტის ანალიზი",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "შეიყვანეთ ნაბიჯების რაოდენობა (მაგ. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "შეიყვანეთ პროქსის URL (მაგ: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "არასწორი ჭდე",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "ნებართვები",
|
||||
"Perplexity API Key": "Perplexity API-ის გასაღები",
|
||||
"Perplexity Model": "Perplexity-ის მოდელი",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "პერსონალიზაცია",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Ur sebdad ara tisɣunin seg iɣbula ur tettamneḍ ara akken iwata.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ur srusuy ara ifecka seg iɣbula ur tettamneḍ ara akken iwata.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Tansa URL n uqeddac tuḥwaǧ.",
|
||||
"Document": "Imesli",
|
||||
"Document Intelligence": "Tigzi n tsemlit",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Sekcem azwel i ugrudem n useqdac la yettraǧun. Eǧǧ-it d ilem i umezwar.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Sekcem ticreḍt tafrawant i tririt. Eǧǧ-it d ilem i wulac.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Sekcem azrir n usesteb n api (amedya. isem n useqdac:awal n uɛeddi)",
|
||||
"Enter Application DN": "Sekcem DN n usnas",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Sekcem uṭṭun n yisurifen (amedya 50)",
|
||||
"Enter Ollama Cloud API Key": "Sekcem-d tasarut API n Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Sekcem-d tasarut API n Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "Sekcem-d URL n Playwright WebSocket",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Sekcem URL apṛuksi (amedya. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Amasal JSON d arameɣtu i ComfyUI Workflow.",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Amasal JSON arameɣtu deg usesteb niḍen",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tabzimt d tarameɣtut",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Tisirag",
|
||||
"Perplexity API Key": "Tasarut API n Perplexity",
|
||||
"Perplexity Model": "Tamudemt n Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Asagen",
|
||||
"Picture Description API Config": "Tawlaft n API",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "불분명한 출처를 가진 함수를 설치하지마세요",
|
||||
"Do not install tools from sources you do not fully trust.": "불분명한 출처를 가진 도구를 설치하지마세요",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling 서버 URL이 필요합니다.",
|
||||
"Document": "문서",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "대기 중인 사용자 정보 오버레이의 제목을 입력하세요. 비워두면 기본값이 사용됩니다.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "응답에 사용할 워터마크를 입력하세요. 비워두면 워터마크가 적용되지 않습니다.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "API 인증 문자 입력 (예: 사용자 이름:비밀번호)",
|
||||
"Enter Application DN": "애플리케이션 DN 입력",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "단계 수 입력(예: 50)",
|
||||
"Enter Ollama Cloud API Key": "Ollama 클라우드 API 키 입력",
|
||||
"Enter Perplexity API Key": "Perplexity API 키 입력",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Playwright 시간 초과 입력",
|
||||
"Enter Playwright WebSocket URL": "Playwright WebSocket URL 입력",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "프록시 URL 입력(예: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "추가 설정에 잘못된 JSON 형식 입력",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "잘못된 태그",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "권한",
|
||||
"Perplexity API Key": "Perplexity API 키",
|
||||
"Perplexity Model": "Perplexity 모델",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity 검색 컨텍스트 사용",
|
||||
"Personalization": "개인화",
|
||||
"Picture Description API Config": "이미지 설명 API 설정",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Neinstaliuokite funkcijų iš nepatikimų šaltinių",
|
||||
"Do not install tools from sources you do not fully trust.": "Neinstaliuokite įrankių iš nepatikimų šaltinių",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokumentas",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Įveskite API autentifikacijos kodą (pvz. username:password)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Įveskite žingsnių kiekį (pvz. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Neteisinga žyma",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalizacija",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Jangan pasang fungsi daripada sumber yang anda tidak percayai sepenuhnya.",
|
||||
"Do not install tools from sources you do not fully trust.": "Jangan pasang alat daripada sumber yang anda tidak percaya sepenuhnya.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokumen",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Masukkan kekunci auth api ( cth nama pengguna:kata laluan )",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Masukkan Bilangan Langkah (cth 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag tidak sah",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalisasi",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Ikke installer funksjoner fra kilder du ikke stoler på.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ikke installer verktøy fra kilder du ikke stoler på.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Intelligens i dokumenter",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Skriv inn API-autentiseringsstreng (f.eks. brukernavn:passord)",
|
||||
"Enter Application DN": "Angi applikasjonens DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Angi antall steg (f.eks. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Angi proxy-URL (f.eks. https://bruker:passord@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Ugyldig etikett",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Tillatelser",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Tilpassing",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt",
|
||||
"Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling server-URL benodigd",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)",
|
||||
"Enter Application DN": "Voer applicatie-DN in",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Voer Perplexity API-sleutel in",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Voer proxy-URL in (bijv. https://gebruiker:wachtwoord@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Ongeldige Tag",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Toestemmingen",
|
||||
"Perplexity API Key": "Perplexity API-sleutel",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalisatie",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "ਡਾਕੂਮੈਂਟ",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "ਕਦਮਾਂ ਦੀ ਗਿਣਤੀ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "ਗਲਤ ਟੈਗ",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Nie instaluj funkcji ze źródeł, którym nie ufasz w pełni.",
|
||||
"Do not install tools from sources you do not fully trust.": "Nie instaluj narzędzi ze źródeł, którym nie ufasz w pełni.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Wprowadź ciąg uwierzytelniania API (np. nazwa użytkownika:hasło)",
|
||||
"Enter Application DN": "Wprowadź nazwę konta technicznego - Format DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Podaj liczbę kroków (np. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Klucz API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Podaj adres URL proxy (np. https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Nieprawidłowy tag",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Uprawnienia",
|
||||
"Perplexity API Key": "Klucz API Perplexity",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalizacja",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Não instale funções de origens nas quais você não confia totalmente.",
|
||||
"Do not install tools from sources you do not fully trust.": "Não instale ferramentas de origens nas quais você não confia totalmente.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "URL do servidor Docling necessária.",
|
||||
"Document": "Documento",
|
||||
"Document Intelligence": "Inteligência de documentos",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Insira um título para a sobreposição de informações pendentes do usuário. Deixe em branco como padrão.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Insira uma marca d'água para a resposta. Deixe em branco se não houver nenhuma.",
|
||||
"Enter additional headers in JSON format": "Insira cabeçalhos adicionais no formato JSON",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "Insira cabeçalhos adicionais no formato JSON (por exemplo, {{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "Insira parâmetros adicionais no formato JSON",
|
||||
"Enter api auth string (e.g. username:password)": "Digite a string de autenticação da API (por exemplo, username:password)",
|
||||
"Enter Application DN": "Digite o DN da Aplicação",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Digite o Número de Passos (por exemplo, 50)",
|
||||
"Enter Ollama Cloud API Key": "Insira a chave da API do Ollama Cloud",
|
||||
"Enter Perplexity API Key": "Insira a chave da API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Insira a URL do proxy (por exemplo, https://usuário:senha@host:porta)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "Formato JSON inválido para o fluxo de trabalho de edição do ComfyUI.",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Formato JSON inválido para o fluxo de trabalho do ComfyUI.",
|
||||
"Invalid JSON format for Parameters": "Formato JSON inválido para parâmetros",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Formato JSON inválido na configuração adicional",
|
||||
"Invalid JSON format in MinerU Parameters": "Formato JSON inválido nos parâmetros do MinerU",
|
||||
"Invalid Tag": "Tag Inválida",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Permissões",
|
||||
"Perplexity API Key": "Chave API da Perplexity",
|
||||
"Perplexity Model": "Modelo Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Uso do contexto de pesquisa do Perplexity",
|
||||
"Personalization": "Personalização",
|
||||
"Picture Description API Config": "Configuração da API de descrição de imagem",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Documento",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Escreva o Número de Etapas (por exemplo, 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalização",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Nu instalați funcții din surse în care nu aveți încredere completă.",
|
||||
"Do not install tools from sources you do not fully trust.": "Nu instalați instrumente din surse în care nu aveți încredere completă.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Document",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Introduceți șirul de autentificare API (de ex. username:password)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Introduceți Numărul de Pași (de ex. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Etichetă Invalidă",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalizare",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Не устанавливайте функции из источников, которым вы не полностью доверяете.",
|
||||
"Do not install tools from sources you do not fully trust.": "Не устанавливайте инструменты из источников, которым вы не полностью доверяете.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Необходим URL сервера Docling",
|
||||
"Document": "Документ",
|
||||
"Document Intelligence": "Интеллектуальный анализ документов",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Введите заголовок информационного оверлея для ожидающего пользователя. Оставьте поле пустым для параметра по умолчанию.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Укажите водяной знак для ответа. Оставьте пустым чтобы не было никакого.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Введите строку авторизации api (например, username:password)",
|
||||
"Enter Application DN": "Введите ND приложения",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Введите количество шагов (например, 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Введите ключ API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Введите таймаут для Playwright",
|
||||
"Enter Playwright WebSocket URL": "Введите URL-адрес Playwright WebSocket",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Введите URL прокси-сервера (например, https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "Неверный формат JSON для ComfyUI Workflow.",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "Неверный формат JSON в дополнительной конфигурации",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Недопустимый тег",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Разрешения",
|
||||
"Perplexity API Key": "Ключ API для Perplexity",
|
||||
"Perplexity Model": "Модель Perplexity",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Использование контекста поиска Perplexity",
|
||||
"Personalization": "Персонализация",
|
||||
"Picture Description API Config": "Конфигурация API для описанием изображения",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Neinštalujte funkcie zo zdrojov, ktorým plne nedôverujete.",
|
||||
"Do not install tools from sources you do not fully trust.": "Neinštalujte nástroje zo zdrojov, ktorým plne nedôverujete.",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Zadajte autentifikačný reťazec API (napr. užívateľské_meno:heslo)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Zadajte počet krokov (napr. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Neplatný tag",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Personalizácia",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Документ",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Унесите број корака (нпр. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Неисправна ознака",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Прилагођавање",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
|
||||
"a user": "en användare",
|
||||
"About": "Om",
|
||||
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||
"Access": "Åtkomst",
|
||||
"Access Control": "Åtkomstkontroll",
|
||||
"Accessible to all users": "Tillgänglig för alla användare",
|
||||
|
|
@ -50,6 +51,7 @@
|
|||
"Add Content": "Lägg till innehåll",
|
||||
"Add content here": "Lägg till innehåll här",
|
||||
"Add Custom Parameter": "Lägg till anpassad parameter",
|
||||
"Add Custom Prompt": "",
|
||||
"Add Details": "Lägg till information",
|
||||
"Add Files": "Lägg till filer",
|
||||
"Add Group": "Lägg till grupp",
|
||||
|
|
@ -149,6 +151,7 @@
|
|||
"Ask": "Fråga",
|
||||
"Ask a question": "Ställ en fråga",
|
||||
"Assistant": "Assistent",
|
||||
"Attach File From Knowledge": "",
|
||||
"Attach Knowledge": "Bifoga kunskap",
|
||||
"Attach Notes": "Bifoga anteckningar",
|
||||
"Attach Webpage": "Bifoga webbsida",
|
||||
|
|
@ -268,11 +271,13 @@
|
|||
"Close Banner": "Stäng infolåda",
|
||||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "Stäng modal",
|
||||
"Close Modal": "",
|
||||
"Close settings modal": "Stäng inställningsmodal",
|
||||
"Close Sidebar": "Stäng sidopanelen",
|
||||
"cloud": "moln",
|
||||
"CMU ARCTIC speaker embedding name": "",
|
||||
"Code Block": "Kodblock",
|
||||
"Code Editor": "",
|
||||
"Code execution": "Kodkörning",
|
||||
"Code Execution": "Kodkörning",
|
||||
"Code Execution Engine": "Motor för kodkörning",
|
||||
|
|
@ -330,6 +335,8 @@
|
|||
"Copied to clipboard": "Kopierad till urklipp",
|
||||
"Copy": "Kopiera",
|
||||
"Copy Formatted Text": "Kopiera formaterad text",
|
||||
"Copy Last Code Block": "",
|
||||
"Copy Last Response": "",
|
||||
"Copy link": "Kopiera länk",
|
||||
"Copy Link": "Kopiera länk",
|
||||
"Copy to clipboard": "Kopiera till urklipp",
|
||||
|
|
@ -344,6 +351,7 @@
|
|||
"Create Channel": "Skapa kanal",
|
||||
"Create Folder": "Skapa mapp",
|
||||
"Create Group": "Skapa grupp",
|
||||
"Create Image": "",
|
||||
"Create Knowledge": "Skapa kunskapsbas",
|
||||
"Create Model": "Skapa modell",
|
||||
"Create new key": "Skapa ny nyckel",
|
||||
|
|
@ -367,7 +375,6 @@
|
|||
"Data Controls": "Datakontroller",
|
||||
"Database": "Databas",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API-nyckel krävs.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "december",
|
||||
"Deepgram": "",
|
||||
|
|
@ -448,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Installera inte funktioner från källor du inte litar på.",
|
||||
"Do not install tools from sources you do not fully trust.": "Installera inte verktyg från källor du inte litar på.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling Server URL krävs.",
|
||||
"Document": "Dokument",
|
||||
"Document Intelligence": "Dokumentinformation",
|
||||
|
|
@ -491,9 +499,12 @@
|
|||
"Edit Connection": "Redigera anslutning",
|
||||
"Edit Default Permissions": "Redigera standardbehörigheter",
|
||||
"Edit Folder": "Redigera mapp",
|
||||
"Edit Image": "",
|
||||
"Edit Last Message": "",
|
||||
"Edit Memory": "Redigera minne",
|
||||
"Edit User": "Redigera användare",
|
||||
"Edit User Group": "Redigera användargrupp",
|
||||
"Edit workflow.json content": "",
|
||||
"edited": "redigerad",
|
||||
"Edited": "Redigerad",
|
||||
"Editing": "Redigerar",
|
||||
|
|
@ -528,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Ange en titel för den väntande användarinformationen. Lämna tomt för standard.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Ange en vattenstämpel för svaret. Lämna tomt för ingen.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Ange API-autentiseringssträng (t.ex. användarnamn:lösenord)",
|
||||
"Enter Application DN": "Ange Application DN",
|
||||
|
|
@ -538,7 +549,6 @@
|
|||
"Enter Bocha Search API Key": "Ange Bocha Search API-nyckel",
|
||||
"Enter Brave Search API Key": "Ange API-nyckel för Brave Search",
|
||||
"Enter certificate path": "Ange certifikatväg",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Ange CFG-skala (t.ex. 7.0)",
|
||||
"Enter Chunk Overlap": "Ange chunköverlappning",
|
||||
"Enter Chunk Size": "Ange chunkstorlek",
|
||||
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ange komma-separerade \"token:bias_value\"-par (exempel: 5432:100, 413:-100)",
|
||||
|
|
@ -579,6 +589,7 @@
|
|||
"Enter Key Behavior": "Ange nyckelbeteende",
|
||||
"Enter language codes": "Skriv språkkoder",
|
||||
"Enter MinerU API Key": "Ange MinerU API-nyckel",
|
||||
"Enter Mistral API Base URL": "",
|
||||
"Enter Mistral API Key": "Ange Mistral API-nyckel",
|
||||
"Enter Model ID": "Ange modell-ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Ange modelltagg (t.ex. {{modelTag}})",
|
||||
|
|
@ -588,12 +599,11 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Ange antal steg (t.ex. 50)",
|
||||
"Enter Ollama Cloud API Key": "Ange Ollama Cloud API-nyckel",
|
||||
"Enter Perplexity API Key": "Ange Perplexity API-nyckel",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Ange Playwright-timeout",
|
||||
"Enter Playwright WebSocket URL": "Ange Playwright WebSocket URL",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Ange proxy-URL (t.ex. https://user:password@host:port)",
|
||||
"Enter reasoning effort": "Ange resonemangsinsats",
|
||||
"Enter Sampler (e.g. Euler a)": "Ange Sampler (t.ex. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Ange Scheduler (t.ex. Karras)",
|
||||
"Enter Score": "Ange betyg",
|
||||
"Enter SearchApi API Key": "Ange SearchApi API-nyckel",
|
||||
"Enter SearchApi Engine": "Ange SearchApi Engine",
|
||||
|
|
@ -703,6 +713,7 @@
|
|||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
||||
"Failed to render diagram": "",
|
||||
"Failed to render visualization": "",
|
||||
"Failed to save connections": "Misslyckades med att spara anslutningar",
|
||||
"Failed to save conversation": "Misslyckades med att spara konversationen",
|
||||
"Failed to save models configuration": "Misslyckades med att spara modellkonfiguration",
|
||||
|
|
@ -735,6 +746,7 @@
|
|||
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
||||
"Firecrawl API Key": "Firecrawl API-nyckel",
|
||||
"Floating Quick Actions": "Flytande snabbåtgärder",
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Mapp",
|
||||
"Folder Background Image": "Bakgrundsbild till mappen",
|
||||
"Folder deleted successfully": "Mappen har tagits bort",
|
||||
|
|
@ -774,13 +786,16 @@
|
|||
"Functions allow arbitrary code execution.": "Funktioner tillåter godtycklig kodkörning.",
|
||||
"Functions imported successfully": "Funktioner har importerats",
|
||||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API-konfiguration",
|
||||
"Gemini API Key": "",
|
||||
"Gemini API Key is required.": "Gemini API-nyckel krävs.",
|
||||
"Gemini Base URL": "",
|
||||
"Gemini Endpoint Method": "",
|
||||
"Gender": "Kön",
|
||||
"General": "Allmän",
|
||||
"Generate": "Generera",
|
||||
"Generate an image": "Generera en bild",
|
||||
"Generate Image": "Generera bild",
|
||||
"Generate Message Pair": "",
|
||||
"Generated Image": "Genererad bild",
|
||||
"Generating search query": "Genererar sökfråga",
|
||||
"Generating...": "Genererar...",
|
||||
|
|
@ -835,15 +850,15 @@
|
|||
"Image Compression": "Bildkomprimering",
|
||||
"Image Compression Height": "Bildkomprimeringshöjd",
|
||||
"Image Compression Width": "Bildkomprimeringsbredd",
|
||||
"Image Edit Engine": "",
|
||||
"Image Generation": "Bildgenerering",
|
||||
"Image Generation (Experimental)": "Bildgenerering (experimentell)",
|
||||
"Image Generation Engine": "Bildgenereringsmotor",
|
||||
"Image Max Compression Size": "Maximal bildkomprimeringsstorlek",
|
||||
"Image Max Compression Size height": "Maximal bildkomprimeringsstorlek höjd",
|
||||
"Image Max Compression Size width": "Maximal bildkomprimeringsstorlek bredd",
|
||||
"Image Prompt Generation": "Generering av bildprompt",
|
||||
"Image Prompt Generation Prompt": "Prompt för generering av bildprompt",
|
||||
"Image Settings": "Bildinställningar",
|
||||
"Image Size": "",
|
||||
"Images": "Bilder",
|
||||
"Import": "Importera",
|
||||
"Import Chats": "Importera chattar",
|
||||
|
|
@ -878,9 +893,12 @@
|
|||
"Invalid file content": "Ogiltigt filinnehåll",
|
||||
"Invalid file format.": "Ogiltigt filformat.",
|
||||
"Invalid JSON file": "Ogiltig JSON-fil",
|
||||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Ogiltig tagg",
|
||||
"is typing...": "skriver...",
|
||||
"Italic": "Kursiv",
|
||||
|
|
@ -927,12 +945,14 @@
|
|||
"Leaderboard": "Topplista",
|
||||
"Learn More": "",
|
||||
"Learn more about OpenAPI tool servers.": "Läs mer om OpenAPI-verktygsservrar.",
|
||||
"Learn more about Voxtral transcription.": "",
|
||||
"Leave empty for no compression": "Lämna tomt för ingen komprimering",
|
||||
"Leave empty for unlimited": "Lämna tomt för obegränsat",
|
||||
"Leave empty to include all models from \"{{url}}\" endpoint": "Lämna tomt för att inkludera alla modeller från \"{{url}}\"-slutpunkten",
|
||||
"Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Lämna tomt för att inkludera alla modeller från \"{{url}}/api/tags\"-slutpunkten",
|
||||
"Leave empty to include all models from \"{{url}}/models\" endpoint": "Lämna tomt för att inkludera alla modeller från \"{{url}}/models\"-slutpunkten",
|
||||
"Leave empty to include all models or select specific models": "Lämna tomt för att inkludera alla modeller eller välj specifika modeller",
|
||||
"Leave empty to use the default model (voxtral-mini-latest).": "",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Lämna tomt för att använda standardprompten, eller ange en anpassad prompt",
|
||||
"Leave model field empty to use the default model.": "Lämna modellfältet tomt för att använda standardmodellen.",
|
||||
"Legacy": "",
|
||||
|
|
@ -986,6 +1006,7 @@
|
|||
"Memory updated successfully": "Minnet har uppdaterats",
|
||||
"Merge Responses": "Sammanslå svar (med AI)",
|
||||
"Merged Response": "Sammansslaget svar",
|
||||
"Message": "",
|
||||
"Message rating should be enabled to use this feature": "Meddelandebetyg måste vara aktiverat för att använda den här funktionen",
|
||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meddelanden du skickar efter att du har skapat din länk kommer inte att delas. Användare med länken kommer att kunna se allt innehåll i den delade chatten.",
|
||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||
|
|
@ -995,6 +1016,7 @@
|
|||
"MinerU API Key required for Cloud API mode.": "",
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API-nyckel krävs.",
|
||||
"MistralAI": "",
|
||||
"Model": "Modell",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
|
||||
|
|
@ -1047,6 +1069,7 @@
|
|||
"New Note": "Ny anteckning",
|
||||
"New Password": "Nytt lösenord",
|
||||
"New Prompt": "Ny prompt",
|
||||
"New Temporary Chat": "",
|
||||
"New Tool": "Nytt verktyg",
|
||||
"new-channel": "ny-kanal",
|
||||
"Next message": "Nästa meddelande",
|
||||
|
|
@ -1113,8 +1136,12 @@
|
|||
"Ollama Version": "Ollama-version",
|
||||
"On": "På",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
"Only active when the chat input is in focus.": "",
|
||||
"Only alphanumeric characters and hyphens are allowed": "Endast alfanumeriska tecken och bindestreck är tillåtna",
|
||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
|
||||
"Only can be triggered when the chat input is in focus.": "",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Endast samlingar kan redigeras, skapa en ny kunskapsbas för att redigera/lägga till dokument.",
|
||||
"Only markdown files are allowed": "Endast markdown-filer är tillåtna",
|
||||
"Only select users and groups with permission can access": "Endast valda användare och grupper med behörighet kan komma åt",
|
||||
|
|
@ -1128,6 +1155,7 @@
|
|||
"Open modal to configure connection": "Öppna modal för att konfigurera anslutning",
|
||||
"Open Modal To Manage Floating Quick Actions": "Öppna inställningsruta för att hantera flytande snabbåtgärder",
|
||||
"Open Modal To Manage Image Compression": "Öppna inställningsruta för att hantera bildkomprimering",
|
||||
"Open Settings": "",
|
||||
"Open Sidebar": "Öppna sidopanel",
|
||||
"Open User Profile Menu": "Öppna användarprofilmeny",
|
||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.",
|
||||
|
|
@ -1136,9 +1164,11 @@
|
|||
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-versionen (v{{OPEN_WEBUI_VERSION}}) är lägre än den version som krävs (v{{REQUIRED_VERSION}})",
|
||||
"OpenAI": "OpenAI",
|
||||
"OpenAI API": "OpenAI API",
|
||||
"OpenAI API Config": "OpenAI API-konfig",
|
||||
"OpenAI API Base URL": "",
|
||||
"OpenAI API Key": "",
|
||||
"OpenAI API Key is required.": "OpenAI API-nyckel krävs.",
|
||||
"OpenAI API settings updated": "OpenAI API-inställningar uppdaterade",
|
||||
"OpenAI API Version": "",
|
||||
"OpenAI URL/Key required.": "OpenAI-URL/nyckel krävs.",
|
||||
"OpenAPI": "",
|
||||
"OpenAPI Spec": "",
|
||||
|
|
@ -1173,6 +1203,7 @@
|
|||
"Permissions": "Behörigheter",
|
||||
"Perplexity API Key": "Perplexity API-nyckel",
|
||||
"Perplexity Model": "Perplexity-modell",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity Sök Kontextanvändning",
|
||||
"Personalization": "Personalisering",
|
||||
"Picture Description API Config": "Bildbeskrivning API-konfig",
|
||||
|
|
@ -1216,6 +1247,7 @@
|
|||
"Prefer not to say": "Föredrar att inte att säga",
|
||||
"Prefix ID": "Prefix-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera",
|
||||
"Prevent File Creation": "",
|
||||
"Preview": "Förhandsgranska",
|
||||
"Previous 30 days": "Föregående 30 dagar",
|
||||
"Previous 7 days": "Föregående 7 dagar",
|
||||
|
|
@ -1259,6 +1291,7 @@
|
|||
"Refused when it shouldn't have": "Avvisades när det inte borde ha gjort det",
|
||||
"Regenerate": "Regenerera",
|
||||
"Regenerate Menu": "Regenerera meny",
|
||||
"Regenerate Response": "",
|
||||
"Register Again": "Registrera igen",
|
||||
"Register Client": "Registrera klient",
|
||||
"Registered": "Registrerad",
|
||||
|
|
@ -1383,6 +1416,7 @@
|
|||
"Select Engine": "Välj motor",
|
||||
"Select how to split message text for TTS requests": "Välj hur du ska dela upp meddelandetexten för TTS-förfrågningar",
|
||||
"Select Knowledge": "Välj kunskap",
|
||||
"Select Method": "",
|
||||
"Select only one model to call": "Välj endast en modell att ringa",
|
||||
"Select view": "Välj vy",
|
||||
"Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar",
|
||||
|
|
@ -1400,15 +1434,9 @@
|
|||
"Server connection verified": "Serveranslutning verifierad",
|
||||
"Session": "Session",
|
||||
"Set as default": "Ange som standard",
|
||||
"Set CFG Scale": "Ställ in CFG-skala",
|
||||
"Set Default Model": "Välj standardmodell",
|
||||
"Set embedding model": "Ställ in embedding-modell",
|
||||
"Set embedding model (e.g. {{model}})": "Ställ in embedding-modell (t.ex. {{model}})",
|
||||
"Set Image Size": "Ange bildstorlek",
|
||||
"Set reranking model (e.g. {{model}})": "Ställ in reranking-modell (t.ex. {{model}})",
|
||||
"Set Sampler": "Ställ in Sampler",
|
||||
"Set Scheduler": "Ställ in Scheduler",
|
||||
"Set Steps": "Ange steg",
|
||||
"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Ange antalet lager som ska avlastas till GPU. Att öka detta värde kan avsevärt förbättra prestandan för modeller som är optimerade för GPU-acceleration, men kan också förbruka mer ström och GPU-resurser.",
|
||||
"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.": "Ange antalet arbetstrådar som används för beräkning. Detta alternativ styr hur många trådar som används för att bearbeta inkommande förfrågningar samtidigt. Att öka detta värde kan förbättra prestandan under hög samtidighet, men kan också förbruka mer CPU-resurser.",
|
||||
"Set Voice": "Ange röst",
|
||||
|
|
@ -1433,6 +1461,7 @@
|
|||
"Show Formatting Toolbar": "Visa verktygsfält för textformatering",
|
||||
"Show image preview": "Visa förhandsvisning av bild",
|
||||
"Show Model": "Visa modell",
|
||||
"Show Shortcuts": "",
|
||||
"Show your support!": "Visa ditt stöd!",
|
||||
"Showcased creativity": "Visade kreativitet",
|
||||
"Sign in": "Logga in",
|
||||
|
|
@ -1466,7 +1495,9 @@
|
|||
"Start Tag": "Starta en tagg",
|
||||
"Status Updates": "Statusuppdateringar",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Steps": "",
|
||||
"Stop": "Stopp",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
"Stream Chat Response": "Strömma chattsvar",
|
||||
"Stream Delta Chunk Size": "",
|
||||
|
|
@ -1496,6 +1527,7 @@
|
|||
"Tags Generation": "Tagggenerering",
|
||||
"Tags Generation Prompt": "Prompt för tagggenerering",
|
||||
"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.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.",
|
||||
"Talk to Model": "",
|
||||
"Tap to interrupt": "Tryck för att avbryta",
|
||||
"Task List": "Uppgiftslista",
|
||||
"Task Model": "Uppgiftsmodell",
|
||||
|
|
@ -1577,6 +1609,7 @@
|
|||
"Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar",
|
||||
"Today": "Idag",
|
||||
"Today at {{LOCALIZED_TIME}}": "Idag kl {{LOCALIZED_TIME}}",
|
||||
"Toggle Sidebar": "",
|
||||
"Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.",
|
||||
"Token": "Token",
|
||||
"Too verbose": "För utförlig",
|
||||
|
|
@ -1645,6 +1678,8 @@
|
|||
"URL Mode": "URL-läge",
|
||||
"Usage": "Användning",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Använd '#' i prompten för att läsa in och inkludera från kunskapsbaser",
|
||||
"Use /v1/chat/completions endpoint instead of /v1/audio/transcriptions for potentially better accuracy.": "",
|
||||
"Use Chat Completions API": "",
|
||||
"Use groups to group your users and assign permissions.": "Använd grupper för att gruppera dina användare och tilldela behörigheter.",
|
||||
"Use LLM": "Använd LLM",
|
||||
"Use no proxy to fetch page contents.": "Använd ingen proxy för att hämta sidinnehåll.",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
|
||||
"Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "เอกสาร",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "ใส่สตริงการตรวจสอบ API (เช่น username:password)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "ใส่จำนวนขั้นตอน (เช่น 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "แท็กไม่ถูกต้อง",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "การปรับแต่ง",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "",
|
||||
"Do not install tools from sources you do not fully trust.": "",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Resminama",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan fonksiyonlar yüklemeyin.",
|
||||
"Do not install tools from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan araçlar yüklemeyin.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "Belge",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Api auth dizesini girin (örn. kullanıcı adı:parola)",
|
||||
"Enter Application DN": "Uygulama DN'sini Girin",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Adım Sayısını Girin (örn. 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Geçersiz etiket",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "İzinler",
|
||||
"Perplexity API Key": "Perplexity API Anahtarı",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Kişiselleştirme",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "پۈتۈنلەي ئىشەنچلىك بولمىغان مەنبەلەردىن فۇنكسىيە ئورناتماڭ.",
|
||||
"Do not install tools from sources you do not fully trust.": "پۈتۈنلەي ئىشەنچلىك بولمىغان مەنبەلەردىن قورال ئورناتماڭ.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling مۇلازىمېتىر URL زۆرۈر.",
|
||||
"Document": "ھۆججەت",
|
||||
"Document Intelligence": "ھۆججەت ئەقىل",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "كۈتۈۋاتقان ئىشلەتكۈچى ئۇچۇر قاپلىمىسى ئۈچۈن تېما كىرگۈزۈڭ. كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "ئىنكاس ئۈچۈن سۇ بەلگىسى كىرگۈزۈڭ. يوق بولسا بوش قالدۇرۇڭ.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "API دەلىللەش ھەرپ تىزىقى كىرگۈزۈڭ (مەسىلەن: username:password)",
|
||||
"Enter Application DN": "قوللىنىشچان DN كىرگۈزۈڭ",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "قەدەملەر سانى كىرگۈزۈڭ (مەسىلەن: 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Perplexity API ئاچقۇچى كىرگۈزۈڭ",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Playwright ۋاقىت چەكلىمىسى كىرگۈزۈڭ",
|
||||
"Enter Playwright WebSocket URL": "Playwright WebSocket URL كىرگۈزۈڭ",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "ۋاكالەتچى URL كىرگۈزۈڭ (مەسىلەن: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "تەغ خاتا",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "ھوقۇق",
|
||||
"Perplexity API Key": "Perplexity API ئاچقۇچى",
|
||||
"Perplexity Model": "Perplexity مودېلى",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity ئىزدەش مۇھىتى ئىشلىتىش",
|
||||
"Personalization": "شەخسىيلاشتۇرۇش",
|
||||
"Picture Description API Config": "رەسىم چۈشەندۈرۈش API تەڭشىكى",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Не встановлюйте функції з джерел, яким ви не повністю довіряєте.",
|
||||
"Do not install tools from sources you do not fully trust.": "Не встановлюйте інструменти з джерел, яким ви не повністю довіряєте.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Потрібна URL-адреса сервера Docling.",
|
||||
"Document": "Документ",
|
||||
"Document Intelligence": "Інтелект документа",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Введіть рядок авторизації api (напр, ім'я користувача:пароль)",
|
||||
"Enter Application DN": "Введіть DN застосунку",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Введіть кількість кроків (напр., 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Введіть ключ API для Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Введіть URL проксі (напр., https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Недійсний тег",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Дозволи",
|
||||
"Perplexity API Key": "Ключ API для Perplexity",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Персоналізація",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "ایسی جگہوں سے فنکشنز انسٹال نہ کریں جن پر آپ مکمل بھروسہ نہیں کرتے",
|
||||
"Do not install tools from sources you do not fully trust.": "جن ذرائع پر آپ مکمل بھروسہ نہیں کرتے، ان سے ٹولز انسٹال نہ کریں",
|
||||
"Docling": "",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "",
|
||||
"Document": "دستاویز",
|
||||
"Document Intelligence": "",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "اے پی آئی اتھ سٹرنگ درج کریں (مثال کے طور پر: صارف نام:پاس ورڈ)",
|
||||
"Enter Application DN": "",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "درج کریں مراحل کی تعداد (جیسے 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "غلط ٹیگ",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "",
|
||||
"Perplexity API Key": "",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "شخصی ترتیبات",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Тўлиқ ишонмайдиган манбалардан функсияларни ўрнатманг.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ўзингиз ишонмайдиган манбалардан асбобларни ўрнатманг.",
|
||||
"Docling": "Доклинг",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Доcлинг Сервер URL манзили талаб қилинади.",
|
||||
"Document": "Ҳужжат",
|
||||
"Document Intelligence": "Ҳужжат разведкаси",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Кутилаётган фойдаланувчи маълумотлари учун сарлавҳа киритинг. Сукут бўйича бўш қолдиринг.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Жавоб учун мойбўёқли белгини киритинг. Ҳеч ким учун бўш қолдиринг.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "API auth сатрини киритинг (масалан, фойдаланувчи номи: парол)",
|
||||
"Enter Application DN": "Илова DN ни киритинг",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Қадамлар сонини киритинг (масалан, 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Perplexity АПИ калитини киритинг",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "Perplexity WebSocket УРЛ манзилини киритинг",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Прокси-сервернинг УРЛ манзилини киритинг (масалан, ҳттпс://усер:пассwорд@ҳост:порт)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Тег нотўғри",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Рухсатлар",
|
||||
"Perplexity API Key": "Қийинчилик АПИ калити",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Шахсийлаштириш",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Toʻliq ishonmaydigan manbalardan funksiyalarni oʻrnatmang.",
|
||||
"Do not install tools from sources you do not fully trust.": "O'zingiz ishonmaydigan manbalardan asboblarni o'rnatmang.",
|
||||
"Docling": "Dokling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Docling Server URL manzili talab qilinadi.",
|
||||
"Document": "Hujjat",
|
||||
"Document Intelligence": "Hujjat razvedkasi",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "Kutilayotgan foydalanuvchi maʼlumotlari uchun sarlavha kiriting. Sukut bo'yicha bo'sh qoldiring.",
|
||||
"Enter a watermark for the response. Leave empty for none.": "Javob uchun moybo'yoqli belgini kiriting. Hech kim uchun bo'sh qoldiring.",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "api auth satrini kiriting (masalan, foydalanuvchi nomi: parol)",
|
||||
"Enter Application DN": "Ilova DN ni kiriting",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Qadamlar sonini kiriting (masalan, 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Perplexity API kalitini kiriting",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "Dramaturg vaqtini kiriting",
|
||||
"Enter Playwright WebSocket URL": "Playwright WebSocket URL manzilini kiriting",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Proksi-serverning URL manzilini kiriting (masalan, https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Teg noto‘g‘ri",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Ruxsatlar",
|
||||
"Perplexity API Key": "Qiyinchilik API kaliti",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Shaxsiylashtirish",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "Không cài đặt các functions từ các nguồn mà bạn không hoàn toàn tin tưởng.",
|
||||
"Do not install tools from sources you do not fully trust.": "Không cài đặt các tools từ những nguồn mà bạn không hoàn toàn tin tưởng.",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "Yêu cầu URL Máy chủ Docling.",
|
||||
"Document": "Tài liệu",
|
||||
"Document Intelligence": "Trí tuệ Tài liệu",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "",
|
||||
"Enter a watermark for the response. Leave empty for none.": "",
|
||||
"Enter additional headers in JSON format": "",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "",
|
||||
"Enter api auth string (e.g. username:password)": "Nhập chuỗi xác thực api (ví dụ: username: mật khẩu)",
|
||||
"Enter Application DN": "Nhập DN Ứng dụng",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "Nhập số Steps (vd: 50)",
|
||||
"Enter Ollama Cloud API Key": "",
|
||||
"Enter Perplexity API Key": "Nhập Khóa API Perplexity",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "",
|
||||
"Enter Playwright WebSocket URL": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Nhập URL proxy (vd: https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format for Parameters": "",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid JSON format in MinerU Parameters": "",
|
||||
"Invalid Tag": "Tag không hợp lệ",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "Quyền",
|
||||
"Perplexity API Key": "Khóa API Perplexity",
|
||||
"Perplexity Model": "",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "",
|
||||
"Personalization": "Cá nhân hóa",
|
||||
"Picture Description API Config": "",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "切勿安装不可信来源的函数",
|
||||
"Do not install tools from sources you do not fully trust.": "切勿安装不可信来源的工具",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "需要提供 Docling 服务器接口地址",
|
||||
"Document": "文档",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "输入用户待激活界面的标题。留空使用默认",
|
||||
"Enter a watermark for the response. Leave empty for none.": "输入复制水印。留空则不添加",
|
||||
"Enter additional headers in JSON format": "输入 JSON 格式的额外 HTTP 标头",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "输入 JSON 格式的额外 HTTP 标头(例如:{{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "输入 JSON 格式的额外参数",
|
||||
"Enter api auth string (e.g. username:password)": "输入接口鉴权路径(例如:用户名:密码)",
|
||||
"Enter Application DN": "输入 Application DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "输入步骤数 (Steps)(例如:50)",
|
||||
"Enter Ollama Cloud API Key": "输入 Ollama Cloud 接口密钥",
|
||||
"Enter Perplexity API Key": "输入 Perplexity 接口密钥",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "输入 Playwright 超时时间",
|
||||
"Enter Playwright WebSocket URL": "输入 Playwright WebSocket 地址",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "输入代理地址(例如:https://用户名:密码@主机名:端口)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "ComfyUI 图片编辑工作流的 JSON 格式无效",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "ComfyUI 工作流的 JSON 格式无效",
|
||||
"Invalid JSON format for Parameters": "额外参数的 JSON 格式无效",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "额外配置项的 JSON 格式无效",
|
||||
"Invalid JSON format in MinerU Parameters": "MinerU 参数的 JSON 格式无效",
|
||||
"Invalid Tag": "无效标签",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "权限",
|
||||
"Perplexity API Key": "Perplexity 接口密钥",
|
||||
"Perplexity Model": "Perplexity 模型",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity 搜索上下文用量",
|
||||
"Personalization": "个性化",
|
||||
"Picture Description API Config": "图片描述接口配置",
|
||||
|
|
|
|||
|
|
@ -455,6 +455,7 @@
|
|||
"Do not install functions from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝函式。",
|
||||
"Do not install tools from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝工具。",
|
||||
"Docling": "Docling",
|
||||
"Docling Parameters": "",
|
||||
"Docling Server URL required.": "需要提供 Docling 伺服器 URL。",
|
||||
"Document": "檔案",
|
||||
"Document Intelligence": "Document Intelligence",
|
||||
|
|
@ -538,7 +539,7 @@
|
|||
"Enter a title for the pending user info overlay. Leave empty for default.": "為待處理的使用者訊息覆蓋層輸入標題。留空以使用預設值。",
|
||||
"Enter a watermark for the response. Leave empty for none.": "請輸入回應浮水印內容,留空表示不使用浮水印。",
|
||||
"Enter additional headers in JSON format": "請輸入額外的 HTTP 標頭,以 JSON 格式表示",
|
||||
"Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "請輸入額外的 HTTP 標頭,以 JSON 格式表示(例如:{{'{{\"X-Custom-Header\": \"value\"}}'}})",
|
||||
"Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "",
|
||||
"Enter additional parameters in JSON format": "請輸入額外的參數,以 JSON 格式表示",
|
||||
"Enter api auth string (e.g. username:password)": "輸入 API 驗證字串(例如:username:password)",
|
||||
"Enter Application DN": "輸入應用程式 DN",
|
||||
|
|
@ -598,6 +599,7 @@
|
|||
"Enter Number of Steps (e.g. 50)": "輸入步驟數(例如:50)",
|
||||
"Enter Ollama Cloud API Key": "輸入 Ollama Cloud API 金鑰",
|
||||
"Enter Perplexity API Key": "輸入 Perplexity API 金鑰",
|
||||
"Enter Perplexity Search API URL": "",
|
||||
"Enter Playwright Timeout": "輸入 Playwright 逾時時間(毫秒)",
|
||||
"Enter Playwright WebSocket URL": "輸入 Playwright WebSocket URL",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "輸入代理程式 URL(例如:https://user:password@host:port)",
|
||||
|
|
@ -894,6 +896,7 @@
|
|||
"Invalid JSON format for ComfyUI Edit Workflow.": "ComfyUI 圖片編輯工作流程的 JSON 格式無效",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "ComfyUI 工作流程的 JSON 格式無效",
|
||||
"Invalid JSON format for Parameters": "額外參數的 JSON 格式無效",
|
||||
"Invalid JSON format in {{NAME}}": "",
|
||||
"Invalid JSON format in Additional Config": "額外設定的 JSON 格式無效",
|
||||
"Invalid JSON format in MinerU Parameters": "MinerU 參數的 JSON 格式無效",
|
||||
"Invalid Tag": "無效標籤",
|
||||
|
|
@ -1200,6 +1203,7 @@
|
|||
"Permissions": "權限",
|
||||
"Perplexity API Key": "Perplexity API 金鑰",
|
||||
"Perplexity Model": "Perplexity 模型",
|
||||
"Perplexity Search API URL": "",
|
||||
"Perplexity Search Context Usage": "Perplexity 搜尋上下文使用量",
|
||||
"Personalization": "個人化",
|
||||
"Picture Description API Config": "圖片描述 API 設定",
|
||||
|
|
|
|||
Loading…
Reference in a new issue