替换字符,修改名字 CyberLover -> Cakumi

This commit is contained in:
Gaofeng 2025-12-07 16:45:54 +08:00
parent e40ba0579d
commit 0389737154
108 changed files with 732 additions and 732 deletions

View file

@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Project Overview
CyberLover 是一个功能丰富的自托管 AI 平台,支持完全离线运行。核心技术栈:
Cakumi 是一个功能丰富的自托管 AI 平台,支持完全离线运行。核心技术栈:
- **前端**: SvelteKit 4 + TypeScript + Vite 5 + Tailwind CSS 4
- **后端**: Python 3.11 + FastAPI + SQLAlchemy
- **部署**: Docker 多阶段构建,生产环境前后端同容器运行

View file

@ -17,7 +17,7 @@ def version_callback(value: bool):
if value:
from open_webui.env import VERSION
typer.echo(f"CyberLover version: {VERSION}")
typer.echo(f"Cakumi 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 (CyberLover + Ollama)
# if you use all-in-one docker container (Cakumi + 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", "CyberLover")
if WEBUI_NAME != "CyberLover":
WEBUI_NAME += " (CyberLover)"
WEBUI_NAME = os.environ.get("WEBUI_NAME", "Cakumi")
if WEBUI_NAME != "Cakumi":
WEBUI_NAME += " (Cakumi)"
WEBUI_FAVICON_URL = "https://openwebui.com/favicon.png"

View file

@ -634,14 +634,14 @@ async def lifespan(app: FastAPI):
app = FastAPI(
title="CyberLover",
title="Cakumi",
docs_url="/docs" if ENV == "dev" else None,
openapi_url="/openapi.json" if ENV == "dev" else None,
redoc_url=None,
lifespan=lifespan,
)
# For CyberLover OIDC/OAuth2
# For Cakumi OIDC/OAuth2
oauth_manager = OAuthManager(app)
app.state.oauth_manager = oauth_manager
@ -2163,7 +2163,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 CyberLover.
Get current usage statistics for Cakumi.
This is an experimental endpoint and subject to change.
"""
try:

View file

@ -32,7 +32,7 @@ class ExternalWebLoader(BaseLoader):
response = requests.post(
self.external_url,
headers={
"User-Agent": "CyberLover (https://github.com/open-webui/open-webui) External Web Loader",
"User-Agent": "Cakumi (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 CyberLover naming conventions for
collection names. If CyberLover changes how it generates collection names
WARNING: This mapping relies on current Cakumi naming conventions for
collection names. If Cakumi 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 CyberLover naming conventions for
collection names. If CyberLover changes how it generates collection names
WARNING: This mapping relies on current Cakumi naming conventions for
collection names. If Cakumi 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 CyberLover Knowledge.
AWS S3 Vector integration for Cakumi 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 CyberLover metadata
# Keep only the first 10 keys, prioritizing important ones based on actual Cakumi metadata
important_keys = [
"text", # The actual document content
"file_id", # File ID
@ -570,7 +570,7 @@ class S3VectorClient(VectorDBBase):
)
# Return in GetResult format
# The CyberLover GetResult expects lists of lists, so we wrap each list
# The Cakumi 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": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "Cakumi (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": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "Cakumi (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": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "Cakumi (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": "CyberLover (https://github.com/open-webui/open-webui) RAG Bot",
"User-Agent": "Cakumi (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"CyberLover: Server Connection Error"
detail = f"Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error")
raise Exception(detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error")
raise Exception(detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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"CyberLover: Server Connection Error",
detail=f"Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if e else "Cakumi: 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="CyberLover: Server Connection Error"
status_code=500, detail="Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: 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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: Server Connection Error",
)
@ -1611,7 +1611,7 @@ async def get_openai_models(
]
except Exception as e:
log.exception(e)
error_detail = "CyberLover: Server Connection Error"
error_detail = "Cakumi: Server Connection Error"
if r is not None:
try:
res = r.json()

View file

@ -137,7 +137,7 @@ async def get_headers_and_cookies(
**(
{
"HTTP-Referer": "https://openwebui.com/",
"X-Title": "CyberLover",
"X-Title": "Cakumi",
}
if "openrouter.ai" in url
else {}
@ -351,7 +351,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 "CyberLover: Server Connection Error",
detail=detail if detail else "Cakumi: Server Connection Error",
)
except ValueError:
@ -625,7 +625,7 @@ async def get_models(
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="CyberLover: Server Connection Error"
status_code=500, detail="Cakumi: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
@ -722,12 +722,12 @@ async def verify_connection(
# ClientError covers all aiohttp requests issues
log.exception(f"Client error: {str(e)}")
raise HTTPException(
status_code=500, detail="CyberLover: Server Connection Error"
status_code=500, detail="Cakumi: Server Connection Error"
)
except Exception as e:
log.exception(f"Unexpected error: {e}")
raise HTTPException(
status_code=500, detail="CyberLover: Server Connection Error"
status_code=500, detail="Cakumi: Server Connection Error"
)
@ -1260,7 +1260,7 @@ async def generate_chat_completion(
raise HTTPException(
status_code=r.status if r else 500,
detail="CyberLover: Server Connection Error",
detail="Cakumi: Server Connection Error",
)
finally:
# === 14. 清理资源 ===
@ -1344,7 +1344,7 @@ async def embeddings(request: Request, form_data: dict, user):
log.exception(e)
raise HTTPException(
status_code=r.status if r else 500,
detail="CyberLover: Server Connection Error",
detail="Cakumi: Server Connection Error",
)
finally:
if not streaming:
@ -1437,7 +1437,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="CyberLover: Server Connection Error",
detail="Cakumi: Server Connection Error",
)
finally:
if not streaming:

View file

@ -1,5 +1,5 @@
"""
Experimental SCIM 2.0 Implementation for CyberLover
Experimental SCIM 2.0 Implementation for Cakumi
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

@ -1,6 +1,6 @@
{
"name": "CyberLover",
"short_name": "Lover",
"name": "Cakumi",
"short_name": "Cakumi",
"icons": [
{
"src": "/static/web-app-manifest-192x192.png",

View file

@ -241,7 +241,7 @@ async def get_oauth_client_info_with_dynamic_client_registration(
).rstrip("/")
oauth_client_metadata = OAuthClientMetadata(
client_name="CyberLover",
client_name="Cakumi",
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 CyberLover.
"""OpenTelemetry metrics bootstrap for Cakumi.
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 CyberLover frontend\n")
stderr.write(">>> Building Cakumi frontend\n")
npm = shutil.which("npm")
if npm is None:
raise RuntimeError(
"NodeJS `npm` is required for building CyberLover but it was not found"
"NodeJS `npm` is required for building Cakumi 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>CyberLover</title>
<title>Cakumi</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 CyberLover 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 Cakumi 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 CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi 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 CyberLover Community')}
{$i18n.t('Share to Cakumi Community')}
</div>
<div class=" self-center">

View file

@ -99,7 +99,7 @@
return null;
});
toast.success($i18n.t('Redirecting you to CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi 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 CyberLover Community')}
{$i18n.t('Made by Cakumi 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(`CyberLover uses faster-whisper internally.`)}
{$i18n.t(`Cakumi 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(`CyberLover uses SpeechT5 and CMU Arctic speaker embeddings.`)}
{$i18n.t(`Cakumi 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 CyberLover and seek support from the community.')}
{$i18n.t('Discover how to use Cakumi and seek support from the community.')}
</div>
</div>

View file

@ -562,7 +562,7 @@
>
> It looks like you have over 50 users, that usually falls under organizational usage.
>
> CyberLover is completely free to use as-is, with no restrictions or hidden limits, and we'd love to keep it that way. 🌱
> Cakumi 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'} • CyberLover</title>
<title>#{channel?.name ?? 'Channel'} • Cakumi</title>
</svelte:head>
<div

View file

@ -114,7 +114,7 @@
{#if $config?.license_metadata}
<div class="mb-2 text-xs">
{#if !$WEBUI_NAME.includes('CyberLover')}
{#if !$WEBUI_NAME.includes('Cakumi')}
<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">CyberLover (Timothy Jaeryang Baek)</a
class="underline">Cakumi (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 "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.
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 "Cakumi" 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 "CyberLover" 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 "Cakumi" 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 CyberLover.'
'CORS must be properly configured by the provider to allow requests from Cakumi.'
)}
</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 CyberLover!
Help us translate Cakumi!
</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 CyberLover.'
'CORS must be properly configured by the provider to allow requests from Cakumi.'
)}
</div>
</div>

View file

@ -424,7 +424,7 @@
keywords: [
'about app',
'about me',
'about CyberLover',
'about Cakumi',
'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 CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi Community'));
const url = 'https://openwebui.com';
// const url = 'http://localhost:5173';
@ -135,7 +135,7 @@
show = false;
}}
>
{$i18n.t('Share to CyberLover Community')}
{$i18n.t('Share to Cakumi 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('CyberLover can use tools provided by any OpenAPI server.')} <br /><a
{$i18n.t('Cakumi 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

@ -114,7 +114,7 @@
};
const shareModelHandler = async (model) => {
toast.success($i18n.t('Redirecting you to CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi 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 CyberLover Community')}
{$i18n.t('Made by Cakumi Community')}
</div>
<a

View file

@ -67,7 +67,7 @@
};
const shareHandler = async (prompt) => {
toast.success($i18n.t('Redirecting you to CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi 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 CyberLover Community')}
{$i18n.t('Made by Cakumi Community')}
</div>
<a

View file

@ -87,7 +87,7 @@
return null;
});
toast.success($i18n.t('Redirecting you to CyberLover Community'));
toast.success($i18n.t('Redirecting you to Cakumi 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 CyberLover Community')}
{$i18n.t('Made by Cakumi 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; CyberLover 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; Cakumi 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 = 'CyberLover';
export const APP_NAME = 'Cakumi';
export const WEBUI_HOSTNAME = browser ? (dev ? `${location.hostname}:8080` : ``) : '';
export const WEBUI_BASE_URL = browser ? (dev ? `http://${WEBUI_HOSTNAME}` : ``) : ``;

View file

@ -341,7 +341,7 @@
"Copy Link": "أنسخ الرابط",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "إنشاء نموذج",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "مظلم",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by CyberLover Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to CyberLover Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Redirecting you to Cakumi 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": "",
@ -1456,7 +1456,7 @@
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
"Share": "كشاركة",
"Share Chat": "مشاركة الدردشة",
"Share to CyberLover Community": "OpenWebUI شارك في مجتمع",
"Share to Cakumi Community": "OpenWebUI شارك في مجتمع",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1777,7 +1777,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "نسخ الرابط",
"Copy to clipboard": "نسخ إلى الحافظة",
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "يجب أن يتم تكوين CORS بشكل صحيح من قبل المزود للسماح بالطلبات من CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "يجب أن يتم تكوين CORS بشكل صحيح من قبل المزود للسماح بالطلبات من Cakumi.",
"Create": "إنشاء",
"Create a knowledge base": "إنشاء قاعدة معرفة",
"Create a model": "إنشاء نموذج",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "تستخدم واجهة WebUI أداة faster-whisper داخليًا.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "تستخدم WebUI نموذج SpeechT5 وتضمينات صوتية من CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "إصدار WebUI الحالي (v{{OPEN_WEBUI_VERSION}}) أقل من الإصدار المطلوب (v{{REQUIRED_VERSION}})",
"Danger Zone": "منطقة الخطر",
"Dark": "داكن",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
"Discover a tool": "اكتشف أداة",
"Discover how to use CyberLover and seek support from the community.": "اكتشف كيفية استخدام CyberLover واطلب الدعم من المجتمع.",
"Discover how to use Cakumi and seek support from the community.": "اكتشف كيفية استخدام Cakumi واطلب الدعم من المجتمع.",
"Discover wonders": "اكتشف العجائب",
"Discover, download, and explore custom functions": "اكتشف، حمّل، واستعرض الوظائف المخصصة",
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
@ -975,7 +975,7 @@
"Lost": "ضائع",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by CyberLover Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to CyberLover Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Redirecting you to Cakumi 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": "",
@ -1456,7 +1456,7 @@
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
"Share": "كشاركة",
"Share Chat": "مشاركة الدردشة",
"Share to CyberLover Community": "OpenWebUI شارك في مجتمع",
"Share to Cakumi Community": "OpenWebUI شارك في مجتمع",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1777,7 +1777,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ CyberLover أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ Cakumi أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.",
"YouTube": "Youtube",
"Youtube Language": "لغة YouTube",
"Youtube Proxy URL": "رابط بروكسي YouTube",

View file

@ -341,7 +341,7 @@
"Copy Link": "Копиране на връзка",
"Copy to clipboard": "Копиране в клипборда",
"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS трябва да бъде правилно конфигуриран от доставчика, за да позволи заявки от CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS трябва да бъде правилно конфигуриран от доставчика, за да позволи заявки от Cakumi.",
"Create": "Създай",
"Create a knowledge base": "Създаване на база знания",
"Create a model": "Създаване на модел",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi използва вътрешно по-бързо-whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi използва SpeechT5 и CMU Arctic говорителни вграждания.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версията на Cakumi (v{{OPEN_WEBUI_VERSION}}) е по-ниска от необходимата версия (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Тъмен",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Открийте модел",
"Discover a prompt": "Откриване на промпт",
"Discover a tool": "Открийте инструмент",
"Discover how to use CyberLover and seek support from the community.": "Открийте как да използвате CyberLover и потърсете подкрепа от общността.",
"Discover how to use Cakumi and seek support from the community.": "Открийте как да използвате Cakumi и потърсете подкрепа от общността.",
"Discover wonders": "Открийте чудеса",
"Discover, download, and explore custom functions": "Открийте, изтеглете и разгледайте персонализирани функции",
"Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове",
@ -975,7 +975,7 @@
"Lost": "Изгубено",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Направено от OpenWebUI общността",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
"Memory": "Памет",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Запиши",
"Record voice": "Записване на глас",
"Redirecting you to CyberLover Community": "Пренасочване към OpenWebUI общността",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Настройките са запазени успешно!",
"Share": "Подели",
"Share Chat": "Подели Чат",
"Share to CyberLover Community": "Споделете с OpenWebUI Общността",
"Share to Cakumi Community": "Споделете с OpenWebUI Общността",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Права за споделяне",
@ -1773,7 +1773,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; CyberLover не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; Cakumi не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
"YouTube": "Youtube",
"Youtube Language": "Youtube език",
"Youtube Proxy URL": "Youtube Прокси URL",

View file

@ -341,7 +341,7 @@
"Copy Link": "লিংক কপি করুন",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "একটি মডেল তৈরি করুন",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "ডার্ক",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
"Memory": "মেমোরি",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ভয়েস রেকর্ড করুন",
"Redirecting you to CyberLover Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
"Share": "শেয়ার করুন",
"Share Chat": "চ্যাট শেয়ার করুন",
"Share to CyberLover Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
"Share to Cakumi Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
"Copying to clipboard was successful!": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱེད་པ་ལེགས་འགྲུབ་བྱུང་།",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLover ནས་རེ་ཞུ་གཏོང་བར་གནང་བ་སྤྲོད་ཆེད། CORS ངེས་པར་དུ་མཁོ་སྤྲོད་པས་འགྲིག་པོར་སྒྲིག་འགོད་བྱེད་དགོས།",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Cakumi ནས་རེ་ཞུ་གཏོང་བར་གནང་བ་སྤྲོད་ཆེད། CORS ངེས་པར་དུ་མཁོ་སྤྲོད་པས་འགྲིག་པོར་སྒྲིག་འགོད་བྱེད་དགོས།",
"Create": "གསར་བཟོ།",
"Create a knowledge base": "ཤེས་བྱའི་རྟེན་གཞི་ཞིག་གསར་བཟོ་བྱེད་པ།",
"Create a model": "དཔེ་དབྱིབས་ཤིག་གསར་བཟོ་བྱེད་པ།",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}}) ལས་དམའ་བ།",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi ཡིས་ནང་ཁུལ་དུ་ faster-whisper བེད་སྤྱོད་བྱེད།",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi ཡིས་ SpeechT5 དང་ CMU Arctic གཏམ་བཤད་པའི་ཚུད་འཇུག་བེད་སྤྱོད་བྱེད།",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi པར་གཞི། (v{{OPEN_WEBUI_VERSION}}) དེ་དགོས་ངེས་ཀྱི་པར་གཞི་ (v{{REQUIRED_VERSION}}) ལས་དམའ་བ།",
"Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།",
"Dark": "ནག་པོ།",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "དཔེ་དབྱིབས་ཤིག་རྙེད་པ།",
"Discover a prompt": "འགུལ་སློང་ཞིག་རྙེད་པ།",
"Discover a tool": "ལག་ཆ་ཞིག་རྙེད་པ།",
"Discover how to use CyberLover and seek support from the community.": "CyberLover ཇི་ལྟར་བེད་སྤྱོད་གཏོང་ཚུལ་རྙེད་པ་དང་སྤྱི་ཚོགས་ནས་རྒྱབ་སྐྱོར་འཚོལ་བ།",
"Discover how to use Cakumi and seek support from the community.": "Cakumi ཇི་ལྟར་བེད་སྤྱོད་གཏོང་ཚུལ་རྙེད་པ་དང་སྤྱི་ཚོགས་ནས་རྒྱབ་སྐྱོར་འཚོལ་བ།",
"Discover wonders": "ངོ་མཚར་རྙེད་པ།",
"Discover, download, and explore custom functions": "སྲོལ་བཟོས་ལས་འགན་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
"Discover, download, and explore custom prompts": "སྲོལ་བཟོས་འགུལ་སློང་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
@ -975,7 +975,7 @@
"Lost": "བརླགས།",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "CyberLover སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
"Made by Cakumi Community": "Cakumi སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
"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 བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།",
"Memory": "དྲན་ཤེས།",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
"Redirecting you to CyberLover Community": "ཁྱེད་ CyberLover སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
"Redirecting you to Cakumi Community": "ཁྱེད་ Cakumi སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
"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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "སྒྲིག་འགོད་ལེགས་པར་ཉར་ཚགས་བྱས།",
"Share": "མཉམ་སྤྱོད།",
"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
"Share to CyberLover Community": "CyberLover སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
"Share to Cakumi Community": "Cakumi སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
@ -1772,7 +1772,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། CyberLover ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། Cakumi ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།",
"YouTube": "Youtube",
"Youtube Language": "Youtube སྐད་ཡིག",
"Youtube Proxy URL": "Youtube Proxy URL",

View file

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Izradite model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Tamno",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Otkrijte model",
"Discover a prompt": "Otkrijte prompt",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "Saznaj kako koristiti CyberLover i nadji podrsku od zajednice",
"Discover how to use Cakumi and seek support from the community.": "Saznaj kako koristiti Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Izradio OpenWebUI Community",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to CyberLover Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Postavke su uspješno spremljene!",
"Share": "Podijeli",
"Share Chat": "Podijeli razgovor",
"Share to CyberLover Community": "Podijeli u OpenWebUI zajednici",
"Share to Cakumi Community": "Podijeli u OpenWebUI zajednici",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "CORS ha de ser configurat correctament pel proveïdor per permetre les sol·licituds d'CyberLover",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS ha de ser configurat correctament pel proveïdor per permetre les sol·licituds d'Cakumi",
"Create": "Crear",
"Create a knowledge base": "Crear una base de coneixement",
"Create a model": "Crear un model",
@ -370,10 +370,10 @@
"Custom description enabled": "Descripcions personalitzades habilitades",
"Custom Parameter Name": "Nom del paràmetre personalitzat",
"Custom Parameter Value": "Valor del paràmetre personalitzat",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi pot utilitzar eines de servidors OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi utilitza faster-whisper internament.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi utilitza incrustacions de SpeechT5 i CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versió d'Cakumi (v{{OPEN_WEBUI_VERSION}}) és inferior a la versió requerida (v{{REQUIRED_VERSION}})",
"Danger Zone": "Zona de perill",
"Dark": "Fosc",
"Data Controls": "Controls de dades",
@ -442,7 +442,7 @@
"Discover a model": "Descobrir un model",
"Discover a prompt": "Descobrir una indicació",
"Discover a tool": "Descobrir una eina",
"Discover how to use CyberLover and seek support from the community.": "Descobreix com utilitzar CyberLover i demana suport a la comunitat.",
"Discover how to use Cakumi and seek support from the community.": "Descobreix com utilitzar Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdut",
"Low": "Baix",
"LTR": "LTR",
"Made by CyberLover Community": "Creat per la Comunitat OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 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.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi 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'Cakumi, 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Etiqueta de raonament",
"Record": "Enregistrar",
"Record voice": "Enregistrar la veu",
"Redirecting you to CyberLover Community": "Redirigint-te a la comunitat OpenWebUI",
"Redirecting you to Cakumi 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",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Les preferències s'han desat correctament",
"Share": "Compartir",
"Share Chat": "Compartir el xat",
"Share to CyberLover Community": "Compartir amb la comunitat OpenWebUI",
"Share to Cakumi 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",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Ngitngit",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "",
"Discover a prompt": "Pagkaplag usa ka prompt",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by CyberLover Community": "Gihimo sa komunidad sa OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Irekord ang tingog",
"Redirecting you to CyberLover Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Malampuson nga na-save ang mga setting!",
"Share": "",
"Share Chat": "",
"Share to CyberLover Community": "Ipakigbahin sa komunidad sa OpenWebUI",
"Share to Cakumi Community": "Ipakigbahin sa komunidad sa OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "CORS musí být správně nakonfigurován poskytovatelem, aby povolil požadavky z CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS musí být správně nakonfigurován poskytovatelem, aby povolil požadavky z Cakumi.",
"Create": "Vytvořit",
"Create a knowledge base": "Vytvořit znalostní bázi",
"Create a model": "Vytvořit model",
@ -370,10 +370,10 @@
"Custom description enabled": "Vlastní popis povolen",
"Custom Parameter Name": "Název vlastního parametru",
"Custom Parameter Value": "Hodnota vlastního parametru",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi interně používá faster-whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi používá SpeechT5 a vektorizaci mluvčích CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verze Cakumi (v{{OPEN_WEBUI_VERSION}}) je nižší než požadovaná verze (v{{REQUIRED_VERSION}})",
"Danger Zone": "Nebezpečná zóna",
"Dark": "Tmavý",
"Data Controls": "Správa dat",
@ -442,7 +442,7 @@
"Discover a model": "Objevit model",
"Discover a prompt": "Objevit instrukci",
"Discover a tool": "Objevit nástroj",
"Discover how to use CyberLover and seek support from the community.": "Zjistěte, jak používat CyberLover, a vyhledejte podporu od komunity.",
"Discover how to use Cakumi and seek support from the community.": "Zjistěte, jak používat Cakumi, 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",
@ -975,7 +975,7 @@
"Lost": "Prohrál",
"Low": "Nízká",
"LTR": "LTR",
"Made by CyberLover Community": "Vytvořeno komunitou CyberLover",
"Made by Cakumi Community": "Vytvořeno komunitou Cakumi",
"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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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ěť",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "reasoning tags",
"Record": "Nahrát",
"Record voice": "Nahrát hlas",
"Redirecting you to CyberLover Community": "Přesměrovávám vás do komunity CyberLover",
"Redirecting you to Cakumi Community": "Přesměrovávám vás do komunity Cakumi",
"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",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Nastavení byla úspěšně uložena!",
"Share": "Sdílet",
"Share Chat": "Sdílet konverzaci",
"Share to CyberLover Community": "Sdílet s komunitou CyberLover",
"Share to Cakumi Community": "Sdílet s komunitou Cakumi",
"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í",
@ -1775,7 +1775,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,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 CyberLover.": "CORS skal være korrekt konfigureret af udbyderen for at tillade anmodninger fra CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS skal være korrekt konfigureret af udbyderen for at tillade anmodninger fra Cakumi.",
"Create": "Opret",
"Create a knowledge base": "Opret en videnbase",
"Create a model": "Lav en model",
@ -370,10 +370,10 @@
"Custom description enabled": "Brugerdefineret beskrivelse aktiveret",
"Custom Parameter Name": "Brugerdefineret parameternavn",
"Custom Parameter Value": "Brugerdefineret parameterværdi",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi kan bruge værktøjer leveret af enhver OpenAPI server.",
"Cakumi uses faster-whisper internally.": "Cakumi bruger faster-whisper internt.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi bruger SpeechT5 og CMU Arctic taler embeddings.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi-version (v{{OPEN_WEBUI_VERSION}}) er lavere end den krævede version (v{{REQUIRED_VERSION}})",
"Danger Zone": "Danger Zone",
"Dark": "Mørk",
"Data Controls": "",
@ -442,7 +442,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 CyberLover and seek support from the community.": "Opdag hvordan du bruger CyberLover og søg støtte fra fællesskabet.",
"Discover how to use Cakumi and seek support from the community.": "Opdag hvordan du bruger Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Tabt",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Lavet af OpenWebUI Community",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Optag",
"Record voice": "Optag stemme",
"Redirecting you to CyberLover Community": "Omdirigerer dig til OpenWebUI Community",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Indstillinger gemt!",
"Share": "Del",
"Share Chat": "Del chat",
"Share to CyberLover Community": "Del til OpenWebUI Community",
"Share to Cakumi Community": "Del til OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Delingstilladelser",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele dit bidrag går direkte til plugin-udvikleren; Cakumi 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

@ -341,7 +341,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 CyberLover.": "CORS muss vom Anbieter korrekt konfiguriert werden, um Anfragen von CyberLover zuzulassen.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS muss vom Anbieter korrekt konfiguriert werden, um Anfragen von Cakumi zuzulassen.",
"Create": "Erstellen",
"Create a knowledge base": "Wissensspeicher erstellen",
"Create a model": "Modell erstellen",
@ -370,10 +370,10 @@
"Custom description enabled": "Benutzerdefinierte Beschreibung aktiviert",
"Custom Parameter Name": "Benutzerdefinierter Parameter Name",
"Custom Parameter Value": "Benutzerdefinierter Parameter Wert",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
"Cakumi uses faster-whisper internally.": "Cakumi verwendet intern faster-whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi verwendet SpeechT5 und CMU Arctic Sprecher-Embeddings.",
"Cakumi 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}})",
"Danger Zone": "Gefahrenzone",
"Dark": "Dunkel",
"Data Controls": "Datenverwaltung",
@ -442,7 +442,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 CyberLover and seek support from the community.": "Entdecken Sie, wie Sie CyberLover nutzen und Unterstützung von der Community erhalten können.",
"Discover how to use Cakumi and seek support from the community.": "Entdecken Sie, wie Sie Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Verloren",
"Low": "Niedrig",
"LTR": "LTR",
"Made by CyberLover Community": "Von der OpenWebUI-Community",
"Made by Cakumi 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.",
@ -998,7 +998,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 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.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Reasoning Tags",
"Record": "Aufzeichnen",
"Record voice": "Stimme aufnehmen",
"Redirecting you to CyberLover Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
"Redirecting you to Cakumi 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",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
"Share": "Teilen",
"Share Chat": "Chat teilen",
"Share to CyberLover Community": "Mit OpenWebUI Community teilen",
"Share to Cakumi 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",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Dark",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "",
"Discover a prompt": "Discover a prompt",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by CyberLover Community": "Made by CyberLover Community",
"Made by Cakumi Community": "Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Record Bark",
"Redirecting you to CyberLover Community": "Redirecting you to CyberLover Community",
"Redirecting you to Cakumi Community": "Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Settings saved successfully! Very success!",
"Share": "",
"Share Chat": "",
"Share to CyberLover Community": "Share to CyberLover Community much community",
"Share to Cakumi Community": "Share to Cakumi Community much community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "Αντιγραφή Συνδέσμου",
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
"Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "Δημιουργία",
"Create a knowledge base": "Δημιουργία βάσης γνώσης",
"Create a model": "Δημιουργία μοντέλου",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Το Cakumi χρησιμοποιεί το faster-whisper εσωτερικά.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Το Cakumi χρησιμοποιεί τα SpeechT5 και CMU Arctic embeddings ομιλητών.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Η έκδοση Cakumi (v{{OPEN_WEBUI_VERSION}}) είναι χαμηλότερη από την απαιτούμενη έκδοση (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Σκούρο",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Ανακάλυψη μοντέλου",
"Discover a prompt": "Ανακάλυψη προτροπής",
"Discover a tool": "Ανακάλυψη εργαλείου",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "Ανακάλυψη θαυμάτων",
"Discover, download, and explore custom functions": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες λειτουργίες",
"Discover, download, and explore custom prompts": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες προτροπές",
@ -975,7 +975,7 @@
"Lost": "Χαμένος",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.",
"Memory": "Μνήμη",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Εγγραφή φωνής",
"Redirecting you to CyberLover Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Οι Ρυθμίσεις αποθηκεύτηκαν με επιτυχία!",
"Share": "Κοινή Χρήση",
"Share Chat": "Κοινή Χρήση Συνομιλίας",
"Share to CyberLover Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
"Share to Cakumi Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το CyberLover δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Cakumi δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by CyberLover Community": "",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to CyberLover Community": "",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to CyberLover Community": "",
"Share to Cakumi Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by CyberLover Community": "",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to CyberLover Community": "",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to CyberLover Community": "",
"Share to Cakumi Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "El protocolo CORS debe estar configurado correctamente por el proveedor para permitir solicitudes desde CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "El protocolo CORS debe estar configurado correctamente por el proveedor para permitir solicitudes desde Cakumi.",
"Create": "Crear",
"Create a knowledge base": "Crear Base de Conocimiento",
"Create a model": "Crear Modelo",
@ -370,10 +370,10 @@
"Custom description enabled": "Descripción personalizada activada",
"Custom Parameter Name": "Nombre del Parámetro Personalizado",
"Custom Parameter Value": "Valor del Parámetro Personalizado",
"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",
"Cakumi can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
"Cakumi uses faster-whisper internally.": "Open-WebUI usa faster-whisper internamente.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Open-WebUI usa SpeechT5 y la incrustración de locutores de CMU Arctic.",
"Cakumi 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",
"Danger Zone": "Zona Peligrosa",
"Dark": "Oscuro",
"Data Controls": "Controles de Datos",
@ -442,7 +442,7 @@
"Discover a model": "Descubrir Modelos",
"Discover a prompt": "Descubrir Indicadores",
"Discover a tool": "Descubrir Herramientas",
"Discover how to use CyberLover and seek support from the community.": "Descubre cómo usar CyberLover y busca Soporte Comunitario.",
"Discover how to use Cakumi and seek support from the community.": "Descubre cómo usar Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdido",
"Low": "Bajo",
"LTR": "LTR",
"Made by CyberLover Community": "Creado por la Comunidad Open-WebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 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.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Etiquetas de Razonamiento",
"Record": "Grabar",
"Record voice": "Grabar voz",
"Redirecting you to CyberLover Community": "Redireccionando a la Comunidad Open-WebUI",
"Redirecting you to Cakumi 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",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "¡Ajustes guardados correctamente!",
"Share": "Compartir",
"Share Chat": "Compartir Chat",
"Share to CyberLover Community": "Compartir con la Comunidad Open-WebUI",
"Share to Cakumi 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",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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

@ -341,7 +341,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 CyberLover.": "Teenusepakkuja peab nõuetekohaselt konfigureerima CORS-i, et lubada päringuid CyberLover-lt.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Teenusepakkuja peab nõuetekohaselt konfigureerima CORS-i, et lubada päringuid Cakumi-lt.",
"Create": "Loo",
"Create a knowledge base": "Loo teadmiste baas",
"Create a model": "Loo mudel",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi kasutab sisemiselt faster-whisper'it.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi kasutab SpeechT5 ja CMU Arctic kõneleja manustamisi.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi versioon (v{{OPEN_WEBUI_VERSION}}) on madalam kui nõutav versioon (v{{REQUIRED_VERSION}})",
"Danger Zone": "Ohutsoon",
"Dark": "Tume",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Avasta mudel",
"Discover a prompt": "Avasta vihje",
"Discover a tool": "Avasta tööriist",
"Discover how to use CyberLover and seek support from the community.": "Avastage, kuidas kasutada CyberLover-d ja otsige tuge kogukonnalt.",
"Discover how to use Cakumi and seek support from the community.": "Avastage, kuidas kasutada Cakumi-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",
@ -975,7 +975,7 @@
"Lost": "Kaotanud",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Loodud CyberLover kogukonna poolt",
"Made by Cakumi Community": "Loodud Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Salvesta hääl",
"Redirecting you to CyberLover Community": "Suunamine CyberLover kogukonda",
"Redirecting you to Cakumi Community": "Suunamine Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Seaded edukalt salvestatud!",
"Share": "Jaga",
"Share Chat": "Jaga vestlust",
"Share to CyberLover Community": "Jaga CyberLover kogukonnaga",
"Share to Cakumi Community": "Jaga Cakumi kogukonnaga",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Kogu teie toetus läheb otse pistikprogrammi arendajale; Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "Sortu",
"Create a knowledge base": "Sortu ezagutza-base bat",
"Create a model": "Sortu eredu bat",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi-k faster-whisper erabiltzen du barnean.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi-k SpeechT5 eta CMU Arctic hiztun txertaketak erabiltzen ditu.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi bertsioa (v{{OPEN_WEBUI_VERSION}}) beharrezko bertsioa (v{{REQUIRED_VERSION}}) baino baxuagoa da",
"Danger Zone": "",
"Dark": "Iluna",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Aurkitu eredu bat",
"Discover a prompt": "Aurkitu prompt bat",
"Discover a tool": "Aurkitu tresna bat",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Galduta",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "OpenWebUI Komunitateak egina",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Grabatu ahotsa",
"Redirecting you to CyberLover Community": "OpenWebUI Komunitatera berbideratzen",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Ezarpenak ongi gorde dira!",
"Share": "Partekatu",
"Share Chat": "Partekatu txata",
"Share to CyberLover Community": "Partekatu OpenWebUI komunitatearekin",
"Share to Cakumi Community": "Partekatu OpenWebUI komunitatearekin",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Cakumi-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "کپی لینک",
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS باید توسط ارائه\u200cدهنده به درستی پیکربندی شود تا درخواست\u200cها از CyberLover مجاز باشند.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS باید توسط ارائه\u200cدهنده به درستی پیکربندی شود تا درخواست\u200cها از Cakumi مجاز باشند.",
"Create": "ایجاد",
"Create a knowledge base": "ایجاد یک پایگاه دانش",
"Create a model": "ایجاد یک مدل",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}}) است",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
"Cakumi uses faster-whisper internally.": "Cakumi به صورت داخلی از faster-whisper استفاده می\u200cکند.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi از SpeechT5 و جاسازی\u200cهای گوینده CMU Arctic استفاده می\u200cکند.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "نسخه Cakumi (v{{OPEN_WEBUI_VERSION}}) پایین\u200cتر از نسخه مورد نیاز (v{{REQUIRED_VERSION}}) است",
"Danger Zone": "منطقه خطر",
"Dark": "تیره",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "کشف یک مدل",
"Discover a prompt": "یک اعلان را کشف کنید",
"Discover a tool": "کشف یک ابزار",
"Discover how to use CyberLover and seek support from the community.": "نحوه استفاده از CyberLover را کشف کنید و از انجمن پشتیبانی بگیرید.",
"Discover how to use Cakumi and seek support from the community.": "نحوه استفاده از Cakumi را کشف کنید و از انجمن پشتیبانی بگیرید.",
"Discover wonders": "کشف شگفتی\u200cها",
"Discover, download, and explore custom functions": "کشف، دانلود و کاوش توابع سفارشی",
"Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید",
@ -975,7 +975,7 @@
"Lost": "گم شده",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "ساخته شده توسط OpenWebUI Community",
"Made by Cakumi 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 صادر کنید.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.",
"Memory": "حافظه",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ضبط صدا",
"Redirecting you to CyberLover Community": "در حال هدایت به OpenWebUI Community",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
"Share": "اشتراک\u200cگذاری",
"Share Chat": "اشتراک\u200cگذاری چت",
"Share to CyberLover Community": "اشتراک گذاری با OpenWebUI Community",
"Share to Cakumi Community": "اشتراک گذاری با OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
@ -1773,7 +1773,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ CyberLover هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ Cakumi هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.",
"YouTube": "یوتیوب",
"Youtube Language": "زبان یوتیوب",
"Youtube Proxy URL": "آدرس پراکسی یوتیوب",

View file

@ -341,7 +341,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 CyberLover.": "CORS täytyy olla konfiguroitu palveluntarjoajan toimesta pyyntöjen hyväksymiseksi CyberLover:sta.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS täytyy olla konfiguroitu palveluntarjoajan toimesta pyyntöjen hyväksymiseksi Cakumi:sta.",
"Create": "Luo",
"Create a knowledge base": "Luo tietokanta",
"Create a model": "Luo malli",
@ -370,10 +370,10 @@
"Custom description enabled": "Muokautetut kuvaukset käytössä",
"Custom Parameter Name": "Mukautetun parametrin nimi",
"Custom Parameter Value": "Mukautetun parametrin arvo",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
"Cakumi uses faster-whisper internally.": "Cakumi käyttää faster-whisperia sisäisesti.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi -versio (v{{OPEN_WEBUI_VERSION}}) on alempi kuin vaadittu versio (v{{REQUIRED_VERSION}})",
"Danger Zone": "Vaara-alue",
"Dark": "Tumma",
"Data Controls": "Datan hallinta",
@ -442,7 +442,7 @@
"Discover a model": "Tutustu malliin",
"Discover a prompt": "Löydä kehote",
"Discover a tool": "Löydä työkalu",
"Discover how to use CyberLover and seek support from the community.": "Tutustu CyberLover:n käyttöön ja pyydä tukea yhteisöltä.",
"Discover how to use Cakumi and seek support from the community.": "Tutustu Cakumi: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",
@ -975,7 +975,7 @@
"Lost": "Mennyt",
"Low": "Matala",
"LTR": "LTR",
"Made by CyberLover Community": "Tehnyt OpenWebUI-yhteisö",
"Made by Cakumi 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.",
@ -998,7 +998,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 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.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi 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 Cakumi -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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Päättely tagit",
"Record": "Nauhoita",
"Record voice": "Nauhoita ääntä",
"Redirecting you to CyberLover Community": "Ohjataan sinut OpenWebUI-yhteisöön",
"Redirecting you to Cakumi 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",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Asetukset tallennettu onnistuneesti!",
"Share": "Jaa",
"Share Chat": "Jaa keskustelu",
"Share to CyberLover Community": "Jaa OpenWebUI-yhteisöön",
"Share to Cakumi Community": "Jaa OpenWebUI-yhteisöön",
"Share your background and interests": "Jaa taustasi ja kiinnostuksen kohteesi",
"Shared with you": "Jaettu kanssasi",
"Sharing Permissions": "Jako oikeudet",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Cakumi 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

@ -341,7 +341,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 CyberLover.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Cakumi.",
"Create": "Créer",
"Create a knowledge base": "Créer une base de connaissances",
"Create a model": "Créer un modèle",
@ -370,10 +370,10 @@
"Custom description enabled": "Description personnalisée activée",
"Custom Parameter Name": "Nom du réglage personnalisé",
"Custom Parameter Value": "Valeur du réglage personnalisé",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi utilise faster-whisper en interne.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Cakumi (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"Danger Zone": "Zone de danger",
"Dark": "Sombre",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Trouvez un modèle",
"Discover a prompt": "Trouvez un prompt",
"Discover a tool": "Trouvez un outil",
"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 how to use Cakumi and seek support from the community.": "Découvrez comment utiliser Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdu",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Réalisé par la communauté OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to CyberLover Community": "Redirection vers la communauté OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Réglages enregistrés avec succès !",
"Share": "Partager",
"Share Chat": "Partage de conversation",
"Share to CyberLover Community": "Partager avec la communauté OpenWebUI",
"Share to Cakumi Community": "Partager avec la communauté OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Autorisation de partage",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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 ; Cakumi 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

@ -341,7 +341,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 CyberLover.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Cakumi.",
"Create": "Créer",
"Create a knowledge base": "Créer une base de connaissances",
"Create a model": "Créer un modèle",
@ -370,10 +370,10 @@
"Custom description enabled": "Description personnalisée activée",
"Custom Parameter Name": "Nom du réglage personnalisé",
"Custom Parameter Value": "Valeur du réglage personnalisé",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi utilise faster-whisper en interne.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi utilise SpeechT5 et les embeddings de locuteur CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Cakumi (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})",
"Danger Zone": "Zone de danger",
"Dark": "Sombre",
"Data Controls": "Contrôles des données",
@ -442,7 +442,7 @@
"Discover a model": "Trouvez un modèle",
"Discover a prompt": "Trouvez un prompt",
"Discover a tool": "Trouvez un outil",
"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 how to use Cakumi and seek support from the community.": "Découvrez comment utiliser Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdu",
"Low": "Faible",
"LTR": "LTR",
"Made by CyberLover Community": "Réalisé par la communauté OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Mots-clés de raisonnement",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to CyberLover Community": "Redirection vers la communauté OpenWebUI",
"Redirecting you to Cakumi 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",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Réglages enregistrés avec succès !",
"Share": "Partager",
"Share Chat": "Partage de conversation",
"Share to CyberLover Community": "Partager avec la communauté OpenWebUI",
"Share to Cakumi 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",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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 ; Cakumi 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

@ -341,7 +341,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 CyberLover.": "O CORS debe estar debidamente configurado polo provedor para permitir solicitudes desde CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "O CORS debe estar debidamente configurado polo provedor para permitir solicitudes desde Cakumi.",
"Create": "Xerar",
"Create a knowledge base": "Xerar base de conocemento",
"Create a model": "Xerar un modelo",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi usa faster-whisper internamente.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi usa SpeechT5 y embeddings de locutores CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Aversión de Cakumi (v{{OPEN_WEBUI_VERSION}}) es inferior a aversión requerida (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Oscuro",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Descubrir un modelo",
"Discover a prompt": "Descubre un Prompt",
"Discover a tool": "Descubre unha ferramenta",
"Discover how to use CyberLover and seek support from the community.": "Descubra como usar CyberLover e busque apoio na comunidade.",
"Discover how to use Cakumi and seek support from the community.": "Descubra como usar Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdido",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Feito por a comunidad de OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Grabar voz",
"Redirecting you to CyberLover Community": "Redireccionándote a a comunidad OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "¡Configuración gardada con éxito!",
"Share": "Compartir",
"Share Chat": "Compartir Chat",
"Share to CyberLover Community": "Compartir coa comunidads OpenWebUI",
"Share to Cakumi Community": "Compartir coa comunidads OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "העתק קישור",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "יצירת מודל",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "כהה",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "נוצר על ידי קהילת OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
"Memory": "זיכרון",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "הקלט קול",
"Redirecting you to CyberLover Community": "מפנה אותך לקהילת OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
"Share": "שתף",
"Share Chat": "שתף צ'אט",
"Share to CyberLover Community": "שתף לקהילת OpenWebUI",
"Share to Cakumi Community": "שתף לקהילת OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "लिंक को कॉपी करें",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "एक मॉडल बनाएं",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "डार्क",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "एक मॉडल की खोज करें",
"Discover a prompt": "प्रॉम्प्ट खोजें",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "OpenWebUI समुदाय द्वारा निर्मित",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
"Memory": "मेमोरी",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "आवाज रिकॉर्ड करना",
"Redirecting you to CyberLover Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!",
"Share": "साझा करें",
"Share Chat": "चैट साझा करें",
"Share to CyberLover Community": "OpenWebUI समुदाय में साझा करें",
"Share to Cakumi Community": "OpenWebUI समुदाय में साझा करें",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Izradite model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Tamno",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Otkrijte model",
"Discover a prompt": "Otkrijte prompt",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Izradio OpenWebUI Community",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to CyberLover Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Postavke su uspješno spremljene!",
"Share": "Podijeli",
"Share Chat": "Podijeli razgovor",
"Share to CyberLover Community": "Podijeli u OpenWebUI zajednici",
"Share to Cakumi Community": "Podijeli u OpenWebUI zajednici",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "A CORS-t megfelelően kell konfigurálnia a szolgáltatónak, hogy engedélyezze az CyberLover-ból érkező kéréseket.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "A CORS-t megfelelően kell konfigurálnia a szolgáltatónak, hogy engedélyezze az Cakumi-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",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Az Cakumi bármely OpenAPI szerver által biztosított eszközöket használhat.",
"Cakumi uses faster-whisper internally.": "Az Cakumi belsőleg a faster-whispert használja.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Az Cakumi a SpeechT5-öt és a CMU Arctic hangszóró beágyazásokat használja.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Az Cakumi verzió (v{{OPEN_WEBUI_VERSION}}) alacsonyabb, mint a szükséges verzió (v{{REQUIRED_VERSION}})",
"Danger Zone": "Veszélyzóna",
"Dark": "Sötét",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Modell felfedezése",
"Discover a prompt": "Prompt felfedezése",
"Discover a tool": "Eszköz felfedezése",
"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 how to use Cakumi and seek support from the community.": "Fedezd fel, hogyan használd az Cakumi-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",
@ -975,7 +975,7 @@
"Lost": "Elveszett",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Az OpenWebUI közösség által készítve",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Hang rögzítése",
"Redirecting you to CyberLover Community": "Átirányítás az OpenWebUI közösséghez",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Beállítások sikeresen mentve!",
"Share": "Megosztás",
"Share Chat": "Beszélgetés megosztása",
"Share to CyberLover Community": "Megosztás az OpenWebUI közösséggel",
"Share to Cakumi Community": "Megosztás az OpenWebUI közösséggel",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Megosztási engedélyek",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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 Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Buat model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Gelap",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Menemukan sebuah model",
"Discover a prompt": "Temukan petunjuk",
"Discover a tool": "Menemukan alat",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Dibuat oleh Komunitas OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Rekam suara",
"Redirecting you to CyberLover Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "Pengaturan berhasil disimpan!",
"Share": "Berbagi",
"Share Chat": "Bagikan Obrolan",
"Share to CyberLover Community": "Bagikan ke Komunitas OpenWebUI",
"Share to Cakumi Community": "Bagikan ke Komunitas OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1772,7 +1772,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "Ní mór don soláthraí CORS a chumrú i gceart chun iarratais ó CyberLover a cheadú.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Ní mór don soláthraí CORS a chumrú i gceart chun iarratais ó Cakumi a cheadú.",
"Create": "Cruthaigh",
"Create a knowledge base": "Cruthaigh bonn eolais",
"Create a model": "Cruthaigh samhail",
@ -370,10 +370,10 @@
"Custom description enabled": "Cur síos saincheaptha cumasaithe",
"Custom Parameter Name": "Ainm Paraiméadair Saincheaptha",
"Custom Parameter Value": "Luach Paraiméadair Saincheaptha",
"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}})",
"Cakumi 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.",
"Cakumi uses faster-whisper internally.": "Úsáideann Cakumi cogar níos tapúla go hinmheánach.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Cakumi úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.",
"Cakumi 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}})",
"Danger Zone": "Crios Contúirte",
"Dark": "Dorcha",
"Data Controls": "Rialuithe Sonraí",
@ -442,7 +442,7 @@
"Discover a model": "Faigh amach samhail",
"Discover a prompt": "Faigh amach leid",
"Discover a tool": "Faigh amach uirlis",
"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 how to use Cakumi and seek support from the community.": "Faigh amach conas Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Cailleadh",
"Low": "Íseal",
"LTR": "LTR",
"Made by CyberLover Community": "Déanta ag OpenWebUI Community",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Clibeanna Réasúnaíochta",
"Record": "Taifead",
"Record voice": "Taifead guth",
"Redirecting you to CyberLover Community": "Tú a atreorú chuig OpenWebUI Community",
"Redirecting you to Cakumi 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",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
"Share": "Comhroinn",
"Share Chat": "Comhroinn Comhrá",
"Share to CyberLover Community": "Comhroinn le Pobal OpenWebUI",
"Share to Cakumi 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",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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 Cakumi 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

@ -341,7 +341,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 CyberLover.": "CORS deve essere configurato correttamente dal fornitore per consentire le richieste da CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS deve essere configurato correttamente dal fornitore per consentire le richieste da Cakumi.",
"Create": "Crea",
"Create a knowledge base": "Crea una base di conoscenze",
"Create a model": "Creare un modello",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "Nome parametro personalizzato",
"Custom Parameter Value": "Valore parametro personalizzato",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi può utilizzare tool forniti da qualsiasi server OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi utilizza faster-whisper internamente.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi utilizza le incorporazioni vocali di SpeechT5 e CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versione di Cakumi (v{{OPEN_WEBUI_VERSION}}) è inferiore alla versione richiesta (v{{REQUIRED_VERSION}})",
"Danger Zone": "Zona di pericolo",
"Dark": "Scuro",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Scopri un modello",
"Discover a prompt": "Scopri un prompt",
"Discover a tool": "Scopri uno strumento",
"Discover how to use CyberLover and seek support from the community.": "Scopri come utilizzare CyberLover e cerca supporto dalla community.",
"Discover how to use Cakumi and seek support from the community.": "Scopri come utilizzare Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perso",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Realizzato dalla Comunità CyberLover",
"Made by Cakumi Community": "Realizzato dalla Comunità Cakumi",
"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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Registra",
"Record voice": "Registra voce",
"Redirecting you to CyberLover Community": "Reindirizzamento alla comunità OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Impostazioni salvate con successo!",
"Share": "Condividi",
"Share Chat": "Condividi chat",
"Share to CyberLover Community": "Condividi con la comunità OpenWebUI",
"Share to Cakumi Community": "Condividi con la comunità OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Condivisione dei permessi",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "リンクをコピー",
"Copy to clipboard": "クリップボードにコピー",
"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUIからのリクエストを許可するために、プロバイダーによってCORSが適切に設定されている必要があります。",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Open WebUIからのリクエストを許可するために、プロバイダーによってCORSが適切に設定されている必要があります。",
"Create": "作成",
"Create a knowledge base": "ナレッジベースを作成する",
"Create a model": "モデルを作成する",
@ -370,10 +370,10 @@
"Custom description enabled": "カスタム説明が有効です",
"Custom Parameter Name": "カスタムパラメータ名",
"Custom Parameter Value": "カスタムパラメータ値",
"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}}) より低いです。",
"Cakumi can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
"Cakumi uses faster-whisper internally.": "OpenWebUI は内部でfaster-whisperを使用します。",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "OpenWebUI は SpeechT5とCMU Arctic スピーカー埋め込みを使用します。",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "OpenWebUI のバージョン (v{{OPEN_WEBUI_VERSION}}) は要求されたバージョン (v{{REQUIRED_VERSION}}) より低いです。",
"Danger Zone": "危険地帯",
"Dark": "ダーク",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "モデルを探す",
"Discover a prompt": "プロンプトを探す",
"Discover a tool": "ツールを探す",
"Discover how to use CyberLover and seek support from the community.": "Open WebUIの使用方法を探し、コミュニティからサポートを求めてください。",
"Discover how to use Cakumi and seek support from the community.": "Open WebUIの使用方法を探し、コミュニティからサポートを求めてください。",
"Discover wonders": "不思議を発見",
"Discover, download, and explore custom functions": "カスタムFunctionを探してダウンロードする",
"Discover, download, and explore custom prompts": "カスタムプロンプトを探してダウンロードする",
@ -975,7 +975,7 @@
"Lost": "負け",
"Low": "低",
"LTR": "LTR",
"Made by CyberLover Community": "OpenWebUI コミュニティによって作成",
"Made by Cakumi 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ファイルをエクスポートしてください。",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。",
"Memory": "メモリ",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "録音",
"Record voice": "音声を録音",
"Redirecting you to CyberLover Community": "OpenWebUI コミュニティにリダイレクトしています",
"Redirecting you to Cakumi 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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "設定が正常に保存されました!",
"Share": "共有",
"Share Chat": "チャットを共有",
"Share to CyberLover Community": "OpenWebUI コミュニティに共有",
"Share to Cakumi Community": "OpenWebUI コミュニティに共有",
"Share your background and interests": "あなたの背景情報と興味を教えてください",
"Shared with you": "",
"Sharing Permissions": "共有に関する権限",
@ -1772,7 +1772,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "あなたの全ての寄付はプラグイン開発者へ直接送られます。CyberLover は手数料を一切取りません。ただし、選択した資金提供プラットフォーム側に手数料が発生する場合があります。",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "あなたの全ての寄付はプラグイン開発者へ直接送られます。Cakumi は手数料を一切取りません。ただし、選択した資金提供プラットフォーム側に手数料が発生する場合があります。",
"YouTube": "YouTube",
"Youtube Language": "YouTubeの言語",
"Youtube Proxy URL": "YouTubeのプロキシURL",

View file

@ -341,7 +341,7 @@
"Copy Link": "ბმულის კოპირება",
"Copy to clipboard": "ბუფერში კოპირება",
"Copying to clipboard was successful!": "გაცვლის ბუფერში კოპირება წარმატებულია!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "შექმნა",
"Create a knowledge base": "ცოდნის ბაზის შექმნა",
"Create a model": "მოდელის შექმნა",
@ -370,10 +370,10 @@
"Custom description enabled": "მომხმარებლის აღწერები ჩართულია",
"Custom Parameter Name": "მორგებული პარამეტრის სახელი",
"Custom Parameter Value": "მორგებული პარამეტრის მნიშვნელობა",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "საშიში ზონა",
"Dark": "მუქი",
"Data Controls": "მონაცემთა კონტროლი",
@ -442,7 +442,7 @@
"Discover a model": "აღმოაჩინეთ მოდელი",
"Discover a prompt": "აღმოაჩინეთ მოთხოვნა",
"Discover a tool": "აღმოაჩინეთ ხელსაწყო",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მორგებული მოთხოვნები",
@ -975,7 +975,7 @@
"Lost": "წაგება",
"Low": "დაბალი",
"LTR": "LTR",
"Made by CyberLover Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "საშუალო",
"Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.",
"Memory": "მეხსიერება",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "ჩაწერა",
"Record voice": "ხმის ჩაწერა",
"Redirecting you to CyberLover Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "პარამეტრები შენახვა წარმატებულია!",
"Share": "გაზიარება",
"Share Chat": "ჩატის გაზიარება",
"Share to CyberLover Community": "გაზიარება CyberLover-ის საზოგადოებასთან",
"Share to Cakumi Community": "გაზიარება Cakumi-ის საზოგადოებასთან",
"Share your background and interests": "",
"Shared with you": "გაზიარებულია თქვენთვის",
"Sharing Permissions": "გაზიარების წვდომები",
@ -1773,7 +1773,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; CyberLover 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; Cakumi 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

@ -341,7 +341,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 CyberLover.": "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 Cakumi.": "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",
@ -370,10 +370,10 @@
"Custom description enabled": "Aglam udmawan yettwarmed",
"Custom Parameter Name": "Isem n uɣewwar udmawan",
"Custom Parameter Value": "Azal n uɣewwar udmawan",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi yesseqdac faster-whisper sdaxel-is.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Ldi WebUI yesseqdac SpeechT5 akked CMU Arktik.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "Tamnaḍt i iweɛren",
"Dark": "Aberkan",
"Data Controls": "Isenqaden n isefka",
@ -442,7 +442,7 @@
"Discover a model": "Snirem tamudemt",
"Discover a prompt": "Snirem aneftaɣ",
"Discover a tool": "Snirem kra n ufecku",
"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 how to use Cakumi and seek support from the community.": "Wali amek ara tesqedceḍ Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Iruḥ",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Texdem-it-id temɣiwant n CyberLover",
"Made by Cakumi Community": "Texdem-it-id temɣiwant n Cakumi",
"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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Aklas",
"Record voice": "Sekles taɣect",
"Redirecting you to CyberLover Community": "Aseḍfeṛ ar Temɣiwant n CyberLover",
"Redirecting you to Cakumi Community": "Aseḍfeṛ ar Temɣiwant n Cakumi",
"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",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Iɣewwaṛen ttwakelsen akken iwata!",
"Share": "Bḍu",
"Share Chat": "Bḍu asqerdec",
"Share to CyberLover Community": "Bḍu i tkebbanit WebUI yeldin",
"Share to Cakumi Community": "Bḍu i tkebbanit WebUI yeldin",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Tisirag n beṭṭu",
@ -1773,7 +1773,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; CyberLover 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "링크 복사",
"Copy to clipboard": "클립보드에 복사",
"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUI의 요청을 허용하려면 공급자가 CORS를 올바르게 구성해야 합니다.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Open WebUI의 요청을 허용하려면 공급자가 CORS를 올바르게 구성해야 합니다.",
"Create": "생성",
"Create a knowledge base": "지식 기반 생성",
"Create a model": "모델 생성",
@ -370,10 +370,10 @@
"Custom description enabled": "사용자 정의 설명 활성화됨",
"Custom Parameter Name": "사용자 정의 매개변수 이름",
"Custom Parameter Value": "사용자 정의 매개변수 값",
"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}})보다 낮습니다",
"Cakumi can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
"Cakumi uses faster-whisper internally.": "Open WebUI는 내부적으로 패스트 위스퍼를 사용합니다.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI는 SpeechT5와 CMU Arctic 스피커 임베딩을 사용합니다.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "열린 WebUI 버젼(v{{OPEN_WEBUI_VERSION}})은 최소 버젼 (v{{REQUIRED_VERSION}})보다 낮습니다",
"Danger Zone": "위험 기능",
"Dark": "다크",
"Data Controls": "데이터 제어",
@ -442,7 +442,7 @@
"Discover a model": "모델 검색",
"Discover a prompt": "프롬프트 검색",
"Discover a tool": "도구 검색",
"Discover how to use CyberLover and seek support from the community.": "CyberLover 사용 방법을 알아보고 커뮤니티에서 지원을 받으세요.",
"Discover how to use Cakumi and seek support from the community.": "Cakumi 사용 방법을 알아보고 커뮤니티에서 지원을 받으세요.",
"Discover wonders": "놀라움을 체험하세요",
"Discover, download, and explore custom functions": "사용자 정의 함수 검색, 다운로드 및 탐색",
"Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색",
@ -975,7 +975,7 @@
"Lost": "패배",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "OpenWebUI 커뮤니티에 의해 개발됨",
"Made by Cakumi 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 형식대로 내보내세요",
@ -998,7 +998,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 CyberLover team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. CyberLover 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Cakumi 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.",
"Memory": "메모리",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "추론 태그",
"Record": "녹음",
"Record voice": "음성 녹음",
"Redirecting you to CyberLover Community": "OpenWebUI 커뮤니티로 리디렉션 중",
"Redirecting you to Cakumi 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": "채팅 참조",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
"Share": "공유",
"Share Chat": "채팅 공유",
"Share to CyberLover Community": "OpenWebUI 커뮤니티에 공유",
"Share to Cakumi Community": "OpenWebUI 커뮤니티에 공유",
"Share your background and interests": "당신의 배경과 관심사를 공유하세요",
"Shared with you": "",
"Sharing Permissions": "권한 공유",
@ -1772,7 +1772,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; CyberLover 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; Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Sukurti modelį",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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.",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tortue Chat versija per sena. Reikalinga (v{{REQUIRED_VERSION}}) versija.",
"Danger Zone": "",
"Dark": "Tamsus",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Atrasti modelį",
"Discover a prompt": "Atrasti užklausas",
"Discover a tool": "Atrasti įrankį",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Sukurta OpenWebUI bendruomenės",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Įrašyti balsą",
"Redirecting you to CyberLover Community": "Perkeliam Jus į OpenWebUI bendruomenę",
"Redirecting you to Cakumi 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": "",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Parametrai sėkmingai išsaugoti!",
"Share": "Dalintis",
"Share Chat": "Dalintis pokalbiu",
"Share to CyberLover Community": "Dalintis su OpenWebUI bendruomene",
"Share to Cakumi Community": "Dalintis su OpenWebUI bendruomene",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1775,7 +1775,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Cipta model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi version (v{{OPEN_WEBUI_VERSION}}) adalah lebih rendah daripada versi yang diperlukan iaitu (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Gelap",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Temui model",
"Discover a prompt": "Temui gesaan",
"Discover a tool": "Temui alat",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Dicipta oleh Komuniti OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Rakam suara",
"Redirecting you to CyberLover Community": "Membawa anda ke Komuniti OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "Tetapan berjaya disimpan!",
"Share": "Kongsi",
"Share Chat": "Kongsi Perbualan",
"Share to CyberLover Community": "Kongsi kepada Komuniti OpenWebUI",
"Share to Cakumi Community": "Kongsi kepada Komuniti OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1772,7 +1772,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Cakumi 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

@ -341,7 +341,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 CyberLover.": "CORS må være riktig konfigurert av leverandøren for å kunne godkjenne forespørsler fra CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS må være riktig konfigurert av leverandøren for å kunne godkjenne forespørsler fra Cakumi.",
"Create": "Opprett",
"Create a knowledge base": "Opprett en kunnskapsbase",
"Create a model": "Opprett en modell",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi bruker faster-whisper internt.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi bruker SpeechT5 og CMU Arctic-høytalerinnbygginger",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi-versjonen (v{{OPEN_WEBUI_VERSION}}) er lavere enn den påkrevde versjonen (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Mørk",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Oppdag en modell",
"Discover a prompt": "Oppdag en ledetekst",
"Discover a tool": "Oppdag et verktøy",
"Discover how to use CyberLover and seek support from the community.": "Finn ut hvordan du bruker CyberLover, og få støtte fra fellesskapet.",
"Discover how to use Cakumi and seek support from the community.": "Finn ut hvordan du bruker Cakumi, 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",
@ -975,7 +975,7 @@
"Lost": "Tapt",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Laget av OpenWebUI-fellesskapet",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Ta opp tale",
"Redirecting you to CyberLover Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Innstillinger lagret!",
"Share": "Del",
"Share Chat": "Del chat",
"Share to CyberLover Community": "Del med OpenWebUI-fellesskapet",
"Share to Cakumi Community": "Del med OpenWebUI-fellesskapet",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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. Cakumi mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "CORS moet goed geconfigureerd zijn bij de provider om verzoeken van CyberLover toe te staan",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS moet goed geconfigureerd zijn bij de provider om verzoeken van Cakumi toe te staan",
"Create": "Aanmaken",
"Create a knowledge base": "Maak een kennisbasis aan",
"Create a model": "Een model maken",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi gebruikt faster-whisper intern",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi gebruikt SpeechT5 en CMU Arctic spreker-embeddings",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi versie (v{{OPEN_WEBUI_VERSION}}) is kleiner dan de benodigde versie (v{{REQUIRED_VERSION}})",
"Danger Zone": "Gevarenzone",
"Dark": "Donker",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Ontdek een model",
"Discover a prompt": "Ontdek een prompt",
"Discover a tool": "Ontdek een tool",
"Discover how to use CyberLover and seek support from the community.": "Ontdek hoe je CyberLover gebruikt en zoek ondersteuning van de community.",
"Discover how to use Cakumi and seek support from the community.": "Ontdek hoe je Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Verloren",
"Low": "",
"LTR": "LNR",
"Made by CyberLover Community": "Gemaakt door OpenWebUI Community",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Neem stem op",
"Redirecting you to CyberLover Community": "Je wordt doorgestuurd naar OpenWebUI Community",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Instellingen succesvol opgeslagen!",
"Share": "Delen",
"Share Chat": "Deel chat",
"Share to CyberLover Community": "Deel naar OpenWebUI-community",
"Share to Cakumi Community": "Deel naar OpenWebUI-community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Deeltoestemmingen",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "ਗੂੜ੍ਹਾ",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "ਇੱਕ ਮਾਡਲ ਲੱਭੋ",
"Discover a prompt": "ਇੱਕ ਪ੍ਰੰਪਟ ਖੋਜੋ",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Memory": "ਮੀਮਰ",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
"Redirecting you to CyberLover Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!",
"Share": "ਸਾਂਝਾ ਕਰੋ",
"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
"Share to CyberLover Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
"Share to Cakumi Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "ਯੂਟਿਊਬ",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "CORS musi być prawidłowo skonfigurowany przez dostawcę, aby umożliwić żądania z CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS musi być prawidłowo skonfigurowany przez dostawcę, aby umożliwić żądania z Cakumi.",
"Create": "Utwórz",
"Create a knowledge base": "Utwórz bazę wiedzy",
"Create a model": "Utwórz model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi może używać narzędzi dostarczanych przez serwery OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi korzysta wewnętrznie z szybszego faster-whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Otwarta WebUI wykorzystuje SpeechT5 i wbudowane zbiory danych mówcy CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Wersja Cakumi (v{{OPEN_WEBUI_VERSION}}) jest niższa niż wymagana wersja (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Ciemny",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Odkrywaj model",
"Discover a prompt": "Odkrywaj prompty",
"Discover a tool": "Odkrywaj narzędzia",
"Discover how to use CyberLover and seek support from the community.": "Odkryj, jak korzystać z CyberLover i szukaj wsparcia w społeczności.",
"Discover how to use Cakumi and seek support from the community.": "Odkryj, jak korzystać z Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Przegrał",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Opracowane przez społeczność CyberLover",
"Made by Cakumi Community": "Opracowane przez społeczność Cakumi",
"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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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ęć",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Nagraj",
"Record voice": "Nagraj swój głos",
"Redirecting you to CyberLover Community": "Przekierowujemy Cię do społeczności CyberLover",
"Redirecting you to Cakumi Community": "Przekierowujemy Cię do społeczności Cakumi",
"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": "",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Ustawienia zostały zapisane pomyślnie!",
"Share": "Udostępnij",
"Share Chat": "Udostępnij rozmowę",
"Share to CyberLover Community": "Udostępnij w społeczności OpenWebUI",
"Share to Cakumi Community": "Udostępnij w społeczności OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Uprawnienia udostępniania",
@ -1775,7 +1775,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,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 CyberLover.": "O CORS deve ser configurado corretamente pelo provedor para permitir solicitações do CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "O CORS deve ser configurado corretamente pelo provedor para permitir solicitações do Cakumi.",
"Create": "Criar",
"Create a knowledge base": "Criar uma Base de Conhecimento",
"Create a model": "Criar um Modelo",
@ -370,10 +370,10 @@
"Custom description enabled": "Descrição personalizada habilitada",
"Custom Parameter Name": "Nome do parâmetro personalizado",
"Custom Parameter Value": "Valor do parâmetro personalizado",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "O Cakumi pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi usa faster-whisper internamente.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "A Cakumi usa os embeddings de voz do SpeechT5 e do CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Cakumi (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
"Danger Zone": "Zona de perigo",
"Dark": "Escuro",
"Data Controls": "Controle de Dados",
@ -442,7 +442,7 @@
"Discover a model": "Descubra um modelo",
"Discover a prompt": "Descubra um prompt",
"Discover a tool": "Descubra uma ferramenta",
"Discover how to use CyberLover and seek support from the community.": "Descubra como usar o CyberLover e busque suporte da comunidade.",
"Discover how to use Cakumi and seek support from the community.": "Descubra como usar o Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Perdeu",
"Low": "Baixo",
"LTR": "Esquerda para Direita",
"Made by CyberLover Community": "Feito pela Comunidade OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 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.",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi 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 Cakumi, 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Tags de raciocínio",
"Record": "Registro",
"Record voice": "Gravar voz",
"Redirecting you to CyberLover Community": "Redirecionando você para a Comunidade OpenWebUI",
"Redirecting you to Cakumi 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",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Configurações salvas com sucesso!",
"Share": "Compartilhar",
"Share Chat": "Compartilhar Chat",
"Share to CyberLover Community": "Compartilhar com a Comunidade OpenWebUI",
"Share to Cakumi 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",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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 Cakumi 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

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Criar um modelo",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Escuro",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Descubra um modelo",
"Discover a prompt": "Descobrir um prompt",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Feito pela Comunidade OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Gravar voz",
"Redirecting you to CyberLover Community": "Redirecionando-o para a Comunidade OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Configurações guardadas com sucesso!",
"Share": "Partilhar",
"Share Chat": "Partilhar Conversa",
"Share to CyberLover Community": "Partilhar com a Comunidade OpenWebUI",
"Share to Cakumi Community": "Partilhar com a Comunidade OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "Creează",
"Create a knowledge base": "",
"Create a model": "Creează un model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi folosește faster-whisper intern.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Versiunea Cakumi (v{{OPEN_WEBUI_VERSION}}) este mai mică decât versiunea necesară (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Întunecat",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Descoperă un model",
"Discover a prompt": "Descoperă un prompt",
"Discover a tool": "Descoperă un instrument",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Pierdut",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Realizat de Comunitatea OpenWebUI",
"Made by Cakumi 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}}.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Înregistrează vocea",
"Redirecting you to CyberLover Community": "Vă redirecționăm către Comunitatea OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Setările au fost salvate cu succes!",
"Share": "Partajează",
"Share Chat": "Partajează Conversația",
"Share to CyberLover Community": "Partajează cu Comunitatea OpenWebUI",
"Share to Cakumi Community": "Partajează cu Comunitatea OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "Копировать ссылку",
"Copy to clipboard": "Скопировать в буфер обмена",
"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS должен быть должным образом настроен провайдером, чтобы разрешать запросы из CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS должен быть должным образом настроен провайдером, чтобы разрешать запросы из Cakumi.",
"Create": "Создать",
"Create a knowledge base": "Создайте базу знаний",
"Create a model": "Создание модели",
@ -370,10 +370,10 @@
"Custom description enabled": "Пользовательское описание включено",
"Custom Parameter Name": "Название пользовательского параметра",
"Custom Parameter Value": "Значение пользовательского параметра",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi может использовать инструменты, предоставляемые любым сервером OpenAPI.",
"Cakumi uses faster-whisper internally.": "Cakumi использует более быстрый внутренний интерфейс whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "В Cakumi используются встраиваемые движки генерации речи SpeechT5 и CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версия Cakumi (v{{OPEN_WEBUI_VERSION}}) ниже требуемой версии (v{{REQUIRED_VERSION}})",
"Danger Zone": "Опасная зона",
"Dark": "Темная",
"Data Controls": "Управление данными",
@ -442,7 +442,7 @@
"Discover a model": "Найти модель",
"Discover a prompt": "Найти промпт",
"Discover a tool": "Найти инструмент",
"Discover how to use CyberLover and seek support from the community.": "Узнайте, как использовать CyberLover, и обратитесь за поддержкой к сообществу.",
"Discover how to use Cakumi and seek support from the community.": "Узнайте, как использовать Cakumi, и обратитесь за поддержкой к сообществу.",
"Discover wonders": "Откройте для себя чудеса",
"Discover, download, and explore custom functions": "Открывайте для себя, загружайте и исследуйте пользовательские функции",
"Discover, download, and explore custom prompts": "Открывайте для себя, загружайте и исследуйте пользовательские промпты",
@ -975,7 +975,7 @@
"Lost": "Поражение",
"Low": "Низкий",
"LTR": "LTR",
"Made by CyberLover Community": "Сделано сообществом OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "Средний",
"Memories accessible by LLMs will be shown here.": "Воспоминания, доступные LLMs, будут отображаться здесь.",
"Memory": "Воспоминания",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "Теги рассуждения",
"Record": "Запись",
"Record voice": "Записать голос",
"Redirecting you to CyberLover Community": "Перенаправляем вас в сообщество OpenWebUI",
"Redirecting you to Cakumi 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": "Справочные чаты",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Настройки успешно сохранены!",
"Share": "Поделиться",
"Share Chat": "Поделиться чатом",
"Share to CyberLover Community": "Поделиться с сообществом OpenWebUI",
"Share to Cakumi Community": "Поделиться с сообществом OpenWebUI",
"Share your background and interests": "Расскажите о своём опыте и интересах",
"Shared with you": "",
"Sharing Permissions": "Разрешения на общий доступ",
@ -1775,7 +1775,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; CyberLover не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; Cakumi не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
"YouTube": "YouTube",
"Youtube Language": "Язык YouTube",
"Youtube Proxy URL": "URL прокси для YouTube",

View file

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "Vytvoriť",
"Create a knowledge base": "Vytvoriť knowledge base",
"Create a model": "Vytvoriť model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi interne používa faster-whisper.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verzia Cakumi (v{{OPEN_WEBUI_VERSION}}) je nižšia ako požadovaná verzia (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "Tmavý",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Objaviť model",
"Discover a prompt": "Objaviť prompt",
"Discover a tool": "Objaviť nástroj",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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.",
@ -975,7 +975,7 @@
"Lost": "Stratený",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Vytvorené komunitou OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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äť",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Nahrať hlas",
"Redirecting you to CyberLover Community": "Presmerovanie na komunitu OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Nastavenia boli úspešne uložené!",
"Share": "Zdieľať",
"Share Chat": "Zdieľať chat",
"Share to CyberLover Community": "Zdieľať s komunitou OpenWebUI",
"Share to Cakumi Community": "Zdieľať s komunitou OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1775,7 +1775,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
"YouTube": "YouTube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "Копирај везу",
"Copy to clipboard": "Копирај у оставу",
"Copying to clipboard was successful!": "Успешно копирање у оставу!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "Направи",
"Create a knowledge base": "Направи базу знања",
"Create a model": "Креирање модела",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Тамна",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Откријте модел",
"Discover a prompt": "Откриј упит",
"Discover a tool": "Откријте алат",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "Откријте чудеса",
"Discover, download, and explore custom functions": "Откријте, преузмите и истражите прилагођене функције",
"Discover, download, and explore custom prompts": "Откријте, преузмите и истражите прилагођене упите",
@ -975,7 +975,7 @@
"Lost": "Пораза",
"Low": "",
"LTR": "ЛНД",
"Made by CyberLover Community": "Израдила OpenWebUI заједница",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.",
"Memory": "Сећања",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Сними глас",
"Redirecting you to CyberLover Community": "Преусмеравање на OpenWebUI заједницу",
"Redirecting you to Cakumi 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": "",
@ -1453,7 +1453,7 @@
"Settings saved successfully!": "Подешавања успешно сачувана!",
"Share": "Подели",
"Share Chat": "Подели ћаскање",
"Share to CyberLover Community": "Подели са OpenWebUI заједницом",
"Share to Cakumi Community": "Подели са OpenWebUI заједницом",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1774,7 +1774,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "Јутјуб",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "CORS måste vara korrekt konfigurerad av leverantören för att tillåta förfrågningar från CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS måste vara korrekt konfigurerad av leverantören för att tillåta förfrågningar från Cakumi.",
"Create": "Skapa",
"Create a knowledge base": "Skapa en kunskapsbas",
"Create a model": "Skapa en modell",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "Anpassat parameternamn",
"Custom Parameter Value": "Anpassat parametervärde",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi kan använda verktyg från alla OpenAPI-servrar.",
"Cakumi uses faster-whisper internally.": "Cakumi använder faster-whisper internt.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi använder SpeechT5 och CMU Arctic högtalarinbäddningar.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi-versionen (v{{OPEN_WEBUI_VERSION}}) är lägre än den version som krävs (v{{REQUIRED_VERSION}})",
"Danger Zone": "Fara",
"Dark": "Mörk",
"Data Controls": "",
@ -442,7 +442,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 CyberLover and seek support from the community.": "Upptäck hur du använder CyberLover och sök stöd från communityn.",
"Discover how to use Cakumi and seek support from the community.": "Upptäck hur du använder Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Förlorad",
"Low": "",
"LTR": "Vänster till höger",
"Made by CyberLover Community": "Skapad av OpenWebUI Community",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Spela in",
"Record voice": "Spela in röst",
"Redirecting you to CyberLover Community": "Omdirigerar dig till OpenWebUI Community",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Inställningar sparades framgångsrikt!",
"Share": "Dela",
"Share Chat": "Dela chatt",
"Share to CyberLover Community": "Dela till OpenWebUI Community",
"Share to Cakumi Community": "Dela till OpenWebUI Community",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Delningsbehörigheter",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Hela ditt bidrag går direkt till pluginutvecklaren; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "คัดลอกลิงก์",
"Copy to clipboard": "",
"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "สร้างโมเดล",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชั่น Cakumi (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชั่นที่ต้องการ (v{{REQUIRED_VERSION}})",
"Danger Zone": "",
"Dark": "มืด",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "ค้นหาโมเดล",
"Discover a prompt": "ค้นหาพรอมต์",
"Discover a tool": "ค้นหาเครื่องมือ",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "ค้นหา ดาวน์โหลด และสำรวจฟังก์ชันที่กำหนดเอง",
"Discover, download, and explore custom prompts": "ค้นหา ดาวน์โหลด และสำรวจพรอมต์ที่กำหนดเอง",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "สร้างโดยชุมชน OpenWebUI",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "ความจำ",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "บันทึกเสียง",
"Redirecting you to CyberLover Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "บันทึกการตั้งค่าเรียบร้อยแล้ว!",
"Share": "แชร์",
"Share Chat": "แชร์แชท",
"Share to CyberLover Community": "แชร์ไปยังชุมชน OpenWebUI",
"Share to Cakumi Community": "แชร์ไปยังชุมชน OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1772,7 +1772,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; CyberLover ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; Cakumi ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
"YouTube": "Youtube",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "Model döret",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})": "",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "",
"Danger Zone": "",
"Dark": "Garaňky",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "",
"Discover a prompt": "",
"Discover a tool": "",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "",
"Discover, download, and explore custom prompts": "",
@ -975,7 +975,7 @@
"Lost": "",
"Low": "",
"LTR": "",
"Made by CyberLover Community": "",
"Made by Cakumi 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.": "",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "Ýat",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "",
"Redirecting you to CyberLover Community": "",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "",
"Share": "Paýlaş",
"Share Chat": "Çaty Paýlaş",
"Share to CyberLover Community": "",
"Share to Cakumi Community": "",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"YouTube": "",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,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 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.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Cakumidan 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",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi OpenAPI tarafından sağlanan araçları kullanabilir",
"Cakumi uses faster-whisper internally.": "Cakumi, dahili olarak daha hızlı-fısıltı kullanır.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi, SpeechT5 ve CMU Arctic konuşmacı gömme kullanır.",
"Cakumi 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",
"Danger Zone": "Tehlikeli Bölge",
"Dark": "Koyu",
"Data Controls": "",
@ -442,7 +442,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 CyberLover and seek support from the community.": "",
"Discover how to use Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Kayıp",
"Low": "",
"LTR": "Soldan Sağa",
"Made by CyberLover Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Kaydet",
"Record voice": "Ses kaydı yap",
"Redirecting you to CyberLover Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Ayarlar başarıyla kaydedildi!",
"Share": "Paylaş",
"Share Chat": "Sohbeti Paylaş",
"Share to CyberLover Community": "OpenWebUI Topluluğu ile Paylaş",
"Share to Cakumi Community": "OpenWebUI Topluluğu ile Paylaş",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "ئۇلانما كۆچۈرۈش",
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
"Copying to clipboard was successful!": "چاپلاش تاختىسىغا كۆچۈرۈش مۇۋەپپەقىيەتلىك بولدى!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "Open WebUIنىڭ تەلىپكە ئىجازەت بېرىش ئۈچۈن CORS توغرا تەڭشىلىشى كېرەك.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Open WebUIنىڭ تەلىپكە ئىجازەت بېرىش ئۈچۈن CORS توغرا تەڭشىلىشى كېرەك.",
"Create": "قۇرۇش",
"Create a knowledge base": "بىلىم ئاساسى قۇرۇش",
"Create a model": "مودېل قۇرۇش",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "ئۆزلۈك پارامېتىر نامى",
"Custom Parameter Value": "ئۆزلۈك پارامېتىر قىممىتى",
"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}}) تۆۋەن.",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
"Cakumi uses faster-whisper internally.": "Cakumi ئىچىدە faster-whisper ئىشلىتىدۇ.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi SpeechT5 ۋە CMU Arctic ئاۋاز سىڭدۈرۈش ئىشلىتىدۇ.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi نەشرى (v{{OPEN_WEBUI_VERSION}}) تەلەپ قىلىنغان نەشردىن (v{{REQUIRED_VERSION}}) تۆۋەن.",
"Danger Zone": "خەۋپلىك رايون",
"Dark": "قاراڭغۇ",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "مودېل تاپ",
"Discover a prompt": "تۈرتكە تاپ",
"Discover a tool": "قورال تاپ",
"Discover how to use CyberLover and seek support from the community.": "CyberLover ئىشلىتىشنى ئۈگىنڭ ۋە جەمئىيەتتىن ياردەم سوراڭ.",
"Discover how to use Cakumi and seek support from the community.": "Cakumi ئىشلىتىشنى ئۈگىنڭ ۋە جەمئىيەتتىن ياردەم سوراڭ.",
"Discover wonders": "مۆجىزىلەرنى بايقاڭ",
"Discover, download, and explore custom functions": "ئۆزلۈك فۇنكسىيەسىنى تاپ، چۈشۈر، تەتقىق قىل",
"Discover, download, and explore custom prompts": "ئۆزلۈك تۈرتكەسىنى تاپ، چۈشۈر، تەتقىق قىل",
@ -975,7 +975,7 @@
"Lost": "يوقاپ كەتتى",
"Low": "",
"LTR": "LTR (سولدىن ئوڭغا)",
"Made by CyberLover Community": "CyberLover جەمئىيىتى تەرىپىدىن قۇرۇلغان",
"Made by Cakumi Community": "Cakumi جەمئىيىتى تەرىپىدىن قۇرۇلغان",
"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 ھۆججىتى چىقىرىڭ.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM ئىشلىتەلەيدىن ئەسلەتمىلەر بۇ يەردە كۆرۈنىدۇ.",
"Memory": "ئەسلەتمە",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "خاتىرىلەش",
"Record voice": "ئاۋاز خاتىرىلەش",
"Redirecting you to CyberLover Community": "CyberLover جەمئىيىتىگە يوللاندى",
"Redirecting you to Cakumi Community": "Cakumi جەمئىيىتىگە يوللاندى",
"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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "تەڭشەك مۇۋەپپەقىيەتلىك ساقلاندى!",
"Share": "ھەمبەھىرلەش",
"Share Chat": "سۆھبەت ھەمبەھىرلەش",
"Share to CyberLover Community": "CyberLover جەمئىيىتىگە ھەمبەھىرلەش",
"Share to Cakumi Community": "Cakumi جەمئىيىتىگە ھەمبەھىرلەش",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "ھەمبەھىرلەش ھوقۇقى",
@ -1773,7 +1773,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ CyberLover ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ Cakumi ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.",
"YouTube": "Youtube",
"Youtube Language": "Youtube تىلى",
"Youtube Proxy URL": "Youtube ۋاكالەتچى URL",

View file

@ -341,7 +341,7 @@
"Copy Link": "Копіювати посилання",
"Copy to clipboard": "Копіювати в буфер обміну",
"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS має бути правильно налаштований постачальником, щоб дозволити запити з CyberLover.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS має бути правильно налаштований постачальником, щоб дозволити запити з Cakumi.",
"Create": "Створити",
"Create a knowledge base": "Створити базу знань",
"Create a model": "Створити модель",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi використовує faster-whisper внутрішньо.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi використовує вбудовування голосів SpeechT5 та CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi версія (v{{OPEN_WEBUI_VERSION}}) нижча за необхідну версію (v{{REQUIRED_VERSION}})",
"Danger Zone": "Зона небезпеки",
"Dark": "Темна",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Знайдіть модель",
"Discover a prompt": "Знайдіть промт",
"Discover a tool": "Знайдіть інструмент",
"Discover how to use CyberLover and seek support from the community.": "Дізнайтесь, як використовувати CyberLover, та звертайтесь за підтримкою до спільноти.",
"Discover how to use Cakumi and seek support from the community.": "Дізнайтесь, як використовувати Cakumi, та звертайтесь за підтримкою до спільноти.",
"Discover wonders": "Відкривайте чудеса",
"Discover, download, and explore custom functions": "Знайдіть, завантажте та досліджуйте налаштовані функції",
"Discover, download, and explore custom prompts": "Знайдіть, завантажте та досліджуйте налаштовані промти",
@ -975,7 +975,7 @@
"Lost": "Втрачене",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Зроблено спільнотою OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.",
"Memory": "Пам'ять",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Записати голос",
"Redirecting you to CyberLover Community": "Перенаправляємо вас до спільноти OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1454,7 +1454,7 @@
"Settings saved successfully!": "Налаштування успішно збережено!",
"Share": "Поділитися",
"Share Chat": "Поділитися чатом",
"Share to CyberLover Community": "Поділитися зі спільнотою OpenWebUI",
"Share to Cakumi Community": "Поділитися зі спільнотою OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Дозволи на обмін",
@ -1775,7 +1775,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; CyberLover не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; Cakumi не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
"YouTube": "Youtube",
"Youtube Language": "Мова YouTube",
"Youtube Proxy URL": "URL проксі-сервера YouTube",

View file

@ -341,7 +341,7 @@
"Copy Link": "لنک کاپی کریں",
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "",
"Create": "",
"Create a knowledge base": "",
"Create a model": "ماڈل بنائیں",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}}) سے کم ہے",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "اوپن ویب یو آئی اندرونی طور پر فاسٹر وِسپر استعمال کرتا ہے",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "اوپن WebUI ورژن (v{{OPEN_WEBUI_VERSION}}) مطلوبہ ورژن (v{{REQUIRED_VERSION}}) سے کم ہے",
"Danger Zone": "",
"Dark": "ڈارک",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "ایک ماڈل دریافت کریں",
"Discover a prompt": "ایک اشارہ دریافت کریں",
"Discover a tool": "ایک ٹول دریافت کریں",
"Discover how to use CyberLover and seek support from the community.": "",
"Discover how to use Cakumi and seek support from the community.": "",
"Discover wonders": "",
"Discover, download, and explore custom functions": "دریافت کریں، ڈاؤن لوڈ کریں، اور کسٹم فنکشنز کو دریافت کریں",
"Discover, download, and explore custom prompts": "دریافت کریں، ڈاؤن لوڈ کریں، اور حسب ضرورت پرامپٹس کو دریافت کریں",
@ -975,7 +975,7 @@
"Lost": "گم شدہ",
"Low": "",
"LTR": "بائیں سے دائیں",
"Made by CyberLover Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
"Made by Cakumi 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 فارمیٹ میں ایکسپورٹ کریں",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "یہاں LLMs کے ذریعہ قابل رسائی یادیں دکھائی جائیں گی",
"Memory": "میموری",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "صوت ریکارڈ کریں",
"Redirecting you to CyberLover Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!",
"Share": "اشتراک کریں",
"Share Chat": "چیٹ شیئر کریں",
"Share to CyberLover Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
"Share to Cakumi Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "",
@ -1773,7 +1773,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; CyberLover 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; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
"YouTube": "یوٹیوب",
"Youtube Language": "",
"Youtube Proxy URL": "",

View file

@ -341,7 +341,7 @@
"Copy Link": "Ҳаволани нусхалаш",
"Copy to clipboard": "Буферга нусхалаш",
"Copying to clipboard was successful!": "Буферга нусхалаш муваффақиятли бўлди!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CyberLover сўровларига рухсат бериш учун CORS провайдер томонидан тўғри созланган бўлиши керак.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "Cakumi сўровларига рухсат бериш учун CORS провайдер томонидан тўғри созланган бўлиши керак.",
"Create": "Яратиш",
"Create a knowledge base": "Билимлар базасини яратинг",
"Create a model": "Модел яратиш",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "Махсус параметр номи",
"Custom Parameter Value": "Махсус параметр қиймати",
"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ЕБУИ_ВЕРСИОН}}) талаб қилинган версиядан (в{{РЕҚУИРЕД_ВЕРСИОН}}) пастроқ",
"Cakumi can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
"Cakumi uses faster-whisper internally.": "Опен WебУИ ички тез шивирлашдан фойдаланади.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Опен WебУИ СпеэчТ5 ва CМУ Арcтиc динамик ўрнатишларидан фойдаланади.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Очиқ WебУИ версияси (в{{ОПЕН_WЕБУИ_ВЕРСИОН}}) талаб қилинган версиядан (в{{РЕҚУИРЕД_ВЕРСИОН}}) пастроқ",
"Danger Zone": "Хавфли зона",
"Dark": "Қоронғи",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Моделни кашф қилинг",
"Discover a prompt": "Кўрсатмани кашф қилинг",
"Discover a tool": "Асбобни кашф қилинг",
"Discover how to use CyberLover and seek support from the community.": "Open WebUIдан қандай фойдаланишни билиб олинг ва ҳамжамиятдан ёрдам сўранг.",
"Discover how to use Cakumi and seek support from the community.": "Open WebUIдан қандай фойдаланишни билиб олинг ва ҳамжамиятдан ёрдам сўранг.",
"Discover wonders": "Мўъжизаларни кашф этинг",
"Discover, download, and explore custom functions": "Махсус функцияларни кашф этинг, юклаб олинг ва ўрганинг",
"Discover, download, and explore custom prompts": "Махсус таклифларни кашф қилинг, юклаб олинг ва ўрганинг",
@ -975,7 +975,7 @@
"Lost": "Йўқотилган",
"Low": "",
"LTR": "ЛТР",
"Made by CyberLover Community": "Опен WебУИ ҳамжамияти томонидан яратилган",
"Made by Cakumi 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омфюИъдан АПИ формати сифатида экспорт қилганингизга ишонч ҳосил қилинг.",
@ -998,7 +998,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 CyberLover 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 Cakumi team, making it the more reliable option for compatibility.": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "ЛЛМлар кириши мумкин бўлган хотиралар бу эрда кўрсатилади.",
"Memory": "Хотира",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Ёзиб олиш",
"Record voice": "Овозни ёзиб олинг",
"Redirecting you to CyberLover Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда",
"Redirecting you to Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Созламалар муваффақиятли сақланди!",
"Share": "Улашиш",
"Share Chat": "Чатни улашиш",
"Share to CyberLover Community": "Опен WебУИ ҳамжамиятига улашинг",
"Share to Cakumi Community": "Опен WебУИ ҳамжамиятига улашинг",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Рухсатларни алмашиш",
@ -1773,7 +1773,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; CyberLover ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; Cakumi ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.",
"YouTube": "Youtube",
"Youtube Language": "Youtube тили",
"Youtube Proxy URL": "Youtube прокси УРЛ",

View file

@ -341,7 +341,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 CyberLover.": "CyberLover 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 Cakumi.": "Cakumi 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",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "Maxsus parametr nomi",
"Custom Parameter Value": "Maxsus parametr qiymati",
"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",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
"Cakumi uses faster-whisper internally.": "Cakumi ichki tez shivirlashdan foydalanadi.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi SpeechT5 va CMU Arctic dinamik oʻrnatishlaridan foydalanadi.",
"Cakumi 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",
"Danger Zone": "Xavfli zona",
"Dark": "Qorong'i",
"Data Controls": "",
@ -442,7 +442,7 @@
"Discover a model": "Modelni kashf qiling",
"Discover a prompt": "Ko'rsatmani kashf qiling",
"Discover a tool": "Asbobni kashf qiling",
"Discover how to use CyberLover and seek support from the community.": "CyberLover-dan qanday foydalanishni bilib oling va hamjamiyatdan yordam so'rang.",
"Discover how to use Cakumi and seek support from the community.": "Cakumi-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",
@ -975,7 +975,7 @@
"Lost": "Yo'qotilgan",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "CyberLover hamjamiyati tomonidan yaratilgan",
"Made by Cakumi Community": "Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "Yozib olish",
"Record voice": "Ovozni yozib oling",
"Redirecting you to CyberLover Community": "Sizni CyberLover hamjamiyatiga yoʻnaltirmoqda",
"Redirecting you to Cakumi Community": "Sizni Cakumi 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": "",
@ -1452,7 +1452,7 @@
"Settings saved successfully!": "Sozlamalar muvaffaqiyatli saqlandi!",
"Share": "Ulashish",
"Share Chat": "Chatni ulashish",
"Share to CyberLover Community": "CyberLover hamjamiyatiga ulashing",
"Share to Cakumi Community": "Cakumi hamjamiyatiga ulashing",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Ruxsatlarni almashish",
@ -1773,7 +1773,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,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 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.",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "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ừ Cakumi.",
"Create": "Tạo",
"Create a knowledge base": "Tạo cơ sở kiến thức",
"Create a model": "Tạo model",
@ -370,10 +370,10 @@
"Custom description enabled": "",
"Custom Parameter Name": "",
"Custom Parameter Value": "",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "",
"Cakumi uses faster-whisper internally.": "Cakumi sử dụng faster-whisper bên trong.",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi sử dụng SpeechT5 và các embedding giọng nói CMU Arctic.",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Phiên bản Cakumi (v{{OPEN_WEBUI_VERSION}}) hiện thấp hơn phiên bản bắt buộc (v{{REQUIRED_VERSION}})",
"Danger Zone": "Vùng Nguy hiểm",
"Dark": "Tối",
"Data Controls": "",
@ -442,7 +442,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 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 how to use Cakumi and seek support from the community.": "Khám phá cách sử dụng Cakumi 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",
@ -975,7 +975,7 @@
"Lost": "Thua",
"Low": "",
"LTR": "LTR",
"Made by CyberLover Community": "Được tạo bởi Cộng đồng OpenWebUI",
"Made by Cakumi 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.",
@ -998,7 +998,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 CyberLover 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 Cakumi 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",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "",
"Record": "",
"Record voice": "Ghi âm",
"Redirecting you to CyberLover Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
"Redirecting you to Cakumi 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": "",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "Cài đặt đã được lưu thành công!",
"Share": "Chia sẻ",
"Share Chat": "Chia sẻ Chat",
"Share to CyberLover Community": "Chia sẻ đến Cộng đồng OpenWebUI",
"Share to Cakumi Community": "Chia sẻ đến Cộng đồng OpenWebUI",
"Share your background and interests": "",
"Shared with you": "",
"Sharing Permissions": "Quyền Chia sẻ",
@ -1772,7 +1772,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; 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.",
"Your entire contribution will go directly to the plugin developer; Cakumi 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; Cakumi 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

@ -341,7 +341,7 @@
"Copy Link": "复制链接",
"Copy to clipboard": "复制到剪贴板",
"Copying to clipboard was successful!": "成功复制到剪贴板!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "为允许 CyberLover 发出的请求,提供商必须正确配置 CORS",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "为允许 Cakumi 发出的请求,提供商必须正确配置 CORS",
"Create": "创建",
"Create a knowledge base": "创建知识库",
"Create a model": "创建模型",
@ -370,10 +370,10 @@
"Custom description enabled": "自定义描述已启用",
"Custom Parameter Name": "自定义参数名称",
"Custom Parameter Value": "自定义参数值",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi 可使用任何 OpenAPI 服务器提供的工具。",
"Cakumi uses faster-whisper internally.": "Cakumi 使用内置 faster-whisper",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi 使用 SpeechT5 和 CMU Arctic speaker embedding。",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "当前 Cakumi 版本 (v{{OPEN_WEBUI_VERSION}}) 低于所需的版本 (v{{REQUIRED_VERSION}})",
"Danger Zone": "危险区域",
"Dark": "暗色",
"Data Controls": "数据",
@ -442,7 +442,7 @@
"Discover a model": "发现更多模型",
"Discover a prompt": "发现更多提示词",
"Discover a tool": "发现更多工具",
"Discover how to use CyberLover and seek support from the community.": "了解如何使用 CyberLover 并寻求社区支持",
"Discover how to use Cakumi and seek support from the community.": "了解如何使用 Cakumi 并寻求社区支持",
"Discover wonders": "追寻奇迹",
"Discover, download, and explore custom functions": "发现、下载并探索更多自定义函数",
"Discover, download, and explore custom prompts": "发现、下载并探索更多自定义提示词",
@ -975,7 +975,7 @@
"Lost": "落败",
"Low": "低",
"LTR": "从左至右",
"Made by CyberLover Community": "由 CyberLover 社区开发",
"Made by Cakumi Community": "由 Cakumi 社区开发",
"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 文件。",
@ -998,7 +998,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 CyberLover team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 CyberLover 团队维护,在兼容性方面更加可靠。",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 Cakumi 团队维护,在兼容性方面更加可靠。",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示",
"Memory": "记忆",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "推理过程标签",
"Record": "录制",
"Record voice": "录音",
"Redirecting you to CyberLover Community": "正在将您重定向到 CyberLover 社区",
"Redirecting you to Cakumi Community": "正在将您重定向到 Cakumi 社区",
"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": "引用其他对话",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "设置已成功保存!",
"Share": "分享",
"Share Chat": "分享对话",
"Share to CyberLover Community": "分享到 CyberLover 社区",
"Share to Cakumi Community": "分享到 Cakumi 社区",
"Share your background and interests": "分享您的经历和兴趣爱好",
"Shared with you": "已共享给您",
"Sharing Permissions": "共享权限",
@ -1772,7 +1772,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者CyberLover 不会收取任何分成。但众筹平台可能会有服务费。",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者Cakumi 不会收取任何分成。但众筹平台可能会有服务费。",
"YouTube": "YouTube",
"Youtube Language": "Youtube 语言",
"Youtube Proxy URL": "Youtube 代理 URL",

View file

@ -341,7 +341,7 @@
"Copy Link": "複製連結",
"Copy to clipboard": "複製到剪貼簿",
"Copying to clipboard was successful!": "成功複製到剪貼簿!",
"CORS must be properly configured by the provider to allow requests from CyberLover.": "CORS 必須由供應商正確設定,以允許來自 CyberLover 的請求。",
"CORS must be properly configured by the provider to allow requests from Cakumi.": "CORS 必須由供應商正確設定,以允許來自 Cakumi 的請求。",
"Create": "建立",
"Create a knowledge base": "建立知識",
"Create a model": "建立模型",
@ -370,10 +370,10 @@
"Custom description enabled": "自訂描述已啟用",
"Custom Parameter Name": "自訂參數名稱",
"Custom Parameter Value": "自訂參數值",
"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}})",
"Cakumi can use tools provided by any OpenAPI server.": "Cakumi 可使用任何 OpenAPI 伺服器提供的工具。",
"Cakumi uses faster-whisper internally.": "Cakumi 使用內部 faster-whisper。",
"Cakumi uses SpeechT5 and CMU Arctic speaker embeddings.": "Cakumi 使用 SpeechT5 和 CMU Arctic 說話者嵌入。",
"Cakumi version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Cakumi 版本 (v{{OPEN_WEBUI_VERSION}}) 低於所需版本 (v{{REQUIRED_VERSION}})",
"Danger Zone": "危險區域",
"Dark": "深色",
"Data Controls": "資料",
@ -442,7 +442,7 @@
"Discover a model": "發掘模型",
"Discover a prompt": "發掘提示詞",
"Discover a tool": "發掘工具",
"Discover how to use CyberLover and seek support from the community.": "探索如何使用 CyberLover 並從社群尋求支援。",
"Discover how to use Cakumi and seek support from the community.": "探索如何使用 Cakumi 並從社群尋求支援。",
"Discover wonders": "發掘奇蹟",
"Discover, download, and explore custom functions": "發掘、下載及探索自訂函式",
"Discover, download, and explore custom prompts": "發掘、下載及探索自訂提示詞",
@ -975,7 +975,7 @@
"Lost": "落敗",
"Low": "低",
"LTR": "從左到右",
"Made by CyberLover Community": "由 CyberLover 社群製作",
"Made by Cakumi Community": "由 Cakumi 社群製作",
"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 格式。",
@ -998,7 +998,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 CyberLover team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能其規範經常變更可能導致不相容問題。OpenAPI 規範支援直接由 CyberLover 團隊維護,是相容性更可靠的選擇。",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Cakumi team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能其規範經常變更可能導致不相容問題。OpenAPI 規範支援直接由 Cakumi 團隊維護,是相容性更可靠的選擇。",
"Medium": "中",
"Memories accessible by LLMs will be shown here.": "可被大型語言模型存取的記憶將顯示在此。",
"Memory": "記憶",
@ -1280,7 +1280,7 @@
"Reasoning Tags": "推理標籤",
"Record": "錄製",
"Record voice": "錄音",
"Redirecting you to CyberLover Community": "正在將您重導向至 CyberLover 社群",
"Redirecting you to Cakumi Community": "正在將您重導向至 Cakumi 社群",
"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": "引用其他對話",
@ -1451,7 +1451,7 @@
"Settings saved successfully!": "設定已成功儲存!",
"Share": "分享",
"Share Chat": "分享對話",
"Share to CyberLover Community": "分享到 CyberLover 社群",
"Share to Cakumi Community": "分享到 Cakumi 社群",
"Share your background and interests": "分享您的背景與興趣",
"Shared with you": "分享給您",
"Sharing Permissions": "分享權限設定",
@ -1772,7 +1772,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; CyberLover does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者CyberLover 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
"Your entire contribution will go directly to the plugin developer; Cakumi does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者Cakumi 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
"YouTube": "YouTube",
"Youtube Language": "YouTube 語言",
"Youtube Proxy URL": "YouTube 代理伺服器 URL",

View file

@ -87,7 +87,7 @@
</script>
<svelte:head>
<title>{$i18n.t('充值管理')} | CyberLover Admin</title>
<title>{$i18n.t('充值管理')} | Cakumi Admin</title>
</svelte:head>
<div class="admin-billing-page max-w-6xl mx-auto px-4 py-6 space-y-6">

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