chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-04-21 15:52:00 +09:00
parent b9fc3f367a
commit 6cc799b1bb
74 changed files with 1244 additions and 67 deletions
+1 -1
View File
@@ -214,7 +214,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 📝 **Writing block parsing reliability.** ":::writing" blocks now parse more reliably when headers or extra inline text are present, preventing malformed rendering and duplicate output artifacts. [#23174](https://github.com/open-webui/open-webui/issues/23174)
- 🧾 **Code block line break reliability.** Blank lines in submitted code blocks are now preserved more reliably instead of being collapsed. [Commit](https://github.com/open-webui/open-webui/commit/1be9627dd27ffe75957729a4a0d1682a98684f01), [#20302](https://github.com/open-webui/open-webui/issues/20302), [#23451](https://github.com/open-webui/open-webui/pull/23451)
- ✂️ **Citation spacing cleanup.** When citations are disabled for a model, citation markers and their leftover spacing are now removed together so punctuation and copied text remain cleanly formatted. [#23141](https://github.com/open-webui/open-webui/issues/23141)
- 🧰 **Pipe tool access.** Pipe functions now receive built-in and MCP tools in __tools__, so tools like Web Search and code execution are available when enabled. [#23365](https://github.com/open-webui/open-webui/issues/23365)
- 🧰 **Pipe tool access.** Pipe functions now receive built-in and MCP tools in **tools**, so tools like Web Search and code execution are available when enabled. [#23365](https://github.com/open-webui/open-webui/issues/23365)
- 📚 **Batch file processing database handling.** Batch knowledge file processing now consistently uses the active database session, preventing failures caused by missing database context during file ownership checks and update writes. [#23137](https://github.com/open-webui/open-webui/issues/23137)
- ⚙️ **Default model parameter loading.** The "DEFAULT_MODEL_PARAMS" environment variable is now parsed and applied correctly, so default generation settings are honored reliably without being ignored at startup. [#23223](https://github.com/open-webui/open-webui/pull/23223)
- 🔧 **Web search settings save reliability.** Saving web search configuration now works without server errors, so administrators can update "WEB_FETCH_MAX_CONTENT_LENGTH" and related retrieval settings successfully from the admin interface. [Commit](https://github.com/open-webui/open-webui/commit/36d02aa1477aa1b4e7fb59d022f99693ebfa8667), [#23127](https://github.com/open-webui/open-webui/issues/23127)
+8 -12
View File
@@ -56,10 +56,7 @@ def extract_ssl_mode_from_url(url: str) -> tuple[str, str | None]:
Non-PostgreSQL URLs are returned unchanged with ``ssl_mode=None``.
"""
if not url or not any(
url.startswith(prefix)
for prefix in ('postgresql://', 'postgresql+', 'postgres://')
):
if not url or not any(url.startswith(prefix) for prefix in ('postgresql://', 'postgresql+', 'postgres://')):
return url, None
parsed = urlparse(url)
@@ -126,7 +123,6 @@ def reattach_ssl_mode_to_url(url_without_ssl: str, ssl_mode: str | None) -> str:
return f'{url_without_ssl}{separator}sslmode={ssl_mode}'
class JSONField(types.TypeDecorator):
impl = types.Text
cache_ok = True
@@ -188,7 +184,9 @@ if ENABLE_DB_MIGRATIONS:
DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE = extract_ssl_mode_from_url(DATABASE_URL)
# For psycopg2 (sync engine), re-append sslmode=<value>.
SQLALCHEMY_DATABASE_URL = reattach_ssl_mode_to_url(DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE) if DATABASE_SSL_MODE else DATABASE_URL
SQLALCHEMY_DATABASE_URL = (
reattach_ssl_mode_to_url(DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE) if DATABASE_SSL_MODE else DATABASE_URL
)
def _make_async_url(url: str) -> str:
@@ -332,15 +330,13 @@ get_db = contextmanager(get_session)
# ============================================================
# Use the SSL-stripped URL for asyncpg — SSL is injected via connect_args.
ASYNC_SQLALCHEMY_DATABASE_URL = _make_async_url(DATABASE_URL_WITHOUT_SSL if DATABASE_SSL_MODE else SQLALCHEMY_DATABASE_URL)
ASYNC_SQLALCHEMY_DATABASE_URL = _make_async_url(
DATABASE_URL_WITHOUT_SSL if DATABASE_SSL_MODE else SQLALCHEMY_DATABASE_URL
)
if 'sqlite' in ASYNC_SQLALCHEMY_DATABASE_URL:
# Generous default — async coroutines + no session sharing = high connection demand.
_sqlite_pool_size = (
DATABASE_POOL_SIZE
if isinstance(DATABASE_POOL_SIZE, int) and DATABASE_POOL_SIZE > 0
else 512
)
_sqlite_pool_size = DATABASE_POOL_SIZE if isinstance(DATABASE_POOL_SIZE, int) and DATABASE_POOL_SIZE > 0 else 512
async_engine = create_async_engine(
ASYNC_SQLALCHEMY_DATABASE_URL,
connect_args={'check_same_thread': False},
-2
View File
@@ -307,8 +307,6 @@ class CalendarTable:
cal = result.scalars().first()
return await self._to_calendar_model(cal, db=db) if cal else None
async def insert_new_calendar(
self, user_id: str, form_data: CalendarForm, db: Optional[AsyncSession] = None
) -> Optional[CalendarModel]:
+1 -3
View File
@@ -122,9 +122,7 @@ def build_loader_from_config(request):
)
def _extract_text_from_binary_response(
request, response: requests.Response, url: str
) -> tuple[str, list]:
def _extract_text_from_binary_response(request, response: requests.Response, url: str) -> tuple[str, list]:
"""Download response body to a temp file and extract text using the Loader pipeline."""
import mimetypes
import tempfile
+1 -3
View File
@@ -55,9 +55,7 @@ async def _user_has_automations(request: Request, user) -> bool:
return False
if user.role == 'admin':
return True
return await has_permission(
user.id, 'features.automations', request.app.state.config.USER_PERMISSIONS
)
return await has_permission(user.id, 'features.automations', request.app.state.config.USER_PERMISSIONS)
async def _check_calendar_access(calendar_id: str, user: UserModel, permission: str = 'write') -> CalendarModel:
+12 -4
View File
@@ -293,7 +293,9 @@ async def verify_terminal_server_connection(
) as session:
# Orchestrators expose a policies API; plain terminals don't.
try:
async with session.get(f'{base_url}/api/v1/policies', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
f'{base_url}/api/v1/policies', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.ok:
return {'status': True, 'type': 'orchestrator'}
except Exception:
@@ -301,7 +303,9 @@ async def verify_terminal_server_connection(
# Fall back to open-terminal config endpoint.
try:
async with session.get(f'{base_url}/api/config', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
f'{base_url}/api/config', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.ok:
return {'status': True, 'type': 'terminal'}
except Exception:
@@ -342,7 +346,9 @@ async def put_terminal_server_policy(
timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT),
) as session:
policy_url = f'{base_url}/api/v1/policies/{form_data.policy_id}'
async with session.put(policy_url, headers=headers, json=form_data.policy_data, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.put(
policy_url, headers=headers, json=form_data.policy_data, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.ok:
return await resp.json()
detail = await resp.text()
@@ -369,7 +375,9 @@ async def verify_tool_servers_config(request: Request, form_data: ToolServerConn
trust_env=True,
timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT),
) as session:
async with session.get(discovery_url, ssl=AIOHTTP_CLIENT_SESSION_SSL) as oauth_server_metadata_response:
async with session.get(
discovery_url, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as oauth_server_metadata_response:
if oauth_server_metadata_response.status == 200:
try:
oauth_server_metadata = OAuthMetadata.model_validate(
+3 -1
View File
@@ -117,7 +117,9 @@ async def load_function_from_url(request: Request, form_data: LoadUrlForm, user=
async with aiohttp.ClientSession(
trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
) as session:
async with session.get(url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.status != 200:
raise HTTPException(status_code=resp.status, detail='Failed to fetch the function')
data = await resp.text()
+3 -1
View File
@@ -274,7 +274,9 @@ async def load_tool_from_url(request: Request, form_data: LoadUrlForm, user=Depe
async with aiohttp.ClientSession(
trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT)
) as session:
async with session.get(url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.status != 200:
raise HTTPException(status_code=resp.status, detail='Failed to fetch the tool')
data = await resp.text()
+15 -21
View File
@@ -34,19 +34,19 @@ MARKDOWN_IMAGE_URL_PATTERN = re.compile(r'!\[(.*?)\]\((.+?)\)', re.IGNORECASE)
# Extension-based MIME fallback, only used when ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK is True.
_IMAGE_MIME_FALLBACK = {
".webp": "image/webp",
".png": "image/png",
".jpg": "image/jpeg",
".jpeg": "image/jpeg",
".gif": "image/gif",
".svg": "image/svg+xml",
".bmp": "image/bmp",
".tiff": "image/tiff",
".tif": "image/tiff",
".ico": "image/x-icon",
".heic": "image/heic",
".heif": "image/heif",
".avif": "image/avif",
'.webp': 'image/webp',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.jpeg': 'image/jpeg',
'.gif': 'image/gif',
'.svg': 'image/svg+xml',
'.bmp': 'image/bmp',
'.tiff': 'image/tiff',
'.tif': 'image/tiff',
'.ico': 'image/x-icon',
'.heic': 'image/heic',
'.heif': 'image/heif',
'.avif': 'image/avif',
}
@@ -75,10 +75,7 @@ async def get_image_base64_from_url(url: str) -> Optional[str]:
if file_path.is_file():
with open(file_path, 'rb') as image_file:
encoded_string = base64.b64encode(image_file.read()).decode('utf-8')
content_type = (
mimetypes.guess_type(file_path.name)[0]
or (file.meta or {}).get('content_type')
)
content_type = mimetypes.guess_type(file_path.name)[0] or (file.meta or {}).get('content_type')
if not content_type and ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK:
content_type = _IMAGE_MIME_FALLBACK.get(file_path.suffix.lower())
if not content_type:
@@ -204,10 +201,7 @@ async def get_image_base64_from_file_id(id: str) -> Optional[str]:
if file_path.is_file():
with open(file_path, 'rb') as image_file:
encoded_string = base64.b64encode(image_file.read()).decode('utf-8')
content_type = (
mimetypes.guess_type(file_path.name)[0]
or (file.meta or {}).get('content_type')
)
content_type = mimetypes.guess_type(file_path.name)[0] or (file.meta or {}).get('content_type')
if not content_type and ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK:
content_type = _IMAGE_MIME_FALLBACK.get(file_path.suffix.lower())
if not content_type:
+6 -2
View File
@@ -908,7 +908,9 @@ async def get_terminal_cwd(
timeout=aiohttp.ClientTimeout(total=5),
trust_env=True,
) as session:
async with session.get(cwd_url, headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
cwd_url, headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.status == 200:
data = await resp.json()
return data.get('cwd')
@@ -943,7 +945,9 @@ async def get_terminal_system_prompt(
return None
# 2. Fetch system prompt
async with session.get(f'{base}/system', headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp:
async with session.get(
f'{base}/system', headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
if resp.status == 200:
data = await resp.json()
return data.get('prompt')
@@ -94,7 +94,10 @@
<ConfirmDialog
bind:show={showDeleteConfirm}
title={$i18n.t('Delete Calendar')}
message={$i18n.t('This will permanently delete the calendar "{{name}}" and all its events. This action cannot be undone.', { name: deleteTargetCalendar?.name ?? '' })}
message={$i18n.t(
'This will permanently delete the calendar "{{name}}" and all its events. This action cannot be undone.',
{ name: deleteTargetCalendar?.name ?? '' }
)}
confirmLabel={$i18n.t('Delete')}
onConfirm={confirmDelete}
/>
@@ -219,11 +222,7 @@
stroke="currentColor"
class="size-3"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18 18 6M6 6l12 12"
/>
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
</svg>
</span>
{/if}
+3 -10
View File
@@ -757,10 +757,7 @@
const selectedFolderSubscribe = selectedFolder.subscribe(async (folder) => {
await tick();
if (
folder?.data?.model_ids &&
!equal(selectedModels, folder.data.model_ids)
) {
if (folder?.data?.model_ids && !equal(selectedModels, folder.data.model_ids)) {
selectedModels = folder.data.model_ids;
console.log('Set selectedModels from folder data:', selectedModels);
@@ -1836,8 +1833,7 @@
);
chatFiles = chatFiles.filter(
// Remove duplicates
(item, index, array) =>
array.findIndex((i) => equal(i, item)) === index
(item, index, array) => array.findIndex((i) => equal(i, item)) === index
);
// Create user message
@@ -2176,10 +2172,7 @@
)
);
// Remove duplicates
files = files.filter(
(item, index, array) =>
array.findIndex((i) => equal(i, item)) === index
);
files = files.filter((item, index, array) => array.findIndex((i) => equal(i, item)) === index);
scrollToBottom();
eventTarget.dispatchEvent(
+3 -1
View File
@@ -1941,7 +1941,9 @@
{#if !history?.currentId || history.messages[history.currentId]?.done == true}
<!-- Terminal Server Selector -->
{@const hasDirectToolServerAccess = $_user?.role === 'admin' || ($_user?.permissions?.features?.direct_tool_servers ?? true)}
{@const hasDirectToolServerAccess =
$_user?.role === 'admin' ||
($_user?.permissions?.features?.direct_tool_servers ?? true)}
{#if terminalCapableModels.length > 0 && (($terminalServers ?? []).some((t) => t.id) || (hasDirectToolServerAccess && (($terminalServers ?? []).some((t) => !t.id) || ($settings?.terminalServers ?? []).some((s) => s.url))))}
<TerminalMenu bind:show={showTerminalMenu} />
{/if}
@@ -37,8 +37,13 @@
"{{user}}'s Chats": "دردشات {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -206,6 +211,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -280,6 +286,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -417,6 +424,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "اتصالات",
@@ -529,6 +537,8 @@
"Delete All Chats": "حذف جميع الدردشات",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "حذف المحادثه.",
"Delete chat?": "",
"Delete Event": "",
@@ -890,6 +900,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1629,6 +1640,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
@@ -1652,6 +1664,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "إزالة",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1902,7 +1915,15 @@
"Start a new conversation": "",
"Start of the channel": "بداية القناة",
"Start Tag": "",
"Starting in {{count}} minutes_zero": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_two": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2015,6 +2036,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "شرح شامل",
"Thought": "",
@@ -2101,6 +2123,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
+23
View File
@@ -37,8 +37,13 @@
"{{user}}'s Chats": "محادثات المستخدم {{user}}",
"{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "يتوفر الآن إصدار جديد (v{{LATEST_VERSION}}).",
@@ -206,6 +211,7 @@
"Ask a question": "اطرح سؤالاً",
"Assistant": "المساعد",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -280,6 +286,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "التقويم",
"Calendar deleted": "",
"Calendars": "",
"Call": "مكالمة",
"Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT",
@@ -417,6 +424,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "الاتصالات",
@@ -529,6 +537,8 @@
"Delete All Chats": "حذف جميع الدردشات",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "حذف المحادثه.",
"Delete chat?": "هل تريد حذف المحادثة؟",
"Delete Event": "",
@@ -890,6 +900,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1629,6 +1640,7 @@
"Reasoning Effort": "جهد الاستدلال",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
@@ -1652,6 +1664,7 @@
"Relevance": "الصلة",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "إزالة",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1902,7 +1915,15 @@
"Start a new conversation": "",
"Start of the channel": "بداية القناة",
"Start Tag": "",
"Starting in {{count}} minutes_zero": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_two": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2015,6 +2036,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "هذا سيحذف <strong>{{NAME}}</strong> و<strong>كل محتوياته</strong>.",
"This will delete all models including custom models": "هذا سيحذف جميع النماذج بما في ذلك النماذج المخصصة",
"This will delete all models including custom models and cannot be undone.": "هذا سيحذف جميع النماذج بما في ذلك المخصصة ولا يمكن التراجع عن هذا الإجراء.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "هذا سيؤدي إلى إعادة تعيين قاعدة المعرفة ومزامنة جميع الملفات. هل ترغب في المتابعة؟",
"Thorough explanation": "شرح شامل",
"Thought": "",
@@ -2101,6 +2123,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "اكشف الأسرار",
"Unpin": "إزالة التثبيت",
"Unpin from Sidebar": "",
"Unravel secrets": "فكّ الأسرار",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} adlı istifadəçinin söhbətləri",
"{{webUIName}} Backend Required": "{{webUIName}} üçün Backend tələb olunur",
"*Prompt node ID(s) are required for image generation": "*Şəkil yaradılması üçün sorğu (prompt) qovşaq ID-ləri tələb olunur",
"1 hour before": "",
"1 Source": "1 Mənbə",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1 dəq əvvəl",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "İnsanların üzv kimi qoşulduğu əməkdaşlıq kanalı",
"A discussion channel where access is controlled by groups and permissions": "Girişin qruplar və icazələrlə idarə olunduğu müzakirə kanalı",
"A new version (v{{LATEST_VERSION}}) is now available.": "Yeni versiya (v{{LATEST_VERSION}}) artıq mövcuddur.",
@@ -202,6 +207,7 @@
"Ask a question": "Sual verin",
"Assistant": "Köməkçi",
"Async Embedding Processing": "Asinxron Yerləşdirmə (Embedding) Emalı",
"At time of event": "",
"Attach File From Knowledge": "Bilik bazasından fayl əlavə et",
"Attach Files": "",
"Attach Knowledge": "Bilik əlavə et",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Veb Yükləyicidən Yan Keç",
"Cache Base Model List": "Əsas Model Siyahısını Keşlə",
"Calendar": "Təqvim",
"Calendar deleted": "",
"Calendars": "",
"Call": "Zəng",
"Call feature is not supported when using Web STT engine": "Veb STT mühərriki istifadə edildikdə zəng funksiyası dəstəklənmir",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Öz OpenAPI uyğun xarici alət serverlərinizə qoşulun.",
"Connected ({{type}})": "",
"Connection failed": "Bağlantı uğursuz oldu",
"Connection lost. Reconnecting...": "",
"Connection successful": "Bağlantı uğurludur",
"Connection Type": "Bağlantı növü",
"Connections": "Bağlantılar",
@@ -525,6 +533,8 @@
"Delete All Chats": "Bütün çatları sil",
"Delete all contents inside this folder": "Bu qovluğun daxilindəki bütün məzmunu sil",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Çatı sil",
"Delete chat?": "Çat silinsin?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "{{URL}} terminal serverinə qoşulmaq mümkün olmadı",
"Failed to copy link": "Link kopyalanmadı",
"Failed to create API Key.": "API açarı yaradılmadı.",
"Failed to delete calendar": "",
"Failed to delete note": "Qeyd silinmədi",
"Failed to download image": "Şəkil yüklənmədi",
"Failed to extract content from the file: {{error}}": "Fayldan məzmun çıxarıla bilmədi: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Mühakimə səyi",
"Reasoning Tags": "Mühakimə etiketləri",
"Recently Used": "",
"Reconnected": "",
"Record": "Yaz (səs)",
"Record voice": "Səsi yaz",
"Redirecting you to Open WebUI Community": "Open WebUI İcmasına yönləndirilirsiniz",
@@ -1648,6 +1660,7 @@
"Relevance": "Uyğunluq",
"Relevance Threshold": "Uyğunluq həddi",
"Remember Dismissal": "İmtinanı yadda saxla",
"Reminder": "",
"Remove": "Çıxar",
"Remove {{MODELID}} from list.": "{{MODELID}} siyahıdan çıxarılsın.",
"Remove action": "Əməliyyatı çıxar",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Yeni söhbətə başlayın",
"Start of the channel": "Kanalın başlanğıcı",
"Start Tag": "Start Tag",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Starting kernel...",
"Starting now": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status uğurla təmizləndi",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Bu, <strong>{{NAME}}</strong> adlı elementi və <strong>onun bütün məzmununu</strong> siləcək.",
"This will delete all models including custom models": "Bu, fərdi modellər də daxil olmaqla bütün modelləri siləcək",
"This will delete all models including custom models and cannot be undone.": "Bu, fərdi modellər də daxil olmaqla bütün modelləri siləcək və geri qaytarıla bilməz.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilik bazasını sıfırlayacaq və bütün faylları sinxronizasiya edəcək. Davam etmək istəyirsiniz?",
"Thorough explanation": "Ətraflı izahat",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} sonra yaddaşdan silinir",
"Unlock mysteries": "Sirrləri açın",
"Unpin": "Sabitlənmişdən çıxar",
"Unpin from Sidebar": "",
"Unravel secrets": "Gizlinləri üzə çıxarın",
"Unshare Chat": "Çatı paylaşımı dayandır",
"Unsupported file type.": "Dəstəklənməyən fayl növü.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}'s чатове",
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
"*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Вече е налична нова версия (v{{LATEST_VERSION}}).",
@@ -202,6 +207,7 @@
"Ask a question": "Задайте въпрос",
"Assistant": "Асистент",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Календар",
"Calendar deleted": "",
"Calendars": "",
"Call": "Обаждане",
"Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Връзки",
@@ -525,6 +533,8 @@
"Delete All Chats": "Изтриване на всички чатове",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Изтриване на Чат",
"Delete chat?": "Изтриване на чата?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Неуспешно създаване на API ключ.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Усилие за разсъждение",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Запиши",
"Record voice": "Записване на глас",
"Redirecting you to Open WebUI Community": "Пренасочване към OpenWebUI общността",
@@ -1648,6 +1660,7 @@
"Relevance": "Релевантност",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Изтриване",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Начало на канала",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Това ще изтрие <strong>{{NAME}}</strong> и <strong>цялото му съдържание</strong>.",
"This will delete all models including custom models": "Това ще изтрие всички модели, включително персонализираните модели",
"This will delete all models including custom models and cannot be undone.": "Това ще изтрие всички модели, включително персонализираните модели, и не може да бъде отменено.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Това ще нулира базата знания и ще синхронизира всички файлове. Желаете ли да продължите?",
"Thorough explanation": "Подробно обяснение",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Разкрий мистерии",
"Unpin": "Откачи",
"Unpin from Sidebar": "",
"Unravel secrets": "Разгадай тайни",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}র চ্যাটস",
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "কানেকশনগুলো",
@@ -525,6 +533,8 @@
"Delete All Chats": "সব চ্যাট মুছে ফেলুন",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "চ্যাট মুছে ফেলুন",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "ভয়েস রেকর্ড করুন",
"Redirecting you to Open WebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "রিমুভ করুন",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "চ্যানেলের শুরু",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།",
"{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།",
"*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "པར་གཞི་གསར་པ། (v{{LATEST_VERSION}}) ད་ལྟ་ཡོད།",
@@ -201,6 +206,7 @@
"Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།",
"Assistant": "ལག་རོགས་པ།",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "ལོ་ཐོ།",
"Calendar deleted": "",
"Calendars": "",
"Call": "སྐད་འབོད།",
"Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "ཁྱེད་རང་གི་ OpenAPI དང་མཐུན་པའི་ཕྱི་རོལ་ལག་ཆའི་སར་བར་ལ་སྦྲེལ་བ།",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "སྦྲེལ་མཐུད།",
@@ -524,6 +532,8 @@
"Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "ཁ་བརྡ་བསུབ་པ།",
"Delete chat?": "ཁ་བརྡ་བསུབ་པ།?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "API ལྡེ་མིག་བཟོ་མ་ཐུབ།",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
"Redirecting you to Open WebUI Community": "ཁྱེད་ Open WebUI སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
@@ -1647,6 +1659,7 @@
"Relevance": "འབྲེལ་ཡོད་རང་བཞིན།",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "འདོར་བ།",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "",
"Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་",
"Start Tag": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "འདིས་ <strong>{{NAME}}</strong> དང་ <strong>དེའི་ནང་དོན་ཡོངས་རྫོགས་</strong> བསུབ་ངེས།",
"This will delete all models including custom models": "འདིས་སྲོལ་བཟོས་དཔེ་དབྱིབས་ཚུད་པའི་དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་ངེས།",
"This will delete all models including custom models and cannot be undone.": "འདིས་སྲོལ་བཟོས་དཔེ་དབྱིབས་ཚུད་པའི་དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་ངེས་པ་དང་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ།",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "འདིས་ཤེས་བྱའི་རྟེན་གཞི་སླར་སྒྲིག་བྱས་ནས་ཡིག་ཆ་ཡོངས་རྫོགས་མཉམ་སྡེབ་བྱེད་ངེས། ཁྱེད་མུ་མཐུད་འདོད་ཡོད་དམ།",
"Thorough explanation": "འགྲེལ་བཤད་ཞིབ་ཚགས།",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "གསང་བ་གྲོལ་བ།",
"Unpin": "ཕྱིར་འདོན།",
"Unpin from Sidebar": "",
"Unravel secrets": "གསང་བ་གྲོལ་བ།",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -203,6 +208,7 @@
"Ask a question": "Pitaj pitanje",
"Assistant": "Asistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Prikazi znanje",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Poziv",
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "Konekcija nije uspjela",
"Connection lost. Reconnecting...": "",
"Connection successful": "Konekcija uspjesna",
"Connection Type": "Tip Konekcije",
"Connections": "Povezivanja",
@@ -526,6 +534,8 @@
"Delete All Chats": "Izbriši sve razgovore",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Izbriši razgovor",
"Delete chat?": "",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
@@ -1649,6 +1661,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Ukloni",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Početak kanala",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "Detaljno objašnjenje",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Els xats de {{user}}",
"{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari",
"*Prompt node ID(s) are required for image generation": "*Els identificadors de nodes d'indicacions són necessaris per a la generació d'imatges",
"1 hour before": "",
"1 Source": "1 font",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1m_time_ago",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Un canal de col·laboració on la gent s'uneix com a membres",
"A discussion channel where access is controlled by groups and permissions": "Un canal de discussió on l'accés està controlat per grups i permisos",
"A new version (v{{LATEST_VERSION}}) is now available.": "Hi ha una nova versió disponible (v{{LATEST_VERSION}}).",
@@ -203,6 +208,7 @@
"Ask a question": "Fer una pregunta",
"Assistant": "Assistent",
"Async Embedding Processing": "Procés d'incrustat asíncron",
"At time of event": "",
"Attach File From Knowledge": "Adjuntar arxiu del coneixement",
"Attach Files": "Adjuntar arxius",
"Attach Knowledge": "Adjuntar coneixement",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Ometre el càrregador web",
"Cache Base Model List": "Llista de models base en memòria cau",
"Calendar": "Calendari",
"Calendar deleted": "",
"Calendars": "",
"Call": "Trucada",
"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Connecta als teus propis servidors d'eines externs compatibles amb OpenAPI",
"Connected ({{type}})": "Connectat ({{type}})",
"Connection failed": "La connexió ha fallat",
"Connection lost. Reconnecting...": "",
"Connection successful": "Connexió correcta",
"Connection Type": "Tipus de connexió",
"Connections": "Connexions",
@@ -526,6 +534,8 @@
"Delete All Chats": "Eliminar tots els xats",
"Delete all contents inside this folder": "Eliminar tot el contingut d'aquesta carpeta",
"Delete automation?": "Eliminar l'automatització",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Eliminar xat",
"Delete chat?": "Eliminar el xat?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "No s'ha pogut connecta al servidor de terminal {{URL}}",
"Failed to copy link": "No s'ha pogut copiar l'enllaç",
"Failed to create API Key.": "No s'ha pogut crear la clau API.",
"Failed to delete calendar": "",
"Failed to delete note": "No s'ha pogut eliminar la nota",
"Failed to download image": "No s'ha pogut descarregar la imatge",
"Failed to extract content from the file: {{error}}": "No s'ha pogut extreure el contingut del fitxer: {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Esforç de raonament",
"Reasoning Tags": "Etiqueta de raonament",
"Recently Used": "Recentment utilitzat",
"Reconnected": "",
"Record": "Enregistrar",
"Record voice": "Enregistrar la veu",
"Redirecting you to Open WebUI Community": "Redirigint-te a la comunitat OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Rellevància",
"Relevance Threshold": "Límit de rellevància",
"Remember Dismissal": "Recordar la decisió de refutar",
"Reminder": "",
"Remove": "Eliminar",
"Remove {{MODELID}} from list.": "Eliminar {{MODELID}} de la llista",
"Remove action": "Eliminar l'acció",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Iniciar una nova conversa",
"Start of the channel": "Inici del canal",
"Start Tag": "Etiqueta d'inici",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Iniciant el kernel...",
"Starting now": "",
"State": "Estat",
"Status": "Estat",
"Status cleared successfully": "S'ha eliminat correctament el teu estat",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Això eliminarà <strong>{{NAME}}</strong> i <strong>tots els continguts</strong>.",
"This will delete all models including custom models": "Això eliminarà tots els models incloent els personalitzats",
"This will delete all models including custom models and cannot be undone.": "Això eliminarà tots els models incloent els personalitzats i no es pot desfer",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
"Thorough explanation": "Explicació en detall",
"Thought": "Pensament",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Es descarrega {{FROM_NOW}}",
"Unlock mysteries": "Desbloqueja els misteris",
"Unpin": "Alliberar",
"Unpin from Sidebar": "",
"Unravel secrets": "Descobreix els secrets",
"Unshare Chat": "Deixar de compartir el xat",
"Unsupported file type.": "Tipus no suportat",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Mga koneksyon",
@@ -525,6 +533,8 @@
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Irekord ang tingog",
"Redirecting you to Open WebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Sinugdan sa channel",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "Konverzace uživatele {{user}}",
"{{webUIName}} Backend Required": "Je vyžadován backend {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Pro generování obrázků jsou vyžadována ID uzlů instrukce",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Nová verze (v{{LATEST_VERSION}}) je nyní k dispozici.",
@@ -204,6 +209,7 @@
"Ask a question": "Položit otázku",
"Assistant": "Asistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Připojit znalosti",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "Obejít webový zavaděč",
"Cache Base Model List": "Ukládat seznam základních modelů do mezipaměti",
"Calendar": "Kalendář",
"Calendar deleted": "",
"Calendars": "",
"Call": "Volání",
"Call feature is not supported when using Web STT engine": "Funkce volání není podporována při použití webového STT jádra.",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Připojte se k vlastním externím serverům nástrojů kompatibilním s OpenAPI.",
"Connected ({{type}})": "",
"Connection failed": "Připojení se nezdařilo",
"Connection lost. Reconnecting...": "",
"Connection successful": "Připojení úspěšné",
"Connection Type": "Typ připojení",
"Connections": "Připojení",
@@ -527,6 +535,8 @@
"Delete All Chats": "Smazat všechny konverzace",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Smazat konverzaci",
"Delete chat?": "Smazat konverzaci?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Nepodařilo se zkopírovat odkaz",
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
"Failed to delete calendar": "",
"Failed to delete note": "Nepodařilo se smazat poznámku",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "Nepodařilo se extrahovat obsah ze souboru: {{error}}",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "reasoning effort",
"Reasoning Tags": "reasoning tags",
"Recently Used": "",
"Reconnected": "",
"Record": "Nahrát",
"Record voice": "Nahrát hlas",
"Redirecting you to Open WebUI Community": "Přesměrovávám vás do komunity Open WebUI",
@@ -1650,6 +1662,7 @@
"Relevance": "Relevance",
"Relevance Threshold": "Prahová hodnota relevance",
"Remember Dismissal": "Pamatovat si zavření",
"Reminder": "",
"Remove": "Odebrat",
"Remove {{MODELID}} from list.": "Odebrat {{MODELID}} ze seznamu.",
"Remove action": "",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "",
"Start of the channel": "Začátek kanálu",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Tím se smaže <strong>{{NAME}}</strong> a <strong>veškerý jeho obsah</strong>.",
"This will delete all models including custom models": "Tím se smažou všechny modely včetně vlastních modelů",
"This will delete all models including custom models and cannot be undone.": "Tím se smažou všechny modely včetně vlastních a tuto akci nelze vrátit zpět.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tím se resetuje znalostní báze a synchronizují se všechny soubory. Přejete si pokračovat?",
"Thorough explanation": "Důkladné vysvětlení",
"Thought": "",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "Uvolní se {{FROM_NOW}}",
"Unlock mysteries": "Odhalte záhady",
"Unpin": "Odepnout",
"Unpin from Sidebar": "",
"Unravel secrets": "Rozplétejte tajemství",
"Unshare Chat": "",
"Unsupported file type.": "Nepodporovaný typ souboru.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend kræves",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder",
"1 hour before": "",
"1 Source": "1 kilde",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "En samarbejdskanal hvor folk tilmelder sig som medlemmer",
"A discussion channel where access is controlled by groups and permissions": "En diskussionskanal hvor adgang styres af grupper og tilladelser",
"A new version (v{{LATEST_VERSION}}) is now available.": "En ny version (v{{LATEST_VERSION}}) er nu tilgængelig.",
@@ -202,6 +207,7 @@
"Ask a question": "Stil et spørgsmål",
"Assistant": "Assistent",
"Async Embedding Processing": "Asynkron embedding processering",
"At time of event": "",
"Attach File From Knowledge": "Vedhæft fil fra viden",
"Attach Files": "",
"Attach Knowledge": "Vedhæft viden",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Omgå Web Loader",
"Cache Base Model List": "Cache Base Model List",
"Calendar": "Kalender",
"Calendar deleted": "",
"Calendars": "",
"Call": "Opkald",
"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Opret forbindelse til dine egne OpenAPI kompatible eksterne værktøjsservere.",
"Connected ({{type}})": "",
"Connection failed": "Forbindelse mislykkedes",
"Connection lost. Reconnecting...": "",
"Connection successful": "Forbindelse lykkedes",
"Connection Type": "Forbindelsestype",
"Connections": "Forbindelser",
@@ -525,6 +533,8 @@
"Delete All Chats": "Slet alle chats",
"Delete all contents inside this folder": "Slet alt indhold i denne mappe",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Slet chat",
"Delete chat?": "Slet chat?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Kunne ikke kopiere link",
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
"Failed to delete calendar": "",
"Failed to delete note": "Kunne ikke slette note",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "Kunne ikke udtrække indhold fra filen: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Ræsonnements indsats",
"Reasoning Tags": "Ræsonneringstags",
"Recently Used": "",
"Reconnected": "",
"Record": "Optag",
"Record voice": "Optag stemme",
"Redirecting you to Open WebUI Community": "Omdirigerer dig til OpenWebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevans",
"Relevance Threshold": "Relevans tærskel",
"Remember Dismissal": "Husk afvisning",
"Reminder": "",
"Remove": "Fjern",
"Remove {{MODELID}} from list.": "Fjern {{MODELID}} fra listen.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Start en ny samtale",
"Start of the channel": "Kanalens start",
"Start Tag": "Start tag",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status slettet",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dette vil slette <strong>{{NAME}}</strong> og <strong>alt dens indhold</strong>.",
"This will delete all models including custom models": "Dette vil slette alle modeller, inklusive brugerdefinerede modeller",
"This will delete all models including custom models and cannot be undone.": "Dette vil slette alle modeller, inklusive brugerdefinerede modeller og kan ikke fortrydes.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?",
"Thorough explanation": "Grundig forklaring",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Aflaster {{FROM_NOW}}",
"Unlock mysteries": "Lås op for mysterier",
"Unpin": "Frigør",
"Unpin from Sidebar": "",
"Unravel secrets": "Afslør hemmeligheder",
"Unshare Chat": "",
"Unsupported file type.": "Ikke-understøttet filtype.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "Chats von {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
"*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich",
"1 hour before": "",
"1 Source": "1 Quelle",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "vor 1 Minute",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Ein Kanal zur Zusammenarbeit, dem Mitglieder beitreten können",
"A discussion channel where access is controlled by groups and permissions": "Ein Diskussionskanal, dessen Zugriff durch Gruppen und Berechtigungen gesteuert wird",
"A new version (v{{LATEST_VERSION}}) is now available.": "Eine neue Version (v{{LATEST_VERSION}}) ist jetzt verfügbar.",
@@ -202,6 +207,7 @@
"Ask a question": "Stellen Sie eine Frage",
"Assistant": "Assistent",
"Async Embedding Processing": "Asynchrone Embedding-Verarbeitung",
"At time of event": "",
"Attach File From Knowledge": "Datei aus Wissensspeicher anhängen",
"Attach Files": "Dateien anhängen",
"Attach Knowledge": "Wissen anhängen",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Web-Loader umgehen",
"Cache Base Model List": "Basismodell-Liste cachen",
"Calendar": "Kalender",
"Calendar deleted": "",
"Calendars": "",
"Call": "Anruf",
"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird bei Verwendung der Web-STT-Engine nicht unterstützt.",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Verbinden Sie Ihre eigenen OpenAPI-kompatiblen externen Tool-Server.",
"Connected ({{type}})": "Verbunden ({{type}})",
"Connection failed": "Verbindung fehlgeschlagen",
"Connection lost. Reconnecting...": "",
"Connection successful": "Verbindung erfolgreich",
"Connection Type": "Verbindungstyp",
"Connections": "Verbindungen",
@@ -525,6 +533,8 @@
"Delete All Chats": "Alle Chats löschen",
"Delete all contents inside this folder": "Alle Inhalte in diesem Ordner löschen",
"Delete automation?": "Automatisierung löschen?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Chat löschen",
"Delete chat?": "Chat löschen?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "Fehler beim Verbinden zum Terminal Server {{URL}}",
"Failed to copy link": "Link konnte nicht kopiert werden",
"Failed to create API Key.": "API-Schlüssel konnte nicht erstellt werden.",
"Failed to delete calendar": "",
"Failed to delete note": "Notiz konnte nicht gelöscht werden",
"Failed to download image": "Bild konnte nicht heruntergeladen werden",
"Failed to extract content from the file: {{error}}": "Inhaltsextraktion fehlgeschlagen: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Reasoning Effort",
"Reasoning Tags": "Reasoning Tags",
"Recently Used": "Kürzlich verwendet",
"Reconnected": "",
"Record": "Aufnehmen",
"Record voice": "Stimme aufnehmen",
"Redirecting you to Open WebUI Community": "Sie werden zur Open WebUI Community weitergeleitet",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevanz",
"Relevance Threshold": "Relevanzschwelle",
"Remember Dismissal": "Ausblendung merken",
"Reminder": "",
"Remove": "Entfernen",
"Remove {{MODELID}} from list.": "{{MODELID}} von der Liste entfernen.",
"Remove action": "Action entfernen",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Neue Unterhaltung beginnen",
"Start of the channel": "Beginn des Kanals",
"Start Tag": "Start-Tag",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Kernel starten...",
"Starting now": "",
"State": "Zustand",
"Status": "Status",
"Status cleared successfully": "Status erfolgreich gelöscht",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dies löscht <strong>{{NAME}}</strong> und <strong>alle Inhalte</strong>.",
"This will delete all models including custom models": "Dies löscht alle Modelle, einschließlich benutzerdefinierter Modelle",
"This will delete all models including custom models and cannot be undone.": "Dies löscht alle Modelle, einschließlich benutzerdefinierter Modelle, und kann nicht rückgängig gemacht werden.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird der Wissensspeicher zurückgesetzt und alle Dateien werden synchronisiert. Möchten Sie fortfahren?",
"Thorough explanation": "Ausführliche Erklärung",
"Thought": "Gedanke",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Entlädt {{FROM_NOW}}",
"Unlock mysteries": "Geheimnisse entschlüsseln",
"Unpin": "Lösen",
"Unpin from Sidebar": "",
"Unravel secrets": "Geheimnisse lüften",
"Unshare Chat": "Chat-Freigabe entfernen",
"Unsupported file type.": "Nicht unterstützter Dateityp.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Connections",
@@ -525,6 +533,8 @@
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Record Bark",
"Redirecting you to Open WebUI Community": "Redirecting you to Open WebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Start of channel",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "Συνομιλίες του {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend",
"*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Μια νέα έκδοση (v{{LATEST_VERSION}}) είναι τώρα διαθέσιμη.",
@@ -202,6 +207,7 @@
"Ask a question": "Ρωτήστε μια ερώτηση",
"Assistant": "Βοηθός",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Προσθήκη Knowledge",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Παράκαμψη Φορτωτή Διαδικτύου",
"Cache Base Model List": "Αποθήκευση Λίστας Βασικών Μοντέλων Στην Κρυφή Μνήμη",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Κλήση",
"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Συνδεθείτε στους δικούς σας διακομιστές εξωτερικών εργαλείων συμβατών με OpenAPI.",
"Connected ({{type}})": "",
"Connection failed": "Σύνδεση απέτυχε",
"Connection lost. Reconnecting...": "",
"Connection successful": "Σύνδεση επιτυχής",
"Connection Type": "Είδος Σύνδεσης",
"Connections": "Συνδέσεις",
@@ -525,6 +533,8 @@
"Delete All Chats": "Διαγραφή Όλων των Συνομιλιών",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Διαγραφή Συνομιλίας",
"Delete chat?": "Διαγραφή συνομιλίας;",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Αποτυχία αντιγραφής συνδέσμου",
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
"Failed to delete calendar": "",
"Failed to delete note": "Αποτυχία διαγραφής σημειώσεως",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Εγγραφή φωνής",
"Redirecting you to Open WebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
@@ -1648,6 +1660,7 @@
"Relevance": "Σχετικότητα",
"Relevance Threshold": "Όριο Σχετικότητας",
"Remember Dismissal": "Θύμηση Απόρριψης",
"Reminder": "",
"Remove": "Αφαίρεση",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Αρχή του καναλιού",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Αυτό θα διαγράψει το <strong>{{NAME}}</strong> και <strong>όλο το περιεχόμενό του</strong>.",
"This will delete all models including custom models": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων",
"This will delete all models including custom models and cannot be undone.": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων και δεν μπορεί να αναιρεθεί.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Αυτό θα επαναφέρει τη βάση γνώσης και θα συγχρονίσει όλα τα αρχεία. Θέλετε να συνεχίσετε;",
"Thorough explanation": "Λεπτομερής εξήγηση",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Ξεκλείδωμα μυστηρίων",
"Unpin": "Ξεκαρφίτσωμα",
"Unpin from Sidebar": "",
"Unravel secrets": "Ξετυλίξτε μυστικά",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "",
@@ -525,6 +533,8 @@
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "",
@@ -525,6 +533,8 @@
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes",
"1 hour before": "",
"1 Source": "1 Fuente",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "hace_1m",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Canal colaborativo donde la gente se une como miembro",
"A discussion channel where access is controlled by groups and permissions": "Un canal de discusión con el acceso controlado mediante grupos y permisos",
"A new version (v{{LATEST_VERSION}}) is now available.": "Nueva versión (v{{LATEST_VERSION}}) disponible.",
@@ -203,6 +208,7 @@
"Ask a question": "Haz una pregunta",
"Assistant": "Asistente",
"Async Embedding Processing": "Procesado Asíncrono al Incrustrar",
"At time of event": "",
"Attach File From Knowledge": "Adjuntar Archivo desde Conocimiento",
"Attach Files": "Adjuntar Archivos",
"Attach Knowledge": "Adjuntar Conocimiento",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Desactivar Cargar de Web",
"Cache Base Model List": "Cachear Lista de Cache Modelos",
"Calendar": "Calendario",
"Calendar deleted": "",
"Calendars": "",
"Call": "Llamada",
"Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Conectar a tus propios endpoints externos de herramientas compatibles con OpenAPI.",
"Connected ({{type}})": "Connectado ({{type}})",
"Connection failed": "Conexión fallida",
"Connection lost. Reconnecting...": "",
"Connection successful": "Conexión realizada",
"Connection Type": "Tipo de Conexión",
"Connections": "Conexiones",
@@ -526,6 +534,8 @@
"Delete All Chats": "Borrar todos los chats",
"Delete all contents inside this folder": "Borrar todo el contenido de esta carpeta",
"Delete automation?": "¿Borrar automatización?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Borrar Chat",
"Delete chat?": "¿Borrar el chat?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "Fallo al conectar al servidor de terminal: {{URL}}",
"Failed to copy link": "Fallo al copiar enlace",
"Failed to create API Key.": "Fallo al crear la Clave API.",
"Failed to delete calendar": "",
"Failed to delete note": "Fallo al eliminar nota",
"Failed to download image": "Fallo al descargar imagen",
"Failed to extract content from the file: {{error}}": "Fallo al extraer el contenido del archivo: {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Esfuerzo del Razonamiento",
"Reasoning Tags": "Etiquetas de Razonamiento",
"Recently Used": "Usado Recientemente",
"Reconnected": "",
"Record": "Grabar",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionando a la Comunidad Open-WebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Relevancia",
"Relevance Threshold": "Umbral de Relevancia",
"Remember Dismissal": "Recordar Descartes (de notificaciones)",
"Reminder": "",
"Remove": "Eliminar",
"Remove {{MODELID}} from list.": "Eliminar {{MODELID}} de la lista.",
"Remove action": "Eliminar acción",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Comenzar una conversación nueva",
"Start of the channel": "Inicio del canal",
"Start Tag": "Etiqueta de Inicio",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Iniciando el núcleo...",
"Starting now": "",
"State": "Estado",
"Status": "Estado",
"Status cleared successfully": "Estado limpiado correctamente",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esto eliminará <strong>{{NAME}}</strong> y <strong>todo su contenido</strong>.",
"This will delete all models including custom models": "Esto eliminará todos los modelos, incluidos los modelos personalizados",
"This will delete all models including custom models and cannot be undone.": "Esto eliminará todos los modelos, incluidos los modelos personalizados y no se puede deshacer.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reinicializará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
"Thorough explanation": "Explicación exhaustiva",
"Thought": "Pensando",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Descargas {{FROM_NOW}}",
"Unlock mysteries": "Desbloquear misterios",
"Unpin": "Desfijar",
"Unpin from Sidebar": "",
"Unravel secrets": "Desentrañar secretos",
"Unshare Chat": "Descompartir Chat",
"Unsupported file type.": "Tipo de archivo no soportado",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} vestlused",
"{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik",
"*Prompt node ID(s) are required for image generation": "*Sisendi sõlme ID(d) on piltide genereerimiseks vajalikud",
"1 hour before": "",
"1 Source": "1 allikas",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1m tagasi",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Koostöökanal, kuhu inimesed liituvad liikmetena",
"A discussion channel where access is controlled by groups and permissions": "Arutelukanal, kus juurdepääsu kontrollivad grupid ja õigused",
"A new version (v{{LATEST_VERSION}}) is now available.": "Uus versioon (v{{LATEST_VERSION}}) on saadaval.",
@@ -202,6 +207,7 @@
"Ask a question": "Esita küsimus",
"Assistant": "Assistent",
"Async Embedding Processing": "Asünkroonne manustamise töötlemine",
"At time of event": "",
"Attach File From Knowledge": "Lisa fail teadmistest",
"Attach Files": "",
"Attach Knowledge": "Lisa teadmised",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Jäta veebilaadija vahele",
"Cache Base Model List": "Puhverda baasmudelite nimekiri",
"Calendar": "Kalender",
"Calendar deleted": "",
"Calendars": "",
"Call": "Kõne",
"Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Ühendu oma OpenAPI-ga ühilduvate väliste tööriistaserveritega.",
"Connected ({{type}})": "",
"Connection failed": "Ühendus ebaõnnestus",
"Connection lost. Reconnecting...": "",
"Connection successful": "Ühendus õnnestus",
"Connection Type": "Ühenduse tüüp",
"Connections": "Ühendused",
@@ -525,6 +533,8 @@
"Delete All Chats": "Kustuta kõik vestlused",
"Delete all contents inside this folder": "Kustuta kogu selle kausta sisu",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Kustuta vestlus",
"Delete chat?": "Kustutada vestlus?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "Ühendamine {{URL}} terminali serveriga ebaõnnestus",
"Failed to copy link": "Lingi kopeerimine ebaõnnestus",
"Failed to create API Key.": "API võtme loomine ebaõnnestus.",
"Failed to delete calendar": "",
"Failed to delete note": "Märkme kustutamine ebaõnnestus",
"Failed to download image": "Pildi allalaadimine ebaõnnestus",
"Failed to extract content from the file: {{error}}": "Failist sisu eraldamine ebaõnnestus: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Arutluspingutus",
"Reasoning Tags": "Arutlussildid",
"Recently Used": "",
"Reconnected": "",
"Record": "Salvesta",
"Record voice": "Salvesta hääl",
"Redirecting you to Open WebUI Community": "Suunamine Open WebUI kogukonda",
@@ -1648,6 +1660,7 @@
"Relevance": "Asjakohasus",
"Relevance Threshold": "Asjakohasuse lävi",
"Remember Dismissal": "Pea sulgemist meeles",
"Reminder": "",
"Remove": "Eemalda",
"Remove {{MODELID}} from list.": "Eemalda {{MODELID}} nimekirjast.",
"Remove action": "Eemalda toiming",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Alusta uut vestlust",
"Start of the channel": "Kanali algus",
"Start Tag": "Algussilt",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Kerneli käivitamine...",
"Starting now": "",
"State": "",
"Status": "Olek",
"Status cleared successfully": "Olek edukalt tühjendatud",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "See kustutab <strong>{{NAME}}</strong> ja <strong>kogu selle sisu</strong>.",
"This will delete all models including custom models": "See kustutab kõik mudelid, sealhulgas kohandatud mudelid",
"This will delete all models including custom models and cannot be undone.": "See kustutab kõik mudelid, sealhulgas kohandatud mudelid, ja seda ei saa tagasi võtta.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "See lähtestab teadmiste baasi ja sünkroniseerib kõik failid. Kas soovite jätkata?",
"Thorough explanation": "Põhjalik selgitus",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Laaditakse maha {{FROM_NOW}}",
"Unlock mysteries": "Ava mõistatused",
"Unpin": "Eemalda kinnitus",
"Unpin from Sidebar": "",
"Unravel secrets": "Ava saladused",
"Unshare Chat": "Lõpeta vestluse jagamine",
"Unsupported file type.": "Toetamata failitüüp.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}-ren Txatak",
"{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa",
"*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Bertsio berri bat (v{{LATEST_VERSION}}) eskuragarri dago orain.",
@@ -202,6 +207,7 @@
"Ask a question": "Egin galdera bat",
"Assistant": "Laguntzailea",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Deia",
"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Konexioak",
@@ -525,6 +533,8 @@
"Delete All Chats": "Ezabatu Txat Guztiak",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Ezabatu Txata",
"Delete chat?": "Ezabatu txata?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Grabatu ahotsa",
"Redirecting you to Open WebUI Community": "OpenWebUI Komunitatera berbideratzen",
@@ -1648,6 +1660,7 @@
"Relevance": "Garrantzia",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Kendu",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Kanalaren hasiera",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Honek <strong>{{NAME}}</strong> eta <strong>bere eduki guztiak</strong> ezabatuko ditu.",
"This will delete all models including custom models": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne",
"This will delete all models including custom models and cannot be undone.": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne, eta ezin da desegin.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Honek ezagutza-basea berrezarri eta fitxategi guztiak sinkronizatuko ditu. Jarraitu nahi duzu?",
"Thorough explanation": "Azalpen sakona",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Askatu misterioak",
"Unpin": "Kendu aingura",
"Unpin from Sidebar": "",
"Unravel secrets": "Askatu sekretuak",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} گفتگوهای",
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
"*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است",
"1 hour before": "",
"1 Source": "۱ منبع",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "نسخه جدید (v{{LATEST_VERSION}}) در دسترس است.",
@@ -202,6 +207,7 @@
"Ask a question": "سوالی بپرسید",
"Assistant": "دستیار",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "پیوست فایل از دانش",
"Attach Files": "",
"Attach Knowledge": "پیوست دانش",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "دور زدن بارگذاری وب",
"Cache Base Model List": "کش لیست مدل پایه",
"Calendar": "تقویم",
"Calendar deleted": "",
"Calendars": "",
"Call": "تماس",
"Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "به سرورهای ابزار خارجی سازگار با OpenAPI خود متصل شوید.",
"Connected ({{type}})": "",
"Connection failed": "اتصال ناموفق بود",
"Connection lost. Reconnecting...": "",
"Connection successful": "اتصال موفقیت\u200cآمیز بود",
"Connection Type": "نوع اتصال",
"Connections": "ارتباطات",
@@ -525,6 +533,8 @@
"Delete All Chats": "حذف همه گفتگوها",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "حذف گپ",
"Delete chat?": "گفتگو حذف شود؟",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "کپی لینک ناموفق بود",
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
"Failed to delete calendar": "",
"Failed to delete note": "حذف یادداشت ناموفق بود",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "استخراج محتوا از فایل ناموفق بود: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "تلاش استدلال",
"Reasoning Tags": "تگ\u200cهای استدلال",
"Recently Used": "",
"Reconnected": "",
"Record": "ضبط",
"Record voice": "ضبط صدا",
"Redirecting you to Open WebUI Community": "در حال هدایت به OpenWebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "ارتباط",
"Relevance Threshold": "آستانه ارتباط",
"Remember Dismissal": "به خاطر سپردن رد کردن",
"Reminder": "",
"Remove": "حذف",
"Remove {{MODELID}} from list.": "حذف {{MODELID}} از لیست.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "شروع یک مکالمه جدید",
"Start of the channel": "آغاز کانال",
"Start Tag": "تگ شروع",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "این <strong>{{NAME}}</strong> و <strong>تمام محتویات آن</strong> را حذف خواهد کرد.",
"This will delete all models including custom models": "این همه مدل\u200cها از جمله مدل\u200cهای سفارشی را حذف خواهد کرد",
"This will delete all models including custom models and cannot be undone.": "این همه مدل\u200cها از جمله مدل\u200cهای سفارشی را حذف خواهد کرد و قابل بازگشت نیست.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "این پایگاه دانش را بازنشانی کرده و همه فایل\u200cها را همگام\u200cسازی خواهد کرد. آیا می\u200cخواهید ادامه دهید؟",
"Thorough explanation": "توضیح کامل",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "خارج می\u200cشود {{FROM_NOW}}",
"Unlock mysteries": "رمزگشایی از اسرار",
"Unpin": "برداشتن پین",
"Unpin from Sidebar": "",
"Unravel secrets": "کشف رازها",
"Unshare Chat": "",
"Unsupported file type.": "نوع فایل پشتیبانی نمی\u200cشود.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}:n keskustelut",
"{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan",
"*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)",
"1 hour before": "",
"1 Source": "1 lähde",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Yhteistyökanava, johon ihmiset liittyvät jäseninä",
"A discussion channel where access is controlled by groups and permissions": "Keskustelukanava, johon pääsyä rajoitetaan ryhmillä ja käyttöoikeuksilla",
"A new version (v{{LATEST_VERSION}}) is now available.": "Uusi versio (v{{LATEST_VERSION}}) on nyt saatavilla.",
@@ -202,6 +207,7 @@
"Ask a question": "Kysy kysymys",
"Assistant": "Avustaja",
"Async Embedding Processing": "Asynkroninen upotus prosessointi",
"At time of event": "",
"Attach File From Knowledge": "Liitä tiedosto tietämyksestä",
"Attach Files": "",
"Attach Knowledge": "Liitä tietoa",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Ohita verkkolataaja",
"Cache Base Model List": "Malli luettelon välimuisti",
"Calendar": "Kalenteri",
"Calendar deleted": "",
"Calendars": "",
"Call": "Puhelu",
"Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Yhdistä omat ulkopuoliset OpenAPI yhteensopivat työkalu palvelimet.",
"Connected ({{type}})": "Yhdistetty ({{type}})",
"Connection failed": "Yhteys epäonnistui",
"Connection lost. Reconnecting...": "",
"Connection successful": "Yhteys onnistui",
"Connection Type": "Yhteystyyppi",
"Connections": "Yhteydet",
@@ -525,6 +533,8 @@
"Delete All Chats": "Poista kaikki keskustelut",
"Delete all contents inside this folder": "Poista kaikki sisällöt tästä kansiosta",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Poista keskustelu",
"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "Yhdistäminen {{URL}} päätepalvelimeen epäonnistui",
"Failed to copy link": "Linkin kopiointi epäonnistui",
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
"Failed to delete calendar": "",
"Failed to delete note": "Muistiinpanon poistaminen epäonnistui",
"Failed to download image": "Kuvan lataaminen epäonnistui",
"Failed to extract content from the file: {{error}}": "Tiedoston sisällön pomiminen epäonnistui: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Päättelyn määrä",
"Reasoning Tags": "Päättely tagit",
"Recently Used": "",
"Reconnected": "",
"Record": "Nauhoita",
"Record voice": "Nauhoita ääntä",
"Redirecting you to Open WebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevanssi",
"Relevance Threshold": "Relevanssikynnys",
"Remember Dismissal": "Muista sulkeminen",
"Reminder": "",
"Remove": "Poista",
"Remove {{MODELID}} from list.": "Poista {{MODELID}} listalta",
"Remove action": "Poista toiminto",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Aloita uusi keskustelu",
"Start of the channel": "Kanavan alku",
"Start Tag": "Aloitus tagi",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Käynnistetään kerneliä...",
"Starting now": "",
"State": "",
"Status": "Tila",
"Status cleared successfully": "Tila poistettu onnistuneesti",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Tämä poistaa <strong>{{NAME}}</strong> ja <strong>kaikki sen sisällöt</strong>.",
"This will delete all models including custom models": "Tämä poistaa kaikki mallit mukaan lukien mukautetut mallit",
"This will delete all models including custom models and cannot be undone.": "Tämä poistaa kaikki mallit, mukaan lukien mukautetut mallit, eikä sitä voi peruuttaa.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tämä nollaa tietokannan ja synkronoi kaikki tiedostot. Haluatko jatkaa?",
"Thorough explanation": "Perusteellinen selitys",
"Thought": "Ajatus",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Purkuja {{FROM_NOW}}",
"Unlock mysteries": "Selvitä arvoituksia",
"Unpin": "Irrota kiinnitys",
"Unpin from Sidebar": "",
"Unravel secrets": "Avaa salaisuuksia",
"Unshare Chat": "Lopeta keskustelun jakaminen",
"Unsupported file type.": "Ei tuettu tiedostotyyppi",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.",
@@ -203,6 +208,7 @@
"Ask a question": "Posez votre question",
"Assistant": "Assistant",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Ignorer le chargeur Web",
"Cache Base Model List": "Mettre en cache la liste des modèles de base",
"Calendar": "Calendrier",
"Calendar deleted": "",
"Calendars": "",
"Call": "Appeler",
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Connectez-vous à vos serveurs d'outils externes.",
"Connected ({{type}})": "",
"Connection failed": "Échec de la connexion",
"Connection lost. Reconnecting...": "",
"Connection successful": "Connexion réussie",
"Connection Type": "Type de connexion",
"Connections": "Connexions",
@@ -526,6 +534,8 @@
"Delete All Chats": "Supprimer toutes les conversations",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Échec de la copie du lien",
"Failed to create API Key.": "Échec de la création de la clé API.",
"Failed to delete calendar": "",
"Failed to delete note": "Échec de la délétion de la note",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Pertinence",
"Relevance Threshold": "Seuil de pertinence",
"Remember Dismissal": "Se souvenir du rejet",
"Reminder": "",
"Remove": "Retirer",
"Remove {{MODELID}} from list.": "Retirer {{MODELID}} de la liste.",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Début du canal",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Cela supprimera <strong>{{NAME}}</strong> et <strong>tout son contenu</strong>.",
"This will delete all models including custom models": "Cela supprimera tous les modèles, y compris les modèles personnalisés",
"This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
"Thorough explanation": "Explication approfondie",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}",
"Unlock mysteries": "Déverrouiller les mystères",
"Unpin": "Désépingler",
"Unpin from Sidebar": "",
"Unravel secrets": "Dévoiler les secrets",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'image",
"1 hour before": "",
"1 Source": "1 Source",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1min",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Un canal collaboratif où les membres rejoignent librement",
"A discussion channel where access is controlled by groups and permissions": "Un canal de discussion où l'accès est contrôlé par les groupes et les permissions",
"A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.",
@@ -203,6 +208,7 @@
"Ask a question": "Posez votre question",
"Assistant": "Assistant",
"Async Embedding Processing": "Traitement asynchrone des embeddings",
"At time of event": "",
"Attach File From Knowledge": "Joindre un fichier depuis les connaissances",
"Attach Files": "",
"Attach Knowledge": "Joindre une connaissance",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Ignorer le chargeur Web",
"Cache Base Model List": "Mettre en cache la liste des modèles de base",
"Calendar": "Calendrier",
"Calendar deleted": "",
"Calendars": "",
"Call": "Appeler",
"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Connectez-vous à vos serveurs d'outils externes.",
"Connected ({{type}})": "",
"Connection failed": "Échec de la connexion",
"Connection lost. Reconnecting...": "",
"Connection successful": "Connexion réussie",
"Connection Type": "Type de connexion",
"Connections": "Connexions",
@@ -526,6 +534,8 @@
"Delete All Chats": "Supprimer toutes les conversations",
"Delete all contents inside this folder": "Supprimer tout le contenu de ce dossier",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "Échec de la connexion au serveur de terminal {{URL}}",
"Failed to copy link": "Échec de la copie du lien",
"Failed to create API Key.": "Échec de la création de la clé API.",
"Failed to delete calendar": "",
"Failed to delete note": "Échec de la délétion de la note",
"Failed to download image": "Échec du téléchargement de l'image",
"Failed to extract content from the file: {{error}}": "Échec de l'extraction du contenu du fichier : {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "Balises de raisonnement",
"Recently Used": "",
"Reconnected": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Pertinence",
"Relevance Threshold": "Seuil de pertinence",
"Remember Dismissal": "Se souvenir du rejet",
"Reminder": "",
"Remove": "Retirer",
"Remove {{MODELID}} from list.": "Retirer {{MODELID}} de la liste.",
"Remove action": "Retirer l'action",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Démarrer une nouvelle conversation",
"Start of the channel": "Début du canal",
"Start Tag": "Balise de départ",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Démarrage du noyau...",
"Starting now": "",
"State": "",
"Status": "Statut",
"Status cleared successfully": "Statut effacé avec succès",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Cela supprimera <strong>{{NAME}}</strong> et <strong>tout son contenu</strong>.",
"This will delete all models including custom models": "Cela supprimera tous les modèles, y compris les modèles personnalisés",
"This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
"Thorough explanation": "Explication approfondie",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}",
"Unlock mysteries": "Déverrouiller les mystères",
"Unpin": "Désépingler",
"Unpin from Sidebar": "",
"Unravel secrets": "Dévoiler les secrets",
"Unshare Chat": "Annuler le partage de la conversation",
"Unsupported file type.": "Type de fichier non pris en charge.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "Chats do {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Unha nova versión (v{{LATEST_VERSION}}) está disponible.",
@@ -202,6 +207,7 @@
"Ask a question": "Fai unha pregunta",
"Assistant": "Asistente",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Chamada",
"Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Conexions",
@@ -525,6 +533,8 @@
"Delete All Chats": "Eliminar todos os chats",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Borrar Chat",
"Delete chat?": "Borrar o chat?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Non pudo xerarse a chave API.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Esfuerzo de razonamiento",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionándote a a comunidad OpenWebUI",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevancia",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Eliminar",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Inicio da canle",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esto eliminará <strong>{{NAME}}</strong> y <strong>todo su contido</strong>.",
"This will delete all models including custom models": "Esto eliminará todos os modelos, incluidos os modelos personalizados",
"This will delete all models including custom models and cannot be undone.": "Esto eliminará todos os modelos, incluidos os modelos personalizados y no se puede deshacer.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de coñecementos y sincronizará todos os arquivos. ¿Desea continuar?",
"Thorough explanation": "Explicación exhaustiva",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Desbloquear misterios",
"Unpin": "Desanclar",
"Unpin from Sidebar": "",
"Unravel secrets": "Desentrañar secretos",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "צ'אטים של {{user}}",
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -203,6 +208,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "לוח שנה",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "החיבור נכשל",
"Connection lost. Reconnecting...": "",
"Connection successful": "החיבור הצליח",
"Connection Type": "סוג חיבור",
"Connections": "חיבורים",
@@ -526,6 +534,8 @@
"Delete All Chats": "מחק את כל הצ'אטים",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "מחק צ'אט",
"Delete chat?": "",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "הקלט קול",
"Redirecting you to Open WebUI Community": "מפנה אותך לקהילת OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "הסר",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "תחילת הערוץ",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_two": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "תיאור מפורט",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} की चैट",
"{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "सम्बन्ध",
@@ -525,6 +533,8 @@
"Delete All Chats": "सभी चैट हटाएं",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "चैट हटाएं",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "आवाज रिकॉर्ड करना",
"Redirecting you to Open WebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "हटा दें",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "चैनल की शुरुआत",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "विस्तृत व्याख्या",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -203,6 +208,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Poziv",
"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Povezivanja",
@@ -526,6 +534,8 @@
"Delete All Chats": "Izbriši sve razgovore",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Izbriši razgovor",
"Delete chat?": "",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
@@ -1649,6 +1661,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Ukloni",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Početak kanala",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "Detaljno objašnjenje",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} beszélgetései",
"{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Új verzió (v{{LATEST_VERSION}}) érhető el.",
@@ -202,6 +207,7 @@
"Ask a question": "Kérdezz valamit",
"Assistant": "Asszisztens",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Naptár",
"Calendar deleted": "",
"Calendars": "",
"Call": "Hívás",
"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Csatlakozz saját OpenAPI kompatibilis külső eszköszervereidhez.",
"Connected ({{type}})": "",
"Connection failed": "Kapcsolat sikertelen",
"Connection lost. Reconnecting...": "",
"Connection successful": "Kapcsolat sikeres",
"Connection Type": "",
"Connections": "Kapcsolatok",
@@ -525,6 +533,8 @@
"Delete All Chats": "Minden beszélgetés törlése",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Beszélgetés törlése",
"Delete chat?": "Törli a beszélgetést?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Érvelési erőfeszítés",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Hang rögzítése",
"Redirecting you to Open WebUI Community": "Átirányítás az OpenWebUI közösséghez",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevancia",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Eltávolítás",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "A csatorna eleje",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Ez törölni fogja a <strong>{{NAME}}</strong>-t és <strong>minden tartalmát</strong>.",
"This will delete all models including custom models": "Ez törölni fogja az összes modellt, beleértve az egyéni modelleket is",
"This will delete all models including custom models and cannot be undone.": "Ez törölni fogja az összes modellt, beleértve az egyéni modelleket is, és nem vonható vissza.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?",
"Thorough explanation": "Alapos magyarázat",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Titkok feloldása",
"Unpin": "Rögzítés feloldása",
"Unpin from Sidebar": "",
"Unravel secrets": "Titkok megfejtése",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "Obrolan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -201,6 +206,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Panggilan",
"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Koneksi",
@@ -524,6 +532,8 @@
"Delete All Chats": "Menghapus Semua Obrolan",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Menghapus Obrolan",
"Delete chat?": "Menghapus obrolan?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Gagal membuat API Key.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Rekam suara",
"Redirecting you to Open WebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
@@ -1647,6 +1659,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Hapus",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "",
"Start of the channel": "Awal saluran",
"Start Tag": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "Penjelasan menyeluruh",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "Comhráite {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach",
"*Prompt node ID(s) are required for image generation": "* Tá ID(anna) nód treorach ag teastáil chun íomhá a ghiniúint",
"1 hour before": "",
"1 Source": "1 Foinse",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1 nóiméad ó shin",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Cainéal comhoibrithe ina mbíonn daoine ag glacadh páirte mar bhaill",
"A discussion channel where access is controlled by groups and permissions": "Cainéal plé ina bhfuil rochtain rialaithe ag grúpaí agus ceadanna",
"A new version (v{{LATEST_VERSION}}) is now available.": "Tá leagan nua (v {{LATEST_VERSION}}) ar fáil anois.",
@@ -202,6 +207,7 @@
"Ask a question": "Cuir ceist",
"Assistant": "Cúntóir",
"Async Embedding Processing": "Próiseáil Leabaithe Asyncrónach",
"At time of event": "",
"Attach File From Knowledge": "Ceangail Comhad ó Eolas",
"Attach Files": "Ceangail Comhaid",
"Attach Knowledge": "Ceangail Eolas",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin",
"Cache Base Model List": "Liosta Samhail Bunáite Taisce",
"Calendar": "Féilire",
"Calendar deleted": "",
"Calendars": "",
"Call": "Glaoigh",
"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Ceangail le do fhreastalaithe uirlisí seachtracha atá comhoiriúnach le OpenAPI.",
"Connected ({{type}})": "Ceangailte ({{type}})",
"Connection failed": "Theip ar an gceangal",
"Connection lost. Reconnecting...": "",
"Connection successful": "Ceangal rathúil",
"Connection Type": "Cineál Ceangail",
"Connections": "Naisc",
@@ -525,6 +533,8 @@
"Delete All Chats": "Scrios Gach Comhrá",
"Delete all contents inside this folder": "Scrios an t-ábhar go léir atá sa fhillteán seo",
"Delete automation?": "Scrios an t-uathoibriú?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Scrios Comhrá",
"Delete chat?": "Scrios comhrá?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "Theip ar cheangal le freastalaí críochfoirt {{URL}}",
"Failed to copy link": "Theip ar an nasc a chóipeáil",
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
"Failed to delete calendar": "",
"Failed to delete note": "Theip ar an nóta a scriosadh",
"Failed to download image": "Theip ar an íomhá a íoslódáil",
"Failed to extract content from the file: {{error}}": "Theip ar an ábhar a bhaint as an gcomhad: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Iarracht Réasúnúcháin",
"Reasoning Tags": "Clibeanna Réasúnaíochta",
"Recently Used": "Úsáidte le Déanaí",
"Reconnected": "",
"Record": "Taifead",
"Record voice": "Taifead guth",
"Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "Ábharthacht",
"Relevance Threshold": "Tairseach Ábharthaíochta",
"Remember Dismissal": "Cuimhnigh ar an Dífhostú",
"Reminder": "",
"Remove": "Bain",
"Remove {{MODELID}} from list.": "Bain {{MODELID}} den liosta.",
"Remove action": "Bain gníomh",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Tosaigh comhrá nua",
"Start of the channel": "Tús an chainéil",
"Start Tag": "Clib Tosaigh",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Ag tosú an eithne...",
"Starting now": "",
"State": "Stát",
"Status": "Stádas",
"Status cleared successfully": "Glanadh an stádais go rathúil",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Scriosfaidh sé seo <strong>{{NAME}}</strong> agus <strong>a bhfuil ann go léir</strong>.",
"This will delete all models including custom models": "Scriosfaidh sé seo gach samhail lena n-áirítear samhlacha saincheaptha",
"This will delete all models including custom models and cannot be undone.": "Scriosfaidh sé seo gach samhail, lena n-áirítear samhlacha saincheaptha, agus ní féidir é a chealú.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
"Thorough explanation": "Míniú críochnúil",
"Thought": "Smaoineamh",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Díluchtuithe {{FROM_NOW}}",
"Unlock mysteries": "Díghlasáil rúndiamhra",
"Unpin": "Díphoráil",
"Unpin from Sidebar": "",
"Unravel secrets": "Rúin a réiteach",
"Unshare Chat": "Díroinn Comhrá",
"Unsupported file type.": "Cineál comhaid nach dtacaítear leis.",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "{{user}} Chat",
"{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend",
"*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Una nuova versione (v{{LATEST_VERSION}}) è ora disponibile.",
@@ -203,6 +208,7 @@
"Ask a question": "Fai una domanda",
"Assistant": "Assistente",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Bypassa il Web Loader",
"Cache Base Model List": "",
"Calendar": "Calendario",
"Calendar deleted": "",
"Calendars": "",
"Call": "Chiamata",
"Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Connettiti ai tuoi server di tool esterni compatibili con OpenAPI.",
"Connected ({{type}})": "",
"Connection failed": "Connessione fallita",
"Connection lost. Reconnecting...": "",
"Connection successful": "Connessione riuscita",
"Connection Type": "Tipo Connessione",
"Connections": "Connessioni",
@@ -526,6 +534,8 @@
"Delete All Chats": "Elimina tutte le chat",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Elimina chat",
"Delete chat?": "Elimina chat?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Impossibile copiare il link",
"Failed to create API Key.": "Impossibile creare Chiave API.",
"Failed to delete calendar": "",
"Failed to delete note": "Impossibile eliminare la nota",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Sforzo di ragionamento",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Registra",
"Record voice": "Registra voce",
"Redirecting you to Open WebUI Community": "Reindirizzamento alla comunità OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Rilevanza",
"Relevance Threshold": "Soglia di Rilevanza",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Rimuovi",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Inizio del canale",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Questa opzione eliminerà <strong>{{NAME}}</strong> e <strong>tutti i suoi contenuti</strong>.",
"This will delete all models including custom models": "Questa opzione eliminerà tutti i modelli, compresi i modelli personalizzati",
"This will delete all models including custom models and cannot be undone.": "Questa opzione eliminerà tutti i modelli, compresi i modelli personalizzati e non può essere annullata.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Questa opzione ripristinerà la base di conoscenza e sincronizzerà tutti i file. Vuoi continuare?",
"Thorough explanation": "Spiegazione dettagliata",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Scarica {{FROM_NOW}}",
"Unlock mysteries": "Sblocca misteri",
"Unpin": "Rimuovi fissato",
"Unpin from Sidebar": "",
"Unravel secrets": "Svela segreti",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "{{user}} のチャット",
"{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です",
"*Prompt node ID(s) are required for image generation": "*画像生成にはプロンプトノードIDが必要です",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "新しいバージョン (v{{LATEST_VERSION}}) が利用可能です。",
@@ -201,6 +206,7 @@
"Ask a question": "質問する",
"Assistant": "アシスタント",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "ナレッジからファイルを添付",
"Attach Files": "ファイルを追加",
"Attach Knowledge": "ナレッジを追加",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "Webローダーをバイパス",
"Cache Base Model List": "ベースモデルリストをキャッシュ",
"Calendar": "カレンダー",
"Calendar deleted": "",
"Calendars": "",
"Call": "コール",
"Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能は使用できません",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "独自のOpenAPI互換外部ツールサーバーに接続します。",
"Connected ({{type}})": "",
"Connection failed": "接続に失敗しました",
"Connection lost. Reconnecting...": "",
"Connection successful": "接続に成功しました",
"Connection Type": "接続タイプ",
"Connections": "接続",
@@ -524,6 +532,8 @@
"Delete All Chats": "すべてのチャットを削除",
"Delete all contents inside this folder": "",
"Delete automation?": "オートメーションを削除しますか?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "チャットを削除",
"Delete chat?": "チャットを削除しますか?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "リンクのコピーに失敗しました。",
"Failed to create API Key.": "APIキーの作成に失敗しました。",
"Failed to delete calendar": "",
"Failed to delete note": "ノートの削除に失敗しました。",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "ファイルから中身の取得に失敗しました: {{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "推理の努力",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "録音",
"Record voice": "音声を録音",
"Redirecting you to Open WebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
@@ -1647,6 +1659,7 @@
"Relevance": "関連性",
"Relevance Threshold": "関連性の閾値",
"Remember Dismissal": "閉じたことを記憶する",
"Reminder": "",
"Remove": "削除",
"Remove {{MODELID}} from list.": "{{MODELID}} をリストから削除する",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "新しい会話を開始",
"Start of the channel": "チャンネルの開始",
"Start Tag": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "状態",
"Status": "ステータス",
"Status cleared successfully": "正常にステータスをクリアしました",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "これは<strong>{{NAME}}</strong>とその<strong>すべての内容</strong>を削除します。",
"This will delete all models including custom models": "これはカスタムモデルを含むすべてのモデルを削除します",
"This will delete all models including custom models and cannot be undone.": "これはカスタムモデルを含むすべてのモデルを削除し、元に戻すことはできません。",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "これは知識ベースをリセットし、すべてのファイルを同期します。続けますか?",
"Thorough explanation": "詳細な説明",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}}にアンロード",
"Unlock mysteries": "ミステリーを解き明かす",
"Unpin": "ピン留め解除",
"Unpin from Sidebar": "",
"Unravel secrets": "秘密を解き明かす",
"Unshare Chat": "",
"Unsupported file type.": "未対応のファイルタイプです",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}-ის ჩათები",
"{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "1 წყარო",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "ხელმისაწვდომია ახალი ვერსია (v{{LATEST_VERSION}}).",
@@ -202,6 +207,7 @@
"Ask a question": "კითხვის დასმა",
"Assistant": "დამხმარე",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "ცოდნის მიმაგრება",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "ვებჩამტვირთავის გამოტოვება",
"Cache Base Model List": "საბაზისო მოდელების სიის დაკეშვა",
"Calendar": "კალენდარი",
"Calendar deleted": "",
"Calendars": "",
"Call": "ზარი",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "დაკავშირება ვერ მოხერხდა",
"Connection lost. Reconnecting...": "",
"Connection successful": "შეერთება წარმატებულია",
"Connection Type": "შეერთების ტიპი",
"Connections": "კავშირები",
@@ -525,6 +533,8 @@
"Delete All Chats": "ყველა ჩატის წაშლა",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "საუბრის წაშლა",
"Delete chat?": "წავშალო ჩატი?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "ბმულის კოპირება ჩავარდა",
"Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.",
"Failed to delete calendar": "",
"Failed to delete note": "შენიშვნის წაშლა ჩავარდა",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "ჩაწერა",
"Record voice": "ხმის ჩაწერა",
"Redirecting you to Open WebUI Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე",
@@ -1648,6 +1660,7 @@
"Relevance": "შესაბამისობა",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "წაშლა",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "არხის დასაწყისი",
"Start Tag": "დაწყების ჭდე",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "საფუძვლიანი ახსნა",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "გამოტვირთვა {{FROM_NOW}}",
"Unlock mysteries": "",
"Unpin": "ჩამოხსნა",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "Asqerdec n {{user}}",
"{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "1 n weɣbalu",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Lqem amaynut n (v{{LATEST_VERSION}}), yella akka tura.",
@@ -202,6 +207,7 @@
"Ask a question": "Efk-d asteqsi",
"Assistant": "Amallal",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Qqen-as tamessunt",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Zgel asalay Web",
"Cache Base Model List": "Ffer tabdart n tmudmiwin n taffa",
"Calendar": "Awitay",
"Calendar deleted": "",
"Calendars": "",
"Call": "Siwel",
"Call feature is not supported when using Web STT engine": "Tamahilt n usiwel ur tettwasefrak ara mi ara tesqedceḍ amsedday Web STT",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Qqen ɣer yiqeddacen-ik n yifecka imeṛṛa yeldin.",
"Connected ({{type}})": "",
"Connection failed": "Tuqqna d-tawezɣit",
"Connection lost. Reconnecting...": "",
"Connection successful": "Tuqqna tedda akken iwata",
"Connection Type": "Anaw n tuqqna",
"Connections": "Tuqqniwin",
@@ -525,6 +533,8 @@
"Delete All Chats": "Kkes akk idiwenniyen",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Kkes asqerdec",
"Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Ur yessaweḍ ara ad yessukken aseɣwen",
"Failed to create API Key.": "Ur yessaweḍ ara ad d-yesnulfu tasarut API.",
"Failed to delete calendar": "",
"Failed to delete note": "Ur yessaweḍ ara ad yekkes tazmilt",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "Ur yessaweḍ ara ad d-yekkes agbur seg ufaylu: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Aklas",
"Record voice": "Sekles taɣect",
"Redirecting you to Open WebUI Community": "Aseḍfeṛ ar Temɣiwant n Open WebUI",
@@ -1648,6 +1660,7 @@
"Relevance": "Tawatit",
"Relevance Threshold": "",
"Remember Dismissal": "Ccfawa ɣef ugdal",
"Reminder": "",
"Remove": "Kkes",
"Remove {{MODELID}} from list.": "Kkes {{MODELID}} seg wumuɣ.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Tazwara n ubadu",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Aya ad yekkes <strong>{NAME}}</strong> akked <strong> akk ayen yellan deg-s</strong>.",
"This will delete all models including custom models": "Aya ad yekkes akk timudmin yellan gar-asent timudmin n tannumi",
"This will delete all models including custom models and cannot be undone.": "Aya ad yekkes akk timudmin gar-asent timudmin tudmawanin yerna ur yezmir yiwen ad tent-id-yerr.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aya ad yales taffa n tmussni u ad yemtawi akk ifuyla. Tebɣiḍ ad tkemmleḍ?",
"Thorough explanation": "Asegzi leqqayen",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "Kkes asenteḍ",
"Unpin from Sidebar": "",
"Unravel secrets": "Sban-d ayen yeffren",
"Unshare Chat": "",
"Unsupported file type.": "Tawsit n ufaylu ur tettusefrak ara.",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "{{user}}의 채팅",
"{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.",
"*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.",
"1 hour before": "",
"1 Source": "소스1",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "새로운 버전 (v{{LATEST_VERSION}})을 사용할 수 있습니다.",
@@ -201,6 +206,7 @@
"Ask a question": "질문하기",
"Assistant": "어시스턴트",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "지식 기반에서 파일 첨부",
"Attach Files": "",
"Attach Knowledge": "지식 기반 첨부",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "웹 콘텐츠 불러오기 생략",
"Cache Base Model List": "기본 모델 목록 캐시",
"Calendar": "캘린더",
"Calendar deleted": "",
"Calendars": "",
"Call": "음성 기능",
"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "OpenAPI 호환 외부 도구 서버에 연결합니다.",
"Connected ({{type}})": "",
"Connection failed": "연결 실패",
"Connection lost. Reconnecting...": "",
"Connection successful": "연결 성공",
"Connection Type": "연결 방식",
"Connections": "연결",
@@ -524,6 +532,8 @@
"Delete All Chats": "모든 채팅 삭제",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "채팅 삭제",
"Delete chat?": "채팅을 삭제하시겠습니까?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "링크 복사 실패",
"Failed to create API Key.": "API 키 생성에 실패했습니다.",
"Failed to delete calendar": "",
"Failed to delete note": "노트 삭제 실패",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "파일 내용 추출 실패: {{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "추론 난이도",
"Reasoning Tags": "추론 태그",
"Recently Used": "",
"Reconnected": "",
"Record": "녹음",
"Record voice": "음성 녹음",
"Redirecting you to Open WebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
@@ -1647,6 +1659,7 @@
"Relevance": "관련도",
"Relevance Threshold": "관련성 임계값",
"Remember Dismissal": "다시 보지 않기",
"Reminder": "",
"Remove": "삭제",
"Remove {{MODELID}} from list.": "{{MODELID}}를 목록에서 제거.",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "새 대화 시작",
"Start of the channel": "채널 시작",
"Start Tag": "시작 태그",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "상태",
"Status cleared successfully": "상태 초기화에 성공했습니다",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "<strong>{{NAME}}</strong> 와 <strong>모든 내용</strong>을 삭제합니다.",
"This will delete all models including custom models": "이렇게 하면 사용자 지정 모델을 포함한 모든 모델이 삭제됩니다",
"This will delete all models including custom models and cannot be undone.": "이렇게 하면 사용자 지정 모델을 포함한 모든 모델이 삭제되며 실행 취소할 수 없습니다.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?",
"Thorough explanation": "완전한 설명",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} 언로드",
"Unlock mysteries": "미스터리 풀기",
"Unpin": "고정 해제",
"Unpin from Sidebar": "",
"Unravel secrets": "비밀 풀기",
"Unshare Chat": "",
"Unsupported file type.": "지원하지 않는 파일 형식",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "{{user}} susirašinėjimai",
"{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -204,6 +209,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Skambinti",
"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Ryšiai",
@@ -527,6 +535,8 @@
"Delete All Chats": "Ištrinti visus pokalbius",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Ištrinti pokalbį",
"Delete chat?": "Ištrinti pokalbį?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Nepavyko sukurti API rakto",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Įrašyti balsą",
"Redirecting you to Open WebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
@@ -1650,6 +1662,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Pašalinti",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "",
"Start of the channel": "Kanalo pradžia",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "Platus paaiškinimas",
"Thought": "",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "Atsemigti",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "{{user}} tērzēšanas",
"{{webUIName}} Backend Required": "Nepieciešama {{webUIName}} aizmugursistēma",
"*Prompt node ID(s) are required for image generation": "*Attēla ģenerēšanai nepieciešami uzvednes mezgla ID",
"1 hour before": "",
"1 Source": "1 avots",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Sadarbības kanāls, kurā cilvēki pievienojas kā dalībnieki",
"A discussion channel where access is controlled by groups and permissions": "Diskusiju kanāls, kur piekļuvi kontrolē grupas un atļaujas",
"A new version (v{{LATEST_VERSION}}) is now available.": "Ir pieejama jauna versija (v{{LATEST_VERSION}}).",
@@ -203,6 +208,7 @@
"Ask a question": "Uzdot jautājumu",
"Assistant": "Asistents",
"Async Embedding Processing": "Asinhronā iegulšanas apstrāde",
"At time of event": "",
"Attach File From Knowledge": "Pievienot failu no zināšanām",
"Attach Files": "",
"Attach Knowledge": "Pievienot zināšanau bāzi",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Apiet tīmekļa ielādētāju",
"Cache Base Model List": "Kešot bāzes modeļu sarakstu",
"Calendar": "Kalendārs",
"Calendar deleted": "",
"Calendars": "",
"Call": "Zvans",
"Call feature is not supported when using Web STT engine": "Zvana funkcija nav atbalstīta, izmantojot Web STT dzinēju",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Savienojieties ar saviem OpenAPI saderīgajiem ārējo rīku serveriem.",
"Connected ({{type}})": "",
"Connection failed": "Savienojums neizdevās",
"Connection lost. Reconnecting...": "",
"Connection successful": "Savienojums veiksmīgs",
"Connection Type": "Savienojuma tips",
"Connections": "Savienojumi",
@@ -526,6 +534,8 @@
"Delete All Chats": "Dzēst visas tērzēšanas",
"Delete all contents inside this folder": "Dzēst visu saturu šajā mapē",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Dzēst tērzēšanu",
"Delete chat?": "Dzēst tērzēšanu?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Neizdevās nokopēt saiti",
"Failed to create API Key.": "Neizdevās izveidot API atslēgu.",
"Failed to delete calendar": "",
"Failed to delete note": "Neizdevās dzēst piezīmi",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "Neizdevās ekstrahēt saturu no faila: {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Spriedumu pūles",
"Reasoning Tags": "Spriedumu tagi",
"Recently Used": "",
"Reconnected": "",
"Record": "Ierakstīt",
"Record voice": "Ierakstīt balsi",
"Redirecting you to Open WebUI Community": "Novirza jūs uz Open WebUI kopienu",
@@ -1649,6 +1661,7 @@
"Relevance": "Atbilstība",
"Relevance Threshold": "Atbilstības slieksnis",
"Remember Dismissal": "Atcerēties noraidījumu",
"Reminder": "",
"Remove": "Noņemt",
"Remove {{MODELID}} from list.": "Noņemt {{MODELID}} no saraksta.",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Sākt jaunu sarunu",
"Start of the channel": "Kanāla sākums",
"Start Tag": "Sākuma tags",
"Starting in {{count}} minutes_zero": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "Statuss",
"Status cleared successfully": "Statuss veiksmīgi notīrīts",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Tas dzēsīs <strong>{{NAME}}</strong> un <strong>visu tā saturu</strong>.",
"This will delete all models including custom models": "Tas dzēsīs visus modeļus, ieskaitot pielāgotos modeļus",
"This will delete all models including custom models and cannot be undone.": "Tas dzēsīs visus modeļus, ieskaitot pielāgotos modeļus, un to nevar atsaukt.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tas atiestatīs zināšanu bāzi un sinhronizēs visus failus. Vai vēlaties turpināt?",
"Thorough explanation": "Pamatīgs skaidrojums",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Izlādēs {{FROM_NOW}}",
"Unlock mysteries": "Atklājiet noslēpumus",
"Unpin": "Atspraust",
"Unpin from Sidebar": "",
"Unravel secrets": "Atšķetiniet noslēpumus",
"Unshare Chat": "",
"Unsupported file type.": "Neatbalstīts faila tips.",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "Perbualan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan",
"*Prompt node ID(s) are required for image generation": "*ID nod Prompt diperlukan untuk penjanaan imej",
"1 hour before": "",
"1 Source": "1 Sumber",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1m_masa_lalu",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Saluran kolaborasi di mana orang ramai menyertai sebagai ahli",
"A discussion channel where access is controlled by groups and permissions": "Saluran perbincangan di mana akses dikawal oleh kumpulan dan kebenaran",
"A new version (v{{LATEST_VERSION}}) is now available.": "Versi baru (v{{LATEST_VERSION}}) kini tersedia.",
@@ -201,6 +206,7 @@
"Ask a question": "Tanya soalan",
"Assistant": "Pembantu",
"Async Embedding Processing": "Pemprosesan Embedding Tak Segerak",
"At time of event": "",
"Attach File From Knowledge": "Lampirkan Fail Daripada Pengetahuan",
"Attach Files": "",
"Attach Knowledge": "Lampirkan Pengetahuan",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "Langkau Pemuat Web",
"Cache Base Model List": "Senarai Model Asas Cache",
"Calendar": "Kalendar",
"Calendar deleted": "",
"Calendars": "",
"Call": "Hubungi",
"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Sambung ke pelayan alat luaran yang serasi dengan OpenAPI anda sendiri.",
"Connected ({{type}})": "",
"Connection failed": "Sambungan gagal",
"Connection lost. Reconnecting...": "",
"Connection successful": "Sambungan berjaya",
"Connection Type": "Jenis Sambungan",
"Connections": "Sambungan",
@@ -524,6 +532,8 @@
"Delete All Chats": "Padam Semua Perbualan",
"Delete all contents inside this folder": "Padam semua kandungan dalam folder ini",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Padam Perbualan",
"Delete chat?": "Padam perbualan?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "Gagal menyambung ke pelayan terminal {{URL}}",
"Failed to copy link": "Gagal menyalin pautan",
"Failed to create API Key.": "Gagal mencipta kekunci API",
"Failed to delete calendar": "",
"Failed to delete note": "Gagal memadamkan nota",
"Failed to download image": "Gagal memuat turun imej",
"Failed to extract content from the file: {{error}}": "Gagal mengekstrak kandungan daripada fail: {{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "Usaha Penaakulan",
"Reasoning Tags": "Tag Penaakulan",
"Recently Used": "",
"Reconnected": "",
"Record": "Rakaman",
"Record voice": "Rakam suara",
"Redirecting you to Open WebUI Community": "Membawa anda ke Komuniti OpenWebUI",
@@ -1647,6 +1659,7 @@
"Relevance": "Perkaitan",
"Relevance Threshold": "Ambang Perkaitan",
"Remember Dismissal": "Ingat Penutupan",
"Reminder": "",
"Remove": "Hapuskan",
"Remove {{MODELID}} from list.": "Keluarkan {{MODELID}} daripada senarai.",
"Remove action": "Keluarkan tindakan",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "Mulai perbualan baru",
"Start of the channel": "Permulaan saluran",
"Start Tag": "Tag Permulaan",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Kernel sedang dimulakan...",
"Starting now": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status telah dihapus dengan berjaya",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Ini akan memadam <strong>{{NAME}}</strong> dan <strong>semua kandungannya</strong>.",
"This will delete all models including custom models": "Ini akan memadam semua model termasuk model tersuai",
"This will delete all models including custom models and cannot be undone.": "Ini akan memadam semua model termasuk model tersuai dan tidak boleh dibuat asal.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ini akan menetapkan semula pangkalan pengetahuan dan menyegerakkan semua fail. Adakah anda ingin meneruskan?",
"Thorough explanation": "Penjelasan menyeluruh",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "Membuang {{FROM_NOW}}",
"Unlock mysteries": "Buka Misteri",
"Unpin": "Nyahsematkan",
"Unpin from Sidebar": "",
"Unravel secrets": "Ungkap Rahsia",
"Unshare Chat": "Batalkan Perkongsian Sembang",
"Unsupported file type.": "Jenis fail tidak disokong.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} sine samtaler",
"{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves",
"*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "En ny versjon (v{{LATEST_VERSION}}) er nå tilgjengelig.",
@@ -202,6 +207,7 @@
"Ask a question": "Still et spørsmål",
"Assistant": "Assistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Kalender",
"Calendar deleted": "",
"Calendars": "",
"Call": "Ring",
"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Tilkoblinger",
@@ -525,6 +533,8 @@
"Delete All Chats": "Slett alle chatter",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Slett chat",
"Delete chat?": "Slette chat?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Resonneringsinnsats",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Ta opp tale",
"Redirecting you to Open WebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevans",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Fjern",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Starten av kanalen",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dette sletter <strong>{{NAME}}</strong> og <strong>alt innholdet</strong>.",
"This will delete all models including custom models": "Dette sletter alle modeller, inkludert tilpassede modeller",
"This will delete all models including custom models and cannot be undone.": "Dette sletter alle modeller, inkludert tilpassede modeller, og kan ikke angres.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?",
"Thorough explanation": "Grundig forklaring",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Lås opp mysterier",
"Unpin": "Løsne",
"Unpin from Sidebar": "",
"Unravel secrets": "Avslør hemmeligheter",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}'s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Een nieuwe versie (v{{LATEST_VERSION}}) is nu beschikbaar",
@@ -202,6 +207,7 @@
"Ask a question": "Stel een vraag",
"Assistant": "Assistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Agenda",
"Calendar deleted": "",
"Calendars": "",
"Call": "Oproep",
"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Verbind met je eigen OpenAPI-compatibele externe gereedschapservers",
"Connected ({{type}})": "",
"Connection failed": "Connectie mislukt",
"Connection lost. Reconnecting...": "",
"Connection successful": "Connectie succesvol",
"Connection Type": "Connectie type",
"Connections": "Verbindingen",
@@ -525,6 +533,8 @@
"Delete All Chats": "Verwijder alle chats",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Verwijder chat",
"Delete chat?": "Verwijder chat?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Kan API Key niet aanmaken.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Redeneerinspanning",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Neem stem op",
"Redirecting you to Open WebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevantie",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Verwijderen",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Begin van het kanaal",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dit zal <strong>{{NAME}}</strong> verwijderen en <strong>al zijn inhoud</strong>.",
"This will delete all models including custom models": "Dit zal alle modellen, ook aangepaste modellen, verwijderen",
"This will delete all models including custom models and cannot be undone.": "Dit zal alle modellen, ook aangepaste modellen, verwijderen en kan niet ongedaan worden gemaakt",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
"Thorough explanation": "Grondige uitleg",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Ontsleutel mysteries",
"Unpin": "Losmaken",
"Unpin from Sidebar": "",
"Unravel secrets": "Ontrafel geheimen",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
"{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "ਕਨੈਕਸ਼ਨ",
@@ -525,6 +533,8 @@
"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
"Redirecting you to Open WebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "ਹਟਾਓ",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "Czaty użytkownika {{user}}",
"{{webUIName}} Backend Required": "Wymagany backend {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Do generowania obrazów wymagane jest ID węzła promptu",
"1 hour before": "",
"1 Source": "1 źródło",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Kanał współpracy, do którego użytkownicy dołączają jako członkowie",
"A discussion channel where access is controlled by groups and permissions": "Kanał dyskusyjny, do którego dostęp jest kontrolowany przez grupy i uprawnienia",
"A new version (v{{LATEST_VERSION}}) is now available.": "Dostępna jest nowa wersja (v{{LATEST_VERSION}}).",
@@ -204,6 +209,7 @@
"Ask a question": "Zadaj pytanie",
"Assistant": "Asystent",
"Async Embedding Processing": "Asynchroniczne przetwarzanie embeddingów",
"At time of event": "",
"Attach File From Knowledge": "Dołącz plik z bazy wiedzy",
"Attach Files": "",
"Attach Knowledge": "Dołącz bazę wiedzy",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "Pomiń Web Loader",
"Cache Base Model List": "Cachuj listę modeli bazowych",
"Calendar": "Kalendarz",
"Calendar deleted": "",
"Calendars": "",
"Call": "Rozmowa",
"Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana przy użyciu przeglądarkowego silnika STT",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Połącz z własnymi serwerami narzędzi zgodnymi z OpenAPI.",
"Connected ({{type}})": "",
"Connection failed": "Połączenie nieudane",
"Connection lost. Reconnecting...": "",
"Connection successful": "Połączenie udane",
"Connection Type": "Typ połączenia",
"Connections": "Połączenia",
@@ -527,6 +535,8 @@
"Delete All Chats": "Usuń wszystkie czaty",
"Delete all contents inside this folder": "Usuń całą zawartość tego folderu",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Usuń czat",
"Delete chat?": "Usunąć czat?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Nie udało się skopiować linku",
"Failed to create API Key.": "Nie udało się utworzyć klucza API.",
"Failed to delete calendar": "",
"Failed to delete note": "Nie udało się usunąć notatki",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "Nie udało się wyodrębnić treści z pliku: {{error}}",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "Reasoning Effort",
"Reasoning Tags": "Reasoning Tags",
"Recently Used": "",
"Reconnected": "",
"Record": "Nagraj",
"Record voice": "Nagraj głos",
"Redirecting you to Open WebUI Community": "Przekierowanie do społeczności Open WebUI",
@@ -1650,6 +1662,7 @@
"Relevance": "Trafność",
"Relevance Threshold": "Próg trafności",
"Remember Dismissal": "Zapamiętaj odrzucenie",
"Reminder": "",
"Remove": "Usuń",
"Remove {{MODELID}} from list.": "Usuń {{MODELID}} z listy.",
"Remove action": "",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "Rozpocznij nową rozmowę",
"Start of the channel": "Początek kanału",
"Start Tag": "Tag startowy",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status wyczyszczony pomyślnie",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "To usunie <strong>{{NAME}}</strong> i <strong>całą zawartość</strong>.",
"This will delete all models including custom models": "To usunie wszystkie modele (w tym własne).",
"This will delete all models including custom models and cannot be undone.": "To usunie wszystkie modele i jest nieodwracalne.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "To zresetuje bazę wiedzy i zsynchronizuje pliki. Kontynuować?",
"Thorough explanation": "Dokładne wyjaśnienie",
"Thought": "",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "Odładowuje za {{FROM_NOW}}",
"Unlock mysteries": "Odkrywaj tajemnice",
"Unpin": "Odepnij",
"Unpin from Sidebar": "",
"Unravel secrets": "Rozwiązuj zagadki",
"Unshare Chat": "",
"Unsupported file type.": "Nieobsługiwany typ pliku.",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens",
"1 hour before": "",
"1 Source": "1 Origem",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1m atrás",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Um canal de colaboração onde as pessoas se juntam como membros.",
"A discussion channel where access is controlled by groups and permissions": "Um canal de discussão onde o acesso é controlado por grupos e permissões.",
"A new version (v{{LATEST_VERSION}}) is now available.": "Uma nova versão (v{{LATEST_VERSION}}) está disponível.",
@@ -203,6 +208,7 @@
"Ask a question": "Faça uma pergunta",
"Assistant": "Assistente",
"Async Embedding Processing": "Processamento de Embedding assíncrono",
"At time of event": "",
"Attach File From Knowledge": "Anexar arquivo da base de conhecimento",
"Attach Files": "Anexar arquivos",
"Attach Knowledge": "Anexar Base de Conhecimento",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Ignorar carregador da Web",
"Cache Base Model List": "Lista de modelos base de cache",
"Calendar": "Calendário",
"Calendar deleted": "",
"Calendars": "",
"Call": "Chamada",
"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Conecte-se aos seus próprios servidores de ferramentas externas compatíveis com OpenAPI.",
"Connected ({{type}})": "Conectado ({{type}})",
"Connection failed": "Falha na conexão",
"Connection lost. Reconnecting...": "",
"Connection successful": "Conexão bem-sucedida",
"Connection Type": "Tipo de conexão",
"Connections": "Conexões",
@@ -526,6 +534,8 @@
"Delete All Chats": "Excluir Todos os Chats",
"Delete all contents inside this folder": "Apague todo o conteúdo desta pasta.",
"Delete automation?": "Excluir automação?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Excluir Chat",
"Delete chat?": "Excluir chat?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "Falha ao conectar ao servidor de terminal {{URL}}",
"Failed to copy link": "Falha ao copiar o link",
"Failed to create API Key.": "Falha ao criar a Chave API.",
"Failed to delete calendar": "",
"Failed to delete note": "Falha ao excluir a nota",
"Failed to download image": "Falha ao baixar a imagem",
"Failed to extract content from the file: {{error}}": "Falha ao extrair conteúdo do arquivo: {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Esforço de raciocínio",
"Reasoning Tags": "Tags de raciocínio",
"Recently Used": "Usado recentemente",
"Reconnected": "",
"Record": "Gravar",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Relevância",
"Relevance Threshold": "Limiar de Relevância",
"Remember Dismissal": "Lembrar da dispensa",
"Reminder": "",
"Remove": "Remover",
"Remove {{MODELID}} from list.": "Remover {{MODELID}} da lista.",
"Remove action": "Remover ação",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Iniciar uma nova conversa",
"Start of the channel": "Início do canal",
"Start Tag": "Tag inicial",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Iniciando kernel...",
"Starting now": "",
"State": "Estado",
"Status": "Status",
"Status cleared successfully": "Status liberado com sucesso",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação excluirá <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
"This will delete all models including custom models": "Isto vai excluir todos os modelos, incluindo personalizados",
"This will delete all models including custom models and cannot be undone.": "Isto vai excluir todos os modelos, incluindo personalizados e não pode ser desfeito.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
"Thorough explanation": "Explicação detalhada",
"Thought": "Pensamento",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Descarrega {{FROM_NOW}}",
"Unlock mysteries": "Desvendar mistérios",
"Unpin": "Desfixar",
"Unpin from Sidebar": "",
"Unravel secrets": "Desvendar segredos",
"Unshare Chat": "Cancelar compartilhamento do chat",
"Unsupported file type.": "Tipo de arquivo não suportado.",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} Necessário",
"*Prompt node ID(s) are required for image generation": "*ID(s) do nó de prompt são necessários para a geração de imagem",
"1 hour before": "",
"1 Source": "Uma Fonte",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "há 1 minuto",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Um canal de colaboração onde as pessoas entram como membros",
"A discussion channel where access is controlled by groups and permissions": "Um canal de discussão onde o acesso é controlado por grupos e permissões",
"A new version (v{{LATEST_VERSION}}) is now available.": "Uma nova versão (v{{LATEST_VERSION}}) está agora disponível.",
@@ -203,6 +208,7 @@
"Ask a question": "Fazer uma pergunta",
"Assistant": "Assistente",
"Async Embedding Processing": "Incorporação de Processamento Assíncrono",
"At time of event": "",
"Attach File From Knowledge": "Anexar Ficheiro do Conhecimento",
"Attach Files": "",
"Attach Knowledge": "Anexar Conhecimento",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "Ignorar Carregador Web",
"Cache Base Model List": "Cache da Lista de Modelos Base",
"Calendar": "Calendário",
"Calendar deleted": "",
"Calendars": "",
"Call": "Chamar",
"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Ligar ao seu próprio servidor de ferramentas externo compatível com a OpenAI.",
"Connected ({{type}})": "",
"Connection failed": "Ligação falhou",
"Connection lost. Reconnecting...": "",
"Connection successful": "Ligação bem sucedida",
"Connection Type": "Tipo de ligação",
"Connections": "Ligações",
@@ -526,6 +534,8 @@
"Delete All Chats": "Apagar todas as conversas",
"Delete all contents inside this folder": "Apagar todo o conteúdo dentro desta pasta",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Apagar Conversa",
"Delete chat?": "Apagar conversa?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "Falha na ligação ao terminal de servidores {{URL}}",
"Failed to copy link": "Falha ao copiar a hiperligação",
"Failed to create API Key.": "Falha ao criar a Chave da API.",
"Failed to delete calendar": "",
"Failed to delete note": "Falha ao apagar a nota",
"Failed to download image": "Falha ao transferir a imagem",
"Failed to extract content from the file: {{error}}": "Falha ao extrair conteúdo do ficheiro: {{error}}",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Esforço de Raciocínio",
"Reasoning Tags": "Etiquetas de Raciocínio",
"Recently Used": "",
"Reconnected": "",
"Record": "Gravar",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Relevância",
"Relevance Threshold": "Limite de Relevância",
"Remember Dismissal": "Lembrar Descartar",
"Reminder": "",
"Remove": "Remover",
"Remove {{MODELID}} from list.": "Remover {{MODELID}} da lista.",
"Remove action": "Remover ação",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "Iniciar uma nova conversa",
"Start of the channel": "Início do canal",
"Start Tag": "Início da Tag",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Iniciando kernel...",
"Starting now": "",
"State": "",
"Status": "Estado",
"Status cleared successfully": "Estado limpo com sucesso",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Isto irá excluir <strong>{{NAME}}</strong> e <strong>todo o seu conteúdo</strong>.",
"This will delete all models including custom models": "Isto irá excluir todos os modelos, incluindo os modelos personalizados",
"This will delete all models including custom models and cannot be undone.": "Isto irá excluir todos os modelos, incluindo os modelos personalizados, e não pode ser desfeito.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Isto irá redefinir a base de conhecimento e sincronizar todos os arquivos. Deseja continuar?",
"Thorough explanation": "Explicação Minuciosa",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "Descarreva {{FROM_NOW}}",
"Unlock mysteries": "Desbloquear Mistérios",
"Unpin": "Desafixar",
"Unpin from Sidebar": "",
"Unravel secrets": "Desvendar segredos",
"Unshare Chat": "Parar partilha de conversa",
"Unsupported file type.": "Tipo de ficheiro não suportado",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Conversațiile lui {{user}}",
"{{webUIName}} Backend Required": "Este necesar backend-ul {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Sunt necesare ID-urile nodurilor de solicitare pentru generarea imaginii*",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "O nouă versiune (v{{LATEST_VERSION}}) este acum disponibilă.",
@@ -203,6 +208,7 @@
"Ask a question": "Pune o întrebare",
"Assistant": "Asistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Apel",
"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "Conexiune eșuată",
"Connection lost. Reconnecting...": "",
"Connection successful": "Conexiune reușită",
"Connection Type": "Tip conexiune",
"Connections": "Conexiuni",
@@ -526,6 +534,8 @@
"Delete All Chats": "Șterge Toate Conversațiile",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Șterge Conversația",
"Delete chat?": "Șterge conversația?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Crearea cheii API a eșuat.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Înregistrează vocea",
"Redirecting you to Open WebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
@@ -1649,6 +1661,7 @@
"Relevance": "Relevanță",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Înlătură",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Începutul canalului",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Acest lucru va șterge <strong>{{NAME}}</strong> și <strong>toate conținuturile sale</strong>.",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?",
"Thorough explanation": "Explicație detaliată",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "Anulează Fixarea",
"Unpin from Sidebar": "",
"Unravel secrets": "Dezvăluie secretele",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "Чаты {{user}}'а",
"{{webUIName}} Backend Required": "Необходимо подключение к серверу {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "ID узлов промптов обязательны для генерации изображения",
"1 hour before": "",
"1 Source": "1 Источник",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1 мин назад",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "Канал для совместной работы с присоединением участников",
"A discussion channel where access is controlled by groups and permissions": "Обсуждение канала, где доступ контролируется группами и разрешениями",
"A new version (v{{LATEST_VERSION}}) is now available.": "Новая версия (v{{LATEST_VERSION}}) теперь доступна.",
@@ -204,6 +209,7 @@
"Ask a question": "Задать вопрос",
"Assistant": "Ассистент",
"Async Embedding Processing": "Асинхронная обработка эмбеддингов",
"At time of event": "",
"Attach File From Knowledge": "Прикрепить файл из знаний",
"Attach Files": "",
"Attach Knowledge": "Прикрепить знания",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "Обход веб-загрузчика",
"Cache Base Model List": "Кэшировать список базовых моделей",
"Calendar": "Календарь",
"Calendar deleted": "",
"Calendars": "",
"Call": "Вызов",
"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Подключитесь к вашим собственным внешним инструментальным серверам, совместимым с OpenAPI.",
"Connected ({{type}})": "Подключено ({{type}})",
"Connection failed": "Подключение не удалось",
"Connection lost. Reconnecting...": "",
"Connection successful": "Успешное подключение",
"Connection Type": "Тип подключения",
"Connections": "Подключения",
@@ -527,6 +535,8 @@
"Delete All Chats": "Удалить ВСЕ Чаты",
"Delete all contents inside this folder": "Удалить все содержимое внутри этой папки",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Удалить Чат",
"Delete chat?": "Удалить чат?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "Не удалось подключиться к серверу терминала {{URL}}",
"Failed to copy link": "Не удалось скопировать ссылку",
"Failed to create API Key.": "Не удалось создать ключ API.",
"Failed to delete calendar": "",
"Failed to delete note": "Не удалось удалить заметку",
"Failed to download image": "Не удалось загрузить изображение",
"Failed to extract content from the file: {{error}}": "Не удалось извлечь содержимое из файла: {{error}}",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "Усилия для рассуждения",
"Reasoning Tags": "Теги рассуждения",
"Recently Used": "",
"Reconnected": "",
"Record": "Запись",
"Record voice": "Записать голос",
"Redirecting you to Open WebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
@@ -1650,6 +1662,7 @@
"Relevance": "Релевантность",
"Relevance Threshold": "Порог релевантности",
"Remember Dismissal": "Запомнить отклонение",
"Reminder": "",
"Remove": "Удалить",
"Remove {{MODELID}} from list.": "Удалить {{MODELID}} из списка.",
"Remove action": "Удалить действие",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "Начать новый разговор",
"Start of the channel": "Начало канала",
"Start Tag": "Начальный тег",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Запуск ядра...",
"Starting now": "",
"State": "",
"Status": "Статус",
"Status cleared successfully": "Статус успешно очищен",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "При этом будет удален <strong>{{NAME}}</strong> и <strong>все его содержимое</strong>.",
"This will delete all models including custom models": "Это приведет к удалению всех моделей, включая пользовательские модели.",
"This will delete all models including custom models and cannot be undone.": "При этом будут удалены все модели, включая пользовательские, и это действие нельзя будет отменить.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Это сбросит базу знаний и синхронизирует все файлы. Хотите продолжить?",
"Thorough explanation": "Подробное объяснение",
"Thought": "Рассуждение",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "Выгрузка из памяти {{FROM_NOW}}",
"Unlock mysteries": "Разблокируйте тайны",
"Unpin": "Открепить",
"Unpin from Sidebar": "",
"Unravel secrets": "Разгадать секреты",
"Unshare Chat": "Отменить публикацию чата",
"Unsupported file type.": "Неподдерживаемый тип файла.",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "{{user}}'s konverzácie",
"{{webUIName}} Backend Required": "Vyžaduje sa {{webUIName}} Backend",
"*Prompt node ID(s) are required for image generation": "*Sú potrebné IDs pre prompt node na generovanie obrázkov",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Nová verzia (v{{LATEST_VERSION}}) je teraz k dispozícii.",
@@ -204,6 +209,7 @@
"Ask a question": "Opýtajte sa otázku",
"Assistant": "Asistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Pripojiť znalosti",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Volanie",
"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Pripojenia",
@@ -527,6 +535,8 @@
"Delete All Chats": "Odstrániť všetky konverzácie",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Odstrániť chat",
"Delete chat?": "Odstrániť konverzáciu?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Nahrať hlas",
"Redirecting you to Open WebUI Community": "Presmerovanie na komunitu OpenWebUI",
@@ -1650,6 +1662,7 @@
"Relevance": "Relevancia",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Odstrániť",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "",
"Start of the channel": "Začiatok kanála",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Týmto dôjde k odstráneniu <strong>{{NAME}}</strong> a <strong>všetkých jeho obsahov</strong>.",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostnú databázu a synchronizuje všetky súbory. Prajete si pokračovať?",
"Thorough explanation": "Obsiahle vysvetlenie",
"Thought": "",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "Odopnúť",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -34,8 +34,13 @@
"{{user}}'s Chats": "Ћаскања корисника {{user}}",
"{{webUIName}} Backend Required": "Захтева се {{webUIName}} позадинац",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -203,6 +208,7 @@
"Ask a question": "Постави питање",
"Assistant": "Помоћник",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -277,6 +283,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "Позив",
"Call feature is not supported when using Web STT engine": "",
@@ -414,6 +421,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Везе",
@@ -526,6 +534,8 @@
"Delete All Chats": "Обриши сва ћаскања",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Обриши ћаскање",
"Delete chat?": "Обрисати ћаскање?",
"Delete Event": "",
@@ -887,6 +897,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Неуспешно стварање API кључа.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1626,6 +1637,7 @@
"Reasoning Effort": "Јачина размишљања",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Сними глас",
"Redirecting you to Open WebUI Community": "Преусмеравање на OpenWebUI заједницу",
@@ -1649,6 +1661,7 @@
"Relevance": "Примењивост",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Уклони",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1896,7 +1909,12 @@
"Start a new conversation": "",
"Start of the channel": "Почетак канала",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2009,6 +2027,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Ово ће обрисати <strong>{{NAME}}</strong> и <strong>сав садржај унутар</strong>.",
"This will delete all models including custom models": "Ово ће обрисати све моделе укључујући прилагођене моделе",
"This will delete all models including custom models and cannot be undone.": "Ово ће обрисати све моделе укључујући прилагођене моделе и не може се опозвати.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ово ће обрисати базу знања и ускладити све датотеке. Да ли желите наставити?",
"Thorough explanation": "Детаљно објашњење",
"Thought": "",
@@ -2095,6 +2114,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Реши мистерије",
"Unpin": "Откачи",
"Unpin from Sidebar": "",
"Unravel secrets": "Разоткриј тајне",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}s Chattar",
"{{webUIName}} Backend Required": "{{webUIName}} Backend krävs",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) krävs för bildgenerering",
"1 hour before": "",
"1 Source": "1 källa",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "En ny version (v{{LATEST_VERSION}}) är nu tillgänglig.",
@@ -202,6 +207,7 @@
"Ask a question": "Ställ en fråga",
"Assistant": "Assistent",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Bifoga kunskap",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Kringgå webbläsare",
"Cache Base Model List": "",
"Calendar": "Kalender",
"Calendar deleted": "",
"Calendars": "",
"Call": "Samtal",
"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Anslut till dina egna OpenAPI-kompatibla externa verktygsservrar.",
"Connected ({{type}})": "",
"Connection failed": "Anslutning misslyckades",
"Connection lost. Reconnecting...": "",
"Connection successful": "Anslutning lyckades",
"Connection Type": "Anslutningstyp",
"Connections": "Anslutningar",
@@ -525,6 +533,8 @@
"Delete All Chats": "Ta bort alla chattar",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Radera chatt",
"Delete chat?": "Radera chatt?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Misslyckades med att kopiera länk",
"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
"Failed to delete calendar": "",
"Failed to delete note": "Misslyckades med att ta bort anteckning",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Resonemangsinsats",
"Reasoning Tags": "Resonemangs-taggar (tags)",
"Recently Used": "",
"Reconnected": "",
"Record": "Spela in",
"Record voice": "Spela in röst",
"Redirecting you to Open WebUI Community": "Omdirigerar dig till OpenWebUI Community",
@@ -1648,6 +1660,7 @@
"Relevance": "Relevans",
"Relevance Threshold": "Relevanströskel",
"Remember Dismissal": "Kom ihåg avvisning",
"Reminder": "",
"Remove": "Ta bort",
"Remove {{MODELID}} from list.": "Ta bort {{MODELID}} från listan.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Starta en ny konversation",
"Start of the channel": "Början av kanalen",
"Start Tag": "Starta en tagg",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Detta kommer att radera <strong>{{NAME}}</strong> och <strong>allt dess innehåll</strong>.",
"This will delete all models including custom models": "Detta kommer att radera alla modeller inklusive anpassade modeller",
"This will delete all models including custom models and cannot be undone.": "Detta kommer att radera alla modeller inklusive anpassade modeller och kan inte ångras.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Detta kommer att återställa kunskapsbasen och synkronisera alla filer. Vill du fortsätta?",
"Thorough explanation": "Djupare förklaring",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "Avlastar {{FROM_NOW}}",
"Unlock mysteries": "Lås upp mysterier",
"Unpin": "Ta bort fästning",
"Unpin from Sidebar": "",
"Unravel secrets": "Avslöja hemligheter",
"Unshare Chat": "",
"Unsupported file type.": "Filtypen stöds inte.",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} இன் அரட்டைகள்",
"{{webUIName}} Backend Required": "{{webUIName}} பின்தளம் தேவை",
"*Prompt node ID(s) are required for image generation": "*பட உருவாக்கத்திற்கு உடனடி முனை ID(கள்) தேவை",
"1 hour before": "",
"1 Source": "1 ஆதாரம்",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1 நிமிடம் முன்",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "மக்கள் உறுப்பினர்களாக சேரும் ஒத்துழைப்பு சேனல்",
"A discussion channel where access is controlled by groups and permissions": "குழுக்கள் மற்றும் அனுமதிகளால் அணுகல் கட்டுப்படுத்தப்படும் விவாத சேனல்",
"A new version (v{{LATEST_VERSION}}) is now available.": "புதிய பதிப்பு (v{{LATEST_VERSION}}) இப்போது கிடைக்கிறது.",
@@ -202,6 +207,7 @@
"Ask a question": "ஒரு கேள்வி கேளுங்கள்",
"Assistant": "உதவியாளர்",
"Async Embedding Processing": "ஒத்திசைவு உட்பொதித்தல் செயலாக்கம்",
"At time of event": "",
"Attach File From Knowledge": "அறிவிலிருந்து கோப்பை இணைக்கவும்",
"Attach Files": "கோப்புகளை இணைக்கவும்",
"Attach Knowledge": "அறிவை இணைக்கவும்",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "பைபாஸ் இணைய ஏற்றி",
"Cache Base Model List": "கேச் அடிப்படை மாதிரி பட்டியல்",
"Calendar": "நாட்காட்டி",
"Calendar deleted": "",
"Calendars": "",
"Call": "அழைக்கவும்",
"Call feature is not supported when using Web STT engine": "Web STT இன்ஜினைப் பயன்படுத்தும் போது அழைப்பு அம்சம் ஆதரிக்கப்படாது",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "உங்கள் சொந்த OpenAPI இணக்கமான வெளிப்புற கருவி சேவையகங்களுடன் இணைக்கவும்.",
"Connected ({{type}})": "இணைக்கப்பட்டது ({{type}})",
"Connection failed": "இணைப்பு தோல்வியடைந்தது",
"Connection lost. Reconnecting...": "",
"Connection successful": "இணைப்பு வெற்றிகரமாக உள்ளது",
"Connection Type": "இணைப்பு வகை",
"Connections": "இணைப்புகள்",
@@ -525,6 +533,8 @@
"Delete All Chats": "அனைத்து அரட்டைகளையும் நீக்கு",
"Delete all contents inside this folder": "இந்தக் கோப்புறையில் உள்ள அனைத்து உள்ளடக்கங்களையும் நீக்கவும்",
"Delete automation?": "தானியக்கத்தை நீக்கவா?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "அரட்டையை நீக்கு",
"Delete chat?": "அரட்டையை நீக்கவா?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "{{URL}} டெர்மினல் சர்வருடன் இணைக்க முடியவில்லை",
"Failed to copy link": "இணைப்பை நகலெடுக்க முடியவில்லை",
"Failed to create API Key.": "API விசையை உருவாக்குவதில் தோல்வி.",
"Failed to delete calendar": "",
"Failed to delete note": "குறிப்பை நீக்க முடியவில்லை",
"Failed to download image": "படத்தைப் பதிவிறக்க முடியவில்லை",
"Failed to extract content from the file: {{error}}": "கோப்பிலிருந்து உள்ளடக்கத்தைப் பிரித்தெடுக்க முடியவில்லை: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "பகுத்தறிவு முயற்சி",
"Reasoning Tags": "பகுத்தறிவு குறிச்சொற்கள்",
"Recently Used": "சமீபத்தில் பயன்படுத்தப்பட்டது",
"Reconnected": "",
"Record": "பதிவு",
"Record voice": "குரல் பதிவு",
"Redirecting you to Open WebUI Community": "உங்களை Open WebUI சமூகத்திற்கு திருப்பி விடுகிறோம்",
@@ -1648,6 +1660,7 @@
"Relevance": "சம்பந்தம்",
"Relevance Threshold": "சம்பந்தமான வரம்பு",
"Remember Dismissal": "பணிநீக்கம் என்பதை நினைவில் கொள்க",
"Reminder": "",
"Remove": "அகற்று",
"Remove {{MODELID}} from list.": "பட்டியலில் இருந்து {{MODELID}} ஐ அகற்று.",
"Remove action": "செயலை அகற்று",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "புதிய உரையாடலைத் தொடங்கவும்",
"Start of the channel": "சேனலின் ஆரம்பம்",
"Start Tag": "தொடக்க குறிச்சொல்",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "கர்னலைத் தொடங்குகிறது...",
"Starting now": "",
"State": "நிலை",
"Status": "நிலை",
"Status cleared successfully": "நிலை வெற்றிகரமாக அழிக்கப்பட்டது",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "இது <strong>{{NAME}}</strong> மற்றும் <strong>அதன் அனைத்து உள்ளடக்கங்களையும்</strong> நீக்கும்.",
"This will delete all models including custom models": "இது தனிப்பயன் மாதிரிகள் உட்பட அனைத்து மாடல்களையும் நீக்கும்",
"This will delete all models including custom models and cannot be undone.": "இது தனிப்பயன் மாதிரிகள் உட்பட அனைத்து மாடல்களையும் நீக்கிவிடும், மேலும் செயல்தவிர்க்க முடியாது.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "இது அறிவுத் தளத்தை மீட்டமைத்து அனைத்து கோப்புகளையும் ஒத்திசைக்கும். நீங்கள் தொடர விரும்புகிறீர்களா?",
"Thorough explanation": "விரிவான விளக்கம்",
"Thought": "சிந்தனை",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} இறக்குகிறது",
"Unlock mysteries": "மர்மங்களைத் திறக்கவும்",
"Unpin": "அன்பின்",
"Unpin from Sidebar": "",
"Unravel secrets": "இரகசியங்களை அவிழ்த்து விடுங்கள்",
"Unshare Chat": "அரட்டையைப் பகிர்வதை நீக்கு",
"Unsupported file type.": "ஆதரிக்கப்படாத கோப்பு வகை.",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "การแชทของ {{user}}",
"{{webUIName}} Backend Required": "ต้องใช้ Backend ของ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*ต้องระบุ ID ของ prompt node สำหรับการสร้างภาพ",
"1 hour before": "",
"1 Source": "1 แหล่งที่มา",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "เวอร์ชันใหม่ (v{{LATEST_VERSION}}) พร้อมให้ใช้งานแล้ว",
@@ -201,6 +206,7 @@
"Ask a question": "ถามคำถาม",
"Assistant": "ผู้ช่วย",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "แนบไฟล์จากฐานความรู้",
"Attach Files": "",
"Attach Knowledge": "แนบฐานความรู้",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "ข้ามตัวโหลดเว็บไซต์",
"Cache Base Model List": "แคชรายการโมเดลพื้นฐาน",
"Calendar": "ปฏิทิน",
"Calendar deleted": "",
"Calendars": "",
"Call": "โทร",
"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือภายนอกของคุณที่รองรับ OpenAPI",
"Connected ({{type}})": "",
"Connection failed": "การเชื่อมต่อล้มเหลว",
"Connection lost. Reconnecting...": "",
"Connection successful": "เชื่อมต่อสำเร็จ",
"Connection Type": "ประเภทการเชื่อมต่อ",
"Connections": "การเชื่อมต่อ",
@@ -524,6 +532,8 @@
"Delete All Chats": "ลบการแชททั้งหมด",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "ลบแชท",
"Delete chat?": "ลบแชท?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "คัดลอกลิงก์ไม่สำเร็จ",
"Failed to create API Key.": "สร้าง API Key ล้มเหลว",
"Failed to delete calendar": "",
"Failed to delete note": "ลบบันทึกไม่สำเร็จ",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้: {{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "ระดับการใช้เหตุผล",
"Reasoning Tags": "ป้ายกำกับการให้เหตุผล",
"Recently Used": "",
"Reconnected": "",
"Record": "บันทึก",
"Record voice": "บันทึกเสียง",
"Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน Open WebUI",
@@ -1647,6 +1659,7 @@
"Relevance": "ความเกี่ยวข้อง",
"Relevance Threshold": "เกณฑ์ความเกี่ยวข้อง",
"Remember Dismissal": "จำการปิดข้อความ",
"Reminder": "",
"Remove": "ลบ",
"Remove {{MODELID}} from list.": "ลบ {{MODELID}} ออกจากรายการ",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "เริ่มการสนทนาใหม่",
"Start of the channel": "จุดเริ่มต้นของช่อง",
"Start Tag": "แท็กเริ่มต้น",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "การดำเนินการนี้จะลบ <strong>{{NAME}}</strong> และ<strong>เนื้อหาทั้งหมด</strong>",
"This will delete all models including custom models": "การดำเนินการนี้จะลบโมเดลทั้งหมด รวมถึงโมเดลแบบกำหนดเอง",
"This will delete all models including custom models and cannot be undone.": "การดำเนินการนี้จะลบโมเดลทั้งหมดรวมถึงโมเดลที่กำหนดเอง และไม่สามารถยกเลิกได้",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "การดำเนินการนี้จะรีเซ็ตฐานความรู้และซิงค์ไฟล์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?",
"Thorough explanation": "คำอธิบายอย่างละเอียด",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "ยกเลิกการใช้งาน {{FROM_NOW}}",
"Unlock mysteries": "ไขปริศนา",
"Unpin": "ยกเลิกการปักหมุด",
"Unpin from Sidebar": "",
"Unravel secrets": "เปิดเผยความลับ",
"Unshare Chat": "",
"Unsupported file type.": "ไม่รองรับไฟล์ประเภทนี้",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}'iň Çatlary",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Zerur",
"*Prompt node ID(s) are required for image generation": "",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "",
@@ -202,6 +207,7 @@
"Ask a question": "",
"Assistant": "",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "",
"Call feature is not supported when using Web STT engine": "",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "Baglanyşyklar",
@@ -525,6 +533,8 @@
"Delete All Chats": "Ähli Çatlary Öçür",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1648,6 +1660,7 @@
"Relevance": "",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Aýyr",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Kanal başy",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
"Thorough explanation": "",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}}'ın Sohbetleri",
"{{webUIName}} Backend Required": "{{webUIName}} Arka-uç Gerekli",
"*Prompt node ID(s) are required for image generation": "*Görüntü oluşturma için düğüm ID'leri gereklidir",
"1 hour before": "",
"1 Source": "1 Kaynak",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "1 dk önce",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "İnsanların üye olarak katıldığı bir iş birliği kanalı",
"A discussion channel where access is controlled by groups and permissions": "Erişimin gruplar ve izinlerle kontrol edildiği bir tartışma kanalı",
"A new version (v{{LATEST_VERSION}}) is now available.": "Yeni bir sürüm (v{{LATEST_VERSION}}) artık mevcut.",
@@ -202,6 +207,7 @@
"Ask a question": "Bir soru sorun",
"Assistant": "Asistan",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "Bilgi Tabanından Dosya Ekle",
"Attach Files": "",
"Attach Knowledge": "Bilgi Tabanı Ekle",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Web Yükleyicisini Atla",
"Cache Base Model List": "Temel Model Listesini Önbelleğe Al",
"Calendar": "Takvim",
"Calendar deleted": "",
"Calendars": "",
"Call": "Arama",
"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Kendi OpenAPI uyumlu harici araç sunucularınıza bağlanın.",
"Connected ({{type}})": "",
"Connection failed": "Bağlantı başarısız",
"Connection lost. Reconnecting...": "",
"Connection successful": "Bağlantı başarılı",
"Connection Type": "Bağlantı Tipi",
"Connections": "Bağlantılar",
@@ -525,6 +533,8 @@
"Delete All Chats": "Tüm Sohbetleri Sil",
"Delete all contents inside this folder": "Bu klasördeki tüm içerikleri sil",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Sohbeti Sil",
"Delete chat?": "Sohbeti sil?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "{{URL}} terminal sunucusuna bağlanılamadı",
"Failed to copy link": "Bağlantı kopyalanamadı",
"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
"Failed to delete calendar": "",
"Failed to delete note": "Not silinemedi",
"Failed to download image": "Görsel indirilemedi",
"Failed to extract content from the file: {{error}}": "Dosyadan içerik çıkarılamadı: {{error}}",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Kaydet",
"Record voice": "Ses kaydı yap",
"Redirecting you to Open WebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
@@ -1648,6 +1660,7 @@
"Relevance": "İlgili",
"Relevance Threshold": "İlgi Eşiği",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Kaldır",
"Remove {{MODELID}} from list.": "{{MODELID}} modelini listeden kaldır.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "Yeni bir konuşma başlat",
"Start of the channel": "Kanalın başlangıcı",
"Start Tag": "Başlangıç Etiketi",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "Kernel başlatılıyor...",
"Starting now": "",
"State": "",
"Status": "Durum",
"Status cleared successfully": "Durum başarıyla temizlendi",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "<strong>{{NAME}}</strong> ve <strong>tüm içeriği</strong> silinecek.",
"This will delete all models including custom models": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek",
"This will delete all models including custom models and cannot be undone.": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek ve geri alınamaz.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilgi tabanını sıfırlayacak ve tüm dosyaları senkronize edecek. Devam etmek istiyor musunuz?",
"Thorough explanation": "Kapsamlı açıklama",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} sonra modeli bellekten boşaltır",
"Unlock mysteries": "",
"Unpin": "Sabitlemeyi Kaldır",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} نىڭ سۆھبەتلىرى",
"{{webUIName}} Backend Required": "{{webUIName}} ئارقا سۇپا زۆرۈر",
"*Prompt node ID(s) are required for image generation": "رەسىم ھاسىل قىلىش ئۈچۈن تۈرتكە نۇسخا ئۇچۇر ID(لىرى) زۆرۈر",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "يېڭى نەشرى (v{{LATEST_VERSION}}) مەۋجۇت.",
@@ -202,6 +207,7 @@
"Ask a question": "سؤئال سوراڭ",
"Assistant": "ياردەمچى",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش",
"Cache Base Model List": "",
"Calendar": "كالىندار",
"Calendar deleted": "",
"Calendars": "",
"Call": "چاقىرىش",
"Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "OpenAPI ماس كېلىدىغان سىرتقى قورال مۇلازىمېتىرلىرىغا باغلىنىڭ.",
"Connected ({{type}})": "",
"Connection failed": "ئۇلىنىش مەغلۇپ بولدى",
"Connection lost. Reconnecting...": "",
"Connection successful": "ئۇلىنىش مۇۋەپپەقىيەتلىك",
"Connection Type": "ئۇلىنىش تىپى",
"Connections": "ئۇلىنىشلەر",
@@ -525,6 +533,8 @@
"Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "سۆھبەت ئۆچۈرۈش",
"Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "ئۇلانما كۆچۈرۈش مەغلۇپ بولدى",
"Failed to create API Key.": "API ئاچقۇچى قۇرۇش مەغلۇپ بولدى.",
"Failed to delete calendar": "",
"Failed to delete note": "خاتىرە ئۆچۈرۈش مەغلۇپ بولدى",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "چۈشەندۈرۈش كۈچى",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "خاتىرىلەش",
"Record voice": "ئاۋاز خاتىرىلەش",
"Redirecting you to Open WebUI Community": "Open WebUI جەمئىيىتىگە يوللاندى",
@@ -1648,6 +1660,7 @@
"Relevance": "مۇناسىۋەتلىكلىك",
"Relevance Threshold": "مۇناسىۋەتلىكلىك چەك قىممىتى",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "چىقىرىۋېتىش",
"Remove {{MODELID}} from list.": "تىزىمدىن {{MODELID}} چىقىرىۋېتىش.",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "قانالنىڭ باشلانغىنى",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "<strong>{{NAME}}</strong> ۋە <strong>بارلىق مەزمۇنى</strong> ئۆچۈرۈلىدۇ.",
"This will delete all models including custom models": "بۇ بارلىق مودېللارنى ئۆچۈرۈدۇ (ئۆزلۈك مودېللارنىمۇ ئۆز ئىچىگە ئالىدۇ)",
"This will delete all models including custom models and cannot be undone.": "بۇ بارلىق مودېللارنى ئۆچۈرۈدۇ (ئۆزلۈك مودېللارنىمۇ ئۆز ئىچىگە ئالىدۇ) ۋە ئەسلىگە كەلتۈرگىلى بولمايدۇ.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "بىلىم ئاساسى قايتا تەڭشىلىپ بارلىق ھۆججەتلەر ماس-قەدەملىنىدۇ. داۋاملاشامسىز؟",
"Thorough explanation": "تەپسىلىي چۈشەندۈرۈش",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} چىقىرىلىدۇ",
"Unlock mysteries": "سىرلارنى ئاچ",
"Unpin": "مۇقىملانمىغان قىلىش",
"Unpin from Sidebar": "",
"Unravel secrets": "سىرنى ئاچ",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -35,8 +35,13 @@
"{{user}}'s Chats": "Чати {{user}}а",
"{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Нова версія (v{{LATEST_VERSION}}) зараз доступна.",
@@ -204,6 +209,7 @@
"Ask a question": "Задати питання",
"Assistant": "Асистент",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -278,6 +284,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Календар",
"Calendar deleted": "",
"Calendars": "",
"Call": "Виклик",
"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
@@ -415,6 +422,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Підключіться до своїх власних зовнішніх серверів інструментів, сумісних з OpenAPI.",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "З'єднання",
@@ -527,6 +535,8 @@
"Delete All Chats": "Видалити усі чати",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Видалити чат",
"Delete chat?": "Видалити чат?",
"Delete Event": "",
@@ -888,6 +898,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Не вдалося створити API ключ.",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1627,6 +1638,7 @@
"Reasoning Effort": "Зусилля на міркування",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Записати голос",
"Redirecting you to Open WebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
@@ -1650,6 +1662,7 @@
"Relevance": "Актуальність",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Видалити",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1898,7 +1911,13 @@
"Start a new conversation": "",
"Start of the channel": "Початок каналу",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_few": "",
"Starting in {{count}} minutes_many": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2011,6 +2030,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Це видалить <strong>{{NAME}}</strong> та <strong>усі його вмісти</strong>.",
"This will delete all models including custom models": "Це видалить усі моделі, включаючи користувацькі моделі",
"This will delete all models including custom models and cannot be undone.": "Це видалить усі моделі, включаючи користувацькі моделі, і не може бути скасовано.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує усі файли. Ви бажаєте продовжити?",
"Thorough explanation": "Детальне пояснення",
"Thought": "",
@@ -2097,6 +2117,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Розкрийте таємниці",
"Unpin": "Відчепити",
"Unpin from Sidebar": "",
"Unravel secrets": "Розплутуйте секрети",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{ صارف }} کی بات چیت",
"{{webUIName}} Backend Required": "{{webUIName}} بیک اینڈ درکار ہے",
"*Prompt node ID(s) are required for image generation": "تصویر کی تخلیق کے لیے *پرومپٹ نوڈ آئی ڈی(ز) کی ضرورت ہے",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "نیا ورژن (v{{LATEST_VERSION}}) اب دستیاب ہے",
@@ -202,6 +207,7 @@
"Ask a question": "سوال پوچھیں",
"Assistant": "اسسٹنٹ",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "",
"Calendar deleted": "",
"Calendars": "",
"Call": "کال کریں",
"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "",
"Connected ({{type}})": "",
"Connection failed": "",
"Connection lost. Reconnecting...": "",
"Connection successful": "",
"Connection Type": "",
"Connections": "کنکشنز",
@@ -525,6 +533,8 @@
"Delete All Chats": "تمام چیٹس حذف کریں",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "چیٹ حذف کریں",
"Delete chat?": "چیٹ حذف کریں؟",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "API کلید بنانے میں ناکام",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "صوت ریکارڈ کریں",
"Redirecting you to Open WebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
@@ -1648,6 +1660,7 @@
"Relevance": "موزونیت",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "ہٹا دیں",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "چینل کی شروعات",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "یہ <strong>{{NAME}}</strong> اور <strong>اس کے تمام مواد</strong> کو حذف کر دے گا",
"This will delete all models including custom models": "",
"This will delete all models including custom models and cannot be undone.": "",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟",
"Thorough explanation": "مکمل وضاحت",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "",
"Unpin": "ان پن کریں",
"Unpin from Sidebar": "",
"Unravel secrets": "",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} нинг чатлари",
"{{webUIName}} Backend Required": "{{webUIName}} Баcкенд талаб қилинади",
"*Prompt node ID(s) are required for image generation": "*Расм яратиш учун тезкор тугун идентификаторлари талаб қилинади",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Энди янги версия (v{{LATEST_VERSION}}) мавжуд.",
@@ -202,6 +207,7 @@
"Ask a question": "Савол беринг",
"Assistant": "Ёрдамчи",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Веб юклагични четлаб ўтиш",
"Cache Base Model List": "",
"Calendar": "Календар",
"Calendar deleted": "",
"Calendars": "",
"Call": "Қўнғироқ қилинг",
"Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Ўзингизнинг OpenAIга мос келадиган ташқи асбоблар серверларига уланинг.",
"Connected ({{type}})": "",
"Connection failed": "Уланиш амалга ошмади",
"Connection lost. Reconnecting...": "",
"Connection successful": "Уланиш муваффақиятли",
"Connection Type": "Уланиш тури",
"Connections": "Уланишлар",
@@ -525,6 +533,8 @@
"Delete All Chats": "Барча суҳбатларни ўчириш",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Чатни ўчириш",
"Delete chat?": "Чат ўчирилсинми?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Ҳаволани нусхалаб бўлмади",
"Failed to create API Key.": "АПИ калитини яратиб бўлмади.",
"Failed to delete calendar": "",
"Failed to delete note": "Қайдни ўчириб бўлмади",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Мулоҳаза юритиш ҳаракатлари",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Ёзиб олиш",
"Record voice": "Овозни ёзиб олинг",
"Redirecting you to Open WebUI Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда",
@@ -1648,6 +1660,7 @@
"Relevance": "Мувофиқлик",
"Relevance Threshold": "Мувофиқлик чегараси",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Ўчириш",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Канал боши",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Бу <стронг>{{NAME}}</стронг> ва <стронг>барча мазмунини</стронг> ўчириб ташлайди.",
"This will delete all models including custom models": "Бу барча моделларни, шу жумладан махсус моделларни ўчириб ташлайди",
"This will delete all models including custom models and cannot be undone.": "Бу барча моделларни, жумладан, махсус моделларни ҳам ўчириб ташлайди ва уларни ортга қайтариб бўлмайди.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Бу билимлар базасини қайта тиклайди ва барча файлларни синхронлаштиради. Давом этишни хоҳлайсизми?",
"Thorough explanation": "Тўлиқ тушунтириш",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} юклайди",
"Unlock mysteries": "Сирларни очинг",
"Unpin": "Ечиш",
"Unpin from Sidebar": "",
"Unravel secrets": "Сирларни очинг",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -33,8 +33,13 @@
"{{user}}'s Chats": "{{user}} ning chatlari",
"{{webUIName}} Backend Required": "{{webUIName}} Backend talab qilinadi",
"*Prompt node ID(s) are required for image generation": "*Rasm yaratish uchun tezkor tugun identifikatorlari talab qilinadi",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Endi yangi versiya (v{{LATEST_VERSION}}) mavjud.",
@@ -202,6 +207,7 @@
"Ask a question": "Savol bering",
"Assistant": "Yordamchi",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -276,6 +282,7 @@
"Bypass Web Loader": "Veb yuklagichni chetlab o'tish",
"Cache Base Model List": "",
"Calendar": "Kalendar",
"Calendar deleted": "",
"Calendars": "",
"Call": "Qo'ng'iroq qiling",
"Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi",
@@ -413,6 +420,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "O'zingizning OpenAPI-ga mos keladigan tashqi asboblar serverlariga ulaning.",
"Connected ({{type}})": "",
"Connection failed": "Ulanish amalga oshmadi",
"Connection lost. Reconnecting...": "",
"Connection successful": "Ulanish muvaffaqiyatli",
"Connection Type": "Ulanish turi",
"Connections": "Ulanishlar",
@@ -525,6 +533,8 @@
"Delete All Chats": "Barcha suhbatlarni o'chirish",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Chatni oʻchirish",
"Delete chat?": "Chat oʻchirilsinmi?",
"Delete Event": "",
@@ -886,6 +896,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "Havolani nusxalab bolmadi",
"Failed to create API Key.": "API kalitini yaratib bolmadi.",
"Failed to delete calendar": "",
"Failed to delete note": "Qaydni ochirib bolmadi",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1625,6 +1636,7 @@
"Reasoning Effort": "Mulohaza yuritish harakatlari",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "Yozib olish",
"Record voice": "Ovozni yozib oling",
"Redirecting you to Open WebUI Community": "Sizni Open WebUI hamjamiyatiga yoʻnaltirmoqda",
@@ -1648,6 +1660,7 @@
"Relevance": "Muvofiqlik",
"Relevance Threshold": "Muvofiqlik chegarasi",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "O'chirish",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1894,7 +1907,11 @@
"Start a new conversation": "",
"Start of the channel": "Kanal boshlanishi",
"Start Tag": "",
"Starting in {{count}} minutes_one": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2007,6 +2024,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Bu <strong>{{NAME}}</strong> va <strong>barcha mazmunini</strong> ochirib tashlaydi.",
"This will delete all models including custom models": "Bu barcha modellarni, shu jumladan maxsus modellarni o'chirib tashlaydi",
"This will delete all models including custom models and cannot be undone.": "Bu barcha modellarni, jumladan, maxsus modellarni ham ochirib tashlaydi va ularni ortga qaytarib bolmaydi.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu bilimlar bazasini qayta tiklaydi va barcha fayllarni sinxronlashtiradi. Davom etishni xohlaysizmi?",
"Thorough explanation": "To'liq tushuntirish",
"Thought": "",
@@ -2093,6 +2111,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} yuklaydi",
"Unlock mysteries": "Sirlarni oching",
"Unpin": "Yechish",
"Unpin from Sidebar": "",
"Unravel secrets": "Sirlarni oching",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend",
"*Prompt node ID(s) are required for image generation": "*ID nút Prompt là bắt buộc để tạo ảnh",
"1 hour before": "",
"1 Source": "",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "",
"A discussion channel where access is controlled by groups and permissions": "",
"A new version (v{{LATEST_VERSION}}) is now available.": "Một phiên bản mới (v{{LATEST_VERSION}}) đã có sẵn.",
@@ -201,6 +206,7 @@
"Ask a question": "Đặt câu hỏi",
"Assistant": "Trợ lý",
"Async Embedding Processing": "",
"At time of event": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "",
"Cache Base Model List": "",
"Calendar": "Lịch",
"Calendar deleted": "",
"Calendars": "",
"Call": "Gọi",
"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "Kết nối với các máy chủ công cụ bên ngoài tương thích OpenAPI của riêng bạn.",
"Connected ({{type}})": "",
"Connection failed": "Kết nối thất bại",
"Connection lost. Reconnecting...": "",
"Connection successful": "Kết nối thành công",
"Connection Type": "",
"Connections": "Kết nối",
@@ -524,6 +532,8 @@
"Delete All Chats": "Xóa mọi cuộc Chat",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "Xóa chat",
"Delete chat?": "Xóa chat?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "",
"Failed to copy link": "",
"Failed to create API Key.": "Lỗi khởi tạo API Key",
"Failed to delete calendar": "",
"Failed to delete note": "",
"Failed to download image": "",
"Failed to extract content from the file: {{error}}": "",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "Nỗ lực Suy luận",
"Reasoning Tags": "",
"Recently Used": "",
"Reconnected": "",
"Record": "",
"Record voice": "Ghi âm",
"Redirecting you to Open WebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
@@ -1647,6 +1659,7 @@
"Relevance": "Mức độ liên quan",
"Relevance Threshold": "",
"Remember Dismissal": "",
"Reminder": "",
"Remove": "Xóa",
"Remove {{MODELID}} from list.": "",
"Remove action": "",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "",
"Start of the channel": "Đầu kênh",
"Start Tag": "",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "",
"Starting now": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Hành động này sẽ xóa <strong>{{NAME}}</strong> và <strong>tất cả nội dung của nó</strong>.",
"This will delete all models including custom models": "Hành động này sẽ xóa tất cả các mô hình bao gồm cả các mô hình tùy chỉnh",
"This will delete all models including custom models and cannot be undone.": "Hành động này sẽ xóa tất cả các mô hình bao gồm cả các mô hình tùy chỉnh và không thể hoàn tác.",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Hành động này sẽ đặt lại cơ sở kiến thức và đồng bộ hóa tất cả các tệp. Bạn có muốn tiếp tục không?",
"Thorough explanation": "Giải thích kỹ lưỡng",
"Thought": "",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "",
"Unlock mysteries": "Mở khóa những bí ẩn",
"Unpin": "Bỏ ghim",
"Unpin from Sidebar": "",
"Unravel secrets": "Làm sáng tỏ những bí mật",
"Unshare Chat": "",
"Unsupported file type.": "",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "{{user}} 的对话记录",
"{{webUIName}} Backend Required": "{{webUIName}} 需要后端服务",
"*Prompt node ID(s) are required for image generation": "*图片生成需要提示词节点 ID",
"1 hour before": "",
"1 Source": "1 个引用来源",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "刚刚",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "成员可加入的协作频道",
"A discussion channel where access is controlled by groups and permissions": "由用户组控制的讨论频道",
"A new version (v{{LATEST_VERSION}}) is now available.": "新版本(v{{LATEST_VERSION}})现已发布",
@@ -201,6 +206,7 @@
"Ask a question": "提问",
"Assistant": "助手",
"Async Embedding Processing": "异步嵌入处理",
"At time of event": "",
"Attach File From Knowledge": "引用知识库中的文件",
"Attach Files": "添加文件",
"Attach Knowledge": "引用知识库",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "绕过网页加载器",
"Cache Base Model List": "缓存基础模型列表",
"Calendar": "日历",
"Calendar deleted": "",
"Calendars": "",
"Call": "语音通话",
"Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持语音通话功能",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "连接到符合 OpenAPI 规范的外部工具服务器",
"Connected ({{type}})": "已连接({{type}}",
"Connection failed": "连接失败",
"Connection lost. Reconnecting...": "",
"Connection successful": "连接成功",
"Connection Type": "连接类型",
"Connections": "外部连接",
@@ -524,6 +532,8 @@
"Delete All Chats": "删除所有对话记录",
"Delete all contents inside this folder": "删除此分组内的所有内容",
"Delete automation?": "要删除此自动化吗?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "删除对话记录",
"Delete chat?": "要删除此对话记录吗?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "无法连接到终端服务器:{{URL}}",
"Failed to copy link": "复制链接失败",
"Failed to create API Key.": "创建接口密钥失败",
"Failed to delete calendar": "",
"Failed to delete note": "删除笔记失败",
"Failed to download image": "图片下载失败",
"Failed to extract content from the file: {{error}}": "文件内容提取失败:{{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "推理努力 (Reasoning Effort)",
"Reasoning Tags": "推理过程标签",
"Recently Used": "最近使用",
"Reconnected": "",
"Record": "录制",
"Record voice": "录音",
"Redirecting you to Open WebUI Community": "正在将您重定向到 Open WebUI 社区",
@@ -1647,6 +1659,7 @@
"Relevance": "相关性",
"Relevance Threshold": "相关性阈值",
"Remember Dismissal": "记住关闭状态",
"Reminder": "",
"Remove": "移除",
"Remove {{MODELID}} from list.": "从列表中移除 {{MODELID}}",
"Remove action": "删除当前操作",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "开始新对话",
"Start of the channel": "频道起点",
"Start Tag": "起始标签",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "正在启动内核...",
"Starting now": "",
"State": "状态",
"Status": "状态",
"Status cleared successfully": "状态已清除",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "这将删除<strong>{{NAME}}</strong>及其<strong>所有内容</strong>。",
"This will delete all models including custom models": "这将删除所有模型,包括自定义模型",
"This will delete all models including custom models and cannot be undone.": "这将删除所有模型,包括自定义模型,且无法撤销。",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并同步所有文件。确认继续?",
"Thorough explanation": "解释详尽",
"Thought": "思考过程",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} 后卸载",
"Unlock mysteries": "解码未知",
"Unpin": "取消置顶",
"Unpin from Sidebar": "",
"Unravel secrets": "冲破奥秘",
"Unshare Chat": "取消分享对话",
"Unsupported file type.": "不支持的文件类型",
@@ -32,8 +32,13 @@
"{{user}}'s Chats": "{{user}} 的對話",
"{{webUIName}} Backend Required": "需要提供 {{webUIName}} 後端",
"*Prompt node ID(s) are required for image generation": "* 產生圖片需要提示詞節點 ID",
"1 hour before": "",
"1 Source": "1 個來源",
"10 minutes before": "",
"15 minutes before": "",
"1m_time_ago": "剛剛",
"30 minutes before": "",
"5 minutes before": "",
"A collaboration channel where people join as members": "成員可加入的協作頻道",
"A discussion channel where access is controlled by groups and permissions": "由權限組控制的討論頻道",
"A new version (v{{LATEST_VERSION}}) is now available.": "新版本 (v{{LATEST_VERSION}}) 已釋出。",
@@ -201,6 +206,7 @@
"Ask a question": "提出問題",
"Assistant": "助理",
"Async Embedding Processing": "非同步嵌入處理",
"At time of event": "",
"Attach File From Knowledge": "從知識庫附加檔案",
"Attach Files": "新增檔案",
"Attach Knowledge": "附加知識庫",
@@ -275,6 +281,7 @@
"Bypass Web Loader": "繞過網頁載入器",
"Cache Base Model List": "快取基礎模型清單",
"Calendar": "日曆",
"Calendar deleted": "",
"Calendars": "",
"Call": "通話",
"Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能",
@@ -412,6 +419,7 @@
"Connect to your own OpenAPI compatible external tool servers.": "連線至您自有或其他與 OpenAPI 相容的外部工具伺服器。",
"Connected ({{type}})": "已連線({{type}}",
"Connection failed": "連線失敗",
"Connection lost. Reconnecting...": "",
"Connection successful": "連線成功",
"Connection Type": "連線類型",
"Connections": "連線",
@@ -524,6 +532,8 @@
"Delete All Chats": "刪除所有對話紀錄",
"Delete all contents inside this folder": "刪除此資料夾內的所有內容",
"Delete automation?": "要刪除此自動化嗎?",
"Delete calendar": "",
"Delete Calendar": "",
"Delete Chat": "刪除對話紀錄",
"Delete chat?": "刪除對話紀錄?",
"Delete Event": "",
@@ -885,6 +895,7 @@
"Failed to connect to {{URL}} terminal server": "無法連線至終端伺服器:{{URL}}",
"Failed to copy link": "複製連結失敗",
"Failed to create API Key.": "建立 API 金鑰失敗。",
"Failed to delete calendar": "",
"Failed to delete note": "刪除筆記失敗",
"Failed to download image": "圖片下載失敗",
"Failed to extract content from the file: {{error}}": "檔案內容擷取失敗:{{error}}",
@@ -1624,6 +1635,7 @@
"Reasoning Effort": "推理程度",
"Reasoning Tags": "推理標籤",
"Recently Used": "最近使用",
"Reconnected": "",
"Record": "錄製",
"Record voice": "錄音",
"Redirecting you to Open WebUI Community": "正在將您重導向至 Open WebUI 社群",
@@ -1647,6 +1659,7 @@
"Relevance": "相關性",
"Relevance Threshold": "相關性閾值",
"Remember Dismissal": "記住關閉狀態",
"Reminder": "",
"Remove": "移除",
"Remove {{MODELID}} from list.": "從清單中移除 {{MODELID}}",
"Remove action": "刪除目前操作",
@@ -1892,7 +1905,10 @@
"Start a new conversation": "開始新對話",
"Start of the channel": "頻道起點",
"Start Tag": "起始標籤",
"Starting in {{count}} minutes_other": "",
"Starting in 1 minute": "",
"Starting kernel...": "正在啟動核心…",
"Starting now": "",
"State": "狀態",
"Status": "狀態",
"Status cleared successfully": "狀態已清除",
@@ -2005,6 +2021,7 @@
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "這將會刪除 <strong>{{NAME}}</strong> 和<strong>其所有內容</strong>。",
"This will delete all models including custom models": "這將刪除所有模型,包括自訂模型",
"This will delete all models including custom models and cannot be undone.": "這將刪除所有模型,包括自訂模型,且無法復原。",
"This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "",
"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
"Thorough explanation": "詳細解釋",
"Thought": "思考過程",
@@ -2091,6 +2108,7 @@
"Unloads {{FROM_NOW}}": "於 {{FROM_NOW}} 後解除載入",
"Unlock mysteries": "解鎖謎題",
"Unpin": "取消釘選",
"Unpin from Sidebar": "",
"Unravel secrets": "揭開秘密",
"Unshare Chat": "取消分享對話",
"Unsupported file type.": "不支援的檔案類型",