feat: 修改应用名 & 补充导入入口

This commit is contained in:
sylarchen1389 2025-11-20 09:38:03 +08:00
parent 574da93e1a
commit 9413b15ace
104 changed files with 820 additions and 724 deletions

View file

@ -17,7 +17,7 @@ def version_callback(value: bool):
if value:
from open_webui.env import VERSION
typer.echo(f"Open WebUI version: {VERSION}")
typer.echo(f"CyberLover version: {VERSION}")
raise typer.Exit()

View file

@ -975,7 +975,7 @@ if OLLAMA_BASE_URL == "" and OLLAMA_API_BASE_URL != "":
if ENV == "prod":
if OLLAMA_BASE_URL == "/ollama" and not K8S_FLAG:
if USE_OLLAMA_DOCKER.lower() == "true":
# if you use all-in-one docker container (Open WebUI + Ollama)
# if you use all-in-one docker container (CyberLover + Ollama)
# with the docker build arg USE_OLLAMA=true (--build-arg="USE_OLLAMA=true") this only works with http://localhost:11434
OLLAMA_BASE_URL = "http://localhost:11434"
else:

View file

@ -110,9 +110,9 @@ for source in log_sources:
log.setLevel(SRC_LOG_LEVELS["CONFIG"])
WEBUI_NAME = os.environ.get("WEBUI_NAME", "Open WebUI")
if WEBUI_NAME != "Open WebUI":
WEBUI_NAME += " (Open WebUI)"
WEBUI_NAME = os.environ.get("WEBUI_NAME", "CyberLover")
if WEBUI_NAME != "CyberLover":
WEBUI_NAME += " (CyberLover)"
WEBUI_FAVICON_URL = "https://openwebui.com/favicon.png"

View file

@ -609,14 +609,14 @@ async def lifespan(app: FastAPI):
app = FastAPI(
title="Open WebUI",
title="CyberLover",
docs_url="/docs" if ENV == "dev" else None,
openapi_url="/openapi.json" if ENV == "dev" else None,
redoc_url=None,
lifespan=lifespan,
)
# For Open WebUI OIDC/OAuth2
# For CyberLover OIDC/OAuth2
oauth_manager = OAuthManager(app)
app.state.oauth_manager = oauth_manager
@ -1916,7 +1916,7 @@ async def get_app_changelog():
@app.get("/api/usage")
async def get_current_usage(user=Depends(get_verified_user)):
"""
Get current usage statistics for Open WebUI.
Get current usage statistics for CyberLover.
This is an experimental endpoint and subject to change.
"""
try:

View file

@ -168,6 +168,7 @@ class UsersTable:
"email": email,
"role": role,
"profile_image_url": profile_image_url,
# AI-Friend, 默认启用记忆功能
"settings": {"ui": {"memory": True}},
"last_active_at": int(time.time()),
"created_at": int(time.time()),

View file

@ -32,7 +32,7 @@ class ExternalWebLoader(BaseLoader):
response = requests.post(
self.external_url,
headers={
"User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) External Web Loader",
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) External Web Loader",
"Authorization": f"Bearer {self.external_api_key}",
},
json={

View file

@ -63,8 +63,8 @@ class MilvusClient(VectorDBBase):
"""
Maps the traditional collection name to multi-tenant collection and resource ID.
WARNING: This mapping relies on current Open WebUI naming conventions for
collection names. If Open WebUI changes how it generates collection names
WARNING: This mapping relies on current CyberLover naming conventions for
collection names. If CyberLover changes how it generates collection names
(e.g., "user-memory-" prefix, "file-" prefix, web search patterns, or hash
formats), this mapping will break and route data to incorrect collections.
POTENTIALLY CAUSING HUGE DATA CORRUPTION, DATA CONSISTENCY ISSUES AND INCORRECT

View file

@ -106,8 +106,8 @@ class QdrantClient(VectorDBBase):
Returns:
tuple: (collection_name, tenant_id)
WARNING: This mapping relies on current Open WebUI naming conventions for
collection names. If Open WebUI changes how it generates collection names
WARNING: This mapping relies on current CyberLover naming conventions for
collection names. If CyberLover changes how it generates collection names
(e.g., "user-memory-" prefix, "file-" prefix, web search patterns, or hash
formats), this mapping will break and route data to incorrect collections.
POTENTIALLY CAUSING HUGE DATA CORRUPTION, DATA CONSISTENCY ISSUES AND INCORRECT

View file

@ -17,7 +17,7 @@ log.setLevel(SRC_LOG_LEVELS["RAG"])
class S3VectorClient(VectorDBBase):
"""
AWS S3 Vector integration for Open WebUI Knowledge.
AWS S3 Vector integration for CyberLover Knowledge.
"""
def __init__(self):
@ -80,7 +80,7 @@ class S3VectorClient(VectorDBBase):
if not isinstance(metadata, dict) or len(metadata) <= 10:
return metadata
# Keep only the first 10 keys, prioritizing important ones based on actual Open WebUI metadata
# Keep only the first 10 keys, prioritizing important ones based on actual CyberLover metadata
important_keys = [
"text", # The actual document content
"file_id", # File ID
@ -570,7 +570,7 @@ class S3VectorClient(VectorDBBase):
)
# Return in GetResult format
# The Open WebUI GetResult expects lists of lists, so we wrap each list
# The CyberLover GetResult expects lists of lists, so we wrap each list
if all_ids:
return GetResult(
ids=[all_ids], documents=[all_documents], metadatas=[all_metadatas]

View file

@ -20,7 +20,7 @@ def search_external(
response = requests.post(
external_url,
headers={
"User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"Authorization": f"Bearer {external_api_key}",
},
json={

View file

@ -22,7 +22,7 @@ def search_firecrawl(
response = requests.post(
firecrawl_search_url,
headers={
"User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"Authorization": f"Bearer {firecrawl_api_key}",
},
json={

View file

@ -67,7 +67,7 @@ def search_searxng(
response = requests.get(
query_url,
headers={
"User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"Accept": "text/html",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "en-US,en;q=0.5",

View file

@ -61,7 +61,7 @@ def search_yacy(
query_url,
auth=yacy_auth,
headers={
"User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"Accept": "text/html",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "en-US,en;q=0.5",

View file

@ -381,7 +381,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
detail = None
status_code = 500
detail = f"Open WebUI: Server Connection Error"
detail = f"CyberLover: Server Connection Error"
if r is not None:
status_code = r.status
@ -450,7 +450,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
raise HTTPException(
status_code=getattr(r, "status", 500) if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
elif request.app.state.config.TTS_ENGINE == "azure":
@ -509,7 +509,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
raise HTTPException(
status_code=getattr(r, "status", 500) if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
elif request.app.state.config.TTS_ENGINE == "transformers":
@ -637,7 +637,7 @@ def transcription_handler(request, file_path, metadata):
except Exception:
detail = f"External: {e}"
raise Exception(detail if detail else "Open WebUI: Server Connection Error")
raise Exception(detail if detail else "CyberLover: Server Connection Error")
elif request.app.state.config.STT_ENGINE == "deepgram":
try:
@ -708,7 +708,7 @@ def transcription_handler(request, file_path, metadata):
detail = f"External: {res['error'].get('message', '')}"
except Exception:
detail = f"External: {e}"
raise Exception(detail if detail else "Open WebUI: Server Connection Error")
raise Exception(detail if detail else "CyberLover: Server Connection Error")
elif request.app.state.config.STT_ENGINE == "azure":
# Check file exists and size
@ -825,7 +825,7 @@ def transcription_handler(request, file_path, metadata):
raise HTTPException(
status_code=getattr(r, "status_code", 500) if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)

View file

@ -170,7 +170,7 @@ async def send_post_request(
log.error(f"Failed to parse error response: {e}")
raise HTTPException(
status_code=r.status,
detail=f"Open WebUI: Server Connection Error",
detail=f"CyberLover: Server Connection Error",
)
r.raise_for_status() # Raises an error for bad responses (4xx, 5xx)
@ -199,7 +199,7 @@ async def send_post_request(
raise HTTPException(
status_code=r.status if r else 500,
detail=detail if e else "Open WebUI: Server Connection Error",
detail=detail if e else "CyberLover: Server Connection Error",
)
finally:
if not stream:
@ -276,7 +276,7 @@ async def verify_connection(
except aiohttp.ClientError as e:
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
status_code=500, detail="CyberLover: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
@ -503,7 +503,7 @@ async def get_ollama_tags(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
if user.role == "user" and not BYPASS_MODEL_ACCESS_CONTROL:
@ -641,7 +641,7 @@ async def get_ollama_versions(request: Request, url_idx: Optional[int] = None):
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
else:
return {"version": False}
@ -875,7 +875,7 @@ async def copy_model(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
@ -945,7 +945,7 @@ async def delete_model(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
@ -1009,7 +1009,7 @@ async def show_model_info(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
@ -1101,7 +1101,7 @@ async def embed(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
@ -1188,7 +1188,7 @@ async def embeddings(
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
@ -1611,7 +1611,7 @@ async def get_openai_models(
]
except Exception as e:
log.exception(e)
error_detail = "Open WebUI: Server Connection Error"
error_detail = "CyberLover: Server Connection Error"
if r is not None:
try:
res = r.json()

View file

@ -135,7 +135,7 @@ async def get_headers_and_cookies(
**(
{
"HTTP-Referer": "https://openwebui.com/",
"X-Title": "Open WebUI",
"X-Title": "CyberLover",
}
if "openrouter.ai" in url
else {}
@ -349,7 +349,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
raise HTTPException(
status_code=r.status_code if r else 500,
detail=detail if detail else "Open WebUI: Server Connection Error",
detail=detail if detail else "CyberLover: Server Connection Error",
)
except ValueError:
@ -623,7 +623,7 @@ async def get_models(
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
status_code=500, detail="CyberLover: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
@ -720,12 +720,12 @@ async def verify_connection(
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
status_code=500, detail="CyberLover: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
raise HTTPException(
status_code=500, detail="Open WebUI: Server Connection Error"
status_code=500, detail="CyberLover: Server Connection Error"
)
@ -973,7 +973,7 @@ async def generate_chat_completion(
raise HTTPException(
status_code=r.status if r else 500,
detail="Open WebUI: Server Connection Error",
detail="CyberLover: Server Connection Error",
)
finally:
if not streaming:
@ -1055,7 +1055,7 @@ async def embeddings(request: Request, form_data: dict, user):
log.exception(e)
raise HTTPException(
status_code=r.status if r else 500,
detail="Open WebUI: Server Connection Error",
detail="CyberLover: Server Connection Error",
)
finally:
if not streaming:
@ -1148,7 +1148,7 @@ async def proxy(path: str, request: Request, user=Depends(get_verified_user)):
log.exception(e)
raise HTTPException(
status_code=r.status if r else 500,
detail="Open WebUI: Server Connection Error",
detail="CyberLover: Server Connection Error",
)
finally:
if not streaming:

View file

@ -1,5 +1,5 @@
"""
Experimental SCIM 2.0 Implementation for Open WebUI
Experimental SCIM 2.0 Implementation for CyberLover
Provides System for Cross-domain Identity Management endpoints for users and groups
NOTE: This is an experimental implementation and may not fully comply with SCIM 2.0 standards, and is subject to change.

View file

@ -241,7 +241,7 @@ async def get_oauth_client_info_with_dynamic_client_registration(
).rstrip("/")
oauth_client_metadata = OAuthClientMetadata(
client_name="Open WebUI",
client_name="CyberLover",
redirect_uris=[f"{redirect_base_url}/oauth/clients/{client_id}/callback"],
grant_types=["authorization_code", "refresh_token"],
response_types=["code"],

View file

@ -1,4 +1,4 @@
"""OpenTelemetry metrics bootstrap for Open WebUI.
"""OpenTelemetry metrics bootstrap for CyberLover.
This module initialises a MeterProvider that sends metrics to an OTLP
collector. The collector is responsible for exposing a Prometheus

View file

@ -10,11 +10,11 @@ from hatchling.builders.hooks.plugin.interface import BuildHookInterface
class CustomBuildHook(BuildHookInterface):
def initialize(self, version, build_data):
super().initialize(version, build_data)
stderr.write(">>> Building Open Webui frontend\n")
stderr.write(">>> Building CyberLover frontend\n")
npm = shutil.which("npm")
if npm is None:
raise RuntimeError(
"NodeJS `npm` is required for building Open Webui but it was not found"
"NodeJS `npm` is required for building CyberLover but it was not found"
)
stderr.write("### npm install\n")
subprocess.run([npm, "install", "--force"], check=True) # noqa: S603

View file

@ -108,7 +108,7 @@
})();
</script>
<title>Open WebUI</title>
<title>CyberLover</title>
%sveltekit.head%
</head>

View file

@ -746,7 +746,7 @@
{$i18n.t('Warning')}:
</span>
{$i18n.t(
'MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.'
'MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.'
)}
<a

View file

@ -126,7 +126,7 @@
};
const shareHandler = async () => {
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
// remove snapshot from feedbacks
const feedbacksToShare = feedbacks.map((f) => {
@ -407,7 +407,7 @@
}}
>
<div class=" self-center mr-2 font-medium line-clamp-1">
{$i18n.t('Share to Open WebUI Community')}
{$i18n.t('Share to CyberLover Community')}
</div>
<div class=" self-center">

View file

@ -99,7 +99,7 @@
return null;
});
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
const url = 'https://openwebui.com';
@ -594,7 +594,7 @@
{#if $config?.features.enable_community_sharing}
<div class=" my-16">
<div class=" text-xl font-medium mb-1 line-clamp-1">
{$i18n.t('Made by Open WebUI Community')}
{$i18n.t('Made by CyberLover Community')}
</div>
<a

View file

@ -410,7 +410,7 @@
</div>
<div class="mt-2 mb-1 text-xs text-gray-400 dark:text-gray-500">
{$i18n.t(`Open WebUI uses faster-whisper internally.`)}
{$i18n.t(`CyberLover uses faster-whisper internally.`)}
<a
class=" hover:underline dark:text-gray-200 text-gray-800"
@ -561,7 +561,7 @@
</div>
</div>
<div class="mt-2 mb-1 text-xs text-gray-400 dark:text-gray-500">
{$i18n.t(`Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.`)}
{$i18n.t(`CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.`)}
To learn more about SpeechT5,

View file

@ -185,7 +185,7 @@
{$i18n.t('Help')}
</div>
<div class=" text-xs text-gray-500">
{$i18n.t('Discover how to use Open WebUI and seek support from the community.')}
{$i18n.t('Discover how to use CyberLover and seek support from the community.')}
</div>
</div>

View file

@ -478,7 +478,7 @@
>
> It looks like you have over 50 users, that usually falls under organizational usage.
>
> Open WebUI is completely free to use as-is, with no restrictions or hidden limits, and we'd love to keep it that way. 🌱
> CyberLover is completely free to use as-is, with no restrictions or hidden limits, and we'd love to keep it that way. 🌱
>
> By supporting the project through sponsorship or an enterprise license, youre not only helping us stay independent, youre also helping us ship new features faster, improve stability, and grow the project for the long haul. With an *enterprise license*, you also get additional perks like dedicated support, customization options, and more, all at a fraction of what it would cost to build and maintain internally.
>

View file

@ -202,7 +202,7 @@
</script>
<svelte:head>
<title>#{channel?.name ?? 'Channel'}Open WebUI</title>
<title>#{channel?.name ?? 'Channel'}CyberLover</title>
</svelte:head>
<div

View file

@ -114,7 +114,7 @@
{#if $config?.license_metadata}
<div class="mb-2 text-xs">
{#if !$WEBUI_NAME.includes('Open WebUI')}
{#if !$WEBUI_NAME.includes('CyberLover')}
<span class=" text-gray-500 dark:text-gray-300 font-medium">{$WEBUI_NAME}</span> -
{/if}
@ -157,7 +157,7 @@
class="text-xs text-gray-400 dark:text-gray-500">Copyright (c) {new Date().getFullYear()} <a
href="https://openwebui.com"
target="_blank"
class="underline">Open WebUI (Timothy Jaeryang Baek)</a
class="underline">CyberLover (Timothy Jaeryang Baek)</a
>
All rights reserved.
@ -175,9 +175,9 @@ modification, are permitted provided that the following conditions are met:
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
4. Notwithstanding any other provision of this License, and as a material condition of the rights granted herein, licensees are strictly prohibited from altering, removing, obscuring, or replacing any "Open WebUI" branding, including but not limited to the name, logo, or any visual, textual, or symbolic identifiers that distinguish the software and its interfaces, in any deployment or distribution, regardless of the number of users, except as explicitly set forth in Clauses 5 and 6 below.
4. Notwithstanding any other provision of this License, and as a material condition of the rights granted herein, licensees are strictly prohibited from altering, removing, obscuring, or replacing any "CyberLover" branding, including but not limited to the name, logo, or any visual, textual, or symbolic identifiers that distinguish the software and its interfaces, in any deployment or distribution, regardless of the number of users, except as explicitly set forth in Clauses 5 and 6 below.
5. The branding restriction enumerated in Clause 4 shall not apply in the following limited circumstances: (i) deployments or distributions where the total number of end users (defined as individual natural persons with direct access to the application) does not exceed fifty (50) within any rolling thirty (30) day period; (ii) cases in which the licensee is an official contributor to the codebase—with a substantive code change successfully merged into the main branch of the official codebase maintained by the copyright holder—who has obtained specific prior written permission for branding adjustment from the copyright holder; or (iii) where the licensee has obtained a duly executed enterprise license expressly permitting such modification. For all other cases, any removal or alteration of the "Open WebUI" branding shall constitute a material breach of license.
5. The branding restriction enumerated in Clause 4 shall not apply in the following limited circumstances: (i) deployments or distributions where the total number of end users (defined as individual natural persons with direct access to the application) does not exceed fifty (50) within any rolling thirty (30) day period; (ii) cases in which the licensee is an official contributor to the codebase—with a substantive code change successfully merged into the main branch of the official codebase maintained by the copyright holder—who has obtained specific prior written permission for branding adjustment from the copyright holder; or (iii) where the licensee has obtained a duly executed enterprise license expressly permitting such modification. For all other cases, any removal or alteration of the "CyberLover" branding shall constitute a material breach of license.
6. All code, modifications, or derivative works incorporated into this project prior to the incorporation of this branding clause remain licensed under the BSD 3-Clause License, and prior contributors retain all BSD-3 rights therein; if any such contributor requests the removal of their BSD-3-licensed code, the copyright holder will do so, and any replacement code will be licensed under the project's primary license then in effect. By contributing after this clause's adoption, you agree to the project's Contributor License Agreement (CLA) and to these updated terms for all new contributions.

View file

@ -135,7 +135,7 @@
{$i18n.t('Connect to your own OpenAI compatible API endpoints.')}
<br />
{$i18n.t(
'CORS must be properly configured by the provider to allow requests from Open WebUI.'
'CORS must be properly configured by the provider to allow requests from CyberLover.'
)}
</div>
</div>

View file

@ -250,7 +250,7 @@
href="https://github.com/open-webui/open-webui/blob/main/docs/CONTRIBUTING.md#-translations-and-internationalization"
target="_blank"
>
Help us translate Open WebUI!
Help us translate CyberLover!
</a>
</div>
{/if}

View file

@ -111,7 +111,7 @@
{$i18n.t('Connect to your own OpenAPI compatible external tool servers.')}
<br />
{$i18n.t(
'CORS must be properly configured by the provider to allow requests from Open WebUI.'
'CORS must be properly configured by the provider to allow requests from CyberLover.'
)}
</div>
</div>

View file

@ -424,7 +424,7 @@
keywords: [
'about app',
'about me',
'about open webui',
'about CyberLover',
'about page',
'about us',
'aboutapp',

View file

@ -31,7 +31,7 @@
const _chat = chat.chat;
console.log('share', _chat);
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
const url = 'https://openwebui.com';
// const url = 'http://localhost:5173';
@ -135,7 +135,7 @@
show = false;
}}
>
{$i18n.t('Share to Open WebUI Community')}
{$i18n.t('Share to CyberLover Community')}
</button>
{/if}

View file

@ -74,7 +74,7 @@
<div class="px-5 pb-5 w-full flex flex-col justify-center">
<div class=" text-xs text-gray-600 dark:text-gray-300 mb-2">
{$i18n.t('Open WebUI can use tools provided by any OpenAPI server.')} <br /><a
{$i18n.t('CyberLover can use tools provided by any OpenAPI server.')} <br /><a
class="underline"
href="https://github.com/open-webui/openapi-servers"
target="_blank">{$i18n.t('Learn more about OpenAPI tool servers.')}</a

View file

@ -62,6 +62,7 @@
import PinnedModelList from './Sidebar/PinnedModelList.svelte';
import Note from '../icons/Note.svelte';
import { slide } from 'svelte/transition';
import { getImportOrigin, convertOpenAIChats } from '$lib/utils';
const BREAKPOINT = 768;
@ -86,6 +87,10 @@
let newFolderId = null;
// Import Chats state
let importFiles;
let chatImportInputElement: HTMLInputElement;
const initFolders = async () => {
const folderList = await getFolders(localStorage.token).catch((error) => {
toast.error(`${error}`);
@ -349,6 +354,55 @@
selectedChatId = null;
};
// Import Chats handler
$: if (importFiles) {
console.log(importFiles);
let reader = new FileReader();
reader.onload = (event) => {
let chats = JSON.parse(event.target.result);
console.log(chats);
if (getImportOrigin(chats) == 'openai') {
try {
chats = convertOpenAIChats(chats);
} catch (error) {
console.log('Unable to import chats:', error);
}
}
importChatsHandler(chats);
};
if (importFiles.length > 0) {
reader.readAsText(importFiles[0]);
}
}
const importChatsHandler = async (_chats) => {
for (const chat of _chats) {
console.log(chat);
if (chat.chat) {
await importChat(
localStorage.token,
chat.chat,
chat.meta ?? {},
false,
null,
chat?.created_at ?? null,
chat?.updated_at ?? null
);
} else {
// Legacy format
await importChat(localStorage.token, chat, {}, false, null);
}
}
currentChatPage.set(1);
await chats.set(await getChatList(localStorage.token, $currentChatPage));
pinnedChats.set(await getPinnedChatList(localStorage.token));
scrollPaginationEnabled.set(true);
};
let unsubscribers = [];
onMount(async () => {
showPinnedChat = localStorage?.showPinnedChat ? localStorage.showPinnedChat === 'true' : true;
@ -1203,6 +1257,47 @@
<div
class=" sidebar-bg-gradient-to-t bg-linear-to-t from-gray-50 dark:from-gray-950 to-transparent from-50% pointer-events-none absolute inset-0 -z-10 -mt-6"
></div>
<!-- Import Chats Button -->
<input
id="sidebar-chat-import-input"
bind:this={chatImportInputElement}
bind:files={importFiles}
type="file"
accept=".json"
hidden
/>
<button
class="flex items-center space-x-3 rounded-2xl px-2.5 py-2 hover:bg-gray-100 dark:hover:bg-gray-900 transition outline-none"
on:click={() => {
chatImportInputElement.click();
}}
draggable="false"
aria-label={$i18n.t('Import Chats')}
>
<div class="self-center">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="size-4.5"
>
<path
fill-rule="evenodd"
d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 9.5a.75.75 0 0 1-.75-.75V8.06l-.72.72a.75.75 0 0 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0l2 2a.75.75 0 1 1-1.06 1.06l-.72-.72v2.69a.75.75 0 0 1-.75.75Z"
clip-rule="evenodd"
/>
</svg>
</div>
<div class="flex self-center translate-y-[0.5px]">
<div class="self-center text-sm font-primary">{$i18n.t('Import Chats')}</div>
</div>
</button>
<!-- Separator -->
<hr class="border-gray-100 dark:border-gray-850 mx-1.5 my-1.5" />
<div class="flex flex-col font-primary">
{#if $user !== undefined && $user !== null}
<UserMenu

View file

@ -114,7 +114,7 @@
};
const shareModelHandler = async (model) => {
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
const url = 'https://openwebui.com';
@ -612,7 +612,7 @@
{#if $config?.features.enable_community_sharing}
<div class=" my-16">
<div class=" text-xl font-medium mb-1 line-clamp-1">
{$i18n.t('Made by Open WebUI Community')}
{$i18n.t('Made by CyberLover Community')}
</div>
<a

View file

@ -67,7 +67,7 @@
};
const shareHandler = async (prompt) => {
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
const url = 'https://openwebui.com';
@ -408,7 +408,7 @@
{#if $config?.features.enable_community_sharing}
<div class=" my-16">
<div class=" text-xl font-medium mb-1 line-clamp-1">
{$i18n.t('Made by Open WebUI Community')}
{$i18n.t('Made by CyberLover Community')}
</div>
<a

View file

@ -87,7 +87,7 @@
return null;
});
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
toast.success($i18n.t('Redirecting you to CyberLover Community'));
const url = 'https://openwebui.com';
@ -504,7 +504,7 @@
{#if $config?.features.enable_community_sharing}
<div class=" my-16">
<div class=" text-xl font-medium mb-1 line-clamp-1">
{$i18n.t('Made by Open WebUI Community')}
{$i18n.t('Made by CyberLover Community')}
</div>
<a

View file

@ -44,7 +44,7 @@
<div class="my-2">
{$i18n.t(
'Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.'
'Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.'
)}
</div>

View file

@ -1,7 +1,7 @@
import { browser, dev } from '$app/environment';
// import { version } from '../../package.json';
export const APP_NAME = 'Open WebUI';
export const APP_NAME = 'CyberLover';
export const WEBUI_HOSTNAME = browser ? (dev ? `${location.hostname}:8080` : ``) : '';
export const WEBUI_BASE_URL = browser ? (dev ? `http://${WEBUI_HOSTNAME}` : ``) : ``;

View file

@ -337,7 +337,7 @@
"Copy Link": "أنسخ الرابط",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "إنشاء نموذج",
@ -432,7 +432,7 @@
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Made by CyberLover Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "تأكد من إرفاقها",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
"May": "مايو",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
@ -1139,10 +1139,10 @@
"Open new chat": "فتح محادثة جديده",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API إعدادات",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Redirecting you to CyberLover Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1438,7 +1438,7 @@
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
"Share": "كشاركة",
"Share Chat": "مشاركة الدردشة",
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
"Share to CyberLover Community": "OpenWebUI شارك في مجتمع",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1758,7 +1758,7 @@
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "نسخ الرابط",
"Copy to clipboard": "نسخ إلى الحافظة",
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "يجب أن يتم تكوين CORS بشكل صحيح من قبل المزود للسماح بالطلبات من Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "يجب أن يتم تكوين CORS بشكل صحيح من قبل المزود للسماح بالطلبات من CyberLover.",
"Create": "إنشاء",
"Create a knowledge base": "إنشاء قاعدة معرفة",
"Create a model": "إنشاء نموذج",
@ -432,7 +432,7 @@
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
"Discover a tool": "اكتشف أداة",
"Discover how to use Open WebUI and seek support from the community.": "اكتشف كيفية استخدام Open WebUI واطلب الدعم من المجتمع.",
"Discover how to use CyberLover and seek support from the community.": "اكتشف كيفية استخدام CyberLover واطلب الدعم من المجتمع.",
"Discover wonders": "اكتشف العجائب",
"Discover, download, and explore custom functions": "اكتشف، حمّل، واستعرض الوظائف المخصصة",
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
@ -958,7 +958,7 @@
"Lost": "ضائع",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Made by CyberLover Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "تأكد من إرفاقها",
"Make sure to export a workflow.json file as API format from ComfyUI.": "تأكد من تصدير ملف workflow.json بصيغة API من ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
"May": "مايو",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
@ -1139,10 +1139,10 @@
"Open new chat": "فتح محادثة جديده",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "تستخدم واجهة WebUI أداة faster-whisper داخليًا.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "تستخدم WebUI نموذج SpeechT5 وتضمينات صوتية من CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "إصدار WebUI الحالي (v{{OPEN_WEBUI_VERSION}}) أقل من الإصدار المطلوب (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "تستخدم واجهة WebUI أداة faster-whisper داخليًا.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "تستخدم WebUI نموذج SpeechT5 وتضمينات صوتية من CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "إصدار WebUI الحالي (v{{OPEN_WEBUI_VERSION}}) أقل من الإصدار المطلوب (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API إعدادات",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Redirecting you to CyberLover Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "يقلل من احتمال توليد إجابات غير منطقية. القيم الأعلى (مثل 100) تعطي إجابات أكثر تنوعًا، بينما القيم الأدنى (مثل 10) تكون أكثر تحفظًا.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "أشر إلى نفسك باسم \"المستخدم\" (مثل: \"المستخدم يتعلم الإسبانية\")",
"Reference Chats": "",
@ -1438,7 +1438,7 @@
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
"Share": "كشاركة",
"Share Chat": "مشاركة الدردشة",
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
"Share to CyberLover Community": "OpenWebUI شارك في مجتمع",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1758,7 +1758,7 @@
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
"Your Account": "",
"Your account status is currently pending activation.": "حالة حسابك حالياً بانتظار التفعيل.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ Open WebUI أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ CyberLover أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.",
"YouTube": "Youtube",
"Youtube Language": "لغة YouTube",
"Youtube Proxy URL": "رابط بروكسي YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Копиране на връзка",
"Copy to clipboard": "Копиране в клипборда",
"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS трябва да бъде правилно конфигуриран от доставчика, за да позволи заявки от Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS трябва да бъде правилно конфигуриран от доставчика, за да позволи заявки от CyberLover.",
"Create": "Създай",
"Create a knowledge base": "Създаване на база знания",
"Create a model": "Създаване на модел",
@ -432,7 +432,7 @@
"Discover a model": "Открийте модел",
"Discover a prompt": "Откриване на промпт",
"Discover a tool": "Открийте инструмент",
"Discover how to use Open WebUI and seek support from the community.": "Открийте как да използвате Open WebUI и потърсете подкрепа от общността.",
"Discover how to use CyberLover and seek support from the community.": "Открийте как да използвате CyberLover и потърсете подкрепа от общността.",
"Discover wonders": "Открийте чудеса",
"Discover, download, and explore custom functions": "Открийте, изтеглете и разгледайте персонализирани функции",
"Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове",
@ -958,7 +958,7 @@
"Lost": "Изгубено",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Направено от OpenWebUI общността",
"Made by CyberLover Community": "Направено от OpenWebUI общността",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Уверете се, че сте заключени с",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Уверете се, че експортирате файл workflow.json като API формат от ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 модела могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.",
"May": "Май",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
"Memory": "Памет",
@ -1139,10 +1139,10 @@
"Open new chat": "Отвори нов чат",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI използва вътрешно по-бързо-whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI използва SpeechT5 и CMU Arctic говорителни вграждания.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версията на Open WebUI (v{{OPEN_WEBUI_VERSION}}) е по-ниска от необходимата версия (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover използва вътрешно по-бързо-whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover използва SpeechT5 и CMU Arctic говорителни вграждания.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версията на CyberLover (v{{OPEN_WEBUI_VERSION}}) е по-ниска от необходимата версия (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API на OpenAI",
"OpenAI API Config": "OpenAI API конфигурация",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Запиши",
"Record voice": "Записване на глас",
"Redirecting you to Open WebUI Community": "Пренасочване към OpenWebUI общността",
"Redirecting you to CyberLover Community": "Пренасочване към OpenWebUI общността",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Отнасяйте се към себе си като \"Потребител\" (напр. \"Потребителят учи испански\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Настройките са запазени успешно!",
"Share": "Подели",
"Share Chat": "Подели Чат",
"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
"Share to CyberLover Community": "Споделете с OpenWebUI Общността",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Права за споделяне",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Сега вие влязохте в системата.",
"Your Account": "",
"Your account status is currently pending activation.": "Статусът на вашия акаунт в момента очаква активиране.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; Open WebUI не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; CyberLover не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
"YouTube": "Youtube",
"Youtube Language": "Youtube език",
"Youtube Proxy URL": "Youtube Прокси URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "লিংক কপি করুন",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "একটি মডেল তৈরি করুন",
@ -432,7 +432,7 @@
"Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
"Made by CyberLover Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।",
"May": "মে",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
"Memory": "মেমোরি",
@ -1139,10 +1139,10 @@
"Open new chat": "নতুন চ্যাট খুলুন",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI এপিআই",
"OpenAI API Config": "OpenAI এপিআই কনফিগ",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ভয়েস রেকর্ড করুন",
"Redirecting you to Open WebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
"Redirecting you to CyberLover Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
"Share": "শেয়ার করুন",
"Share Chat": "চ্যাট শেয়ার করুন",
"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
"Share to CyberLover Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
"Copying to clipboard was successful!": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱེད་པ་ལེགས་འགྲུབ་བྱུང་།",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI ནས་རེ་ཞུ་གཏོང་བར་གནང་བ་སྤྲོད་ཆེད། CORS ངེས་པར་དུ་མཁོ་སྤྲོད་པས་འགྲིག་པོར་སྒྲིག་འགོད་བྱེད་དགོས།",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLover ནས་རེ་ཞུ་གཏོང་བར་གནང་བ་སྤྲོད་ཆེད། CORS ངེས་པར་དུ་མཁོ་སྤྲོད་པས་འགྲིག་པོར་སྒྲིག་འགོད་བྱེད་དགོས།",
"Create": "གསར་བཟོ།",
"Create a knowledge base": "ཤེས་བྱའི་རྟེན་གཞི་ཞིག་གསར་བཟོ་བྱེད་པ།",
"Create a model": "དཔེ་དབྱིབས་ཤིག་གསར་བཟོ་བྱེད་པ།",
@ -432,7 +432,7 @@
"Discover a model": "དཔེ་དབྱིབས་ཤིག་རྙེད་པ།",
"Discover a prompt": "འགུལ་སློང་ཞིག་རྙེད་པ།",
"Discover a tool": "ལག་ཆ་ཞིག་རྙེད་པ།",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUI ཇི་ལྟར་བེད་སྤྱོད་གཏོང་ཚུལ་རྙེད་པ་དང་སྤྱི་ཚོགས་ནས་རྒྱབ་སྐྱོར་འཚོལ་བ།",
"Discover how to use CyberLover and seek support from the community.": "CyberLover ཇི་ལྟར་བེད་སྤྱོད་གཏོང་ཚུལ་རྙེད་པ་དང་སྤྱི་ཚོགས་ནས་རྒྱབ་སྐྱོར་འཚོལ་བ།",
"Discover wonders": "ངོ་མཚར་རྙེད་པ།",
"Discover, download, and explore custom functions": "སྲོལ་བཟོས་ལས་འགན་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
"Discover, download, and explore custom prompts": "སྲོལ་བཟོས་འགུལ་སློང་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
@ -958,7 +958,7 @@
"Lost": "བརླགས།",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
"Made by CyberLover Community": "CyberLover སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "དེ་དག་འདིས་བསྐོར་བ་ཁག་ཐེག་བྱེད་པ།",
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI ནས་ workflow.json ཡིག་ཆ་ API བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "དཔེ་དབྱིབས་ ༣ ལས་མང་བ་མཉམ་དུ་ཕབ་ལེན་བྱེད་མི་ཐུབ། རྗེས་སུ་ཡང་བསྐྱར་ཚོད་ལྟ་བྱེད་རོགས།",
"May": "ཟླ་བ་ལྔ་པ།",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།",
"Memory": "དྲན་ཤེས།",
@ -1139,10 +1139,10 @@
"Open new chat": "ཁ་བརྡ་གསར་པ་ཁ་ཕྱེ་བ།",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI ཡིས་ནང་ཁུལ་དུ་ faster-whisper བེད་སྤྱོད་བྱེད།",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ཡིས་ SpeechT5 དང་ CMU Arctic གཏམ་བཤད་པའི་ཚུད་འཇུག་བེད་སྤྱོད་བྱེད།",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI པར་གཞི། (v{{OPEN_WEBUI_VERSION}}) དེ་དགོས་ངེས་ཀྱི་པར་གཞི་ (v{{REQUIRED_VERSION}}) ལས་དམའ་བ།",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover ཡིས་ནང་ཁུལ་དུ་ faster-whisper བེད་སྤྱོད་བྱེད།",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover ཡིས་ SpeechT5 དང་ CMU Arctic གཏམ་བཤད་པའི་ཚུད་འཇུག་བེད་སྤྱོད་བྱེད།",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover པར་གཞི། (v{{OPEN_WEBUI_VERSION}}) དེ་དགོས་ངེས་ཀྱི་པར་གཞི་ (v{{REQUIRED_VERSION}}) ལས་དམའ་བ།",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API Config",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
"Redirecting you to Open WebUI Community": "ཁྱེད་ Open WebUI སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
"Redirecting you to CyberLover Community": "ཁྱེད་ CyberLover སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "དོན་མེད་བཟོ་བའི་ཆགས་ཚུལ་ཉུང་དུ་གཏོང་བ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། ༡༠༠) ཡིས་ལན་སྣ་ཚོགས་ཆེ་བ་སྤྲོད་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། ༡༠) ཡིས་སྲུང་འཛིན་ཆེ་བ་ཡོང་ངེས།",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "ཁྱེད་རང་ལ་ \"བེད་སྤྱོད་མཁན་\" ཞེས་འབོད་པ། (དཔེར་ན། \"བེད་སྤྱོད་མཁན་གྱིས་སི་པན་གྱི་སྐད་ཡིག་སྦྱོང་བཞིན་པ།\")",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "སྒྲིག་འགོད་ལེགས་པར་ཉར་ཚགས་བྱས།",
"Share": "མཉམ་སྤྱོད།",
"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
"Share to Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
"Share to CyberLover Community": "CyberLover སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
@ -1753,7 +1753,7 @@
"You're now logged in.": "ཁྱེད་ད་ལྟ་ནང་འཛུལ་བྱས་ཟིན།",
"Your Account": "",
"Your account status is currently pending activation.": "ཁྱེད་ཀྱི་རྩིས་ཁྲའི་གནས་སྟངས་ད་ལྟ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། Open WebUI ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། CyberLover ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།",
"YouTube": "Youtube",
"Youtube Language": "Youtube སྐད་ཡིག",
"Youtube Proxy URL": "Youtube Proxy URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopiraj vezu",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Izradite model",
@ -432,7 +432,7 @@
"Discover a model": "Otkrijte model",
"Discover a prompt": "Otkrijte prompt",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "Saznaj kako koristiti Open WEBUI i nadji podrsku od zajednice",
"Discover how to use CyberLover and seek support from the community.": "Saznaj kako koristiti CyberLover i nadji podrsku od zajednice",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Izradio OpenWebUI Community",
"Made by CyberLover Community": "Izradio OpenWebUI Community",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Provjerite da ih zatvorite s",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.",
"May": "Maj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija",
@ -1139,10 +1139,10 @@
"Open new chat": "Otvorite novi razgovor",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfiguracija",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Redirecting you to CyberLover Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Nazivajte se \"Korisnik\" (npr. \"Korisnik uči španjolski\")",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Postavke su uspješno spremljene!",
"Share": "Podijeli",
"Share Chat": "Podijeli razgovor",
"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
"Share to CyberLover Community": "Podijeli u OpenWebUI zajednici",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Sada ste prijavljeni.",
"Your Account": "",
"Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiar l'enllaç",
"Copy to clipboard": "Copiar al porta-retalls",
"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS ha de ser configurat correctament pel proveïdor per permetre les sol·licituds d'Open WebUI",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS ha de ser configurat correctament pel proveïdor per permetre les sol·licituds d'CyberLover",
"Create": "Crear",
"Create a knowledge base": "Crear una base de coneixement",
"Create a model": "Crear un model",
@ -432,7 +432,7 @@
"Discover a model": "Descobrir un model",
"Discover a prompt": "Descobrir una indicació",
"Discover a tool": "Descobrir una eina",
"Discover how to use Open WebUI and seek support from the community.": "Descobreix com utilitzar Open WebUI i demana suport a la comunitat.",
"Discover how to use CyberLover and seek support from the community.": "Descobreix com utilitzar CyberLover i demana suport a la comunitat.",
"Discover wonders": "Descobrir meravelles",
"Discover, download, and explore custom functions": "Descobrir, descarregar i explorar funcions personalitzades",
"Discover, download, and explore custom prompts": "Descobrir, descarregar i explorar indicacions personalitzades",
@ -958,7 +958,7 @@
"Lost": "Perdut",
"Low": "Baix",
"LTR": "LTR",
"Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI",
"Made by CyberLover Community": "Creat per la Comunitat OpenWebUI",
"Make password visible in the user interface": "Fer que la contrasenya sigui visible a la interficie d'usuari",
"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.",
"May": "Maig",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'Open WebUI, cosa que el converteix en l'opció més fiable per a la compatibilitat.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'CyberLover, cosa que el converteix en l'opció més fiable per a la compatibilitat.",
"Medium": "Mig",
"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
"Memory": "Memòria",
@ -1139,10 +1139,10 @@
"Open new chat": "Obre un xat nou",
"Open Sidebar": "Obre la barra lateral",
"Open User Profile Menu": "Obre el menú de perfil d'usuari",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI utilitza faster-whisper internament.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilitza incrustacions de SpeechT5 i CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versió d'Open WebUI (v{{OPEN_WEBUI_VERSION}}) és inferior a la versió requerida (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover pot utilitzar eines de servidors OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover utilitza faster-whisper internament.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover utilitza incrustacions de SpeechT5 i CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versió d'CyberLover (v{{OPEN_WEBUI_VERSION}}) és inferior a la versió requerida (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API d'OpenAI",
"OpenAI API Config": "Configuració de l'API d'OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Etiqueta de raonament",
"Record": "Enregistrar",
"Record voice": "Enregistrar la veu",
"Redirecting you to Open WebUI Community": "Redirigint-te a la comunitat OpenWebUI",
"Redirecting you to CyberLover Community": "Redirigint-te a la comunitat OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Redueix la probabilitat de generar ximpleries. Un valor més alt (p. ex. 100) donarà respostes més diverses, mentre que un valor més baix (p. ex. 10) serà més conservador.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Fes referència a tu mateix com a \"Usuari\" (p. ex., \"L'usuari està aprenent espanyol\")",
"Reference Chats": "Xats de referència",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Les preferències s'han desat correctament",
"Share": "Compartir",
"Share Chat": "Compartir el xat",
"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
"Share to CyberLover Community": "Compartir amb la comunitat OpenWebUI",
"Share your background and interests": "Compartir la teva informació i interessos",
"Shared with you": "Compartit amb tu",
"Sharing Permissions": "Compartir els permisos",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Ara estàs connectat.",
"Your Account": "El teu compte",
"Your account status is currently pending activation.": "El compte està actualment pendent d'activació",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Tota la teva contribució anirà directament al desenvolupador del complement; CyberLover no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
"YouTube": "Youtube",
"Youtube Language": "Idioma de YouTube",
"Youtube Proxy URL": "URL de Proxy de Youtube"

View file

@ -337,7 +337,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -432,7 +432,7 @@
"Discover a model": "",
"Discover a prompt": "Pagkaplag usa ka prompt",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "Pagdiskubre, pag-download ug pagsuhid sa mga naandan nga pag-aghat",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
"Made by CyberLover Community": "Gihimo sa komunidad sa OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Siguruha nga palibutan sila",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ",
"May": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1139,10 +1139,10 @@
"Open new chat": "Ablihi ang bag-ong diskusyon",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Irekord ang tingog",
"Redirecting you to Open WebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
"Redirecting you to CyberLover Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Malampuson nga na-save ang mga setting!",
"Share": "",
"Share Chat": "",
"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
"Share to CyberLover Community": "Ipakigbahin sa komunidad sa OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Konektado ka na karon.",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopírovat odkaz",
"Copy to clipboard": "Kopírovat do schránky",
"Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS musí být správně nakonfigurován poskytovatelem, aby povolil požadavky z Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS musí být správně nakonfigurován poskytovatelem, aby povolil požadavky z CyberLover.",
"Create": "Vytvořit",
"Create a knowledge base": "Vytvořit znalostní bázi",
"Create a model": "Vytvořit model",
@ -432,7 +432,7 @@
"Discover a model": "Objevit model",
"Discover a prompt": "Objevit instrukci",
"Discover a tool": "Objevit nástroj",
"Discover how to use Open WebUI and seek support from the community.": "Zjistěte, jak používat Open WebUI, a vyhledejte podporu od komunity.",
"Discover how to use CyberLover and seek support from the community.": "Zjistěte, jak používat CyberLover, a vyhledejte podporu od komunity.",
"Discover wonders": "Objevujte zázraky",
"Discover, download, and explore custom functions": "Objevujte, stahujte a zkoumejte vlastní funkce",
"Discover, download, and explore custom prompts": "Objevujte, stahujte a prozkoumávejte vlastní instrukce",
@ -958,7 +958,7 @@
"Lost": "Prohrál",
"Low": "Nízká",
"LTR": "LTR",
"Made by Open WebUI Community": "Vytvořeno komunitou Open WebUI",
"Made by CyberLover Community": "Vytvořeno komunitou CyberLover",
"Make password visible in the user interface": "Zviditelnit heslo v uživatelském rozhraní",
"Make sure to enclose them with": "Ujistěte se, že jsou uzavřeny v",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Současně lze stahovat maximálně 3 modely. Zkuste to prosím později.",
"May": "Květen",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "Střední",
"Memories accessible by LLMs will be shown here.": "Zde se zobrazí vzpomínky přístupné pro LLM.",
"Memory": "Paměť",
@ -1139,10 +1139,10 @@
"Open new chat": "Otevřít novou konverzaci",
"Open Sidebar": "Otevřít postranní panel",
"Open User Profile Menu": "Otevřít nabídku profilu uživatele",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI interně používá faster-whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI používá SpeechT5 a vektorizaci mluvčích CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verze Open WebUI (v{{OPEN_WEBUI_VERSION}}) je nižší než požadovaná verze (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover interně používá faster-whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover používá SpeechT5 a vektorizaci mluvčích CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verze CyberLover (v{{OPEN_WEBUI_VERSION}}) je nižší než požadovaná verze (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "Konfigurace OpenAI API",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "reasoning tags",
"Record": "Nahrát",
"Record voice": "Nahrát hlas",
"Redirecting you to Open WebUI Community": "Přesměrovávám vás do komunity Open WebUI",
"Redirecting you to CyberLover Community": "Přesměrovávám vás do komunity CyberLover",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na sebe jako na \"Uživatele\" (např. \"Uživatel se učí španělsky\").",
"Reference Chats": "Připojit chat",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Nastavení byla úspěšně uložena!",
"Share": "Sdílet",
"Share Chat": "Sdílet konverzaci",
"Share to Open WebUI Community": "Sdílet s komunitou Open WebUI",
"Share to CyberLover Community": "Sdílet s komunitou CyberLover",
"Share your background and interests": "Sdílejte své zkušenosti a zájmy",
"Shared with you": "Sdíleno s vámi",
"Sharing Permissions": "Oprávnění pro sdílení",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Nyní jste přihlášeni.",
"Your Account": "Váš účet",
"Your account status is currently pending activation.": "Stav vašeho účtu aktuálně čeká na aktivaci.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Zvolená platforma pro financování však může mít vlastní poplatky.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš příspěvek půjde přímo vývojáři pluginu; CyberLover si nebere žádné procento. Zvolená platforma pro financování však může mít vlastní poplatky.",
"YouTube": "YouTube",
"Youtube Language": "Jazyk YouTube",
"Youtube Proxy URL": "Proxy URL pro YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopier link",
"Copy to clipboard": "Kopier til udklipsholder",
"Copying to clipboard was successful!": "Kopieret til udklipsholder!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS skal være korrekt konfigureret af udbyderen for at tillade anmodninger fra Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS skal være korrekt konfigureret af udbyderen for at tillade anmodninger fra CyberLover.",
"Create": "Opret",
"Create a knowledge base": "Opret en videnbase",
"Create a model": "Lav en model",
@ -432,7 +432,7 @@
"Discover a model": "Find en model",
"Discover a prompt": "Find en prompt",
"Discover a tool": "Find et værktøj",
"Discover how to use Open WebUI and seek support from the community.": "Opdag hvordan du bruger Open WebUI og søg støtte fra fællesskabet.",
"Discover how to use CyberLover and seek support from the community.": "Opdag hvordan du bruger CyberLover og søg støtte fra fællesskabet.",
"Discover wonders": "Opdag underværker",
"Discover, download, and explore custom functions": "Find, download og udforsk unikke funktioner",
"Discover, download, and explore custom prompts": "Find, download og udforsk unikke prompts",
@ -958,7 +958,7 @@
"Lost": "Tabt",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Lavet af OpenWebUI Community",
"Made by CyberLover Community": "Lavet af OpenWebUI Community",
"Make password visible in the user interface": "Gør adgangskode synlig i brugergrænsefladen",
"Make sure to enclose them with": "Sørg for at omslutte dem med",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.",
"May": "Maj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.",
"Memory": "Hukommelse",
@ -1139,10 +1139,10 @@
"Open new chat": "Åbn ny chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.",
"Open WebUI uses faster-whisper internally.": "Open WebUI bruger faster-whisper internt.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruger SpeechT5 og CMU Arctic taler embeddings.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-version (v{{OPEN_WEBUI_VERSION}}) er lavere end den krævede version (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover kan bruge værktøjer leveret af enhver OpenAPI server.",
"CyberLover uses faster-whisper internally.": "CyberLover bruger faster-whisper internt.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover bruger SpeechT5 og CMU Arctic taler embeddings.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover-version (v{{OPEN_WEBUI_VERSION}}) er lavere end den krævede version (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API-konfiguration",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Optag",
"Record voice": "Optag stemme",
"Redirecting you to Open WebUI Community": "Omdirigerer dig til OpenWebUI Community",
"Redirecting you to CyberLover Community": "Omdirigerer dig til OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Reducerer sandsynligheden for at generere vrøvl. En højere værdi (f.eks. 100) vil give mere varierede svar, mens en lavere værdi (f.eks. 10) vil være mere konservativ.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referer til dig selv som \"Bruger\" (f.eks. \"Bruger lærer spansk\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Indstillinger gemt!",
"Share": "Del",
"Share Chat": "Del chat",
"Share to Open WebUI Community": "Del til OpenWebUI Community",
"Share to CyberLover Community": "Del til OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Delingstilladelser",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Du er nu logget ind.",
"Your Account": "",
"Your account status is currently pending activation.": "Din kontostatus afventer i øjeblikket aktivering.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele dit bidrag går direkte til plugin-udvikleren; CyberLover tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
"YouTube": "Youtube",
"Youtube Language": "Youtube sprog",
"Youtube Proxy URL": "Youtube Proxy URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Link kopieren",
"Copy to clipboard": "In die Zwischenablage kopieren",
"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS muss vom Anbieter korrekt konfiguriert werden, um Anfragen von Open WebUI zuzulassen.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS muss vom Anbieter korrekt konfiguriert werden, um Anfragen von CyberLover zuzulassen.",
"Create": "Erstellen",
"Create a knowledge base": "Wissensspeicher erstellen",
"Create a model": "Modell erstellen",
@ -432,7 +432,7 @@
"Discover a model": "Entdecken Sie weitere Modelle",
"Discover a prompt": "Entdecken Sie weitere Prompts",
"Discover a tool": "Entdecken Sie weitere Werkzeuge",
"Discover how to use Open WebUI and seek support from the community.": "Entdecken Sie, wie Sie Open WebUI nutzen und Unterstützung von der Community erhalten können.",
"Discover how to use CyberLover and seek support from the community.": "Entdecken Sie, wie Sie CyberLover nutzen und Unterstützung von der Community erhalten können.",
"Discover wonders": "Entdecken Sie Wunder",
"Discover, download, and explore custom functions": "Entdecken und beziehen Sie benutzerdefinierte Funktionen",
"Discover, download, and explore custom prompts": "Entdecken und beziehen Sie benutzerdefinierte Prompts",
@ -958,7 +958,7 @@
"Lost": "Verloren",
"Low": "Niedrig",
"LTR": "LTR",
"Made by Open WebUI Community": "Von der OpenWebUI-Community",
"Made by CyberLover Community": "Von der OpenWebUI-Community",
"Make password visible in the user interface": "Passwort im Benutzerinterface sichtbar machen",
"Make sure to enclose them with": "Umschließen Sie Variablen mit",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuchen Sie es später erneut.",
"May": "Mai",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom OpenWebUITeam gepflegt und ist daher die verlässlichere Option in Bezug auf Kompatibilität.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom OpenWebUITeam gepflegt und ist daher die verlässlichere Option in Bezug auf Kompatibilität.",
"Medium": "Mittel",
"Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.",
"Memory": "Erinnerungen",
@ -1139,10 +1139,10 @@
"Open new chat": "Neuen Chat öffnen",
"Open Sidebar": "Seitenleiste öffnen",
"Open User Profile Menu": "Benutzerprofilmenü öffnen",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
"Open WebUI uses faster-whisper internally.": "Open WebUI verwendet intern faster-whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI verwendet SpeechT5 und CMU Arctic Sprecher-Embeddings.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Die installierte Open-WebUI-Version (v{{OPEN_WEBUI_VERSION}}) ist niedriger als die erforderliche Version (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
"CyberLover uses faster-whisper internally.": "CyberLover verwendet intern faster-whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover verwendet SpeechT5 und CMU Arctic Sprecher-Embeddings.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Die installierte Open-WebUI-Version (v{{OPEN_WEBUI_VERSION}}) ist niedriger als die erforderliche Version (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI-API",
"OpenAI API Config": "OpenAI-API-Konfiguration",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Reasoning Tags",
"Record": "Aufzeichnen",
"Record voice": "Stimme aufnehmen",
"Redirecting you to Open WebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
"Redirecting you to CyberLover Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Verringert die Wahrscheinlichkeit, Unsinn zu generieren. Ein höherer Wert (z.\u202fB. 100) führt zu vielfältigeren Antworten, während ein niedrigerer Wert (z.\u202fB. 10) konservativer ist.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Beziehen Sie sich auf sich selbst als \"Benutzer\" (z. B. \"Benutzer lernt Spanisch\")",
"Reference Chats": "Chats referenzieren",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
"Share": "Teilen",
"Share Chat": "Chat teilen",
"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
"Share to CyberLover Community": "Mit OpenWebUI Community teilen",
"Share your background and interests": "Teilen Sie Ihren Hintergrund und Ihre Interessen",
"Shared with you": "Mit dir geteilt",
"Sharing Permissions": "Berechtigungen teilen",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Sie sind jetzt eingeloggt.",
"Your Account": "Ihr Konto",
"Your account status is currently pending activation.": "Ihr Kontostatus ist derzeit ausstehend und wartet auf Aktivierung.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; CyberLover behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
"YouTube": "YouTube",
"Youtube Language": "YouTube Sprache",
"Youtube Proxy URL": "YouTube Proxy URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Copying to clipboard was success! Very success!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -432,7 +432,7 @@
"Discover a model": "",
"Discover a prompt": "Discover a prompt",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "Discover, download, and explore custom prompts",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "Made by Open WebUI Community",
"Made by CyberLover Community": "Made by CyberLover Community",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Make sure to enclose them with",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.",
"May": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1139,10 +1139,10 @@
"Open new chat": "Open new bark",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Record Bark",
"Redirecting you to Open WebUI Community": "Redirecting you to Open WebUI Community",
"Redirecting you to CyberLover Community": "Redirecting you to CyberLover Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Settings saved successfully! Very success!",
"Share": "",
"Share Chat": "",
"Share to Open WebUI Community": "Share to Open WebUI Community much community",
"Share to CyberLover Community": "Share to CyberLover Community much community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "You're now logged in. Much logged.",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Αντιγραφή Συνδέσμου",
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
"Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "Δημιουργία",
"Create a knowledge base": "Δημιουργία βάσης γνώσης",
"Create a model": "Δημιουργία μοντέλου",
@ -432,7 +432,7 @@
"Discover a model": "Ανακάλυψη μοντέλου",
"Discover a prompt": "Ανακάλυψη προτροπής",
"Discover a tool": "Ανακάλυψη εργαλείου",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "Ανακάλυψη θαυμάτων",
"Discover, download, and explore custom functions": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες λειτουργίες",
"Discover, download, and explore custom prompts": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες προτροπές",
@ -958,7 +958,7 @@
"Lost": "Χαμένος",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
"Made by CyberLover Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Μέγιστο των 3 μοντέλων μπορούν να κατεβούν ταυτόχρονα. Παρακαλώ δοκιμάστε ξανά αργότερα.",
"May": "Μάιος",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.",
"Memory": "Μνήμη",
@ -1139,10 +1139,10 @@
"Open new chat": "Άνοιγμα νέας συνομιλίας",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Το Open WebUI χρησιμοποιεί το faster-whisper εσωτερικά.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Το Open WebUI χρησιμοποιεί τα SpeechT5 και CMU Arctic embeddings ομιλητών.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Η έκδοση Open WebUI (v{{OPEN_WEBUI_VERSION}}) είναι χαμηλότερη από την απαιτούμενη έκδοση (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "Το CyberLover χρησιμοποιεί το faster-whisper εσωτερικά.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Το CyberLover χρησιμοποιεί τα SpeechT5 και CMU Arctic embeddings ομιλητών.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Η έκδοση CyberLover (v{{OPEN_WEBUI_VERSION}}) είναι χαμηλότερη από την απαιτούμενη έκδοση (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Διαμόρφωση API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Εγγραφή φωνής",
"Redirecting you to Open WebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
"Redirecting you to CyberLover Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Αναφέρεστε στον εαυτό σας ως \"User\" (π.χ., \"User μαθαίνει Ισπανικά\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Οι Ρυθμίσεις αποθηκεύτηκαν με επιτυχία!",
"Share": "Κοινή Χρήση",
"Share Chat": "Κοινή Χρήση Συνομιλίας",
"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
"Share to CyberLover Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Τώρα είστε συνδεδεμένοι.",
"Your Account": "",
"Your account status is currently pending activation.": "Η κατάσταση του λογαριασμού σας είναι αυτή τη στιγμή σε εκκρεμότητα ενεργοποίησης.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Open WebUI δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το CyberLover δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -432,7 +432,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "",
"Made by CyberLover Community": "",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
"May": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1139,10 +1139,10 @@
"Open new chat": "",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "",
"OpenAI API": "",
"OpenAI API Config": "",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
"Redirecting you to CyberLover Community": "",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to Open WebUI Community": "",
"Share to CyberLover Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -432,7 +432,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "",
"Made by CyberLover Community": "",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
"May": "",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1139,10 +1139,10 @@
"Open new chat": "",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "",
"OpenAI API": "",
"OpenAI API Config": "",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
"Redirecting you to CyberLover Community": "",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to Open WebUI Community": "",
"Share to CyberLover Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiar enlace",
"Copy to clipboard": "Copia a portapapeles",
"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "El protocolo CORS debe estar configurado correctamente por el proveedor para permitir solicitudes desde Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "El protocolo CORS debe estar configurado correctamente por el proveedor para permitir solicitudes desde CyberLover.",
"Create": "Crear",
"Create a knowledge base": "Crear Base de Conocimiento",
"Create a model": "Crear Modelo",
@ -432,7 +432,7 @@
"Discover a model": "Descubrir Modelos",
"Discover a prompt": "Descubrir Indicadores",
"Discover a tool": "Descubrir Herramientas",
"Discover how to use Open WebUI and seek support from the community.": "Descubre cómo usar Open WebUI y busca Soporte Comunitario.",
"Discover how to use CyberLover and seek support from the community.": "Descubre cómo usar CyberLover y busca Soporte Comunitario.",
"Discover wonders": "Descubre Maravillas",
"Discover, download, and explore custom functions": "Descubre, descarga y explora funciones personalizadas",
"Discover, download, and explore custom prompts": "Descubre, descarga, y explora indicadores personalizados",
@ -958,7 +958,7 @@
"Lost": "Perdido",
"Low": "Bajo",
"LTR": "LTR",
"Made by Open WebUI Community": "Creado por la Comunidad Open-WebUI",
"Made by CyberLover Community": "Creado por la Comunidad Open-WebUI",
"Make password visible in the user interface": "Hacer visible la contraseña en la interfaz del usuario.",
"Make sure to enclose them with": "Asegúrate de delimitarlos con",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrate de exportar un archivo workflow.json en formato API desde ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.",
"May": "Mayo",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de Open WebUI mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de CyberLover mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.",
"Medium": "Medio",
"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
"Memory": "Memoria",
@ -1139,10 +1139,10 @@
"Open new chat": "Abrir nuevo chat",
"Open Sidebar": "Abrir Barra Lateral",
"Open User Profile Menu": "Abrir Menu de Perfiles de Usuario",
"Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
"Open WebUI uses faster-whisper internally.": "Open-WebUI usa faster-whisper internamente.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open-WebUI usa SpeechT5 y la incrustración de locutores de CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versión de Open-WebUI (v{{OPEN_WEBUI_VERSION}}) es inferior a la versión (v{{REQUIRED_VERSION}}) requerida",
"CyberLover can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
"CyberLover uses faster-whisper internally.": "Open-WebUI usa faster-whisper internamente.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Open-WebUI usa SpeechT5 y la incrustración de locutores de CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versión de Open-WebUI (v{{OPEN_WEBUI_VERSION}}) es inferior a la versión (v{{REQUIRED_VERSION}}) requerida",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Config API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Etiquetas de Razonamiento",
"Record": "Grabar",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionando a la Comunidad Open-WebUI",
"Redirecting you to CyberLover Community": "Redireccionando a la Comunidad Open-WebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Reduce la probabilidad de generación sin sentido. Un valor más alto (p.ej. 100) dará respuestas más diversas, mientras que un valor más bajo (p.ej. 10) será más conservador.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referir a ti mismo como \"Usuario\" (p.ej. \"Usuario está aprendiendo Español\")",
"Reference Chats": "Referenciar Chats",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "¡Ajustes guardados correctamente!",
"Share": "Compartir",
"Share Chat": "Compartir Chat",
"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
"Share to CyberLover Community": "Compartir con la Comunidad Open-WebUI",
"Share your background and interests": "Compartir tus antecedentes e intereses",
"Shared with you": "Compartido contigo",
"Sharing Permissions": "Permisos al Compartir",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Has iniciado sesión.",
"Your Account": "Tu Cuenta",
"Your account status is currently pending activation.": "Tu cuenta está pendiente de activación.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tu entera contribución irá directamente al desarrollador del complemento; Open-WebUI no recibe ningún porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Tu entera contribución irá directamente al desarrollador del complemento; Open-WebUI no recibe ningún porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
"YouTube": "Youtube",
"Youtube Language": "Youtube Idioma",
"Youtube Proxy URL": "Youtube URL Proxy"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopeeri link",
"Copy to clipboard": "Kopeeri lõikelauale",
"Copying to clipboard was successful!": "Lõikelauale kopeerimine õnnestus!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Teenusepakkuja peab nõuetekohaselt konfigureerima CORS-i, et lubada päringuid Open WebUI-lt.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Teenusepakkuja peab nõuetekohaselt konfigureerima CORS-i, et lubada päringuid CyberLover-lt.",
"Create": "Loo",
"Create a knowledge base": "Loo teadmiste baas",
"Create a model": "Loo mudel",
@ -432,7 +432,7 @@
"Discover a model": "Avasta mudel",
"Discover a prompt": "Avasta vihje",
"Discover a tool": "Avasta tööriist",
"Discover how to use Open WebUI and seek support from the community.": "Avastage, kuidas kasutada Open WebUI-d ja otsige tuge kogukonnalt.",
"Discover how to use CyberLover and seek support from the community.": "Avastage, kuidas kasutada CyberLover-d ja otsige tuge kogukonnalt.",
"Discover wonders": "Avasta imesid",
"Discover, download, and explore custom functions": "Avasta, laadi alla ja uuri kohandatud funktsioone",
"Discover, download, and explore custom prompts": "Avasta, laadi alla ja uuri kohandatud vihjeid",
@ -958,7 +958,7 @@
"Lost": "Kaotanud",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt",
"Made by CyberLover Community": "Loodud CyberLover kogukonna poolt",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Veenduge, et need on ümbritsetud järgmisega:",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veenduge, et ekspordite workflow.json faili API formaadis ComfyUI-st.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.",
"May": "Mai",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.",
"Memory": "Mälu",
@ -1139,10 +1139,10 @@
"Open new chat": "Ava uus vestlus",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI kasutab sisemiselt faster-whisper'it.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI kasutab SpeechT5 ja CMU Arctic kõneleja manustamisi.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI versioon (v{{OPEN_WEBUI_VERSION}}) on madalam kui nõutav versioon (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover kasutab sisemiselt faster-whisper'it.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover kasutab SpeechT5 ja CMU Arctic kõneleja manustamisi.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover versioon (v{{OPEN_WEBUI_VERSION}}) on madalam kui nõutav versioon (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API seadistus",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Salvesta hääl",
"Redirecting you to Open WebUI Community": "Suunamine Open WebUI kogukonda",
"Redirecting you to CyberLover Community": "Suunamine CyberLover kogukonda",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Vähendab mõttetuste genereerimise tõenäosust. Kõrgem väärtus (nt 100) annab mitmekesisemaid vastuseid, samas kui madalam väärtus (nt 10) on konservatiivsem.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Viita endale kui \"Kasutaja\" (nt \"Kasutaja õpib hispaania keelt\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Seaded edukalt salvestatud!",
"Share": "Jaga",
"Share Chat": "Jaga vestlust",
"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
"Share to CyberLover Community": "Jaga CyberLover kogukonnaga",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Olete nüüd sisse logitud.",
"Your Account": "",
"Your account status is currently pending activation.": "Teie konto staatus on praegu ootel aktiveerimist.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Kogu teie toetus läheb otse pistikprogrammi arendajale; Open WebUI ei võta mingit protsenti. Kuid valitud rahastamisplatvormil võivad olla oma tasud.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Kogu teie toetus läheb otse pistikprogrammi arendajale; CyberLover ei võta mingit protsenti. Kuid valitud rahastamisplatvormil võivad olla oma tasud.",
"YouTube": "Youtube",
"Youtube Language": "Youtube keel",
"Youtube Proxy URL": "Youtube puhverserveri URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopiatu Esteka",
"Copy to clipboard": "Kopiatu arbelera",
"Copying to clipboard was successful!": "Arbelera kopiatzea arrakastatsua izan da!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "Sortu",
"Create a knowledge base": "Sortu ezagutza-base bat",
"Create a model": "Sortu eredu bat",
@ -432,7 +432,7 @@
"Discover a model": "Aurkitu eredu bat",
"Discover a prompt": "Aurkitu prompt bat",
"Discover a tool": "Aurkitu tresna bat",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "Aurkitu mirariak",
"Discover, download, and explore custom functions": "Aurkitu, deskargatu eta esploratu funtzio pertsonalizatuak",
"Discover, download, and explore custom prompts": "Aurkitu, deskargatu eta esploratu prompt pertsonalizatuak",
@ -958,7 +958,7 @@
"Lost": "Galduta",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
"Made by CyberLover Community": "OpenWebUI Komunitateak egina",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Ziurtatu hauek gehitzen dituzula",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.",
"May": "Maiatza",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.",
"Memory": "Memoria",
@ -1139,10 +1139,10 @@
"Open new chat": "Ireki txat berria",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI-k faster-whisper erabiltzen du barnean.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI-k SpeechT5 eta CMU Arctic hiztun txertaketak erabiltzen ditu.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI bertsioa (v{{OPEN_WEBUI_VERSION}}) beharrezko bertsioa (v{{REQUIRED_VERSION}}) baino baxuagoa da",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover-k faster-whisper erabiltzen du barnean.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover-k SpeechT5 eta CMU Arctic hiztun txertaketak erabiltzen ditu.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover bertsioa (v{{OPEN_WEBUI_VERSION}}) beharrezko bertsioa (v{{REQUIRED_VERSION}}) baino baxuagoa da",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfigurazioa",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Grabatu ahotsa",
"Redirecting you to Open WebUI Community": "OpenWebUI Komunitatera berbideratzen",
"Redirecting you to CyberLover Community": "OpenWebUI Komunitatera berbideratzen",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Egin erreferentzia zure buruari \"Erabiltzaile\" gisa (adib., \"Erabiltzailea gaztelania ikasten ari da\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Ezarpenak ongi gorde dira!",
"Share": "Partekatu",
"Share Chat": "Partekatu txata",
"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
"Share to CyberLover Community": "Partekatu OpenWebUI komunitatearekin",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Orain saioa hasita duzu.",
"Your Account": "",
"Your account status is currently pending activation.": "Zure kontuaren egoera aktibazio zain dago.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Open WebUI-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; CyberLover-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "کپی لینک",
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS باید توسط ارائه\u200cدهنده به درستی پیکربندی شود تا درخواست\u200cها از Open WebUI مجاز باشند.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS باید توسط ارائه\u200cدهنده به درستی پیکربندی شود تا درخواست\u200cها از CyberLover مجاز باشند.",
"Create": "ایجاد",
"Create a knowledge base": "ایجاد یک پایگاه دانش",
"Create a model": "ایجاد یک مدل",
@ -432,7 +432,7 @@
"Discover a model": "کشف یک مدل",
"Discover a prompt": "یک اعلان را کشف کنید",
"Discover a tool": "کشف یک ابزار",
"Discover how to use Open WebUI and seek support from the community.": "نحوه استفاده از Open WebUI را کشف کنید و از انجمن پشتیبانی بگیرید.",
"Discover how to use CyberLover and seek support from the community.": "نحوه استفاده از CyberLover را کشف کنید و از انجمن پشتیبانی بگیرید.",
"Discover wonders": "کشف شگفتی\u200cها",
"Discover, download, and explore custom functions": "کشف، دانلود و کاوش توابع سفارشی",
"Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید",
@ -958,7 +958,7 @@
"Lost": "گم شده",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
"Made by CyberLover Community": "ساخته شده توسط OpenWebUI Community",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
"Make sure to export a workflow.json file as API format from ComfyUI.": "مطمئن شوید که یک فایل workflow.json را به عنوان قالب API از ComfyUI صادر کنید.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.",
"May": "ماهی",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.",
"Memory": "حافظه",
@ -1139,10 +1139,10 @@
"Open new chat": "باز کردن گپ جدید",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
"Open WebUI uses faster-whisper internally.": "Open WebUI به صورت داخلی از faster-whisper استفاده می\u200cکند.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI از SpeechT5 و جاسازی\u200cهای گوینده CMU Arctic استفاده می\u200cکند.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "نسخه Open WebUI (v{{OPEN_WEBUI_VERSION}}) پایین\u200cتر از نسخه مورد نیاز (v{{REQUIRED_VERSION}}) است",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
"CyberLover uses faster-whisper internally.": "CyberLover به صورت داخلی از faster-whisper استفاده می\u200cکند.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover از SpeechT5 و جاسازی\u200cهای گوینده CMU Arctic استفاده می\u200cکند.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "نسخه CyberLover (v{{OPEN_WEBUI_VERSION}}) پایین\u200cتر از نسخه مورد نیاز (v{{REQUIRED_VERSION}}) است",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API تنظیمات",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ضبط صدا",
"Redirecting you to Open WebUI Community": "در حال هدایت به OpenWebUI Community",
"Redirecting you to CyberLover Community": "در حال هدایت به OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "احتمال تولید محتوای بی\u200cمعنی را کاهش می\u200cدهد. مقدار بالاتر (مثلاً 100) پاسخ\u200cهای متنوع\u200cتری می\u200cدهد، در حالی که مقدار پایین\u200cتر (مثلاً 10) محافظه\u200cکارانه\u200cتر خواهد بود.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "به خود به عنوان \"کاربر\" اشاره کنید (مثلاً، \"کاربر در حال یادگیری اسپانیایی است\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
"Share": "اشتراک\u200cگذاری",
"Share Chat": "اشتراک\u200cگذاری چت",
"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
"Share to CyberLover Community": "اشتراک گذاری با OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
@ -1754,7 +1754,7 @@
"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
"Your Account": "",
"Your account status is currently pending activation.": "وضعیت حساب شما در حال حاضر در انتظار فعال\u200cسازی است.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ Open WebUI هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ CyberLover هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.",
"YouTube": "یوتیوب",
"Youtube Language": "زبان یوتیوب",
"Youtube Proxy URL": "آدرس پراکسی یوتیوب"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopioi linkki",
"Copy to clipboard": "Kopioi leikepöydälle",
"Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS täytyy olla konfiguroitu palveluntarjoajan toimesta pyyntöjen hyväksymiseksi Open WebUI:sta.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS täytyy olla konfiguroitu palveluntarjoajan toimesta pyyntöjen hyväksymiseksi CyberLover:sta.",
"Create": "Luo",
"Create a knowledge base": "Luo tietokanta",
"Create a model": "Luo malli",
@ -432,7 +432,7 @@
"Discover a model": "Tutustu malliin",
"Discover a prompt": "Löydä kehote",
"Discover a tool": "Löydä työkalu",
"Discover how to use Open WebUI and seek support from the community.": "Tutustu Open WebUI:n käyttöön ja pyydä tukea yhteisöltä.",
"Discover how to use CyberLover and seek support from the community.": "Tutustu CyberLover:n käyttöön ja pyydä tukea yhteisöltä.",
"Discover wonders": "Löydä ihmeellisiä asioita",
"Discover, download, and explore custom functions": "Etsi, lataa ja tutki mukautettuja toimintoja",
"Discover, download, and explore custom prompts": "Löydä ja lataa mukautettuja kehotteita",
@ -958,7 +958,7 @@
"Lost": "Mennyt",
"Low": "Matala",
"LTR": "LTR",
"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
"Made by CyberLover Community": "Tehnyt OpenWebUI-yhteisö",
"Make password visible in the user interface": "Näytä salasana käyttöliittymässä",
"Make sure to enclose them with": "Varmista, että suljet ne",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.",
"May": "toukokuu",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan Open WebUI -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan CyberLover -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.",
"Medium": "Keskitaso",
"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
"Memory": "Muisti",
@ -1139,10 +1139,10 @@
"Open new chat": "Avaa uusi keskustelu",
"Open Sidebar": "Avaa sivupalkki",
"Open User Profile Menu": "Avaa käyttäjäprofiili ikkuna",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
"Open WebUI uses faster-whisper internally.": "Open WebUI käyttää faster-whisperia sisäisesti.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI -versio (v{{OPEN_WEBUI_VERSION}}) on alempi kuin vaadittu versio (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
"CyberLover uses faster-whisper internally.": "CyberLover käyttää faster-whisperia sisäisesti.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover -versio (v{{OPEN_WEBUI_VERSION}}) on alempi kuin vaadittu versio (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API -asetukset",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Päättely tagit",
"Record": "Nauhoita",
"Record voice": "Nauhoita ääntä",
"Redirecting you to Open WebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
"Redirecting you to CyberLover Community": "Ohjataan sinut OpenWebUI-yhteisöön",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Vähentää hölynpölyn tuottamisen todennäköisyyttä. Korkeampi arvo (esim. 100) antaa monipuolisempia vastauksia, kun taas matalampi arvo (esim. 10) on varovaisempi.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Viittaa itseen \"Käyttäjänä\" (esim. \"Käyttäjä opiskelee espanjaa\")",
"Reference Chats": "Viitekeskustelut",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Asetukset tallennettu onnistuneesti!",
"Share": "Jaa",
"Share Chat": "Jaa keskustelu",
"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
"Share to CyberLover Community": "Jaa OpenWebUI-yhteisöön",
"Share your background and interests": "Jaa taustasi ja kiinnostuksen kohteesi",
"Shared with you": "Jaettu kanssasi",
"Sharing Permissions": "Jako oikeudet",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Olet nyt kirjautunut sisään.",
"Your Account": "Tilisi",
"Your account status is currently pending activation.": "Tilisi tila on tällä hetkellä odottaa aktivointia.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Open WebUI ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; CyberLover ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.",
"YouTube": "YouTube",
"Youtube Language": "Youtube kieli",
"Youtube Proxy URL": "Youtube-välityspalvelimen verkko-osoite"

View file

@ -337,7 +337,7 @@
"Copy Link": "Copier le lien",
"Copy to clipboard": "Copier dans le presse-papiers",
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'CyberLover.",
"Create": "Créer",
"Create a knowledge base": "Créer une base de connaissances",
"Create a model": "Créer un modèle",
@ -432,7 +432,7 @@
"Discover a model": "Trouvez un modèle",
"Discover a prompt": "Trouvez un prompt",
"Discover a tool": "Trouvez un outil",
"Discover how to use Open WebUI and seek support from the community.": "Découvrez comment utiliser Open WebUI et obtenir de l'aide de la communauté.",
"Discover how to use CyberLover and seek support from the community.": "Découvrez comment utiliser CyberLover et obtenir de l'aide de la communauté.",
"Discover wonders": "Découvrir des merveilles",
"Discover, download, and explore custom functions": "Découvrez, téléchargez et explorez des fonctions personnalisées",
"Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés",
@ -958,7 +958,7 @@
"Lost": "Perdu",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
"Made by CyberLover Community": "Réalisé par la communauté OpenWebUI",
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.",
"May": "Mai",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire",
@ -1139,10 +1139,10 @@
"Open new chat": "Ouvrir une nouvelle conversation",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Open WebUI (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover utilise faster-whisper en interne.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version CyberLover (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API compatibles OpenAI",
"OpenAI API Config": "Configuration de l'API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
"Redirecting you to CyberLover Community": "Redirection vers la communauté OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Réduit la probabilité de générer du contenu incohérent. Une valeur plus élevée (ex. : 100) produira des réponses plus variées, tandis qu'une valeur plus faible (ex. : 10) sera plus conservatrice.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Réglages enregistrés avec succès !",
"Share": "Partager",
"Share Chat": "Partage de conversation",
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
"Share to CyberLover Community": "Partager avec la communauté OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Autorisation de partage",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Vous êtes désormais connecté.",
"Your Account": "",
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; CyberLover ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
"YouTube": "YouTube",
"Youtube Language": "Langue de Youtube",
"Youtube Proxy URL": "URL du proxy YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Copier le lien",
"Copy to clipboard": "Copier dans le presse-papiers",
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'CyberLover.",
"Create": "Créer",
"Create a knowledge base": "Créer une base de connaissances",
"Create a model": "Créer un modèle",
@ -432,7 +432,7 @@
"Discover a model": "Trouvez un modèle",
"Discover a prompt": "Trouvez un prompt",
"Discover a tool": "Trouvez un outil",
"Discover how to use Open WebUI and seek support from the community.": "Découvrez comment utiliser Open WebUI et obtenir de l'aide de la communauté.",
"Discover how to use CyberLover and seek support from the community.": "Découvrez comment utiliser CyberLover et obtenir de l'aide de la communauté.",
"Discover wonders": "Découvrir des merveilles",
"Discover, download, and explore custom functions": "Découvrez, téléchargez et explorez des fonctions personnalisées",
"Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés",
@ -958,7 +958,7 @@
"Lost": "Perdu",
"Low": "Faible",
"LTR": "LTR",
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
"Made by CyberLover Community": "Réalisé par la communauté OpenWebUI",
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.",
"May": "Mai",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "Moyen",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire",
@ -1139,10 +1139,10 @@
"Open new chat": "Ouvrir une nouvelle conversation",
"Open Sidebar": "Ouvrir la barre latérale",
"Open User Profile Menu": "Ouvrir le menu du profil utilisateur",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Open WebUI (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover utilise faster-whisper en interne.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version CyberLover (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API compatibles OpenAI",
"OpenAI API Config": "Configuration de l'API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Mots-clés de raisonnement",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
"Redirecting you to CyberLover Community": "Redirection vers la communauté OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Réduit la probabilité de générer du contenu incohérent. Une valeur plus élevée (ex. : 100) produira des réponses plus variées, tandis qu'une valeur plus faible (ex. : 10) sera plus conservatrice.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
"Reference Chats": "Discussions de référence",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Réglages enregistrés avec succès !",
"Share": "Partager",
"Share Chat": "Partage de conversation",
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
"Share to CyberLover Community": "Partager avec la communauté OpenWebUI",
"Share your background and interests": "Partagez votre parcours et vos intérêts",
"Shared with you": "",
"Sharing Permissions": "Autorisation de partage",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Vous êtes désormais connecté.",
"Your Account": "Votre compte",
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; CyberLover ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
"YouTube": "YouTube",
"Youtube Language": "Langue de Youtube",
"Youtube Proxy URL": "URL du proxy YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiar enlace",
"Copy to clipboard": "Copiado o portapapeis",
"Copying to clipboard was successful!": "!A copia o portapapeis realizouse correctamente!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "O CORS debe estar debidamente configurado polo provedor para permitir solicitudes desde Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "O CORS debe estar debidamente configurado polo provedor para permitir solicitudes desde CyberLover.",
"Create": "Xerar",
"Create a knowledge base": "Xerar base de conocemento",
"Create a model": "Xerar un modelo",
@ -432,7 +432,7 @@
"Discover a model": "Descubrir un modelo",
"Discover a prompt": "Descubre un Prompt",
"Discover a tool": "Descubre unha ferramenta",
"Discover how to use Open WebUI and seek support from the community.": "Descubra como usar Open WebUI e busque apoio na comunidade.",
"Discover how to use CyberLover and seek support from the community.": "Descubra como usar CyberLover e busque apoio na comunidade.",
"Discover wonders": "Descubre maravillas",
"Discover, download, and explore custom functions": "Descubre, descarga y explora funcións personalizadas",
"Discover, download, and explore custom prompts": "Descubre, descarga, y explora Prompts personalizados",
@ -958,7 +958,7 @@
"Lost": "Perdido",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Feito por a comunidad de OpenWebUI",
"Made by CyberLover Community": "Feito por a comunidad de OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Asegúrese de adxuntarlos con",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrese de exportar un Arquivo workflow.json en formato API desde ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.",
"May": "Mayo",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.",
"Memory": "Memoria",
@ -1139,10 +1139,10 @@
"Open new chat": "Abrir novo chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI usa SpeechT5 y embeddings de locutores CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Aversión de Open WebUI (v{{OPEN_WEBUI_VERSION}}) es inferior a aversión requerida (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover usa faster-whisper internamente.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover usa SpeechT5 y embeddings de locutores CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Aversión de CyberLover (v{{OPEN_WEBUI_VERSION}}) es inferior a aversión requerida (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "Configuración de OpenAI API",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionándote a a comunidad OpenWebUI",
"Redirecting you to CyberLover Community": "Redireccionándote a a comunidad OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referirse a vostede mismo como \"Usuario\" (por Exemplo, \"O usuario está aprendiendo Español\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "¡Configuración gardada con éxito!",
"Share": "Compartir",
"Share Chat": "Compartir Chat",
"Share to Open WebUI Community": "Compartir coa comunidads OpenWebUI",
"Share to CyberLover Community": "Compartir coa comunidads OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Vostede ahora está conectado.",
"Your Account": "",
"Your account status is currently pending activation.": "O estado da sua conta actualmente encontrase pendente de activación.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "A sua contribución completa irá directamente o desarrollador do plugin; Open WebUI non toma ningun porcentaxe. Sin embargo, a plataforma de financiación elegida podría ter as suas propias tarifas.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "A sua contribución completa irá directamente o desarrollador do plugin; CyberLover non toma ningun porcentaxe. Sin embargo, a plataforma de financiación elegida podría ter as suas propias tarifas.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "העתק קישור",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "יצירת מודל",
@ -432,7 +432,7 @@
"Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
"Made by CyberLover Community": "נוצר על ידי קהילת OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "ודא להקיף אותם עם",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ניתן להוריד מקסימום 3 מודלים בו זמנית. אנא נסה שוב מאוחר יותר.",
"May": "מאי",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
"Memory": "זיכרון",
@ -1139,10 +1139,10 @@
"Open new chat": "פתח צ'אט חדש",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "API של OpenAI",
"OpenAI API Config": "תצורת API של OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "הקלט קול",
"Redirecting you to Open WebUI Community": "מפנה אותך לקהילת OpenWebUI",
"Redirecting you to CyberLover Community": "מפנה אותך לקהילת OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
"Share": "שתף",
"Share Chat": "שתף צ'אט",
"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
"Share to CyberLover Community": "שתף לקהילת OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "כעת אתה מחובר.",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "लिंक को कॉपी करें",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "एक मॉडल बनाएं",
@ -432,7 +432,7 @@
"Discover a model": "एक मॉडल की खोज करें",
"Discover a prompt": "प्रॉम्प्ट खोजें",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
"Made by CyberLover Community": "OpenWebUI समुदाय द्वारा निर्मित",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "अधिकतम 3 मॉडल एक साथ डाउनलोड किये जा सकते हैं। कृपया बाद में पुन: प्रयास करें।",
"May": "मेई",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
"Memory": "मेमोरी",
@ -1139,10 +1139,10 @@
"Open new chat": "नई चैट खोलें",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API कॉन्फिग",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "आवाज रिकॉर्ड करना",
"Redirecting you to Open WebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
"Redirecting you to CyberLover Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!",
"Share": "साझा करें",
"Share Chat": "चैट साझा करें",
"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
"Share to CyberLover Community": "OpenWebUI समुदाय में साझा करें",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "अब आप लॉग इन हो गए हैं",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopiraj vezu",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Izradite model",
@ -432,7 +432,7 @@
"Discover a model": "Otkrijte model",
"Discover a prompt": "Otkrijte prompt",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Izradio OpenWebUI Community",
"Made by CyberLover Community": "Izradio OpenWebUI Community",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Provjerite da ih zatvorite s",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.",
"May": "Svibanj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija",
@ -1139,10 +1139,10 @@
"Open new chat": "Otvorite novi razgovor",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfiguracija",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Redirecting you to CyberLover Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Nazivajte se \"Korisnik\" (npr. \"Korisnik uči španjolski\")",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Postavke su uspješno spremljene!",
"Share": "Podijeli",
"Share Chat": "Podijeli razgovor",
"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
"Share to CyberLover Community": "Podijeli u OpenWebUI zajednici",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Sada ste prijavljeni.",
"Your Account": "",
"Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Link másolása",
"Copy to clipboard": "Másolás a vágólapra",
"Copying to clipboard was successful!": "Sikeres másolás a vágólapra!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "A CORS-t megfelelően kell konfigurálnia a szolgáltatónak, hogy engedélyezze az Open WebUI-ból érkező kéréseket.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "A CORS-t megfelelően kell konfigurálnia a szolgáltatónak, hogy engedélyezze az CyberLover-ból érkező kéréseket.",
"Create": "Létrehozás",
"Create a knowledge base": "Tudásbázis létrehozása",
"Create a model": "Modell létrehozása",
@ -432,7 +432,7 @@
"Discover a model": "Modell felfedezése",
"Discover a prompt": "Prompt felfedezése",
"Discover a tool": "Eszköz felfedezése",
"Discover how to use Open WebUI and seek support from the community.": "Fedezd fel, hogyan használd az Open WebUI-t és kérj támogatást a közösségtől.",
"Discover how to use CyberLover and seek support from the community.": "Fedezd fel, hogyan használd az CyberLover-t és kérj támogatást a közösségtől.",
"Discover wonders": "Csodák felfedezése",
"Discover, download, and explore custom functions": "Fedezz fel, tölts le és fedezz fel egyéni funkciókat",
"Discover, download, and explore custom prompts": "Fedezz fel, tölts le és fedezz fel egyéni promptokat",
@ -958,7 +958,7 @@
"Lost": "Elveszett",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
"Made by CyberLover Community": "Az OpenWebUI közösség által készítve",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Győződjön meg róla, hogy körülveszi őket",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.",
"May": "Május",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.",
"Memory": "Memória",
@ -1139,10 +1139,10 @@
"Open new chat": "Új beszélgetés megnyitása",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.",
"Open WebUI uses faster-whisper internally.": "Az Open WebUI belsőleg a faster-whispert használja.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Az Open WebUI a SpeechT5-öt és a CMU Arctic hangszóró beágyazásokat használja.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Az Open WebUI verzió (v{{OPEN_WEBUI_VERSION}}) alacsonyabb, mint a szükséges verzió (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "Az CyberLover bármely OpenAPI szerver által biztosított eszközöket használhat.",
"CyberLover uses faster-whisper internally.": "Az CyberLover belsőleg a faster-whispert használja.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Az CyberLover a SpeechT5-öt és a CMU Arctic hangszóró beágyazásokat használja.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Az CyberLover verzió (v{{OPEN_WEBUI_VERSION}}) alacsonyabb, mint a szükséges verzió (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfiguráció",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Hang rögzítése",
"Redirecting you to Open WebUI Community": "Átirányítás az OpenWebUI közösséghez",
"Redirecting you to CyberLover Community": "Átirányítás az OpenWebUI közösséghez",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Csökkenti a ostobaság generálásának valószínűségét. Magasabb érték (pl. 100) változatosabb válaszokat ad, míg alacsonyabb érték (pl. 10) konzervatívabb lesz.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hivatkozzon magára \"Felhasználó\"-ként (pl. \"A Felhasználó spanyolul tanul\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Beállítások sikeresen mentve!",
"Share": "Megosztás",
"Share Chat": "Beszélgetés megosztása",
"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
"Share to CyberLover Community": "Megosztás az OpenWebUI közösséggel",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Megosztási engedélyek",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Sikeresen bejelentkezett.",
"Your Account": "",
"Your account status is currently pending activation.": "Fiókja jelenleg aktiválásra vár.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az CyberLover nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
"YouTube": "YouTube",
"Youtube Language": "YouTube nyelv",
"Youtube Proxy URL": "YouTube proxy URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Salin Tautan",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Buat model",
@ -432,7 +432,7 @@
"Discover a model": "Menemukan sebuah model",
"Discover a prompt": "Temukan petunjuk",
"Discover a tool": "Menemukan alat",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "Menemukan, mengunduh, dan menjelajahi fungsi khusus",
"Discover, download, and explore custom prompts": "Temukan, unduh, dan jelajahi prompt khusus",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
"Made by CyberLover Community": "Dibuat oleh Komunitas OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.",
"May": "Mei",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.",
"Memory": "Memori",
@ -1139,10 +1139,10 @@
"Open new chat": "Buka obrolan baru",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Konfigurasi API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Rekam suara",
"Redirecting you to Open WebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
"Redirecting you to CyberLover Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Merujuk diri Anda sebagai \"Pengguna\" (misalnya, \"Pengguna sedang belajar bahasa Spanyol\")",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "Pengaturan berhasil disimpan!",
"Share": "Berbagi",
"Share Chat": "Bagikan Obrolan",
"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
"Share to CyberLover Community": "Bagikan ke Komunitas OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1753,7 +1753,7 @@
"You're now logged in.": "Anda sekarang sudah masuk.",
"Your Account": "",
"Your account status is currently pending activation.": "Status akun Anda saat ini sedang menunggu aktivasi.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Cóipeáil Nasc",
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Ní mór don soláthraí CORS a chumrú i gceart chun iarratais ó Open WebUI a cheadú.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Ní mór don soláthraí CORS a chumrú i gceart chun iarratais ó CyberLover a cheadú.",
"Create": "Cruthaigh",
"Create a knowledge base": "Cruthaigh bonn eolais",
"Create a model": "Cruthaigh samhail",
@ -432,7 +432,7 @@
"Discover a model": "Faigh amach samhail",
"Discover a prompt": "Faigh amach leid",
"Discover a tool": "Faigh amach uirlis",
"Discover how to use Open WebUI and seek support from the community.": "Faigh amach conas Open WebUI a úsáid agus lorg tacaíocht ón bpobal.",
"Discover how to use CyberLover and seek support from the community.": "Faigh amach conas CyberLover a úsáid agus lorg tacaíocht ón bpobal.",
"Discover wonders": "Faigh amach iontais",
"Discover, download, and explore custom functions": "Faigh amach, íoslódáil agus iniúchadh feidhmeanna saincheaptha",
"Discover, download, and explore custom prompts": "Leideanna saincheaptha a fháil amach, a íoslódáil agus a iniúchadh",
@ -958,7 +958,7 @@
"Lost": "Cailleadh",
"Low": "Íseal",
"LTR": "LTR",
"Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
"Made by CyberLover Community": "Déanta ag OpenWebUI Community",
"Make password visible in the user interface": "Déan an focal faire le feiceáil sa chomhéadan úsáideora",
"Make sure to enclose them with": "Déan cinnte iad a cheangal le",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.",
"May": "Bealtaine",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "Meánach",
"Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.",
"Memory": "Cuimhne",
@ -1139,10 +1139,10 @@
"Open new chat": "Oscail comhrá nua",
"Open Sidebar": "Oscail an Barra Taoibh",
"Open User Profile Menu": "Oscail Roghchlár Próifíl Úsáideora",
"Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Úsáideann Open WebUI cogar níos tapúla go hinmheánach.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Open WebUI úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tá leagan WebUI oscailte (v{{OPEN_WEBUI_VERSION}}) níos ísle ná an leagan riachtanach (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
"CyberLover uses faster-whisper internally.": "Úsáideann CyberLover cogar níos tapúla go hinmheánach.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann CyberLover úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tá leagan WebUI oscailte (v{{OPEN_WEBUI_VERSION}}) níos ísle ná an leagan riachtanach (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Cumraíocht API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Clibeanna Réasúnaíochta",
"Record": "Taifead",
"Record voice": "Taifead guth",
"Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community",
"Redirecting you to CyberLover Community": "Tú a atreorú chuig OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Laghdaíonn sé an dóchúlacht go giniúint nonsense. Tabharfaidh luach níos airde (m.sh. 100) freagraí níos éagsúla, agus beidh luach níos ísle (m.sh. 10) níos coimeádaí.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Tagairt duit féin mar \"Úsáideoir\" (m.sh., \"Tá an úsáideoir ag foghlaim Spáinnis\")",
"Reference Chats": "Comhráite Tagartha",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
"Share": "Comhroinn",
"Share Chat": "Comhroinn Comhrá",
"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
"Share to CyberLover Community": "Comhroinn le Pobal OpenWebUI",
"Share your background and interests": "Roinn do chúlra agus do leasanna",
"Shared with you": "",
"Sharing Permissions": "Ceadanna a Roinnt",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Tá tú logáilte isteach anois.",
"Your Account": "Do Chuntas",
"Your account status is currently pending activation.": "Tá stádas do chuntais ar feitheamh faoi ghníomhachtú.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann CyberLover aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
"YouTube": "Youtube",
"Youtube Language": "Teanga Youtube",
"Youtube Proxy URL": "URL Seachfhreastalaí YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Copia link",
"Copy to clipboard": "Copia negli appunti",
"Copying to clipboard was successful!": "Copia negli appunti riuscita!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS deve essere configurato correttamente dal fornitore per consentire le richieste da Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS deve essere configurato correttamente dal fornitore per consentire le richieste da CyberLover.",
"Create": "Crea",
"Create a knowledge base": "Crea una base di conoscenze",
"Create a model": "Creare un modello",
@ -432,7 +432,7 @@
"Discover a model": "Scopri un modello",
"Discover a prompt": "Scopri un prompt",
"Discover a tool": "Scopri uno strumento",
"Discover how to use Open WebUI and seek support from the community.": "Scopri come utilizzare Open WebUI e cerca supporto dalla community.",
"Discover how to use CyberLover and seek support from the community.": "Scopri come utilizzare CyberLover e cerca supporto dalla community.",
"Discover wonders": "Scopri meraviglie",
"Discover, download, and explore custom functions": "Scopri, scarica ed esplora funzioni personalizzate",
"Discover, download, and explore custom prompts": "Scopri, scarica ed esplora prompt personalizzati",
@ -958,7 +958,7 @@
"Lost": "Perso",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI",
"Made by CyberLover Community": "Realizzato dalla Comunità CyberLover",
"Make password visible in the user interface": "Rendi la password visibile nella interfaccia utente",
"Make sure to enclose them with": "Assicurati di racchiuderli con",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assicurati di esportare un file workflow.json come formato API da ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.",
"May": "Maggio",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
"Memory": "Memoria",
@ -1139,10 +1139,10 @@
"Open new chat": "Apri nuova chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI utilizza faster-whisper internamente.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilizza le incorporazioni vocali di SpeechT5 e CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versione di Open WebUI (v{{OPEN_WEBUI_VERSION}}) è inferiore alla versione richiesta (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover può utilizzare tool forniti da qualsiasi server OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover utilizza faster-whisper internamente.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover utilizza le incorporazioni vocali di SpeechT5 e CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versione di CyberLover (v{{OPEN_WEBUI_VERSION}}) è inferiore alla versione richiesta (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Configurazione API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Registra",
"Record voice": "Registra voce",
"Redirecting you to Open WebUI Community": "Reindirizzamento alla comunità OpenWebUI",
"Redirecting you to CyberLover Community": "Reindirizzamento alla comunità OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Riduce la probabilità di generare sciocchezze. Un valore più alto (ad esempio 100) darà risposte più varie, mentre un valore più basso (ad esempio 10) sarà più conservativo.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Riferisciti a te stesso come \"Utente\" (ad esempio, \"L'utente sta imparando lo spagnolo\")",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Impostazioni salvate con successo!",
"Share": "Condividi",
"Share Chat": "Condividi chat",
"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
"Share to CyberLover Community": "Condividi con la comunità OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Condivisione dei permessi",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Ora hai effettuato l'accesso.",
"Your Account": "",
"Your account status is currently pending activation.": "Lo stato del tuo account è attualmente in attesa di attivazione.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Il tuo intero contributo andrà direttamente allo sviluppatore del plugin; Open WebUI non prende alcuna percentuale. Tuttavia, la piattaforma di finanziamento scelta potrebbe avere le proprie commissioni.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Il tuo intero contributo andrà direttamente allo sviluppatore del plugin; CyberLover non prende alcuna percentuale. Tuttavia, la piattaforma di finanziamento scelta potrebbe avere le proprie commissioni.",
"YouTube": "Youtube",
"Youtube Language": "Lingua Youtube",
"Youtube Proxy URL": "URL proxy Youtube"

View file

@ -337,7 +337,7 @@
"Copy Link": "リンクをコピー",
"Copy to clipboard": "クリップボードにコピー",
"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUIからのリクエストを許可するために、プロバイダーによってCORSが適切に設定されている必要があります。",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUIからのリクエストを許可するために、プロバイダーによってCORSが適切に設定されている必要があります。",
"Create": "作成",
"Create a knowledge base": "ナレッジベースを作成する",
"Create a model": "モデルを作成する",
@ -432,7 +432,7 @@
"Discover a model": "モデルを探す",
"Discover a prompt": "プロンプトを探す",
"Discover a tool": "ツールを探す",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUIの使用方法を探し、コミュニティからサポートを求めてください。",
"Discover how to use CyberLover and seek support from the community.": "Open WebUIの使用方法を探し、コミュニティからサポートを求めてください。",
"Discover wonders": "不思議を発見",
"Discover, download, and explore custom functions": "カスタムFunctionを探してダウンロードする",
"Discover, download, and explore custom prompts": "カスタムプロンプトを探してダウンロードする",
@ -958,7 +958,7 @@
"Lost": "負け",
"Low": "低",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
"Made by CyberLover Community": "OpenWebUI コミュニティによって作成",
"Make password visible in the user interface": "UIでパスワードを可視にする",
"Make sure to enclose them with": "必ず次で囲んでください",
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUIからAPI形式でworkflow.jsonファイルをエクスポートしてください。",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "同時にダウンロードできるモデルは最大 3 つです。後でもう一度お試しください。",
"May": "5月",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。",
"Memory": "メモリ",
@ -1139,10 +1139,10 @@
"Open new chat": "新しいチャットを開く",
"Open Sidebar": "サイドバーを開く",
"Open User Profile Menu": "ユーザープロフィールメニューを開く",
"Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
"Open WebUI uses faster-whisper internally.": "OpenWebUI は内部でfaster-whisperを使用します。",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "OpenWebUI は SpeechT5とCMU Arctic スピーカー埋め込みを使用します。",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "OpenWebUI のバージョン (v{{OPEN_WEBUI_VERSION}}) は要求されたバージョン (v{{REQUIRED_VERSION}}) より低いです。",
"CyberLover can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
"CyberLover uses faster-whisper internally.": "OpenWebUI は内部でfaster-whisperを使用します。",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "OpenWebUI は SpeechT5とCMU Arctic スピーカー埋め込みを使用します。",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "OpenWebUI のバージョン (v{{OPEN_WEBUI_VERSION}}) は要求されたバージョン (v{{REQUIRED_VERSION}}) より低いです。",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API 設定",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "録音",
"Record voice": "音声を録音",
"Redirecting you to Open WebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
"Redirecting you to CyberLover Community": "OpenWebUI コミュニティにリダイレクトしています",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "無意味な生成の確率を減少させます。高い値100はより多様な回答を提供し、低い値10ではより保守的になります。",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "あなたのことは「User」としてください「User はスペイン語を学んでいます」)",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "設定が正常に保存されました!",
"Share": "共有",
"Share Chat": "チャットを共有",
"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
"Share to CyberLover Community": "OpenWebUI コミュニティに共有",
"Share your background and interests": "あなたの背景情報と興味を教えてください",
"Shared with you": "",
"Sharing Permissions": "共有に関する権限",
@ -1753,7 +1753,7 @@
"You're now logged in.": "ログインしました。",
"Your Account": "あなたのアカウント",
"Your account status is currently pending activation.": "あなたのアカウント状態は現在登録認証待ちです。",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "あなたの全ての寄付はプラグイン開発者へ直接送られます。Open WebUI は手数料を一切取りません。ただし、選択した資金提供プラットフォーム側に手数料が発生する場合があります。",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "あなたの全ての寄付はプラグイン開発者へ直接送られます。CyberLover は手数料を一切取りません。ただし、選択した資金提供プラットフォーム側に手数料が発生する場合があります。",
"YouTube": "YouTube",
"Youtube Language": "YouTubeの言語",
"Youtube Proxy URL": "YouTubeのプロキシURL"

View file

@ -337,7 +337,7 @@
"Copy Link": "ბმულის კოპირება",
"Copy to clipboard": "ბუფერში კოპირება",
"Copying to clipboard was successful!": "გაცვლის ბუფერში კოპირება წარმატებულია!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "შექმნა",
"Create a knowledge base": "ცოდნის ბაზის შექმნა",
"Create a model": "მოდელის შექმნა",
@ -432,7 +432,7 @@
"Discover a model": "აღმოაჩინეთ მოდელი",
"Discover a prompt": "აღმოაჩინეთ მოთხოვნა",
"Discover a tool": "აღმოაჩინეთ ხელსაწყო",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მორგებული მოთხოვნები",
@ -958,7 +958,7 @@
"Lost": "წაგება",
"Low": "დაბალი",
"LTR": "LTR",
"Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
"Made by CyberLover Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
"Make password visible in the user interface": "პაროლის მომხმარებლის ინტერფეისში ჩვენება",
"Make sure to enclose them with": "დარწმუნდით, რომ ჩასვით ისინი",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ერთდროულად მაქსიმუმ 3 მოდელის ჩამოტვირთვაა შესაძლებელია. მოგვიანებით სცადეთ.",
"May": "მაისი",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "საშუალო",
"Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.",
"Memory": "მეხსიერება",
@ -1139,10 +1139,10 @@
"Open new chat": "ახალი ჩატის გახსნა",
"Open Sidebar": "გვერდითი ზოლის გახსნა",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API პარამეტრები",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "ჩაწერა",
"Record voice": "ხმის ჩაწერა",
"Redirecting you to Open WebUI Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე",
"Redirecting you to CyberLover Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "პარამეტრები შენახვა წარმატებულია!",
"Share": "გაზიარება",
"Share Chat": "ჩატის გაზიარება",
"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
"Share to CyberLover Community": "გაზიარება CyberLover-ის საზოგადოებასთან",
"Share your background and interests": "",
"Shared with you": "გაზიარებულია თქვენთვის",
"Sharing Permissions": "გაზიარების წვდომები",
@ -1754,7 +1754,7 @@
"You're now logged in.": "ახლა შესული ბრძანდებით.",
"Your Account": "თქვენი ანგარიში",
"Your account status is currently pending activation.": "თქვენი ანგარიშის სტატუსი ამჟამად ელოდება აქტივაციას.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "Youtube-ის ენა",
"Youtube Proxy URL": "Youtube-ის პროქსის URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Nɣel aseɣwen",
"Copy to clipboard": "Nɣel ɣef afus",
"Copying to clipboard was successful!": "Yessaweḍ unɣel ɣer tfelwit n uklip!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS ilaq ad yeswel akken iwata sɣur usaǧǧaw akken ad yeǧǧ issutren seg WebUI yeldin.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS ilaq ad yeswel akken iwata sɣur usaǧǧaw akken ad yeǧǧ issutren seg WebUI yeldin.",
"Create": "Snulfu-d",
"Create a knowledge base": "Rnu taffa n tmussniwin",
"Create a model": "Snulfu-d tamudemt",
@ -432,7 +432,7 @@
"Discover a model": "Snirem tamudemt",
"Discover a prompt": "Snirem aneftaɣ",
"Discover a tool": "Snirem kra n ufecku",
"Discover how to use Open WebUI and seek support from the community.": "Wali amek ara tesqedceḍ Open WebUI udiɣ amek ara ad tnadiḍ tallelt ar temɣiwant.",
"Discover how to use CyberLover and seek support from the community.": "Wali amek ara tesqedceḍ CyberLover udiɣ amek ara ad tnadiḍ tallelt ar temɣiwant.",
"Discover wonders": "Snirem imakunen",
"Discover, download, and explore custom functions": "Af-d, zdem-d, tesnirmeḍ tisɣunin yemganen",
"Discover, download, and explore custom prompts": "Af-d, zdem-d, tesnirmeḍ-d ineftaɣen udmawanen",
@ -958,7 +958,7 @@
"Lost": "Iruḥ",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Texdem-it-id temɣiwant n Open WebUI",
"Made by CyberLover Community": "Texdem-it-id temɣiwant n CyberLover",
"Make password visible in the user interface": "Sken-d awal n uɛeddi deg ugrudem n useqdac",
"Make sure to enclose them with": "Ur ttettu ara ad ten-tɣunzuḍ",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ur ttettumt ara ad tessiǧwemt aman n umahil. afaylu json d amasal API seg ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.",
"May": "Mayyu",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.",
"Memory": "Takatut",
@ -1139,10 +1139,10 @@
"Open new chat": "Ldi asqerdec amaynut",
"Open Sidebar": "Ldi agalis adisan",
"Open User Profile Menu": "Ldi umuɣ n umaɣnu n useqdac",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI yesseqdac faster-whisper sdaxel-is.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Ldi WebUI yesseqdac SpeechT5 akked CMU Arktik.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover yesseqdac faster-whisper sdaxel-is.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Ldi WebUI yesseqdac SpeechT5 akked CMU Arktik.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Tawila n API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Aklas",
"Record voice": "Sekles taɣect",
"Redirecting you to Open WebUI Community": "Aseḍfeṛ ar Temɣiwant n Open WebUI",
"Redirecting you to CyberLover Community": "Aseḍfeṛ ar Temɣiwant n CyberLover",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Err iman-ik d \"Aseqdac\" (amedya, \"Aseqdac ilemmed taspenyulit\")",
"Reference Chats": "Mselɣu idiwenniyen",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Iɣewwaṛen ttwakelsen akken iwata!",
"Share": "Bḍu",
"Share Chat": "Bḍu asqerdec",
"Share to Open WebUI Community": "Bḍu i tkebbanit WebUI yeldin",
"Share to CyberLover Community": "Bḍu i tkebbanit WebUI yeldin",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Tisirag n beṭṭu",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Aql-ik teqqned imir-a.",
"Your Account": "Amiḍan-ik·im",
"Your account status is currently pending activation.": "Addad-nnem n umiḍan atan yettṛaju armad.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "Tutlayt n Youtube",
"Youtube Proxy URL": "Tansa URL n upṛuksi Youtube"

View file

@ -337,7 +337,7 @@
"Copy Link": "링크 복사",
"Copy to clipboard": "클립보드에 복사",
"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI의 요청을 허용하려면 공급자가 CORS를 올바르게 구성해야 합니다.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUI의 요청을 허용하려면 공급자가 CORS를 올바르게 구성해야 합니다.",
"Create": "생성",
"Create a knowledge base": "지식 기반 생성",
"Create a model": "모델 생성",
@ -432,7 +432,7 @@
"Discover a model": "모델 검색",
"Discover a prompt": "프롬프트 검색",
"Discover a tool": "도구 검색",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUI 사용 방법을 알아보고 커뮤니티에서 지원을 받으세요.",
"Discover how to use CyberLover and seek support from the community.": "CyberLover 사용 방법을 알아보고 커뮤니티에서 지원을 받으세요.",
"Discover wonders": "놀라움을 체험하세요",
"Discover, download, and explore custom functions": "사용자 정의 함수 검색, 다운로드 및 탐색",
"Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색",
@ -958,7 +958,7 @@
"Lost": "패배",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
"Made by CyberLover Community": "OpenWebUI 커뮤니티에 의해 개발됨",
"Make password visible in the user interface": "비밀번호 보이기",
"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "최대 3개의 모델을 동시에 다운로드할 수 있습니다. 나중에 다시 시도하세요.",
"May": "5월",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Open WebUI 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. CyberLover 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.",
"Memory": "메모리",
@ -1139,10 +1139,10 @@
"Open new chat": "새 채팅 열기",
"Open Sidebar": "사이드바 열기",
"Open User Profile Menu": "사용자 프로필 메뉴 열기",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
"Open WebUI uses faster-whisper internally.": "Open WebUI는 내부적으로 패스트 위스퍼를 사용합니다.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI는 SpeechT5와 CMU Arctic 스피커 임베딩을 사용합니다.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "열린 WebUI 버젼(v{{OPEN_WEBUI_VERSION}})은 최소 버젼 (v{{REQUIRED_VERSION}})보다 낮습니다",
"CyberLover can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
"CyberLover uses faster-whisper internally.": "Open WebUI는 내부적으로 패스트 위스퍼를 사용합니다.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI는 SpeechT5와 CMU Arctic 스피커 임베딩을 사용합니다.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "열린 WebUI 버젼(v{{OPEN_WEBUI_VERSION}})은 최소 버젼 (v{{REQUIRED_VERSION}})보다 낮습니다",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API 설정",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "추론 태그",
"Record": "녹음",
"Record voice": "음성 녹음",
"Redirecting you to Open WebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
"Redirecting you to CyberLover Community": "OpenWebUI 커뮤니티로 리디렉션 중",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "넌센스를 생성할 확률을 줄입니다. 값이 높을수록(예: 100) 더 다양한 답변을 제공하는 반면, 값이 낮을수록(예: 10) 더 보수적입니다.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "스스로를 \"사용자\" 라고 지칭하세요. (예: \"사용자는 영어를 배우고 있습니다\")",
"Reference Chats": "채팅 참조",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
"Share": "공유",
"Share Chat": "채팅 공유",
"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
"Share to CyberLover Community": "OpenWebUI 커뮤니티에 공유",
"Share your background and interests": "당신의 배경과 관심사를 공유하세요",
"Shared with you": "",
"Sharing Permissions": "권한 공유",
@ -1753,7 +1753,7 @@
"You're now logged in.": "로그인되었습니다.",
"Your Account": "계정",
"Your account status is currently pending activation.": "현재 계정은 아직 활성화되지 않았습니다.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "당신의 모든 기여는 곧바로 플러그인 개발자에게 갑니다; Open WebUI는 수수료를 받지 않습니다. 다만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "당신의 모든 기여는 곧바로 플러그인 개발자에게 갑니다; Open WebUI는 수수료를 받지 않습니다. 다만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.",
"YouTube": "유튜브",
"Youtube Language": "Youtube 언어",
"Youtube Proxy URL": "Youtube 프록시 URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopijuoti nuorodą",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Sukurti modelį",
@ -432,7 +432,7 @@
"Discover a model": "Atrasti modelį",
"Discover a prompt": "Atrasti užklausas",
"Discover a tool": "Atrasti įrankį",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "Atrasti, atsisiųsti arba rasti naujas funkcijas",
"Discover, download, and explore custom prompts": "Atrasti ir parsisiųsti užklausas",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
"Made by CyberLover Community": "Sukurta OpenWebUI bendruomenės",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.",
"May": "gegužė",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.",
"Memory": "Atmintis",
@ -1139,10 +1139,10 @@
"Open new chat": "Atverti naują pokalbį",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tortue Chat versija per sena. Reikalinga (v{{REQUIRED_VERSION}}) versija.",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tortue Chat versija per sena. Reikalinga (v{{REQUIRED_VERSION}}) versija.",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "Open AI API nustatymai",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Įrašyti balsą",
"Redirecting you to Open WebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
"Redirecting you to CyberLover Community": "Perkeliam Jus į OpenWebUI bendruomenę",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Vadinkite save Naudotoju (pvz. Naudotojas mokosi prancūzų kalbos)",
"Reference Chats": "",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Parametrai sėkmingai išsaugoti!",
"Share": "Dalintis",
"Share Chat": "Dalintis pokalbiu",
"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
"Share to CyberLover Community": "Dalintis su OpenWebUI bendruomene",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Esate prisijungę.",
"Your Account": "",
"Your account status is currently pending activation.": "Jūsų paskyra laukia administratoriaus patvirtinimo.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Salin Pautan",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Cipta model",
@ -432,7 +432,7 @@
"Discover a model": "Temui model",
"Discover a prompt": "Temui gesaan",
"Discover a tool": "Temui alat",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "Temui, muat turun dan teroka fungsi tersuai",
"Discover, download, and explore custom prompts": "Temui, muat turun dan teroka gesaan tersuai",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
"Made by CyberLover Community": "Dicipta oleh Komuniti OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.",
"May": "Mei",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.",
"Memory": "Memori",
@ -1139,10 +1139,10 @@
"Open new chat": "Buka perbualan baru",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) adalah lebih rendah daripada versi yang diperlukan iaitu (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover version (v{{OPEN_WEBUI_VERSION}}) adalah lebih rendah daripada versi yang diperlukan iaitu (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Tetapan API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Rakam suara",
"Redirecting you to Open WebUI Community": "Membawa anda ke Komuniti OpenWebUI",
"Redirecting you to CyberLover Community": "Membawa anda ke Komuniti OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Rujuk diri anda sebagai \"User\" (cth, \"Pengguna sedang belajar bahasa Sepanyol\")",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "Tetapan berjaya disimpan!",
"Share": "Kongsi",
"Share Chat": "Kongsi Perbualan",
"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
"Share to CyberLover Community": "Kongsi kepada Komuniti OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1753,7 +1753,7 @@
"You're now logged in.": "Anda kini telah log masuk.",
"Your Account": "",
"Your account status is currently pending activation.": "Status akaun anda ialah sedang menunggu pengaktifan.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; CyberLover tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopier lenke",
"Copy to clipboard": "Kopier til utklippstavle",
"Copying to clipboard was successful!": "Kopiert til utklippstavlen!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS må være riktig konfigurert av leverandøren for å kunne godkjenne forespørsler fra Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS må være riktig konfigurert av leverandøren for å kunne godkjenne forespørsler fra CyberLover.",
"Create": "Opprett",
"Create a knowledge base": "Opprett en kunnskapsbase",
"Create a model": "Opprett en modell",
@ -432,7 +432,7 @@
"Discover a model": "Oppdag en modell",
"Discover a prompt": "Oppdag en ledetekst",
"Discover a tool": "Oppdag et verktøy",
"Discover how to use Open WebUI and seek support from the community.": "Finn ut hvordan du bruker Open WebUI, og få støtte fra fellesskapet.",
"Discover how to use CyberLover and seek support from the community.": "Finn ut hvordan du bruker CyberLover, og få støtte fra fellesskapet.",
"Discover wonders": "Oppdag ",
"Discover, download, and explore custom functions": "Oppdag, last ned og utforsk tilpassede funksjoner",
"Discover, download, and explore custom prompts": "Oppdag, last ned og utforsk tilpassede ledetekster",
@ -958,7 +958,7 @@
"Lost": "Tapt",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
"Made by CyberLover Community": "Laget av OpenWebUI-fellesskapet",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Sørg for å omslutte dem med",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.",
"May": "mai",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.",
"Memory": "Minne",
@ -1139,10 +1139,10 @@
"Open new chat": "Åpne ny chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI bruker faster-whisper internt.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruker SpeechT5 og CMU Arctic-høytalerinnbygginger",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-versjonen (v{{OPEN_WEBUI_VERSION}}) er lavere enn den påkrevde versjonen (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover bruker faster-whisper internt.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover bruker SpeechT5 og CMU Arctic-høytalerinnbygginger",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover-versjonen (v{{OPEN_WEBUI_VERSION}}) er lavere enn den påkrevde versjonen (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI-API",
"OpenAI API Config": "API-konfigurasjon for OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Ta opp tale",
"Redirecting you to Open WebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
"Redirecting you to CyberLover Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Omtal deg selv som \"Bruker\" (f.eks. \"Bruker lærer spansk\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Innstillinger lagret!",
"Share": "Del",
"Share Chat": "Del chat",
"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
"Share to CyberLover Community": "Del med OpenWebUI-fellesskapet",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Du er nå logget inn.",
"Your Account": "",
"Your account status is currently pending activation.": "Status på kontoen din er for øyeblikket ventende på aktivering.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele beløpet går uavkortet til utvikleren av tillegget. Open WebUI mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele beløpet går uavkortet til utvikleren av tillegget. CyberLover mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopieer link",
"Copy to clipboard": "Kopieer naar klembord",
"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS moet goed geconfigureerd zijn bij de provider om verzoeken van Open WebUI toe te staan",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS moet goed geconfigureerd zijn bij de provider om verzoeken van CyberLover toe te staan",
"Create": "Aanmaken",
"Create a knowledge base": "Maak een kennisbasis aan",
"Create a model": "Een model maken",
@ -432,7 +432,7 @@
"Discover a model": "Ontdek een model",
"Discover a prompt": "Ontdek een prompt",
"Discover a tool": "Ontdek een tool",
"Discover how to use Open WebUI and seek support from the community.": "Ontdek hoe je Open WebUI gebruikt en zoek ondersteuning van de community.",
"Discover how to use CyberLover and seek support from the community.": "Ontdek hoe je CyberLover gebruikt en zoek ondersteuning van de community.",
"Discover wonders": "Ontdek wonderen",
"Discover, download, and explore custom functions": "Ontdek, download en verken aangepaste functies",
"Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
@ -958,7 +958,7 @@
"Lost": "Verloren",
"Low": "",
"LTR": "LNR",
"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
"Made by CyberLover Community": "Gemaakt door OpenWebUI Community",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Zorg ervoor dat je ze omringt met",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.",
"May": "Mei",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
"Memory": "Geheugen",
@ -1139,10 +1139,10 @@
"Open new chat": "Open nieuwe chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI gebruikt faster-whisper intern",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI gebruikt SpeechT5 en CMU Arctic spreker-embeddings",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI versie (v{{OPEN_WEBUI_VERSION}}) is kleiner dan de benodigde versie (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover gebruikt faster-whisper intern",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover gebruikt SpeechT5 en CMU Arctic spreker-embeddings",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover versie (v{{OPEN_WEBUI_VERSION}}) is kleiner dan de benodigde versie (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API-configuratie",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Neem stem op",
"Redirecting you to Open WebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
"Redirecting you to CyberLover Community": "Je wordt doorgestuurd naar OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Vermindert de kans op het genereren van onzin. Een hogere waarde (bijv. 100) zal meer diverse antwoorden geven, terwijl een lagere waarde (bijv. 10) conservatiever zal zijn.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refereer naar jezelf als \"user\" (bv. \"User is Spaans aan het leren\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Instellingen succesvol opgeslagen!",
"Share": "Delen",
"Share Chat": "Deel chat",
"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
"Share to CyberLover Community": "Deel naar OpenWebUI-community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Deeltoestemmingen",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Je bent nu ingelogd.",
"Your Account": "",
"Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; CyberLover neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
"YouTube": "Youtube",
"Youtube Language": "Youtube-taal",
"Youtube Proxy URL": "Youtube-proxy-URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
@ -432,7 +432,7 @@
"Discover a model": "ਇੱਕ ਮਾਡਲ ਲੱਭੋ",
"Discover a prompt": "ਇੱਕ ਪ੍ਰੰਪਟ ਖੋਜੋ",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
"Made by CyberLover Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ਇੱਕ ਸਮੇਂ ਵਿੱਚ ਵੱਧ ਤੋਂ ਵੱਧ 3 ਮਾਡਲ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।",
"May": "ਮਈ",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Memory": "ਮੀਮਰ",
@ -1139,10 +1139,10 @@
"Open new chat": "ਨਵੀਂ ਗੱਲਬਾਤ ਖੋਲ੍ਹੋ",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "ਓਪਨਏਆਈ",
"OpenAI API": "ਓਪਨਏਆਈ API",
"OpenAI API Config": "ਓਪਨਏਆਈ API ਕਨਫਿਗ",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
"Redirecting you to Open WebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
"Redirecting you to CyberLover Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!",
"Share": "ਸਾਂਝਾ ਕਰੋ",
"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
"Share to CyberLover Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "ਤੁਸੀਂ ਹੁਣ ਲੌਗ ਇਨ ਹੋ ਗਏ ਹੋ।",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "ਯੂਟਿਊਬ",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Skopiuj link",
"Copy to clipboard": "Wklej do schowka",
"Copying to clipboard was successful!": "Kopiowanie do schowka zakończyło się sukcesem!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS musi być prawidłowo skonfigurowany przez dostawcę, aby umożliwić żądania z Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS musi być prawidłowo skonfigurowany przez dostawcę, aby umożliwić żądania z CyberLover.",
"Create": "Utwórz",
"Create a knowledge base": "Utwórz bazę wiedzy",
"Create a model": "Utwórz model",
@ -432,7 +432,7 @@
"Discover a model": "Odkrywaj model",
"Discover a prompt": "Odkrywaj prompty",
"Discover a tool": "Odkrywaj narzędzia",
"Discover how to use Open WebUI and seek support from the community.": "Odkryj, jak korzystać z Open WebUI i szukaj wsparcia w społeczności.",
"Discover how to use CyberLover and seek support from the community.": "Odkryj, jak korzystać z CyberLover i szukaj wsparcia w społeczności.",
"Discover wonders": "Odkrywaj cuda",
"Discover, download, and explore custom functions": "Odkryj, pobierz i eksploruj niestandardowe funkcje",
"Discover, download, and explore custom prompts": "Odkryj, pobierz i eksploruj niestandardowe prompty",
@ -958,7 +958,7 @@
"Lost": "Przegrał",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI",
"Made by CyberLover Community": "Opracowane przez społeczność CyberLover",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Upewnij się, że są one zawarte w",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Upewnij się, że wyeksportowałeś plik workflow.json w formacie API z ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele można pobierać jednocześnie. Proszę spróbować ponownie później.",
"May": "Maj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.",
"Memory": "Pamięć",
@ -1139,10 +1139,10 @@
"Open new chat": "Otwórz nową rozmowę",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI korzysta wewnętrznie z szybszego faster-whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Otwarta WebUI wykorzystuje SpeechT5 i wbudowane zbiory danych mówcy CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Wersja Open WebUI (v{{OPEN_WEBUI_VERSION}}) jest niższa niż wymagana wersja (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover może używać narzędzi dostarczanych przez serwery OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover korzysta wewnętrznie z szybszego faster-whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Otwarta WebUI wykorzystuje SpeechT5 i wbudowane zbiory danych mówcy CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Wersja CyberLover (v{{OPEN_WEBUI_VERSION}}) jest niższa niż wymagana wersja (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "Interfejs API OpenAI",
"OpenAI API Config": "Konfiguracja interfejsu API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Nagraj",
"Record voice": "Nagraj swój głos",
"Redirecting you to Open WebUI Community": "Przekierowujemy Cię do społeczności Open WebUI",
"Redirecting you to CyberLover Community": "Przekierowujemy Cię do społeczności CyberLover",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odnoś się do mnie jako \"Użytkownik\" (np. \"Użytkownik uczy się hiszpańskiego\")",
"Reference Chats": "",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Ustawienia zostały zapisane pomyślnie!",
"Share": "Udostępnij",
"Share Chat": "Udostępnij rozmowę",
"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
"Share to CyberLover Community": "Udostępnij w społeczności OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Uprawnienia udostępniania",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Jesteś teraz zalogowany.",
"Your Account": "",
"Your account status is currently pending activation.": "Twoje konto oczekuje obecnie na aktywację.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Cała Twoja wpłata trafi bezpośrednio do dewelopera wtyczki; Open WebUI nie pobiera żadnej prowizji. Należy jednak pamiętać, że wybrana platforma finansowania może mieć własne opłaty.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Cała Twoja wpłata trafi bezpośrednio do dewelopera wtyczki; CyberLover nie pobiera żadnej prowizji. Należy jednak pamiętać, że wybrana platforma finansowania może mieć własne opłaty.",
"YouTube": "Youtube",
"Youtube Language": "Język Youtube",
"Youtube Proxy URL": "URL proxy Youtube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiar Link",
"Copy to clipboard": "Copiar para a área de transferência",
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "O CORS deve ser configurado corretamente pelo provedor para permitir solicitações do Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "O CORS deve ser configurado corretamente pelo provedor para permitir solicitações do CyberLover.",
"Create": "Criar",
"Create a knowledge base": "Criar uma Base de Conhecimento",
"Create a model": "Criar um Modelo",
@ -432,7 +432,7 @@
"Discover a model": "Descubra um modelo",
"Discover a prompt": "Descubra um prompt",
"Discover a tool": "Descubra uma ferramenta",
"Discover how to use Open WebUI and seek support from the community.": "Descubra como usar o Open WebUI e busque suporte da comunidade.",
"Discover how to use CyberLover and seek support from the community.": "Descubra como usar o CyberLover e busque suporte da comunidade.",
"Discover wonders": "Descobrir maravilhas",
"Discover, download, and explore custom functions": "Descubra, baixe e explore funções personalizadas",
"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
@ -958,7 +958,7 @@
"Lost": "Perdeu",
"Low": "Baixo",
"LTR": "Esquerda para Direita",
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
"Made by CyberLover Community": "Feito pela Comunidade OpenWebUI",
"Make password visible in the user interface": "Tornar a senha visível na interface do usuário",
"Make sure to enclose them with": "Certifique-se de encerrá-los com",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.",
"May": "Maio",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do Open WebUI, tornando-o a opção mais confiável para compatibilidade.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do CyberLover, tornando-o a opção mais confiável para compatibilidade.",
"Medium": "Médio",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória",
@ -1139,10 +1139,10 @@
"Open new chat": "Abrir novo chat",
"Open Sidebar": "Abrir barra lateral",
"Open User Profile Menu": "Abrir menu de perfil do usuário",
"Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "A Open WebUI usa os embeddings de voz do SpeechT5 e do CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Open WebUI (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "O CyberLover pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover usa faster-whisper internamente.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "A CyberLover usa os embeddings de voz do SpeechT5 e do CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do CyberLover (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Configuração da API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Tags de raciocínio",
"Record": "Registro",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
"Redirecting you to CyberLover Community": "Redirecionando você para a Comunidade OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Reduz a probabilidade de gerar respostas sem sentido. Um valor mais alto (por exemplo, 100) resultará em respostas mais diversas, enquanto um valor mais baixo (por exemplo, 10) será mais conservador.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
"Reference Chats": "Chats Anteriores",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Configurações salvas com sucesso!",
"Share": "Compartilhar",
"Share Chat": "Compartilhar Chat",
"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
"Share to CyberLover Community": "Compartilhar com a Comunidade OpenWebUI",
"Share your background and interests": "Fale sobre você e seus interesses",
"Shared with you": "Compartilhado com você",
"Sharing Permissions": "Permissões de compartilhamento",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Você agora está logado.",
"Your Account": "Sua conta",
"Your account status is currently pending activation.": "O status da sua conta está atualmente aguardando ativação.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o Open WebUI não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o CyberLover não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiar link",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Criar um modelo",
@ -432,7 +432,7 @@
"Discover a model": "Descubra um modelo",
"Discover a prompt": "Descobrir um prompt",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "Descubra, descarregue e explore prompts personalizados",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
"Made by CyberLover Community": "Feito pela Comunidade OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Certifique-se de colocá-los entre",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.",
"May": "Maio",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória",
@ -1139,10 +1139,10 @@
"Open new chat": "Abrir nova conversa",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Configuração da API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
"Redirecting you to CyberLover Community": "Redirecionando-o para a Comunidade OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refera-se a si próprio como \"User\" (por exemplo, \"User está a aprender Espanhol\")",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Configurações guardadas com sucesso!",
"Share": "Partilhar",
"Share Chat": "Partilhar Conversa",
"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
"Share to CyberLover Community": "Partilhar com a Comunidade OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Você agora está conectado.",
"Your Account": "",
"Your account status is currently pending activation.": "O status da sua conta está atualmente com a ativação pendente.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Copiază Link",
"Copy to clipboard": "Copiază în clipboard",
"Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "Creează",
"Create a knowledge base": "",
"Create a model": "Creează un model",
@ -432,7 +432,7 @@
"Discover a model": "Descoperă un model",
"Discover a prompt": "Descoperă un prompt",
"Discover a tool": "Descoperă un instrument",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "Descoperă, descarcă și explorează funcții personalizate",
"Discover, download, and explore custom prompts": "Descoperă, descarcă și explorează prompturi personalizate",
@ -958,7 +958,7 @@
"Lost": "Pierdut",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
"Made by CyberLover Community": "Realizat de Comunitatea OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Asigurați-vă că le închideți cu",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.",
"May": "Mai",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memoriile accesibile de LLM-uri vor fi afișate aici.",
"Memory": "Memorie",
@ -1139,10 +1139,10 @@
"Open new chat": "Deschide conversație nouă",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI folosește faster-whisper intern.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Versiunea Open WebUI (v{{OPEN_WEBUI_VERSION}}) este mai mică decât versiunea necesară (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover folosește faster-whisper intern.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Versiunea CyberLover (v{{OPEN_WEBUI_VERSION}}) este mai mică decât versiunea necesară (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Configurația API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Înregistrează vocea",
"Redirecting you to Open WebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
"Redirecting you to CyberLover Community": "Vă redirecționăm către Comunitatea OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referiți-vă la dvs. ca \"Utilizator\" (de ex., \"Utilizatorul învață spaniolă\")",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Setările au fost salvate cu succes!",
"Share": "Partajează",
"Share Chat": "Partajează Conversația",
"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
"Share to CyberLover Community": "Partajează cu Comunitatea OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Acum ești autentificat.",
"Your Account": "",
"Your account status is currently pending activation.": "Statusul contului dvs. este în așteptare pentru activare.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; CyberLover nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Копировать ссылку",
"Copy to clipboard": "Скопировать в буфер обмена",
"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS должен быть должным образом настроен провайдером, чтобы разрешать запросы из Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS должен быть должным образом настроен провайдером, чтобы разрешать запросы из CyberLover.",
"Create": "Создать",
"Create a knowledge base": "Создайте базу знаний",
"Create a model": "Создание модели",
@ -432,7 +432,7 @@
"Discover a model": "Найти модель",
"Discover a prompt": "Найти промпт",
"Discover a tool": "Найти инструмент",
"Discover how to use Open WebUI and seek support from the community.": "Узнайте, как использовать Open WebUI, и обратитесь за поддержкой к сообществу.",
"Discover how to use CyberLover and seek support from the community.": "Узнайте, как использовать CyberLover, и обратитесь за поддержкой к сообществу.",
"Discover wonders": "Откройте для себя чудеса",
"Discover, download, and explore custom functions": "Открывайте для себя, загружайте и исследуйте пользовательские функции",
"Discover, download, and explore custom prompts": "Открывайте для себя, загружайте и исследуйте пользовательские промпты",
@ -958,7 +958,7 @@
"Lost": "Поражение",
"Low": "Низкий",
"LTR": "LTR",
"Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
"Made by CyberLover Community": "Сделано сообществом OpenWebUI",
"Make password visible in the user interface": "Показать пароль в пользовательском интерфейсе",
"Make sure to enclose them with": "Убедитесь, что они заключены в",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимальное количество моделей для загрузки одновременно - 3. Пожалуйста, попробуйте позже.",
"May": "Май",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "Средний",
"Memories accessible by LLMs will be shown here.": "Воспоминания, доступные LLMs, будут отображаться здесь.",
"Memory": "Воспоминания",
@ -1139,10 +1139,10 @@
"Open new chat": "Открыть новый чат",
"Open Sidebar": "Открыть боковую панель",
"Open User Profile Menu": "Открыть меню профиля пользователя",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.",
"Open WebUI uses faster-whisper internally.": "Open WebUI использует более быстрый внутренний интерфейс whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "В Open WebUI используются встраиваемые движки генерации речи SpeechT5 и CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версия Open WebUI (v{{OPEN_WEBUI_VERSION}}) ниже требуемой версии (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover может использовать инструменты, предоставляемые любым сервером OpenAPI.",
"CyberLover uses faster-whisper internally.": "CyberLover использует более быстрый внутренний интерфейс whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "В CyberLover используются встраиваемые движки генерации речи SpeechT5 и CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версия CyberLover (v{{OPEN_WEBUI_VERSION}}) ниже требуемой версии (v{{REQUIRED_VERSION}})",
"OpenAI": "Open AI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Конфигурация API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "Теги рассуждения",
"Record": "Запись",
"Record voice": "Записать голос",
"Redirecting you to Open WebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
"Redirecting you to CyberLover Community": "Перенаправляем вас в сообщество OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Снижает вероятность появления бессмыслицы. Большее значение (например, 100) даст более разнообразные ответы, в то время как меньшее значение (например, 10) будет более консервативным.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Называйте себя \"User\" (например, \"User is learning Spanish\").",
"Reference Chats": "Справочные чаты",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Настройки успешно сохранены!",
"Share": "Поделиться",
"Share Chat": "Поделиться чатом",
"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
"Share to CyberLover Community": "Поделиться с сообществом OpenWebUI",
"Share your background and interests": "Расскажите о своём опыте и интересах",
"Shared with you": "",
"Sharing Permissions": "Разрешения на общий доступ",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Вы вошли в систему.",
"Your Account": "Ваш аккаунт",
"Your account status is currently pending activation.": "В настоящее время ваша учетная запись ожидает активации.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; Open WebUI не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; CyberLover не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
"YouTube": "YouTube",
"Youtube Language": "Язык YouTube",
"Youtube Proxy URL": "URL прокси для YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopírovať odkaz",
"Copy to clipboard": "Kopírovať do schránky",
"Copying to clipboard was successful!": "Kopírovanie do schránky bolo úspešné!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "Vytvoriť",
"Create a knowledge base": "Vytvoriť knowledge base",
"Create a model": "Vytvoriť model",
@ -432,7 +432,7 @@
"Discover a model": "Objaviť model",
"Discover a prompt": "Objaviť prompt",
"Discover a tool": "Objaviť nástroj",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "Objavujte, sťahujte a preskúmajte vlastné funkcie",
"Discover, download, and explore custom prompts": "Objavte, stiahnite a preskúmajte vlastné prompty.",
@ -958,7 +958,7 @@
"Lost": "Stratený",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
"Made by CyberLover Community": "Vytvorené komunitou OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Uistite sa, že sú uzavreté pomocou",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.",
"May": "Máj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Spomienky prístupné LLM budú zobrazené tu.",
"Memory": "Pamäť",
@ -1139,10 +1139,10 @@
"Open new chat": "Otvoriť nový chat",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI interne používa faster-whisper.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verzia Open WebUI (v{{OPEN_WEBUI_VERSION}}) je nižšia ako požadovaná verzia (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover interne používa faster-whisper.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verzia CyberLover (v{{OPEN_WEBUI_VERSION}}) je nižšia ako požadovaná verzia (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI je výskumná organizácia zameraná na umelú inteligenciu, ktorá je známa vývojom pokročilých jazykových modelov, ako je napríklad GPT. Tieto modely sa využívajú v rôznych aplikáciách, vrátane konverzačných agentov a jazykových nástrojov.",
"OpenAI API": "OpenAI API je rozhranie aplikačného programovania, ktoré umožňuje vývojárom integrovať pokročilé jazykové modely do svojich aplikácií.",
"OpenAI API Config": "Konfigurácia API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Nahrať hlas",
"Redirecting you to Open WebUI Community": "Presmerovanie na komunitu OpenWebUI",
"Redirecting you to CyberLover Community": "Presmerovanie na komunitu OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na seba ako na \"užívateľa\" (napr. \"Užívateľ sa učí španielsky\").",
"Reference Chats": "",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Nastavenia boli úspešne uložené!",
"Share": "Zdieľať",
"Share Chat": "Zdieľať chat",
"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
"Share to CyberLover Community": "Zdieľať s komunitou OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Teraz ste prihlásený(-á).",
"Your Account": "",
"Your account status is currently pending activation.": "Stav vášho účtu je aktuálne čakajúci na aktiváciu.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; Open WebUI si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; CyberLover si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Копирај везу",
"Copy to clipboard": "Копирај у оставу",
"Copying to clipboard was successful!": "Успешно копирање у оставу!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "Направи",
"Create a knowledge base": "Направи базу знања",
"Create a model": "Креирање модела",
@ -432,7 +432,7 @@
"Discover a model": "Откријте модел",
"Discover a prompt": "Откриј упит",
"Discover a tool": "Откријте алат",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "Откријте чудеса",
"Discover, download, and explore custom functions": "Откријте, преузмите и истражите прилагођене функције",
"Discover, download, and explore custom prompts": "Откријте, преузмите и истражите прилагођене упите",
@ -958,7 +958,7 @@
"Lost": "Пораза",
"Low": "",
"LTR": "ЛНД",
"Made by Open WebUI Community": "Израдила OpenWebUI заједница",
"Made by CyberLover Community": "Израдила OpenWebUI заједница",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Уверите се да их затворите са",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Највише 3 модела могу бити преузета истовремено. Покушајте поново касније.",
"May": "Мај",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.",
"Memory": "Сећања",
@ -1139,10 +1139,10 @@
"Open new chat": "Покрени ново ћаскање",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "Подешавање OpenAI API-ја",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Сними глас",
"Redirecting you to Open WebUI Community": "Преусмеравање на OpenWebUI заједницу",
"Redirecting you to CyberLover Community": "Преусмеравање на OpenWebUI заједницу",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1435,7 +1435,7 @@
"Settings saved successfully!": "Подешавања успешно сачувана!",
"Share": "Подели",
"Share Chat": "Подели ћаскање",
"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
"Share to CyberLover Community": "Подели са OpenWebUI заједницом",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1755,7 +1755,7 @@
"You're now logged in.": "Сада сте пријављени.",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Јутјуб",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Kopiera länk",
"Copy to clipboard": "Kopiera till urklipp",
"Copying to clipboard was successful!": "Kopiering till urklipp lyckades!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS måste vara korrekt konfigurerad av leverantören för att tillåta förfrågningar från Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS måste vara korrekt konfigurerad av leverantören för att tillåta förfrågningar från CyberLover.",
"Create": "Skapa",
"Create a knowledge base": "Skapa en kunskapsbas",
"Create a model": "Skapa en modell",
@ -432,7 +432,7 @@
"Discover a model": "Upptäck en modell",
"Discover a prompt": "Upptäck en instruktion",
"Discover a tool": "Upptäck ett verktyg",
"Discover how to use Open WebUI and seek support from the community.": "Upptäck hur du använder Open WebUI och sök stöd från communityn.",
"Discover how to use CyberLover and seek support from the community.": "Upptäck hur du använder CyberLover och sök stöd från communityn.",
"Discover wonders": "Upptäck underverk",
"Discover, download, and explore custom functions": "Upptäck, ladda ner och utforska anpassade funktioner",
"Discover, download, and explore custom prompts": "Upptäck, ladda ner och utforska anpassade instruktioner",
@ -958,7 +958,7 @@
"Lost": "Förlorad",
"Low": "",
"LTR": "Vänster till höger",
"Made by Open WebUI Community": "Skapad av OpenWebUI Community",
"Made by CyberLover Community": "Skapad av OpenWebUI Community",
"Make password visible in the user interface": "Gör lösenordet synligt i användargränssnittet",
"Make sure to enclose them with": "Se till att bifoga dem med",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Se till att exportera en workflow.json-fil som API-format från ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.",
"May": "maj",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minnen som är tillgängliga för LLM:er visas här.",
"Memory": "Minne",
@ -1139,10 +1139,10 @@
"Open new chat": "Öppna ny chatt",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.",
"Open WebUI uses faster-whisper internally.": "Open WebUI använder faster-whisper internt.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI använder SpeechT5 och CMU Arctic högtalarinbäddningar.",
"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}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover kan använda verktyg från alla OpenAPI-servrar.",
"CyberLover uses faster-whisper internally.": "CyberLover använder faster-whisper internt.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover använder SpeechT5 och CMU Arctic högtalarinbäddningar.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover-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",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Spela in",
"Record voice": "Spela in röst",
"Redirecting you to Open WebUI Community": "Omdirigerar dig till OpenWebUI Community",
"Redirecting you to CyberLover Community": "Omdirigerar dig till OpenWebUI Community",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Minskar sannolikheten för att generera nonsens. Ett högre värde (t.ex. 100) ger mer varierande svar, medan ett lägre värde (t.ex. 10) är mer konservativt.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referera till dig själv som \"Användare\" (t.ex. \"Användaren lär sig spanska\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Inställningar sparades framgångsrikt!",
"Share": "Dela",
"Share Chat": "Dela chatt",
"Share to Open WebUI Community": "Dela till OpenWebUI Community",
"Share to CyberLover Community": "Dela till OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Delningsbehörigheter",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Du är nu inloggad.",
"Your Account": "",
"Your account status is currently pending activation.": "Ditt konto väntar på att bli aktiverat",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hela ditt bidrag går direkt till pluginutvecklaren; Open WebUI tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Hela ditt bidrag går direkt till pluginutvecklaren; CyberLover tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.",
"YouTube": "Youtube",
"Youtube Language": "Youtube-språk",
"Youtube Proxy URL": "Youtube Proxy URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "คัดลอกลิงก์",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "สร้างโมเดล",
@ -432,7 +432,7 @@
"Discover a model": "ค้นหาโมเดล",
"Discover a prompt": "ค้นหาพรอมต์",
"Discover a tool": "ค้นหาเครื่องมือ",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "ค้นหา ดาวน์โหลด และสำรวจฟังก์ชันที่กำหนดเอง",
"Discover, download, and explore custom prompts": "ค้นหา ดาวน์โหลด และสำรวจพรอมต์ที่กำหนดเอง",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
"Made by CyberLover Community": "สร้างโดยชุมชน OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "สามารถดาวน์โหลดโมเดลได้สูงสุด 3 โมเดลในเวลาเดียวกัน โปรดลองอีกครั้งในภายหลัง",
"May": "พฤษภาคม",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "ความจำ",
@ -1139,10 +1139,10 @@
"Open new chat": "เปิดแชทใหม่",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชั่น Open WebUI (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชั่นที่ต้องการ (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชั่น CyberLover (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชั่นที่ต้องการ (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "การตั้งค่า OpenAI API",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "บันทึกเสียง",
"Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
"Redirecting you to CyberLover Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "เรียกตัวเองว่า \"ผู้ใช้\" (เช่น \"ผู้ใช้กำลังเรียนภาษาสเปน\")",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "บันทึกการตั้งค่าเรียบร้อยแล้ว!",
"Share": "แชร์",
"Share Chat": "แชร์แชท",
"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
"Share to CyberLover Community": "แชร์ไปยังชุมชน OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1753,7 +1753,7 @@
"You're now logged in.": "คุณเข้าสู่ระบบแล้ว",
"Your Account": "",
"Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; Open WebUI ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; CyberLover ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Baglanyşygy Göçür",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "Buferine göçürmek üstünlikli boldy!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Model döret",
@ -432,7 +432,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -958,7 +958,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "",
"Made by CyberLover Community": "",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "",
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
"May": "Maý",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "Ýat",
@ -1139,10 +1139,10 @@
"Open new chat": "",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"OpenAI": "",
"OpenAI API": "",
"OpenAI API Config": "",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
"Redirecting you to CyberLover Community": "",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "",
"Share": "Paýlaş",
"Share Chat": "Çaty Paýlaş",
"Share to Open WebUI Community": "",
"Share to CyberLover Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "",
"Your Account": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Bağlantıyı Kopyala",
"Copy to clipboard": "Panoya kopyala",
"Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUIdan gelen isteklerin kabul edilebilmesi için sağlayıcının CORS yapılandırmasının doğru şekilde yapılmış olması gerekir.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLoverdan gelen isteklerin kabul edilebilmesi için sağlayıcının CORS yapılandırmasının doğru şekilde yapılmış olması gerekir.",
"Create": "Oluştur",
"Create a knowledge base": "Bir bilgi tabanı oluştur",
"Create a model": "Bir model oluştur",
@ -432,7 +432,7 @@
"Discover a model": "Bir model keşfedin",
"Discover a prompt": "Bir prompt keşfedin",
"Discover a tool": "Bir araç keşfedin",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "Harikaları keşfedin",
"Discover, download, and explore custom functions": "Özel fonksiyonları keşfedin, indirin ve inceleyin",
"Discover, download, and explore custom prompts": "Özel promptları keşfedin, indirin ve inceleyin",
@ -958,7 +958,7 @@
"Lost": "Kayıp",
"Low": "",
"LTR": "Soldan Sağa",
"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
"Made by CyberLover Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Değişkenlerinizi şu şekilde biçimlendirin:",
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.",
"May": "Mayıs",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
"Memory": "Bellek",
@ -1139,10 +1139,10 @@
"Open new chat": "Yeni sohbet aç",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir",
"Open WebUI uses faster-whisper internally.": "Open WebUI, dahili olarak daha hızlı-fısıltı kullanır.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI, SpeechT5 ve CMU Arctic konuşmacı gömme kullanır.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open-WebUI sürümü (v{{OPEN_WEBUI_VERSION}}) gerekli sürümden (v{{REQUIRED_VERSION}}) düşük",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover OpenAPI tarafından sağlanan araçları kullanabilir",
"CyberLover uses faster-whisper internally.": "CyberLover, dahili olarak daha hızlı-fısıltı kullanır.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover, SpeechT5 ve CMU Arctic konuşmacı gömme kullanır.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open-WebUI sürümü (v{{OPEN_WEBUI_VERSION}}) gerekli sürümden (v{{REQUIRED_VERSION}}) düşük",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API Konfigürasyonu",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Kaydet",
"Record voice": "Ses kaydı yap",
"Redirecting you to Open WebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
"Redirecting you to CyberLover Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Kendinizden \"User\" olarak bahsedin (örneğin, \"User İspanyolca öğreniyor\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Ayarlar başarıyla kaydedildi!",
"Share": "Paylaş",
"Share Chat": "Sohbeti Paylaş",
"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
"Share to CyberLover Community": "OpenWebUI Topluluğu ile Paylaş",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Şimdi giriş yaptınız.",
"Your Account": "Hesabınız",
"Your account status is currently pending activation.": "Hesap durumunuz şu anda etkinleştirilmeyi bekliyor.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; CyberLover herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
"YouTube": "Youtube",
"Youtube Language": "Youtube Dili",
"Youtube Proxy URL": "Youtube Vekil URL'si"

View file

@ -337,7 +337,7 @@
"Copy Link": "ئۇلانما كۆچۈرۈش",
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
"Copying to clipboard was successful!": "چاپلاش تاختىسىغا كۆچۈرۈش مۇۋەپپەقىيەتلىك بولدى!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUIنىڭ تەلىپكە ئىجازەت بېرىش ئۈچۈن CORS توغرا تەڭشىلىشى كېرەك.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUIنىڭ تەلىپكە ئىجازەت بېرىش ئۈچۈن CORS توغرا تەڭشىلىشى كېرەك.",
"Create": "قۇرۇش",
"Create a knowledge base": "بىلىم ئاساسى قۇرۇش",
"Create a model": "مودېل قۇرۇش",
@ -432,7 +432,7 @@
"Discover a model": "مودېل تاپ",
"Discover a prompt": "تۈرتكە تاپ",
"Discover a tool": "قورال تاپ",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUI ئىشلىتىشنى ئۈگىنڭ ۋە جەمئىيەتتىن ياردەم سوراڭ.",
"Discover how to use CyberLover and seek support from the community.": "CyberLover ئىشلىتىشنى ئۈگىنڭ ۋە جەمئىيەتتىن ياردەم سوراڭ.",
"Discover wonders": "مۆجىزىلەرنى بايقاڭ",
"Discover, download, and explore custom functions": "ئۆزلۈك فۇنكسىيەسىنى تاپ، چۈشۈر، تەتقىق قىل",
"Discover, download, and explore custom prompts": "ئۆزلۈك تۈرتكەسىنى تاپ، چۈشۈر، تەتقىق قىل",
@ -958,7 +958,7 @@
"Lost": "يوقاپ كەتتى",
"Low": "",
"LTR": "LTR (سولدىن ئوڭغا)",
"Made by Open WebUI Community": "Open WebUI جەمئىيىتى تەرىپىدىن قۇرۇلغان",
"Made by CyberLover Community": "CyberLover جەمئىيىتى تەرىپىدىن قۇرۇلغان",
"Make password visible in the user interface": "ئىشلەتكۈچى ئۈستىلىدە پارول كۆرسىتىش",
"Make sure to enclose them with": "ئۇلارنى تۆۋەندىكىدەك قىستۇرۇڭ",
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI دىن API قېلىپىدا workflow.json ھۆججىتى چىقىرىڭ.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بىر ۋاقىتتا ئەڭ كۆپ 3 مودېل چۈشۈرۈلىدۇ. كىيىنچە قايتا سىناڭ.",
"May": "ماي",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM ئىشلىتەلەيدىن ئەسلەتمىلەر بۇ يەردە كۆرۈنىدۇ.",
"Memory": "ئەسلەتمە",
@ -1139,10 +1139,10 @@
"Open new chat": "يېڭى سۆھبەت ئېچىش",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
"Open WebUI uses faster-whisper internally.": "Open WebUI ئىچىدە faster-whisper ئىشلىتىدۇ.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 ۋە CMU Arctic ئاۋاز سىڭدۈرۈش ئىشلىتىدۇ.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI نەشرى (v{{OPEN_WEBUI_VERSION}}) تەلەپ قىلىنغان نەشردىن (v{{REQUIRED_VERSION}}) تۆۋەن.",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
"CyberLover uses faster-whisper internally.": "CyberLover ئىچىدە faster-whisper ئىشلىتىدۇ.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover SpeechT5 ۋە CMU Arctic ئاۋاز سىڭدۈرۈش ئىشلىتىدۇ.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover نەشرى (v{{OPEN_WEBUI_VERSION}}) تەلەپ قىلىنغان نەشردىن (v{{REQUIRED_VERSION}}) تۆۋەن.",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API تەڭشىكى",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "خاتىرىلەش",
"Record voice": "ئاۋاز خاتىرىلەش",
"Redirecting you to Open WebUI Community": "Open WebUI جەمئىيىتىگە يوللاندى",
"Redirecting you to CyberLover Community": "CyberLover جەمئىيىتىگە يوللاندى",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "ئاساسسىز ئىنكاس چىقىرىشىنىڭ ئېھتىماللىقىنى ئازايتىدۇ. چوڭ قىممەت (مەسىلەن: 100) كۆپ خىل ئىنكاس، كىچىك قىممەت (مەسىلەن: 10) تېخىمۇ مۇقىم ئىنكاس بېرىدۇ.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "ئۆزىڭىزنى \"ئىشلەتكۈچى\" دەپ ئاتىڭ (مەسىلەن: \"ئىشلەتكۈچى ئىسپانچە ئۆگىنىۋاتىدۇ\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "تەڭشەك مۇۋەپپەقىيەتلىك ساقلاندى!",
"Share": "ھەمبەھىرلەش",
"Share Chat": "سۆھبەت ھەمبەھىرلەش",
"Share to Open WebUI Community": "Open WebUI جەمئىيىتىگە ھەمبەھىرلەش",
"Share to CyberLover Community": "CyberLover جەمئىيىتىگە ھەمبەھىرلەش",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "ھەمبەھىرلەش ھوقۇقى",
@ -1754,7 +1754,7 @@
"You're now logged in.": "سىز كىرىپ بولدىڭىز.",
"Your Account": "",
"Your account status is currently pending activation.": "ھېساباتىڭىزنىڭ ھازىرقى ھالىتى ئاكتىپلىنىشنى كۈتۈۋاتىدۇ.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ Open WebUI ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ CyberLover ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.",
"YouTube": "Youtube",
"Youtube Language": "Youtube تىلى",
"Youtube Proxy URL": "Youtube ۋاكالەتچى URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Копіювати посилання",
"Copy to clipboard": "Копіювати в буфер обміну",
"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS має бути правильно налаштований постачальником, щоб дозволити запити з Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS має бути правильно налаштований постачальником, щоб дозволити запити з CyberLover.",
"Create": "Створити",
"Create a knowledge base": "Створити базу знань",
"Create a model": "Створити модель",
@ -432,7 +432,7 @@
"Discover a model": "Знайдіть модель",
"Discover a prompt": "Знайдіть промт",
"Discover a tool": "Знайдіть інструмент",
"Discover how to use Open WebUI and seek support from the community.": "Дізнайтесь, як використовувати Open WebUI, та звертайтесь за підтримкою до спільноти.",
"Discover how to use CyberLover and seek support from the community.": "Дізнайтесь, як використовувати CyberLover, та звертайтесь за підтримкою до спільноти.",
"Discover wonders": "Відкривайте чудеса",
"Discover, download, and explore custom functions": "Знайдіть, завантажте та досліджуйте налаштовані функції",
"Discover, download, and explore custom prompts": "Знайдіть, завантажте та досліджуйте налаштовані промти",
@ -958,7 +958,7 @@
"Lost": "Втрачене",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
"Made by CyberLover Community": "Зроблено спільнотою OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Переконайтеся, що вони закриті",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 моделі можна завантажити одночасно. Будь ласка, спробуйте пізніше.",
"May": "Травень",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.",
"Memory": "Пам'ять",
@ -1139,10 +1139,10 @@
"Open new chat": "Відкрити новий чат",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI використовує faster-whisper внутрішньо.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI використовує вбудовування голосів SpeechT5 та CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI версія (v{{OPEN_WEBUI_VERSION}}) нижча за необхідну версію (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover використовує faster-whisper внутрішньо.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover використовує вбудовування голосів SpeechT5 та CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover версія (v{{OPEN_WEBUI_VERSION}}) нижча за необхідну версію (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "Конфігурація OpenAI API",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Записати голос",
"Redirecting you to Open WebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
"Redirecting you to CyberLover Community": "Перенаправляємо вас до спільноти OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Зменшує ймовірність генерування нісенітниць. Вищий показник (напр., 100) забезпечить більше різноманітних відповідей, тоді як нижчий показник (напр., 10) буде більш обережним.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Називайте себе \"Користувач\" (напр., \"Користувач вивчає іспанську мову\")",
"Reference Chats": "",
@ -1436,7 +1436,7 @@
"Settings saved successfully!": "Налаштування успішно збережено!",
"Share": "Поділитися",
"Share Chat": "Поділитися чатом",
"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
"Share to CyberLover Community": "Поділитися зі спільнотою OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Дозволи на обмін",
@ -1756,7 +1756,7 @@
"You're now logged in.": "Ви увійшли в систему.",
"Your Account": "",
"Your account status is currently pending activation.": "Статус вашого облікового запису наразі очікує на активацію.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; Open WebUI не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; CyberLover не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
"YouTube": "Youtube",
"Youtube Language": "Мова YouTube",
"Youtube Proxy URL": "URL проксі-сервера YouTube"

View file

@ -337,7 +337,7 @@
"Copy Link": "لنک کاپی کریں",
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "ماڈل بنائیں",
@ -432,7 +432,7 @@
"Discover a model": "ایک ماڈل دریافت کریں",
"Discover a prompt": "ایک اشارہ دریافت کریں",
"Discover a tool": "ایک ٹول دریافت کریں",
"Discover how to use Open WebUI and seek support from the community.": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "دریافت کریں، ڈاؤن لوڈ کریں، اور کسٹم فنکشنز کو دریافت کریں",
"Discover, download, and explore custom prompts": "دریافت کریں، ڈاؤن لوڈ کریں، اور حسب ضرورت پرامپٹس کو دریافت کریں",
@ -958,7 +958,7 @@
"Lost": "گم شدہ",
"Low": "",
"LTR": "بائیں سے دائیں",
"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
"Made by CyberLover Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بیک وقت زیادہ سے زیادہ 3 ماڈل ڈاؤن لوڈ کیے جا سکتے ہیں براہ کرم بعد میں دوبارہ کوشش کریں",
"May": "مئی",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "یہاں LLMs کے ذریعہ قابل رسائی یادیں دکھائی جائیں گی",
"Memory": "میموری",
@ -1139,10 +1139,10 @@
"Open new chat": "نیا چیٹ کھولیں",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "اوپن ویب یو آئی اندرونی طور پر فاسٹر وِسپر استعمال کرتا ہے",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "اوپن WebUI ورژن (v{{OPEN_WEBUI_VERSION}}) مطلوبہ ورژن (v{{REQUIRED_VERSION}}) سے کم ہے",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "اوپن ویب یو آئی اندرونی طور پر فاسٹر وِسپر استعمال کرتا ہے",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "اوپن WebUI ورژن (v{{OPEN_WEBUI_VERSION}}) مطلوبہ ورژن (v{{REQUIRED_VERSION}}) سے کم ہے",
"OpenAI": "اوپن اے آئی",
"OpenAI API": "اوپن اے آئی اے پی آئی\n",
"OpenAI API Config": "اوپن اے آئی API ترتیب",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "صوت ریکارڈ کریں",
"Redirecting you to Open WebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
"Redirecting you to CyberLover Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "خود کو \"صارف\" کے طور پر حوالہ دیں (جیسے، \"صارف ہسپانوی سیکھ رہا ہے\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!",
"Share": "اشتراک کریں",
"Share Chat": "چیٹ شیئر کریں",
"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
"Share to CyberLover Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1754,7 +1754,7 @@
"You're now logged in.": "آپ اب لاگ ان ہو چکے ہیں",
"Your Account": "",
"Your account status is currently pending activation.": "آپ کے اکاؤنٹ کی حالت فی الحال فعال ہونے کے منتظر ہے",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
"YouTube": "یوٹیوب",
"Youtube Language": "",
"Youtube Proxy URL": ""

View file

@ -337,7 +337,7 @@
"Copy Link": "Ҳаволани нусхалаш",
"Copy to clipboard": "Буферга нусхалаш",
"Copying to clipboard was successful!": "Буферга нусхалаш муваффақиятли бўлди!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI сўровларига рухсат бериш учун CORS провайдер томонидан тўғри созланган бўлиши керак.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLover сўровларига рухсат бериш учун CORS провайдер томонидан тўғри созланган бўлиши керак.",
"Create": "Яратиш",
"Create a knowledge base": "Билимлар базасини яратинг",
"Create a model": "Модел яратиш",
@ -432,7 +432,7 @@
"Discover a model": "Моделни кашф қилинг",
"Discover a prompt": "Кўрсатмани кашф қилинг",
"Discover a tool": "Асбобни кашф қилинг",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUIдан қандай фойдаланишни билиб олинг ва ҳамжамиятдан ёрдам сўранг.",
"Discover how to use CyberLover and seek support from the community.": "Open WebUIдан қандай фойдаланишни билиб олинг ва ҳамжамиятдан ёрдам сўранг.",
"Discover wonders": "Мўъжизаларни кашф этинг",
"Discover, download, and explore custom functions": "Махсус функцияларни кашф этинг, юклаб олинг ва ўрганинг",
"Discover, download, and explore custom prompts": "Махсус таклифларни кашф қилинг, юклаб олинг ва ўрганинг",
@ -958,7 +958,7 @@
"Lost": "Йўқотилган",
"Low": "",
"LTR": "ЛТР",
"Made by Open WebUI Community": "Опен WебУИ ҳамжамияти томонидан яратилган",
"Made by CyberLover Community": "Опен WебУИ ҳамжамияти томонидан яратилган",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Уларни ўраб қўйганингизга ишонч ҳосил қилинг",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Wоркфлоw.жсон файлини CомфюИъдан АПИ формати сифатида экспорт қилганингизга ишонч ҳосил қилинг.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Бир вақтнинг ўзида максимал 3 та моделни юклаб олиш мумкин. Кейинроқ қайта уриниб кўринг.",
"May": "май",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "ЛЛМлар кириши мумкин бўлган хотиралар бу эрда кўрсатилади.",
"Memory": "Хотира",
@ -1139,10 +1139,10 @@
"Open new chat": "Янги чат очинг",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
"Open WebUI uses faster-whisper internally.": "Опен WебУИ ички тез шивирлашдан фойдаланади.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Опен WебУИ СпеэчТ5 ва CМУ Арcтиc динамик ўрнатишларидан фойдаланади.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Очиқ WебУИ версияси (в{{ОПЕН_WЕБУИ_ВЕРСИОН}}) талаб қилинган версиядан (в{{РЕҚУИРЕД_ВЕРСИОН}}) пастроқ",
"CyberLover can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
"CyberLover uses faster-whisper internally.": "Опен WебУИ ички тез шивирлашдан фойдаланади.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "Опен WебУИ СпеэчТ5 ва CМУ Арcтиc динамик ўрнатишларидан фойдаланади.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Очиқ WебУИ версияси (в{{ОПЕН_WЕБУИ_ВЕРСИОН}}) талаб қилинган версиядан (в{{РЕҚУИРЕД_ВЕРСИОН}}) пастроқ",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI АПИ",
"OpenAI API Config": "OpenAI АПИ конфигурацияси",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Ёзиб олиш",
"Record voice": "Овозни ёзиб олинг",
"Redirecting you to Open WebUI Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда",
"Redirecting you to CyberLover Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Бемаъни нарсаларни яратиш эҳтимолини камайтиради. Юқори қиймат (масалан, 100) турли хил жавоблар беради, пастроқ қиймат (масалан, 10) эса консерватив бўлади.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Ўзингизни \"Фойдаланувчи\" деб кўрсатинг (масалан, \"Фойдаланувчи испан тилини ўрганмоқда\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Созламалар муваффақиятли сақланди!",
"Share": "Улашиш",
"Share Chat": "Чатни улашиш",
"Share to Open WebUI Community": "Опен WебУИ ҳамжамиятига улашинг",
"Share to CyberLover Community": "Опен WебУИ ҳамжамиятига улашинг",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Рухсатларни алмашиш",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Сиз энди тизимга кирдингиз.",
"Your Account": "",
"Your account status is currently pending activation.": "Ҳисобингиз ҳолати ҳозирда фаоллаштиришни кутмоқда.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; Open WebUI ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; CyberLover ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.",
"YouTube": "Youtube",
"Youtube Language": "Youtube тили",
"Youtube Proxy URL": "Youtube прокси УРЛ"

View file

@ -337,7 +337,7 @@
"Copy Link": "Havolani nusxalash",
"Copy to clipboard": "Buferga nusxalash",
"Copying to clipboard was successful!": "Buferga nusxalash muvaffaqiyatli boʻldi!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI soʻrovlariga ruxsat berish uchun CORS provayder tomonidan toʻgʻri sozlangan boʻlishi kerak.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLover soʻrovlariga ruxsat berish uchun CORS provayder tomonidan toʻgʻri sozlangan boʻlishi kerak.",
"Create": "Yaratish",
"Create a knowledge base": "Bilimlar bazasini yarating",
"Create a model": "Model yaratish",
@ -432,7 +432,7 @@
"Discover a model": "Modelni kashf qiling",
"Discover a prompt": "Ko'rsatmani kashf qiling",
"Discover a tool": "Asbobni kashf qiling",
"Discover how to use Open WebUI and seek support from the community.": "Open WebUI-dan qanday foydalanishni bilib oling va hamjamiyatdan yordam so'rang.",
"Discover how to use CyberLover and seek support from the community.": "CyberLover-dan qanday foydalanishni bilib oling va hamjamiyatdan yordam so'rang.",
"Discover wonders": "Mo''jizalarni kashf eting",
"Discover, download, and explore custom functions": "Maxsus funktsiyalarni kashf eting, yuklab oling va o'rganing",
"Discover, download, and explore custom prompts": "Maxsus takliflarni kashf qiling, yuklab oling va oʻrganing",
@ -958,7 +958,7 @@
"Lost": "Yo'qotilgan",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Open WebUI hamjamiyati tomonidan yaratilgan",
"Made by CyberLover Community": "CyberLover hamjamiyati tomonidan yaratilgan",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Ularni o'rab qo'yganingizga ishonch hosil qiling",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Workflow.json faylini ComfyUIdan API formati sifatida eksport qilganingizga ishonch hosil qiling.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Bir vaqtning o'zida maksimal 3 ta modelni yuklab olish mumkin. Keyinroq qayta urinib koring.",
"May": "may",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMlar kirishi mumkin bo'lgan xotiralar bu erda ko'rsatiladi.",
"Memory": "Xotira",
@ -1139,10 +1139,10 @@
"Open new chat": "Yangi chat oching",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
"Open WebUI uses faster-whisper internally.": "Open WebUI ichki tez shivirlashdan foydalanadi.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 va CMU Arctic dinamik oʻrnatishlaridan foydalanadi.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Ochiq WebUI versiyasi (v{{OPEN_WEBUI_VERSION}}) talab qilingan versiyadan (v{{REQUIRED_VERSION}}) pastroq",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
"CyberLover uses faster-whisper internally.": "CyberLover ichki tez shivirlashdan foydalanadi.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover SpeechT5 va CMU Arctic dinamik oʻrnatishlaridan foydalanadi.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Ochiq WebUI versiyasi (v{{OPEN_WEBUI_VERSION}}) talab qilingan versiyadan (v{{REQUIRED_VERSION}}) pastroq",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfiguratsiyasi",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "Yozib olish",
"Record voice": "Ovozni yozib oling",
"Redirecting you to Open WebUI Community": "Sizni Open WebUI hamjamiyatiga yoʻnaltirmoqda",
"Redirecting you to CyberLover Community": "Sizni CyberLover hamjamiyatiga yoʻnaltirmoqda",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Bema'ni narsalarni yaratish ehtimolini kamaytiradi. Yuqori qiymat (masalan, 100) turli xil javoblar beradi, pastroq qiymat (masalan, 10) esa konservativ bo'ladi.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "O'zingizni \"Foydalanuvchi\" deb ko'rsating (masalan, \"Foydalanuvchi ispan tilini o'rganmoqda\")",
"Reference Chats": "",
@ -1434,7 +1434,7 @@
"Settings saved successfully!": "Sozlamalar muvaffaqiyatli saqlandi!",
"Share": "Ulashish",
"Share Chat": "Chatni ulashish",
"Share to Open WebUI Community": "Open WebUI hamjamiyatiga ulashing",
"Share to CyberLover Community": "CyberLover hamjamiyatiga ulashing",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Ruxsatlarni almashish",
@ -1754,7 +1754,7 @@
"You're now logged in.": "Siz endi tizimga kirdingiz.",
"Your Account": "",
"Your account status is currently pending activation.": "Hisobingiz holati hozirda faollashtirishni kutmoqda.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Sizning barcha hissangiz to'g'ridan-to'g'ri plagin ishlab chiqaruvchisiga o'tadi; Open WebUI hech qanday foizni olmaydi. Biroq, tanlangan moliyalashtirish platformasi o'z to'lovlariga ega bo'lishi mumkin.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Sizning barcha hissangiz to'g'ridan-to'g'ri plagin ishlab chiqaruvchisiga o'tadi; CyberLover hech qanday foizni olmaydi. Biroq, tanlangan moliyalashtirish platformasi o'z to'lovlariga ega bo'lishi mumkin.",
"YouTube": "Youtube",
"Youtube Language": "Youtube tili",
"Youtube Proxy URL": "Youtube proksi URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "Sao chép link",
"Copy to clipboard": "Sao chép vào clipboard",
"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS phải được cấu hình đúng bởi nhà cung cấp để cho phép các yêu cầu từ Open WebUI.",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS phải được cấu hình đúng bởi nhà cung cấp để cho phép các yêu cầu từ CyberLover.",
"Create": "Tạo",
"Create a knowledge base": "Tạo cơ sở kiến thức",
"Create a model": "Tạo model",
@ -432,7 +432,7 @@
"Discover a model": "Khám phá model",
"Discover a prompt": "Khám phá thêm prompt mới",
"Discover a tool": "Khám phá tool",
"Discover how to use Open WebUI and seek support from the community.": "Khám phá cách sử dụng Open WebUI và tìm kiếm sự hỗ trợ từ cộng đồng.",
"Discover how to use CyberLover and seek support from the community.": "Khám phá cách sử dụng CyberLover và tìm kiếm sự hỗ trợ từ cộng đồng.",
"Discover wonders": "Khám phá những điều kỳ diệu",
"Discover, download, and explore custom functions": "Tìm kiếm, tải về và khám phá thêm các function tùy chỉnh",
"Discover, download, and explore custom prompts": "Tìm kiếm, tải về và khám phá thêm các prompt tùy chỉnh",
@ -958,7 +958,7 @@
"Lost": "Thua",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
"Made by CyberLover Community": "Được tạo bởi Cộng đồng OpenWebUI",
"Make password visible in the user interface": "",
"Make sure to enclose them with": "Hãy chắc chắn bao quanh chúng bằng",
"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.",
"May": "Tháng 5",
"MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memory có thể truy cập bởi LLMs sẽ hiển thị ở đây.",
"Memory": "Memory",
@ -1139,10 +1139,10 @@
"Open new chat": "Mở nội dung chat mới",
"Open Sidebar": "",
"Open User Profile Menu": "",
"Open WebUI can use tools provided by any OpenAPI server.": "",
"Open WebUI uses faster-whisper internally.": "Open WebUI sử dụng faster-whisper bên trong.",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI sử dụng SpeechT5 và các embedding giọng nói CMU Arctic.",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Phiên bản Open WebUI (v{{OPEN_WEBUI_VERSION}}) hiện thấp hơn phiên bản bắt buộc (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "",
"CyberLover uses faster-whisper internally.": "CyberLover sử dụng faster-whisper bên trong.",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover sử dụng SpeechT5 và các embedding giọng nói CMU Arctic.",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Phiên bản CyberLover (v{{OPEN_WEBUI_VERSION}}) hiện thấp hơn phiên bản bắt buộc (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "API OpenAI",
"OpenAI API Config": "Cấu hình API OpenAI",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Ghi âm",
"Redirecting you to Open WebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
"Redirecting you to CyberLover Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "Giảm xác suất tạo ra nội dung vô nghĩa. Giá trị cao hơn (ví dụ: 100) sẽ cho câu trả lời đa dạng hơn, trong khi giá trị thấp hơn (ví dụ: 10) sẽ thận trọng hơn.",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hãy coi bản thân mình như \"Người dùng\" (ví dụ: \"Người dùng đang học Tiếng Tây Ban Nha\")",
"Reference Chats": "",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "Cài đặt đã được lưu thành công!",
"Share": "Chia sẻ",
"Share Chat": "Chia sẻ Chat",
"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
"Share to CyberLover Community": "Chia sẻ đến Cộng đồng OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Quyền Chia sẻ",
@ -1753,7 +1753,7 @@
"You're now logged in.": "Bạn đã đăng nhập.",
"Your Account": "",
"Your account status is currently pending activation.": "Tài khoản của bạn hiện đang ở trạng thái chờ kích hoạt.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; CyberLover không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
"YouTube": "Youtube",
"Youtube Language": "Ngôn ngữ Youtube",
"Youtube Proxy URL": "URL Proxy Youtube"

View file

@ -337,7 +337,7 @@
"Copy Link": "复制链接",
"Copy to clipboard": "复制到剪贴板",
"Copying to clipboard was successful!": "成功复制到剪贴板!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "为允许 Open WebUI 发出的请求,提供商必须正确配置 CORS",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "为允许 CyberLover 发出的请求,提供商必须正确配置 CORS",
"Create": "创建",
"Create a knowledge base": "创建知识库",
"Create a model": "创建模型",
@ -432,7 +432,7 @@
"Discover a model": "发现更多模型",
"Discover a prompt": "发现更多提示词",
"Discover a tool": "发现更多工具",
"Discover how to use Open WebUI and seek support from the community.": "了解如何使用 Open WebUI 并寻求社区支持",
"Discover how to use CyberLover and seek support from the community.": "了解如何使用 CyberLover 并寻求社区支持",
"Discover wonders": "追寻奇迹",
"Discover, download, and explore custom functions": "发现、下载并探索更多自定义函数",
"Discover, download, and explore custom prompts": "发现、下载并探索更多自定义提示词",
@ -958,7 +958,7 @@
"Lost": "落败",
"Low": "低",
"LTR": "从左至右",
"Made by Open WebUI Community": "由 Open WebUI 社区开发",
"Made by CyberLover Community": "由 CyberLover 社区开发",
"Make password visible in the user interface": "在用户界面中显示密码",
"Make sure to enclose them with": "确保将它们包含在内",
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可同时下载 3 个模型,请稍后重试。",
"May": "五月",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 Open WebUI 团队维护,在兼容性方面更加可靠。",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 CyberLover 团队维护,在兼容性方面更加可靠。",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示",
"Memory": "记忆",
@ -1139,10 +1139,10 @@
"Open new chat": "打开新对话",
"Open Sidebar": "展开侧边栏",
"Open User Profile Menu": "打开个人资料菜单",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。",
"Open WebUI uses faster-whisper internally.": "Open WebUI 使用内置 faster-whisper",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI 使用 SpeechT5 和 CMU Arctic speaker embedding。",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "当前 Open WebUI 版本 (v{{OPEN_WEBUI_VERSION}}) 低于所需的版本 (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover 可使用任何 OpenAPI 服务器提供的工具。",
"CyberLover uses faster-whisper internally.": "CyberLover 使用内置 faster-whisper",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover 使用 SpeechT5 和 CMU Arctic speaker embedding。",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "当前 CyberLover 版本 (v{{OPEN_WEBUI_VERSION}}) 低于所需的版本 (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API 配置",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "推理过程标签",
"Record": "录制",
"Record voice": "录音",
"Redirecting you to Open WebUI Community": "正在将您重定向到 Open WebUI 社区",
"Redirecting you to CyberLover Community": "正在将您重定向到 CyberLover 社区",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "降低生成无意义内容的概率。较高的值(如 100将生成更多样化的回答而较低的值如 10则更加保守。",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "使用\"User\" (用户) 来指代自己例如“User 正在学习西班牙语”)",
"Reference Chats": "引用其他对话",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "设置已成功保存!",
"Share": "分享",
"Share Chat": "分享对话",
"Share to Open WebUI Community": "分享到 Open WebUI 社区",
"Share to CyberLover Community": "分享到 CyberLover 社区",
"Share your background and interests": "分享您的经历和兴趣爱好",
"Shared with you": "已共享给您",
"Sharing Permissions": "共享权限",
@ -1753,7 +1753,7 @@
"You're now logged in.": "已登录。",
"Your Account": "您的账号",
"Your account status is currently pending activation.": "您的账号当前状态为待激活",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者,Open WebUI 不会收取任何分成。但众筹平台可能会有服务费。",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者,CyberLover 不会收取任何分成。但众筹平台可能会有服务费。",
"YouTube": "YouTube",
"Youtube Language": "Youtube 语言",
"Youtube Proxy URL": "Youtube 代理 URL"

View file

@ -337,7 +337,7 @@
"Copy Link": "複製連結",
"Copy to clipboard": "複製到剪貼簿",
"Copying to clipboard was successful!": "成功複製到剪貼簿!",
"CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS 必須由供應商正確設定,以允許來自 Open WebUI 的請求。",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS 必須由供應商正確設定,以允許來自 CyberLover 的請求。",
"Create": "建立",
"Create a knowledge base": "建立知識",
"Create a model": "建立模型",
@ -432,7 +432,7 @@
"Discover a model": "發掘模型",
"Discover a prompt": "發掘提示詞",
"Discover a tool": "發掘工具",
"Discover how to use Open WebUI and seek support from the community.": "探索如何使用 Open WebUI 並從社群尋求支援。",
"Discover how to use CyberLover and seek support from the community.": "探索如何使用 CyberLover 並從社群尋求支援。",
"Discover wonders": "發掘奇蹟",
"Discover, download, and explore custom functions": "發掘、下載及探索自訂函式",
"Discover, download, and explore custom prompts": "發掘、下載及探索自訂提示詞",
@ -958,7 +958,7 @@
"Lost": "落敗",
"Low": "低",
"LTR": "從左到右",
"Made by Open WebUI Community": "由 Open WebUI 社群製作",
"Made by CyberLover Community": "由 CyberLover 社群製作",
"Make password visible in the user interface": "在使用者介面中顯示密碼",
"Make sure to enclose them with": "請務必將它們放在",
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
@ -981,7 +981,7 @@
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多同時下載 3 個模型。請稍後再試。",
"May": "5 月",
"MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能其規範經常變更可能導致不相容問題。OpenAPI 規範支援直接由 Open WebUI 團隊維護,是相容性更可靠的選擇。",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the CyberLover team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能其規範經常變更可能導致不相容問題。OpenAPI 規範支援直接由 CyberLover 團隊維護,是相容性更可靠的選擇。",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "可被大型語言模型存取的記憶將顯示在此。",
"Memory": "記憶",
@ -1139,10 +1139,10 @@
"Open new chat": "開啟新的對話",
"Open Sidebar": "展開側邊欄",
"Open User Profile Menu": "開啟個人資料選單",
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。",
"Open WebUI uses faster-whisper internally.": "Open WebUI 使用內部 faster-whisper。",
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI 使用 SpeechT5 和 CMU Arctic 說話者嵌入。",
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI 版本 (v{{OPEN_WEBUI_VERSION}}) 低於所需版本 (v{{REQUIRED_VERSION}})",
"CyberLover can use tools provided by any OpenAPI server.": "CyberLover 可使用任何 OpenAPI 伺服器提供的工具。",
"CyberLover uses faster-whisper internally.": "CyberLover 使用內部 faster-whisper。",
"CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.": "CyberLover 使用 SpeechT5 和 CMU Arctic 說話者嵌入。",
"CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "CyberLover 版本 (v{{OPEN_WEBUI_VERSION}}) 低於所需版本 (v{{REQUIRED_VERSION}})",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API 設定",
@ -1262,7 +1262,7 @@
"Reasoning Tags": "推理標籤",
"Record": "錄製",
"Record voice": "錄音",
"Redirecting you to Open WebUI Community": "正在將您重導向至 Open WebUI 社群",
"Redirecting you to CyberLover Community": "正在將您重導向至 CyberLover 社群",
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "降低產生無意義內容的機率。較高的值例如100會產生更多樣化的答案而較低的值例如10會更保守。",
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "以「使用者」稱呼自己(例如:「使用者正在學習西班牙文」)",
"Reference Chats": "引用其他對話",
@ -1433,7 +1433,7 @@
"Settings saved successfully!": "設定已成功儲存!",
"Share": "分享",
"Share Chat": "分享對話",
"Share to Open WebUI Community": "分享到 Open WebUI 社群",
"Share to CyberLover Community": "分享到 CyberLover 社群",
"Share your background and interests": "分享您的背景與興趣",
"Shared with you": "分享給您",
"Sharing Permissions": "分享權限設定",
@ -1753,7 +1753,7 @@
"You're now logged in.": "您已登入。",
"Your Account": "您的帳號",
"Your account status is currently pending activation.": "您的帳號目前正在等待啟用。",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者;Open WebUI 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
"Your entire contribution will go directly to the plugin developer; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者;CyberLover 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
"YouTube": "YouTube",
"Youtube Language": "YouTube 語言",
"Youtube Proxy URL": "YouTube 代理伺服器 URL"

View file

@ -24,7 +24,7 @@
console.log('Version is lower than required');
toast.error(
$i18n.t(
'Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})',
'CyberLover version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})',
{
OPEN_WEBUI_VERSION: WEBUI_VERSION,
REQUIRED_VERSION: manifest?.required_open_webui_version ?? '0.0.0'

Some files were not shown because too many files have changed in this diff Show more